Class: Aws::DeviceFarm::Types::Upload

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-devicefarm/types.rb

Overview

An app or a set of one or more tests to upload or that have been uploaded.

Constant Summary collapse

SENSITIVE =
[:url]

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The upload’s ARN.

Returns:

  • (String)


6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
# File 'lib/aws-sdk-devicefarm/types.rb', line 6591

class Upload < Struct.new(
  :arn,
  :name,
  :created,
  :type,
  :status,
  :url,
  :metadata,
  :content_type,
  :message,
  :category)
  SENSITIVE = [:url]
  include Aws::Structure
end

#categoryString

The upload’s category. Allowed values include:

  • CURATED: An upload managed by AWS Device Farm.

  • PRIVATE: An upload managed by the AWS Device Farm customer.

Returns:

  • (String)


6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
# File 'lib/aws-sdk-devicefarm/types.rb', line 6591

class Upload < Struct.new(
  :arn,
  :name,
  :created,
  :type,
  :status,
  :url,
  :metadata,
  :content_type,
  :message,
  :category)
  SENSITIVE = [:url]
  include Aws::Structure
end

#content_typeString

The upload’s content type (for example, ‘application/octet-stream`).

Returns:

  • (String)


6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
# File 'lib/aws-sdk-devicefarm/types.rb', line 6591

class Upload < Struct.new(
  :arn,
  :name,
  :created,
  :type,
  :status,
  :url,
  :metadata,
  :content_type,
  :message,
  :category)
  SENSITIVE = [:url]
  include Aws::Structure
end

#createdTime

When the upload was created.

Returns:

  • (Time)


6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
# File 'lib/aws-sdk-devicefarm/types.rb', line 6591

class Upload < Struct.new(
  :arn,
  :name,
  :created,
  :type,
  :status,
  :url,
  :metadata,
  :content_type,
  :message,
  :category)
  SENSITIVE = [:url]
  include Aws::Structure
end

#messageString

A message about the upload’s result.

Returns:

  • (String)


6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
# File 'lib/aws-sdk-devicefarm/types.rb', line 6591

class Upload < Struct.new(
  :arn,
  :name,
  :created,
  :type,
  :status,
  :url,
  :metadata,
  :content_type,
  :message,
  :category)
  SENSITIVE = [:url]
  include Aws::Structure
end

#metadataString

The upload’s metadata. For example, for Android, this contains information that is parsed from the manifest and is displayed in the AWS Device Farm console after the associated app is uploaded.

Returns:

  • (String)


6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
# File 'lib/aws-sdk-devicefarm/types.rb', line 6591

class Upload < Struct.new(
  :arn,
  :name,
  :created,
  :type,
  :status,
  :url,
  :metadata,
  :content_type,
  :message,
  :category)
  SENSITIVE = [:url]
  include Aws::Structure
end

#nameString

The upload’s file name.

Returns:

  • (String)


6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
# File 'lib/aws-sdk-devicefarm/types.rb', line 6591

class Upload < Struct.new(
  :arn,
  :name,
  :created,
  :type,
  :status,
  :url,
  :metadata,
  :content_type,
  :message,
  :category)
  SENSITIVE = [:url]
  include Aws::Structure
end

#statusString

The upload’s status.

Must be one of the following values:

  • FAILED

  • INITIALIZED

  • PROCESSING

  • SUCCEEDED

Returns:

  • (String)


6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
# File 'lib/aws-sdk-devicefarm/types.rb', line 6591

class Upload < Struct.new(
  :arn,
  :name,
  :created,
  :type,
  :status,
  :url,
  :metadata,
  :content_type,
  :message,
  :category)
  SENSITIVE = [:url]
  include Aws::Structure
end

#typeString

The upload’s 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

Returns:

  • (String)


6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
# File 'lib/aws-sdk-devicefarm/types.rb', line 6591

class Upload < Struct.new(
  :arn,
  :name,
  :created,
  :type,
  :status,
  :url,
  :metadata,
  :content_type,
  :message,
  :category)
  SENSITIVE = [:url]
  include Aws::Structure
end

#urlString

The presigned Amazon S3 URL that was used to store a file using a PUT request.

Returns:

  • (String)


6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
# File 'lib/aws-sdk-devicefarm/types.rb', line 6591

class Upload < Struct.new(
  :arn,
  :name,
  :created,
  :type,
  :status,
  :url,
  :metadata,
  :content_type,
  :message,
  :category)
  SENSITIVE = [:url]
  include Aws::Structure
end