Class: Google::Apis::DeploymentmanagerAlpha::DeploymentUpdate
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DeploymentmanagerAlpha::DeploymentUpdate
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/deploymentmanager_alpha/classes.rb,
 generated/google/apis/deploymentmanager_alpha/representations.rb,
 generated/google/apis/deploymentmanager_alpha/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #credential  ⇒ Google::Apis::DeploymentmanagerAlpha::Credential 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The credential used by Deployment Manager and TypeProvider. 
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #labels  ⇒ Array<Google::Apis::DeploymentmanagerAlpha::DeploymentUpdateLabelEntry> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #manifest  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DeploymentUpdate 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DeploymentUpdate. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DeploymentUpdate
Returns a new instance of DeploymentUpdate
| 718 719 720 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 718 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#credential ⇒ Google::Apis::DeploymentmanagerAlpha::Credential
The credential used by Deployment Manager and TypeProvider. Only one of the
options is permitted.
Corresponds to the JSON property credential
| 695 696 697 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 695 def credential @credential end | 
#description ⇒ String
Output only. An optional user-provided description of the deployment after the
current update has been applied.
Corresponds to the JSON property description
| 701 702 703 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 701 def description @description end | 
#labels ⇒ Array<Google::Apis::DeploymentmanagerAlpha::DeploymentUpdateLabelEntry>
Output only. Map of labels; provided by the client when the resource is
created or updated. Specifically: Label keys must be between 1 and 63
characters long and must conform to the following regular expression: a-z? Label values must be between 0 and 63 characters long and
must conform to the regular expression (a-z?)?
Corresponds to the JSON property labels
| 710 711 712 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 710 def labels @labels end | 
#manifest ⇒ String
Output only. URL of the manifest representing the update configuration of this
deployment.
Corresponds to the JSON property manifest
| 716 717 718 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 716 def manifest @manifest end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 723 724 725 726 727 728 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 723 def update!(**args) @credential = args[:credential] if args.key?(:credential) @description = args[:description] if args.key?(:description) @labels = args[:labels] if args.key?(:labels) @manifest = args[:manifest] if args.key?(:manifest) end |