Class: Aws::ECR::Types::BatchCheckLayerAvailabilityRequest

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

Overview

Note:

When making an API call, you may pass BatchCheckLayerAvailabilityRequest data as a hash:

{
  registry_id: "RegistryId",
  repository_name: "RepositoryName", # required
  layer_digests: ["BatchedOperationLayerDigest"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#layer_digestsArray<String>

The digests of the image layers to check.

Returns:

  • (Array<String>)


67
68
69
70
71
72
# File 'lib/aws-sdk-ecr/types.rb', line 67

class BatchCheckLayerAvailabilityRequest < Struct.new(
  :registry_id,
  :repository_name,
  :layer_digests)
  include Aws::Structure
end

#registry_idString

The AWS account ID associated with the registry that contains the image layers to check. If you do not specify a registry, the default registry is assumed.

Returns:

  • (String)


67
68
69
70
71
72
# File 'lib/aws-sdk-ecr/types.rb', line 67

class BatchCheckLayerAvailabilityRequest < Struct.new(
  :registry_id,
  :repository_name,
  :layer_digests)
  include Aws::Structure
end

#repository_nameString

The name of the repository that is associated with the image layers to check.

Returns:

  • (String)


67
68
69
70
71
72
# File 'lib/aws-sdk-ecr/types.rb', line 67

class BatchCheckLayerAvailabilityRequest < Struct.new(
  :registry_id,
  :repository_name,
  :layer_digests)
  include Aws::Structure
end