Class: Google::Apis::DeploymentmanagerAlpha::MethodMap
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DeploymentmanagerAlpha::MethodMap
 
- 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
Overview
Deployment Manager will call these methods during the events of creation/ deletion/update/get/setIamPolicy
Instance Attribute Summary collapse
- 
  
    
      #create  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The action identifier for the create method to be used for this collection Corresponds to the JSON property create.
- 
  
    
      #delete  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The action identifier for the delete method to be used for this collection Corresponds to the JSON property delete.
- 
  
    
      #get  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The action identifier for the get method to be used for this collection Corresponds to the JSON property get.
- 
  
    
      #set_iam_policy  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The action identifier for the setIamPolicy method to be used for this collection Corresponds to the JSON property setIamPolicy.
- 
  
    
      #update  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The action identifier for the update method to be used for this collection Corresponds to the JSON property update.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MethodMap 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of MethodMap. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MethodMap
Returns a new instance of MethodMap
| 1270 1271 1272 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1270 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#create ⇒ String
The action identifier for the create method to be used for this collection
Corresponds to the JSON property create
| 1247 1248 1249 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1247 def create @create end | 
#delete ⇒ String
The action identifier for the delete method to be used for this collection
Corresponds to the JSON property delete
| 1252 1253 1254 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1252 def delete @delete end | 
#get ⇒ String
The action identifier for the get method to be used for this collection
Corresponds to the JSON property get
| 1257 1258 1259 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1257 def get @get end | 
#set_iam_policy ⇒ String
The action identifier for the setIamPolicy method to be used for this
collection
Corresponds to the JSON property setIamPolicy
| 1263 1264 1265 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1263 def set_iam_policy @set_iam_policy end | 
#update ⇒ String
The action identifier for the update method to be used for this collection
Corresponds to the JSON property update
| 1268 1269 1270 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1268 def update @update end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1275 1276 1277 1278 1279 1280 1281 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1275 def update!(**args) @create = args[:create] if args.key?(:create) @delete = args[:delete] if args.key?(:delete) @get = args[:get] if args.key?(:get) @set_iam_policy = args[:set_iam_policy] if args.key?(:set_iam_policy) @update = args[:update] if args.key?(:update) end |