Class: Google::Apis::AppengineV1::Deployment
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AppengineV1::Deployment
 
- 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
Code and application artifacts used to deploy a version to App Engine.
Instance Attribute Summary collapse
- 
  
    
      #cloud_build_options  ⇒ Google::Apis::AppengineV1::CloudBuildOptions 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Options for the build operations performed as a part of the version deployment. 
- 
  
    
      #container  ⇒ Google::Apis::AppengineV1::ContainerInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Docker image that is used to create a container and start a VM instance for the version that you deploy. 
- 
  
    
      #files  ⇒ Hash<String,Google::Apis::AppengineV1::FileInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Manifest of the files stored in Google Cloud Storage that are included as part of this version. 
- 
  
    
      #zip  ⇒ Google::Apis::AppengineV1::ZipInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The zip file information for a zip deployment. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Deployment 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Deployment. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Deployment
Returns a new instance of Deployment
| 695 696 697 | # File 'generated/google/apis/appengine_v1/classes.rb', line 695 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#cloud_build_options ⇒ Google::Apis::AppengineV1::CloudBuildOptions
Options for the build operations performed as a part of the version deployment.
Only applicable for App Engine flexible environment when creating a version
using source code directly.
Corresponds to the JSON property cloudBuildOptions
| 674 675 676 | # File 'generated/google/apis/appengine_v1/classes.rb', line 674 def @cloud_build_options end | 
#container ⇒ Google::Apis::AppengineV1::ContainerInfo
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.
Corresponds to the JSON property container
| 681 682 683 | # File 'generated/google/apis/appengine_v1/classes.rb', line 681 def container @container end | 
#files ⇒ Hash<String,Google::Apis::AppengineV1::FileInfo>
Manifest of the files stored in Google Cloud Storage that are included as part
of this version. All files must be readable using the credentials supplied
with this call.
Corresponds to the JSON property files
| 688 689 690 | # File 'generated/google/apis/appengine_v1/classes.rb', line 688 def files @files end | 
#zip ⇒ Google::Apis::AppengineV1::ZipInfo
The zip file information for a zip deployment.
Corresponds to the JSON property zip
| 693 694 695 | # File 'generated/google/apis/appengine_v1/classes.rb', line 693 def zip @zip end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 700 701 702 703 704 705 | # File 'generated/google/apis/appengine_v1/classes.rb', line 700 def update!(**args) @cloud_build_options = args[:cloud_build_options] if args.key?(:cloud_build_options) @container = args[:container] if args.key?(:container) @files = args[:files] if args.key?(:files) @zip = args[:zip] if args.key?(:zip) end |