Class: Google::Apis::AppengineV1beta4::ContainerInfo
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta4::ContainerInfo
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/appengine_v1beta4/classes.rb,
generated/google/apis/appengine_v1beta4/representations.rb,
generated/google/apis/appengine_v1beta4/representations.rb
Overview
A Docker (container) image which should be used to start the application.
Instance Attribute Summary collapse
-
#image ⇒ String
Reference to a hosted container image.
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::Hashable
Constructor Details
#initialize(**args) ⇒ ContainerInfo
Returns a new instance of ContainerInfo
1144 1145 1146 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1144 def initialize(**args) update!(**args) end |
Instance Attribute Details
#image ⇒ String
Reference to a hosted container image. Must be a URI to a resource in a Docker
repository. Must be fully qualified, including tag or digest. e.g. gcr.io/my-
project/image:tag or gcr.io/my-project/image@digest
Corresponds to the JSON property image
1142 1143 1144 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1142 def image @image end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1149 1150 1151 |
# File 'generated/google/apis/appengine_v1beta4/classes.rb', line 1149 def update!(**args) @image = args[:image] if args.key?(:image) end |