Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ContainerRegistryDestination
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ContainerRegistryDestination
- 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
-
#output_uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1ContainerRegistryDestination
constructor
A new instance of GoogleCloudAiplatformV1ContainerRegistryDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1ContainerRegistryDestination
Returns a new instance of GoogleCloudAiplatformV1ContainerRegistryDestination.
2994 2995 2996 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 2994 def initialize(**args) update!(**args) end |
Instance Attribute Details
#output_uri ⇒ String
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
2992 2993 2994 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 2992 def output_uri @output_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2999 3000 3001 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 2999 def update!(**args) @output_uri = args[:output_uri] if args.key?(:output_uri) end |