Class: Google::Apis::AppengineV1::ContainerInfo
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AppengineV1::ContainerInfo
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1/classes.rb,
 generated/google/apis/appengine_v1/representations.rb,
 generated/google/apis/appengine_v1/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
- 
  
    
      #image  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    URI to the hosted container image in Google Container Registry. 
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
| 544 545 546 | # File 'generated/google/apis/appengine_v1/classes.rb', line 544 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#image ⇒ String
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
| 542 543 544 | # File 'generated/google/apis/appengine_v1/classes.rb', line 542 def image @image end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 549 550 551 | # File 'generated/google/apis/appengine_v1/classes.rb', line 549 def update!(**args) @image = args[:image] if args.key?(:image) end |