| Copyright | (c) 2013-2018 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
| Language | Haskell2010 |
Network.AWS.DeviceFarm.CreateUpload
Description
Uploads an app or test scripts.
- createUpload :: Text -> Text -> UploadType -> CreateUpload
- data CreateUpload
- cuContentType :: Lens' CreateUpload (Maybe Text)
- cuProjectARN :: Lens' CreateUpload Text
- cuName :: Lens' CreateUpload Text
- cuType :: Lens' CreateUpload UploadType
- createUploadResponse :: Int -> CreateUploadResponse
- data CreateUploadResponse
- cursUpload :: Lens' CreateUploadResponse (Maybe Upload)
- cursResponseStatus :: Lens' CreateUploadResponse Int
Creating a Request
Arguments
| :: Text | |
| -> Text | |
| -> UploadType | |
| -> CreateUpload |
Creates a value of CreateUpload with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
cuContentType- The upload's content type (for example, "application/octet-stream").cuProjectARN- The ARN of the project for the upload.cuName- The upload's file name. The name should not contain the/character. If uploading an iOS app, the file name needs to end with the.ipaextension. If uploading an Android app, the file name needs to end with the.apkextension. For all others, the file name must end with the.zipfile extension.cuType- The upload's upload type. Must be one of the following values: * ANDROID_APP: An Android upload. * IOS_APP: An iOS upload. * WEB_APP: A web appliction upload. * EXTERNAL_DATA: An external data upload. * APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload. * APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload. * APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload. * APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload. * APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload. * APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload. * CALABASH_TEST_PACKAGE: A Calabash test package upload. * INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload. * UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload. * UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload. * XCTEST_TEST_PACKAGE: An XCode test package upload. * XCTEST_UI_TEST_PACKAGE: An XCode UI test package upload. Note If you callCreateUploadwithWEB_APPspecified, AWS Device Farm throws anArgumentExceptionerror.
data CreateUpload Source #
Represents a request to the create upload operation.
See: createUpload smart constructor.
Instances
Request Lenses
cuContentType :: Lens' CreateUpload (Maybe Text) Source #
The upload's content type (for example, "application/octet-stream").
cuProjectARN :: Lens' CreateUpload Text Source #
The ARN of the project for the upload.
cuName :: Lens' CreateUpload Text Source #
The upload's file name. The name should not contain the / character. If uploading an iOS app, the file name needs to end with the .ipa extension. If uploading an Android app, the file name needs to end with the .apk extension. For all others, the file name must end with the .zip file extension.
cuType :: Lens' CreateUpload UploadType Source #
The upload's upload type. Must be one of the following values: * ANDROID_APP: An Android upload. * IOS_APP: An iOS upload. * WEB_APP: A web appliction upload. * EXTERNAL_DATA: An external data upload. * APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload. * APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload. * APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload. * APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload. * APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload. * APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload. * CALABASH_TEST_PACKAGE: A Calabash test package upload. * INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload. * UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload. * UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload. * XCTEST_TEST_PACKAGE: An XCode test package upload. * XCTEST_UI_TEST_PACKAGE: An XCode UI test package upload. Note If you call CreateUpload with WEB_APP specified, AWS Device Farm throws an ArgumentException error.
Destructuring the Response
Arguments
| :: Int | |
| -> CreateUploadResponse |
Creates a value of CreateUploadResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
cursUpload- The newly created upload.cursResponseStatus- -- | The response status code.
data CreateUploadResponse Source #
Represents the result of a create upload request.
See: createUploadResponse smart constructor.
Response Lenses
cursUpload :: Lens' CreateUploadResponse (Maybe Upload) Source #
The newly created upload.
cursResponseStatus :: Lens' CreateUploadResponse Int Source #
- - | The response status code.