Example usage for com.amazonaws.services.devicefarm.model BillingMethod METERED

List of usage examples for com.amazonaws.services.devicefarm.model BillingMethod METERED

Introduction

In this page you can find the example usage for com.amazonaws.services.devicefarm.model BillingMethod METERED.

Prototype

BillingMethod METERED

To view the source code for com.amazonaws.services.devicefarm.model BillingMethod METERED.

Click Source Link

Usage

From source file:org.jenkinsci.plugins.awsdevicefarm.AWSDeviceFarmRecorder.java

License:Open Source License

private ScheduleRunConfiguration getScheduleRunConfiguration(Boolean isRunUnmetered, Boolean deviceLocation,
        Boolean radioDetails, String locale) {
    ScheduleRunConfiguration configuration = new ScheduleRunConfiguration();
    if (isRunUnmetered != null && isRunUnmetered) {
        configuration.setBillingMethod(BillingMethod.UNMETERED);
    } else {/*  w w w.  j a  v  a 2s.c  o m*/
        configuration.setBillingMethod(BillingMethod.METERED);
    }

    // set a bunch of other default values as Device Farm expect these
    configuration.setAuxiliaryApps(new ArrayList<String>());
    configuration.setExtraDataPackageArn(null);
    configuration.setLocale(locale);

    Location location = getScheduleRunConfigurationLocation(deviceLocation);
    configuration.setLocation(location);

    Radios radio = getScheduleRunConfigurationRadio(radioDetails);
    configuration.setRadios(radio);

    return configuration;
}