Class: Google::Apis::AppengineV1beta5::ContainerInfo

Inherits:
Object
  • Object
show all
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 create a container and start a VM instance for the version that you deploy. Only applicable for instances running in the App Engine flexible environment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ContainerInfo

Returns a new instance of ContainerInfo.



310
311
312
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 310

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

Instance Attribute Details

#imageString

URI to the hosted container image in Google Container Registry. 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

Returns:

  • (String)


308
309
310
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 308

def image
  @image
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



315
316
317
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 315

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