Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ContainerRegistryDestination

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

The Container Registry location for the container image.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ContainerRegistryDestination

Returns a new instance of GoogleCloudAiplatformV1ContainerRegistryDestination.



3440
3441
3442
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 3440

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#output_uriString

Required. Container Registry URI of a container image. Only Google Container Registry and Artifact Registry are supported now. Accepted forms: * Google Container Registry path. For example: gcr.io/projectId/imageName:tag. * Artifact Registry path. For example: us-central1-docker.pkg.dev/projectId/ repoName/imageName:tag. If a tag is not specified, "latest" will be used as the default tag. Corresponds to the JSON property outputUri

Returns:

  • (String)


3438
3439
3440
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 3438

def output_uri
  @output_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3445
3446
3447
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 3445

def update!(**args)
  @output_uri = args[:output_uri] if args.key?(:output_uri)
end