Class: Google::Apis::NotebooksV1::ContainerImage
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::ContainerImage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb more...
Overview
Definition of a container image for starting a notebook instance with the environment installed in a container.
Instance Attribute Summary collapse
-
#repository ⇒ String
Required.
-
#tag ⇒ String
The tag of the container image.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ContainerImage
constructor
A new instance of ContainerImage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ContainerImage
Returns a new instance of ContainerImage.
198 199 200 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 198 def initialize(**args) update!(**args) end |
Instance Attribute Details
#repository ⇒ String
Required. The path to the container image repository. For example: gcr.io/
project_id/
image_name`
Corresponds to the JSON property
repository`
190 191 192 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 190 def repository @repository end |
#tag ⇒ String
The tag of the container image. If not specified, this defaults to the latest
tag.
Corresponds to the JSON property tag
196 197 198 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 196 def tag @tag end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
203 204 205 206 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 203 def update!(**args) @repository = args[:repository] if args.key?(:repository) @tag = args[:tag] if args.key?(:tag) end |