NAME
Paws::DeviceFarm::CreateUpload - Arguments for method CreateUpload on Paws::DeviceFarm
DESCRIPTION
This class represents the parameters used for calling the method CreateUpload on the AWS Device Farm service. Use the attributes of this class as arguments to method CreateUpload.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateUpload.
SYNOPSIS
my $devicefarm = Paws->service('DeviceFarm');
# To create a new test package upload
# The following example creates a new Appium Python test package upload inside
# an existing project.
my $CreateUploadResult = $devicefarm->CreateUpload(
'Name' => 'MyAppiumPythonUpload',
'ProjectArn' =>
'arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
'Type' => 'APPIUM_PYTHON_TEST_PACKAGE'
);
# Results:
my $upload = $CreateUploadResult->upload;
# Returns a L<Paws::DeviceFarm::CreateUploadResult> object.
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/devicefarm/CreateUpload
ATTRIBUTES
ContentType => Str
The upload's content type (for example, application/octet-stream
).
REQUIRED Name => Str
The upload's file name. The name should not contain any forward slashes (/
). If you are uploading an iOS app, the file name must end with the .ipa
extension. If you are uploading an Android app, the file name must end with the .apk
extension. For all others, the file name must end with the .zip
file extension.
REQUIRED ProjectArn => Str
The ARN of the project for the upload.
REQUIRED Type => Str
The upload's upload type.
Must be one of the following values:
ANDROID_APP
IOS_APP
WEB_APP
EXTERNAL_DATA
APPIUM_JAVA_JUNIT_TEST_PACKAGE
APPIUM_JAVA_TESTNG_TEST_PACKAGE
APPIUM_PYTHON_TEST_PACKAGE
APPIUM_NODE_TEST_PACKAGE
APPIUM_RUBY_TEST_PACKAGE
APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE
APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE
APPIUM_WEB_PYTHON_TEST_PACKAGE
APPIUM_WEB_NODE_TEST_PACKAGE
APPIUM_WEB_RUBY_TEST_PACKAGE
CALABASH_TEST_PACKAGE
INSTRUMENTATION_TEST_PACKAGE
UIAUTOMATION_TEST_PACKAGE
UIAUTOMATOR_TEST_PACKAGE
XCTEST_TEST_PACKAGE
XCTEST_UI_TEST_PACKAGE
APPIUM_JAVA_JUNIT_TEST_SPEC
APPIUM_JAVA_TESTNG_TEST_SPEC
APPIUM_PYTHON_TEST_SPEC
APPIUM_NODE_TEST_SPEC
APPIUM_RUBY_TEST_SPEC
APPIUM_WEB_JAVA_JUNIT_TEST_SPEC
APPIUM_WEB_JAVA_TESTNG_TEST_SPEC
APPIUM_WEB_PYTHON_TEST_SPEC
APPIUM_WEB_NODE_TEST_SPEC
APPIUM_WEB_RUBY_TEST_SPEC
INSTRUMENTATION_TEST_SPEC
XCTEST_UI_TEST_SPEC
If you call CreateUpload
with WEB_APP
specified, AWS Device Farm throws an ArgumentException
error.
Valid values are: "ANDROID_APP"
, "IOS_APP"
, "WEB_APP"
, "EXTERNAL_DATA"
, "APPIUM_JAVA_JUNIT_TEST_PACKAGE"
, "APPIUM_JAVA_TESTNG_TEST_PACKAGE"
, "APPIUM_PYTHON_TEST_PACKAGE"
, "APPIUM_NODE_TEST_PACKAGE"
, "APPIUM_RUBY_TEST_PACKAGE"
, "APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE"
, "APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE"
, "APPIUM_WEB_PYTHON_TEST_PACKAGE"
, "APPIUM_WEB_NODE_TEST_PACKAGE"
, "APPIUM_WEB_RUBY_TEST_PACKAGE"
, "CALABASH_TEST_PACKAGE"
, "INSTRUMENTATION_TEST_PACKAGE"
, "UIAUTOMATION_TEST_PACKAGE"
, "UIAUTOMATOR_TEST_PACKAGE"
, "XCTEST_TEST_PACKAGE"
, "XCTEST_UI_TEST_PACKAGE"
, "APPIUM_JAVA_JUNIT_TEST_SPEC"
, "APPIUM_JAVA_TESTNG_TEST_SPEC"
, "APPIUM_PYTHON_TEST_SPEC"
, "APPIUM_NODE_TEST_SPEC"
, "APPIUM_RUBY_TEST_SPEC"
, "APPIUM_WEB_JAVA_JUNIT_TEST_SPEC"
, "APPIUM_WEB_JAVA_TESTNG_TEST_SPEC"
, "APPIUM_WEB_PYTHON_TEST_SPEC"
, "APPIUM_WEB_NODE_TEST_SPEC"
, "APPIUM_WEB_RUBY_TEST_SPEC"
, "INSTRUMENTATION_TEST_SPEC"
, "XCTEST_UI_TEST_SPEC"
SEE ALSO
This class forms part of Paws, documenting arguments for method CreateUpload in Paws::DeviceFarm
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues