Class: Google::Apis::AppengineV1beta5::ContainerInfo
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta5::ContainerInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1beta5/classes.rb,
generated/google/apis/appengine_v1beta5/representations.rb,
generated/google/apis/appengine_v1beta5/representations.rb
Overview
Docker image that is used to start a VM container for the version you deploy.
Instance Attribute Summary collapse
-
#image ⇒ String
URI to the hosted container image in a Docker repository.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ContainerInfo
constructor
A new instance of ContainerInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ContainerInfo
Returns a new instance of ContainerInfo
1331 1332 1333 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1331 def initialize(**args) update!(**args) end |
Instance Attribute Details
#image ⇒ String
URI to the hosted container image in a Docker repository. The URI must be
fully qualified and include a tag or digest. Examples: "gcr.io/my-project/
image:tag" or "gcr.io/my-project/image@digest"
Corresponds to the JSON property image
1329 1330 1331 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1329 def image @image end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1336 1337 1338 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1336 def update!(**args) @image = args[:image] if args.key?(:image) end |