PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::DeviceFarm::DeviceFilter; use Moose; has Attribute => (is => 'ro', isa => 'Str', request_name => 'attribute', traits => ['NameInRequest'], required => 1); has Operator => (is => 'ro', isa => 'Str', request_name => 'operator', traits => ['NameInRequest'], required => 1); has Values => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'values', traits => ['NameInRequest'], required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::DeviceFarm::DeviceFilter =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::DeviceFarm::DeviceFilter object: $service_obj->Method(Att1 => { Attribute => $value, ..., Values => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::DeviceFarm::DeviceFilter object: $result = $service_obj->Method(...); $result->Att1->Attribute =head1 DESCRIPTION Represents a device filter used to select a set of devices to be included in a test run. This data structure is passed in as the C parameter to C. For an example of the JSON request syntax, see ScheduleRun. It is also passed in as the C parameter to C. For an example of the JSON request syntax, see ListDevices. =head1 ATTRIBUTES =head2 B Attribute => Str The aspect of a device such as platform or model used as the selection criteria in a device filter. The supported operators for each attribute are provided in the following list. =over =item ARN The Amazon Resource Name (ARN) of the device (for example, C). Supported operators: C, C, C =item PLATFORM The device platform. Valid values are ANDROID or IOS. Supported operators: C =item OS_VERSION The operating system version (for example, 10.3.2). Supported operators: C, C, C, C, C, C, C =item MODEL The device model (for example, iPad 5th Gen). Supported operators: C, C, C, C =item AVAILABILITY The current availability of the device. Valid values are AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. Supported operators: C =item FORM_FACTOR The device form factor. Valid values are PHONE or TABLET. Supported operators: C =item MANUFACTURER The device manufacturer (for example, Apple). Supported operators: C, C, C =item REMOTE_ACCESS_ENABLED Whether the device is enabled for remote access. Valid values are TRUE or FALSE. Supported operators: C =item REMOTE_DEBUG_ENABLED Whether the device is enabled for remote debugging. Valid values are TRUE or FALSE. Supported operators: C Because remote debugging is no longer supported (https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html), this filter is ignored. =item INSTANCE_ARN The Amazon Resource Name (ARN) of the device instance. Supported operators: C, C, C =item INSTANCE_LABELS The label of the device instance. Supported operators: C =item FLEET_TYPE The fleet type. Valid values are PUBLIC or PRIVATE. Supported operators: C =back =head2 B Operator => Str Specifies how Device Farm compares the filter's attribute to the value. See the attribute descriptions. =head2 B Values => ArrayRef[Str|Undef] An array of one or more filter values used in a device filter. B =over =item * The IN and NOT_IN operators can take a values array that has more than one element. =item * The other operators require an array with a single element. =back B =over =item * The PLATFORM attribute can be set to ANDROID or IOS. =item * The AVAILABILITY attribute can be set to AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. =item * The FORM_FACTOR attribute can be set to PHONE or TABLET. =item * The FLEET_TYPE attribute can be set to PUBLIC or PRIVATE. =back =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut