All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.devicefarm.model.DeviceSelectionConfiguration Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Device Farm module holds the client classes that are used for communicating with AWS Device Farm

There is a newer version: 1.12.778
Show newest version
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.devicefarm.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Represents the device filters used in a test run and the maximum number of devices to be included in the run. It is * passed in as the deviceSelectionConfiguration request parameter in ScheduleRun. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DeviceSelectionConfiguration implements Serializable, Cloneable, StructuredPojo { /** *

* Used to dynamically select a set of devices for a test run. A filter is made up of an attribute, an operator, and * one or more values. *

*
    *
  • *

    * Attribute *

    *

    * The aspect of a device such as platform or model used as the selection criteria in a device filter. *

    *

    * Allowed values include: *

    *
      *
    • *

      * ARN: The Amazon Resource Name (ARN) of the device (for example, * arn:aws:devicefarm:us-west-2::device:12345Example). *

      *
    • *
    • *

      * PLATFORM: The device platform. Valid values are ANDROID or IOS. *

      *
    • *
    • *

      * OS_VERSION: The operating system version (for example, 10.3.2). *

      *
    • *
    • *

      * MODEL: The device model (for example, iPad 5th Gen). *

      *
    • *
    • *

      * AVAILABILITY: The current availability of the device. Valid values are AVAILABLE, HIGHLY_AVAILABLE, BUSY, or * TEMPORARY_NOT_AVAILABLE. *

      *
    • *
    • *

      * FORM_FACTOR: The device form factor. Valid values are PHONE or TABLET. *

      *
    • *
    • *

      * MANUFACTURER: The device manufacturer (for example, Apple). *

      *
    • *
    • *

      * REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are TRUE or FALSE. *

      *
    • *
    • *

      * REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are TRUE or FALSE. Because * remote debugging is no longer * supported, this filter is ignored. *

      *
    • *
    • *

      * INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance. *

      *
    • *
    • *

      * INSTANCE_LABELS: The label of the device instance. *

      *
    • *
    • *

      * FLEET_TYPE: The fleet type. Valid values are PUBLIC or PRIVATE. *

      *
    • *
    *
  • *
  • *

    * Operator *

    *

    * The filter operator. *

    *
      *
    • *

      * The EQUALS operator is available for every attribute except INSTANCE_LABELS. *

      *
    • *
    • *

      * The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes. *

      *
    • *
    • *

      * The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN * attributes. *

      *
    • *
    • *

      * The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available for the * OS_VERSION attribute. *

      *
    • *
    *
  • *
  • *

    * Values *

    *

    * An array of one or more filter values. *

    *

    * Operator Values *

    *
      *
    • *

      * The IN and NOT_IN operators can take a values array that has more than one element. *

      *
    • *
    • *

      * The other operators require an array with a single element. *

      *
    • *
    *

    * Attribute Values *

    *
      *
    • *

      * The PLATFORM attribute can be set to ANDROID or IOS. *

      *
    • *
    • *

      * The AVAILABILITY attribute can be set to AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. *

      *
    • *
    • *

      * The FORM_FACTOR attribute can be set to PHONE or TABLET. *

      *
    • *
    • *

      * The FLEET_TYPE attribute can be set to PUBLIC or PRIVATE. *

      *
    • *
    *
  • *
*/ private java.util.List filters; /** *

* The maximum number of devices to be included in a test run. *

*/ private Integer maxDevices; /** *

* Used to dynamically select a set of devices for a test run. A filter is made up of an attribute, an operator, and * one or more values. *

*
    *
  • *

    * Attribute *

    *

    * The aspect of a device such as platform or model used as the selection criteria in a device filter. *

    *

    * Allowed values include: *

    *
      *
    • *

      * ARN: The Amazon Resource Name (ARN) of the device (for example, * arn:aws:devicefarm:us-west-2::device:12345Example). *

      *
    • *
    • *

      * PLATFORM: The device platform. Valid values are ANDROID or IOS. *

      *
    • *
    • *

      * OS_VERSION: The operating system version (for example, 10.3.2). *

      *
    • *
    • *

      * MODEL: The device model (for example, iPad 5th Gen). *

      *
    • *
    • *

      * AVAILABILITY: The current availability of the device. Valid values are AVAILABLE, HIGHLY_AVAILABLE, BUSY, or * TEMPORARY_NOT_AVAILABLE. *

      *
    • *
    • *

      * FORM_FACTOR: The device form factor. Valid values are PHONE or TABLET. *

      *
    • *
    • *

      * MANUFACTURER: The device manufacturer (for example, Apple). *

      *
    • *
    • *

      * REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are TRUE or FALSE. *

      *
    • *
    • *

      * REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are TRUE or FALSE. Because * remote debugging is no longer * supported, this filter is ignored. *

      *
    • *
    • *

      * INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance. *

      *
    • *
    • *

      * INSTANCE_LABELS: The label of the device instance. *

      *
    • *
    • *

      * FLEET_TYPE: The fleet type. Valid values are PUBLIC or PRIVATE. *

      *
    • *
    *
  • *
  • *

    * Operator *

    *

    * The filter operator. *

    *
      *
    • *

      * The EQUALS operator is available for every attribute except INSTANCE_LABELS. *

      *
    • *
    • *

      * The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes. *

      *
    • *
    • *

      * The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN * attributes. *

      *
    • *
    • *

      * The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available for the * OS_VERSION attribute. *

      *
    • *
    *
  • *
  • *

    * Values *

    *

    * An array of one or more filter values. *

    *

    * Operator Values *

    *
      *
    • *

      * The IN and NOT_IN operators can take a values array that has more than one element. *

      *
    • *
    • *

      * The other operators require an array with a single element. *

      *
    • *
    *

    * Attribute Values *

    *
      *
    • *

      * The PLATFORM attribute can be set to ANDROID or IOS. *

      *
    • *
    • *

      * The AVAILABILITY attribute can be set to AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. *

      *
    • *
    • *

      * The FORM_FACTOR attribute can be set to PHONE or TABLET. *

      *
    • *
    • *

      * The FLEET_TYPE attribute can be set to PUBLIC or PRIVATE. *

      *
    • *
    *
  • *
* * @return Used to dynamically select a set of devices for a test run. A filter is made up of an attribute, an * operator, and one or more values.

*
    *
  • *

    * Attribute *

    *

    * The aspect of a device such as platform or model used as the selection criteria in a device filter. *

    *

    * Allowed values include: *

    *
      *
    • *

      * ARN: The Amazon Resource Name (ARN) of the device (for example, * arn:aws:devicefarm:us-west-2::device:12345Example). *

      *
    • *
    • *

      * PLATFORM: The device platform. Valid values are ANDROID or IOS. *

      *
    • *
    • *

      * OS_VERSION: The operating system version (for example, 10.3.2). *

      *
    • *
    • *

      * MODEL: The device model (for example, iPad 5th Gen). *

      *
    • *
    • *

      * AVAILABILITY: The current availability of the device. Valid values are AVAILABLE, HIGHLY_AVAILABLE, BUSY, * or TEMPORARY_NOT_AVAILABLE. *

      *
    • *
    • *

      * FORM_FACTOR: The device form factor. Valid values are PHONE or TABLET. *

      *
    • *
    • *

      * MANUFACTURER: The device manufacturer (for example, Apple). *

      *
    • *
    • *

      * REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are TRUE or FALSE. *

      *
    • *
    • *

      * REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are TRUE or FALSE. * Because remote debugging is no longer supported, * this filter is ignored. *

      *
    • *
    • *

      * INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance. *

      *
    • *
    • *

      * INSTANCE_LABELS: The label of the device instance. *

      *
    • *
    • *

      * FLEET_TYPE: The fleet type. Valid values are PUBLIC or PRIVATE. *

      *
    • *
    *
  • *
  • *

    * Operator *

    *

    * The filter operator. *

    *
      *
    • *

      * The EQUALS operator is available for every attribute except INSTANCE_LABELS. *

      *
    • *
    • *

      * The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes. *

      *
    • *
    • *

      * The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN * attributes. *

      *
    • *
    • *

      * The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available * for the OS_VERSION attribute. *

      *
    • *
    *
  • *
  • *

    * Values *

    *

    * An array of one or more filter values. *

    *

    * Operator Values *

    *
      *
    • *

      * The IN and NOT_IN operators can take a values array that has more than one element. *

      *
    • *
    • *

      * The other operators require an array with a single element. *

      *
    • *
    *

    * Attribute Values *

    *
      *
    • *

      * The PLATFORM attribute can be set to ANDROID or IOS. *

      *
    • *
    • *

      * The AVAILABILITY attribute can be set to AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. *

      *
    • *
    • *

      * The FORM_FACTOR attribute can be set to PHONE or TABLET. *

      *
    • *
    • *

      * The FLEET_TYPE attribute can be set to PUBLIC or PRIVATE. *

      *
    • *
    *
  • */ public java.util.List getFilters() { return filters; } /** *

    * Used to dynamically select a set of devices for a test run. A filter is made up of an attribute, an operator, and * one or more values. *

    *
      *
    • *

      * Attribute *

      *

      * The aspect of a device such as platform or model used as the selection criteria in a device filter. *

      *

      * Allowed values include: *

      *
        *
      • *

        * ARN: The Amazon Resource Name (ARN) of the device (for example, * arn:aws:devicefarm:us-west-2::device:12345Example). *

        *
      • *
      • *

        * PLATFORM: The device platform. Valid values are ANDROID or IOS. *

        *
      • *
      • *

        * OS_VERSION: The operating system version (for example, 10.3.2). *

        *
      • *
      • *

        * MODEL: The device model (for example, iPad 5th Gen). *

        *
      • *
      • *

        * AVAILABILITY: The current availability of the device. Valid values are AVAILABLE, HIGHLY_AVAILABLE, BUSY, or * TEMPORARY_NOT_AVAILABLE. *

        *
      • *
      • *

        * FORM_FACTOR: The device form factor. Valid values are PHONE or TABLET. *

        *
      • *
      • *

        * MANUFACTURER: The device manufacturer (for example, Apple). *

        *
      • *
      • *

        * REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are TRUE or FALSE. *

        *
      • *
      • *

        * REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are TRUE or FALSE. Because * remote debugging is no longer * supported, this filter is ignored. *

        *
      • *
      • *

        * INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance. *

        *
      • *
      • *

        * INSTANCE_LABELS: The label of the device instance. *

        *
      • *
      • *

        * FLEET_TYPE: The fleet type. Valid values are PUBLIC or PRIVATE. *

        *
      • *
      *
    • *
    • *

      * Operator *

      *

      * The filter operator. *

      *
        *
      • *

        * The EQUALS operator is available for every attribute except INSTANCE_LABELS. *

        *
      • *
      • *

        * The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes. *

        *
      • *
      • *

        * The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN * attributes. *

        *
      • *
      • *

        * The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available for the * OS_VERSION attribute. *

        *
      • *
      *
    • *
    • *

      * Values *

      *

      * An array of one or more filter values. *

      *

      * Operator Values *

      *
        *
      • *

        * The IN and NOT_IN operators can take a values array that has more than one element. *

        *
      • *
      • *

        * The other operators require an array with a single element. *

        *
      • *
      *

      * Attribute Values *

      *
        *
      • *

        * The PLATFORM attribute can be set to ANDROID or IOS. *

        *
      • *
      • *

        * The AVAILABILITY attribute can be set to AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. *

        *
      • *
      • *

        * The FORM_FACTOR attribute can be set to PHONE or TABLET. *

        *
      • *
      • *

        * The FLEET_TYPE attribute can be set to PUBLIC or PRIVATE. *

        *
      • *
      *
    • *
    * * @param filters * Used to dynamically select a set of devices for a test run. A filter is made up of an attribute, an * operator, and one or more values.

    *
      *
    • *

      * Attribute *

      *

      * The aspect of a device such as platform or model used as the selection criteria in a device filter. *

      *

      * Allowed values include: *

      *
        *
      • *

        * ARN: The Amazon Resource Name (ARN) of the device (for example, * arn:aws:devicefarm:us-west-2::device:12345Example). *

        *
      • *
      • *

        * PLATFORM: The device platform. Valid values are ANDROID or IOS. *

        *
      • *
      • *

        * OS_VERSION: The operating system version (for example, 10.3.2). *

        *
      • *
      • *

        * MODEL: The device model (for example, iPad 5th Gen). *

        *
      • *
      • *

        * AVAILABILITY: The current availability of the device. Valid values are AVAILABLE, HIGHLY_AVAILABLE, BUSY, * or TEMPORARY_NOT_AVAILABLE. *

        *
      • *
      • *

        * FORM_FACTOR: The device form factor. Valid values are PHONE or TABLET. *

        *
      • *
      • *

        * MANUFACTURER: The device manufacturer (for example, Apple). *

        *
      • *
      • *

        * REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are TRUE or FALSE. *

        *
      • *
      • *

        * REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are TRUE or FALSE. * Because remote debugging is no longer supported, * this filter is ignored. *

        *
      • *
      • *

        * INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance. *

        *
      • *
      • *

        * INSTANCE_LABELS: The label of the device instance. *

        *
      • *
      • *

        * FLEET_TYPE: The fleet type. Valid values are PUBLIC or PRIVATE. *

        *
      • *
      *
    • *
    • *

      * Operator *

      *

      * The filter operator. *

      *
        *
      • *

        * The EQUALS operator is available for every attribute except INSTANCE_LABELS. *

        *
      • *
      • *

        * The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes. *

        *
      • *
      • *

        * The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN * attributes. *

        *
      • *
      • *

        * The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available * for the OS_VERSION attribute. *

        *
      • *
      *
    • *
    • *

      * Values *

      *

      * An array of one or more filter values. *

      *

      * Operator Values *

      *
        *
      • *

        * The IN and NOT_IN operators can take a values array that has more than one element. *

        *
      • *
      • *

        * The other operators require an array with a single element. *

        *
      • *
      *

      * Attribute Values *

      *
        *
      • *

        * The PLATFORM attribute can be set to ANDROID or IOS. *

        *
      • *
      • *

        * The AVAILABILITY attribute can be set to AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. *

        *
      • *
      • *

        * The FORM_FACTOR attribute can be set to PHONE or TABLET. *

        *
      • *
      • *

        * The FLEET_TYPE attribute can be set to PUBLIC or PRIVATE. *

        *
      • *
      *
    • */ public void setFilters(java.util.Collection filters) { if (filters == null) { this.filters = null; return; } this.filters = new java.util.ArrayList(filters); } /** *

      * Used to dynamically select a set of devices for a test run. A filter is made up of an attribute, an operator, and * one or more values. *

      *
        *
      • *

        * Attribute *

        *

        * The aspect of a device such as platform or model used as the selection criteria in a device filter. *

        *

        * Allowed values include: *

        *
          *
        • *

          * ARN: The Amazon Resource Name (ARN) of the device (for example, * arn:aws:devicefarm:us-west-2::device:12345Example). *

          *
        • *
        • *

          * PLATFORM: The device platform. Valid values are ANDROID or IOS. *

          *
        • *
        • *

          * OS_VERSION: The operating system version (for example, 10.3.2). *

          *
        • *
        • *

          * MODEL: The device model (for example, iPad 5th Gen). *

          *
        • *
        • *

          * AVAILABILITY: The current availability of the device. Valid values are AVAILABLE, HIGHLY_AVAILABLE, BUSY, or * TEMPORARY_NOT_AVAILABLE. *

          *
        • *
        • *

          * FORM_FACTOR: The device form factor. Valid values are PHONE or TABLET. *

          *
        • *
        • *

          * MANUFACTURER: The device manufacturer (for example, Apple). *

          *
        • *
        • *

          * REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are TRUE or FALSE. *

          *
        • *
        • *

          * REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are TRUE or FALSE. Because * remote debugging is no longer * supported, this filter is ignored. *

          *
        • *
        • *

          * INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance. *

          *
        • *
        • *

          * INSTANCE_LABELS: The label of the device instance. *

          *
        • *
        • *

          * FLEET_TYPE: The fleet type. Valid values are PUBLIC or PRIVATE. *

          *
        • *
        *
      • *
      • *

        * Operator *

        *

        * The filter operator. *

        *
          *
        • *

          * The EQUALS operator is available for every attribute except INSTANCE_LABELS. *

          *
        • *
        • *

          * The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes. *

          *
        • *
        • *

          * The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN * attributes. *

          *
        • *
        • *

          * The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available for the * OS_VERSION attribute. *

          *
        • *
        *
      • *
      • *

        * Values *

        *

        * An array of one or more filter values. *

        *

        * Operator Values *

        *
          *
        • *

          * The IN and NOT_IN operators can take a values array that has more than one element. *

          *
        • *
        • *

          * The other operators require an array with a single element. *

          *
        • *
        *

        * Attribute Values *

        *
          *
        • *

          * The PLATFORM attribute can be set to ANDROID or IOS. *

          *
        • *
        • *

          * The AVAILABILITY attribute can be set to AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. *

          *
        • *
        • *

          * The FORM_FACTOR attribute can be set to PHONE or TABLET. *

          *
        • *
        • *

          * The FLEET_TYPE attribute can be set to PUBLIC or PRIVATE. *

          *
        • *
        *
      • *
      *

      * NOTE: This method appends the values to the existing list (if any). Use * {@link #setFilters(java.util.Collection)} or {@link #withFilters(java.util.Collection)} if you want to override * the existing values. *

      * * @param filters * Used to dynamically select a set of devices for a test run. A filter is made up of an attribute, an * operator, and one or more values.

      *
        *
      • *

        * Attribute *

        *

        * The aspect of a device such as platform or model used as the selection criteria in a device filter. *

        *

        * Allowed values include: *

        *
          *
        • *

          * ARN: The Amazon Resource Name (ARN) of the device (for example, * arn:aws:devicefarm:us-west-2::device:12345Example). *

          *
        • *
        • *

          * PLATFORM: The device platform. Valid values are ANDROID or IOS. *

          *
        • *
        • *

          * OS_VERSION: The operating system version (for example, 10.3.2). *

          *
        • *
        • *

          * MODEL: The device model (for example, iPad 5th Gen). *

          *
        • *
        • *

          * AVAILABILITY: The current availability of the device. Valid values are AVAILABLE, HIGHLY_AVAILABLE, BUSY, * or TEMPORARY_NOT_AVAILABLE. *

          *
        • *
        • *

          * FORM_FACTOR: The device form factor. Valid values are PHONE or TABLET. *

          *
        • *
        • *

          * MANUFACTURER: The device manufacturer (for example, Apple). *

          *
        • *
        • *

          * REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are TRUE or FALSE. *

          *
        • *
        • *

          * REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are TRUE or FALSE. * Because remote debugging is no longer supported, * this filter is ignored. *

          *
        • *
        • *

          * INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance. *

          *
        • *
        • *

          * INSTANCE_LABELS: The label of the device instance. *

          *
        • *
        • *

          * FLEET_TYPE: The fleet type. Valid values are PUBLIC or PRIVATE. *

          *
        • *
        *
      • *
      • *

        * Operator *

        *

        * The filter operator. *

        *
          *
        • *

          * The EQUALS operator is available for every attribute except INSTANCE_LABELS. *

          *
        • *
        • *

          * The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes. *

          *
        • *
        • *

          * The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN * attributes. *

          *
        • *
        • *

          * The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available * for the OS_VERSION attribute. *

          *
        • *
        *
      • *
      • *

        * Values *

        *

        * An array of one or more filter values. *

        *

        * Operator Values *

        *
          *
        • *

          * The IN and NOT_IN operators can take a values array that has more than one element. *

          *
        • *
        • *

          * The other operators require an array with a single element. *

          *
        • *
        *

        * Attribute Values *

        *
          *
        • *

          * The PLATFORM attribute can be set to ANDROID or IOS. *

          *
        • *
        • *

          * The AVAILABILITY attribute can be set to AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. *

          *
        • *
        • *

          * The FORM_FACTOR attribute can be set to PHONE or TABLET. *

          *
        • *
        • *

          * The FLEET_TYPE attribute can be set to PUBLIC or PRIVATE. *

          *
        • *
        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public DeviceSelectionConfiguration withFilters(DeviceFilter... filters) { if (this.filters == null) { setFilters(new java.util.ArrayList(filters.length)); } for (DeviceFilter ele : filters) { this.filters.add(ele); } return this; } /** *

        * Used to dynamically select a set of devices for a test run. A filter is made up of an attribute, an operator, and * one or more values. *

        *
          *
        • *

          * Attribute *

          *

          * The aspect of a device such as platform or model used as the selection criteria in a device filter. *

          *

          * Allowed values include: *

          *
            *
          • *

            * ARN: The Amazon Resource Name (ARN) of the device (for example, * arn:aws:devicefarm:us-west-2::device:12345Example). *

            *
          • *
          • *

            * PLATFORM: The device platform. Valid values are ANDROID or IOS. *

            *
          • *
          • *

            * OS_VERSION: The operating system version (for example, 10.3.2). *

            *
          • *
          • *

            * MODEL: The device model (for example, iPad 5th Gen). *

            *
          • *
          • *

            * AVAILABILITY: The current availability of the device. Valid values are AVAILABLE, HIGHLY_AVAILABLE, BUSY, or * TEMPORARY_NOT_AVAILABLE. *

            *
          • *
          • *

            * FORM_FACTOR: The device form factor. Valid values are PHONE or TABLET. *

            *
          • *
          • *

            * MANUFACTURER: The device manufacturer (for example, Apple). *

            *
          • *
          • *

            * REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are TRUE or FALSE. *

            *
          • *
          • *

            * REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are TRUE or FALSE. Because * remote debugging is no longer * supported, this filter is ignored. *

            *
          • *
          • *

            * INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance. *

            *
          • *
          • *

            * INSTANCE_LABELS: The label of the device instance. *

            *
          • *
          • *

            * FLEET_TYPE: The fleet type. Valid values are PUBLIC or PRIVATE. *

            *
          • *
          *
        • *
        • *

          * Operator *

          *

          * The filter operator. *

          *
            *
          • *

            * The EQUALS operator is available for every attribute except INSTANCE_LABELS. *

            *
          • *
          • *

            * The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes. *

            *
          • *
          • *

            * The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN * attributes. *

            *
          • *
          • *

            * The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available for the * OS_VERSION attribute. *

            *
          • *
          *
        • *
        • *

          * Values *

          *

          * An array of one or more filter values. *

          *

          * Operator Values *

          *
            *
          • *

            * The IN and NOT_IN operators can take a values array that has more than one element. *

            *
          • *
          • *

            * The other operators require an array with a single element. *

            *
          • *
          *

          * Attribute Values *

          *
            *
          • *

            * The PLATFORM attribute can be set to ANDROID or IOS. *

            *
          • *
          • *

            * The AVAILABILITY attribute can be set to AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. *

            *
          • *
          • *

            * The FORM_FACTOR attribute can be set to PHONE or TABLET. *

            *
          • *
          • *

            * The FLEET_TYPE attribute can be set to PUBLIC or PRIVATE. *

            *
          • *
          *
        • *
        * * @param filters * Used to dynamically select a set of devices for a test run. A filter is made up of an attribute, an * operator, and one or more values.

        *
          *
        • *

          * Attribute *

          *

          * The aspect of a device such as platform or model used as the selection criteria in a device filter. *

          *

          * Allowed values include: *

          *
            *
          • *

            * ARN: The Amazon Resource Name (ARN) of the device (for example, * arn:aws:devicefarm:us-west-2::device:12345Example). *

            *
          • *
          • *

            * PLATFORM: The device platform. Valid values are ANDROID or IOS. *

            *
          • *
          • *

            * OS_VERSION: The operating system version (for example, 10.3.2). *

            *
          • *
          • *

            * MODEL: The device model (for example, iPad 5th Gen). *

            *
          • *
          • *

            * AVAILABILITY: The current availability of the device. Valid values are AVAILABLE, HIGHLY_AVAILABLE, BUSY, * or TEMPORARY_NOT_AVAILABLE. *

            *
          • *
          • *

            * FORM_FACTOR: The device form factor. Valid values are PHONE or TABLET. *

            *
          • *
          • *

            * MANUFACTURER: The device manufacturer (for example, Apple). *

            *
          • *
          • *

            * REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are TRUE or FALSE. *

            *
          • *
          • *

            * REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are TRUE or FALSE. * Because remote debugging is no longer supported, * this filter is ignored. *

            *
          • *
          • *

            * INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance. *

            *
          • *
          • *

            * INSTANCE_LABELS: The label of the device instance. *

            *
          • *
          • *

            * FLEET_TYPE: The fleet type. Valid values are PUBLIC or PRIVATE. *

            *
          • *
          *
        • *
        • *

          * Operator *

          *

          * The filter operator. *

          *
            *
          • *

            * The EQUALS operator is available for every attribute except INSTANCE_LABELS. *

            *
          • *
          • *

            * The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes. *

            *
          • *
          • *

            * The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN * attributes. *

            *
          • *
          • *

            * The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available * for the OS_VERSION attribute. *

            *
          • *
          *
        • *
        • *

          * Values *

          *

          * An array of one or more filter values. *

          *

          * Operator Values *

          *
            *
          • *

            * The IN and NOT_IN operators can take a values array that has more than one element. *

            *
          • *
          • *

            * The other operators require an array with a single element. *

            *
          • *
          *

          * Attribute Values *

          *
            *
          • *

            * The PLATFORM attribute can be set to ANDROID or IOS. *

            *
          • *
          • *

            * The AVAILABILITY attribute can be set to AVAILABLE, HIGHLY_AVAILABLE, BUSY, or TEMPORARY_NOT_AVAILABLE. *

            *
          • *
          • *

            * The FORM_FACTOR attribute can be set to PHONE or TABLET. *

            *
          • *
          • *

            * The FLEET_TYPE attribute can be set to PUBLIC or PRIVATE. *

            *
          • *
          *
        • * @return Returns a reference to this object so that method calls can be chained together. */ public DeviceSelectionConfiguration withFilters(java.util.Collection filters) { setFilters(filters); return this; } /** *

          * The maximum number of devices to be included in a test run. *

          * * @param maxDevices * The maximum number of devices to be included in a test run. */ public void setMaxDevices(Integer maxDevices) { this.maxDevices = maxDevices; } /** *

          * The maximum number of devices to be included in a test run. *

          * * @return The maximum number of devices to be included in a test run. */ public Integer getMaxDevices() { return this.maxDevices; } /** *

          * The maximum number of devices to be included in a test run. *

          * * @param maxDevices * The maximum number of devices to be included in a test run. * @return Returns a reference to this object so that method calls can be chained together. */ public DeviceSelectionConfiguration withMaxDevices(Integer maxDevices) { setMaxDevices(maxDevices); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getFilters() != null) sb.append("Filters: ").append(getFilters()).append(","); if (getMaxDevices() != null) sb.append("MaxDevices: ").append(getMaxDevices()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DeviceSelectionConfiguration == false) return false; DeviceSelectionConfiguration other = (DeviceSelectionConfiguration) obj; if (other.getFilters() == null ^ this.getFilters() == null) return false; if (other.getFilters() != null && other.getFilters().equals(this.getFilters()) == false) return false; if (other.getMaxDevices() == null ^ this.getMaxDevices() == null) return false; if (other.getMaxDevices() != null && other.getMaxDevices().equals(this.getMaxDevices()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getFilters() == null) ? 0 : getFilters().hashCode()); hashCode = prime * hashCode + ((getMaxDevices() == null) ? 0 : getMaxDevices().hashCode()); return hashCode; } @Override public DeviceSelectionConfiguration clone() { try { return (DeviceSelectionConfiguration) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.devicefarm.model.transform.DeviceSelectionConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy