Class: Google::Apis::DeploymentmanagerAlpha::MethodMap

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/deploymentmanager_alpha/classes.rb,
lib/google/apis/deploymentmanager_alpha/representations.rb,
lib/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MethodMap

Returns a new instance of MethodMap.



1233
1234
1235
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1233

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

Instance Attribute Details

#createString

The action identifier for the create method to be used for this collection Corresponds to the JSON property create

Returns:

  • (String)


1210
1211
1212
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1210

def create
  @create
end

#deleteString

The action identifier for the delete method to be used for this collection Corresponds to the JSON property delete

Returns:

  • (String)


1215
1216
1217
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1215

def delete
  @delete
end

#getString

The action identifier for the get method to be used for this collection Corresponds to the JSON property get

Returns:

  • (String)


1220
1221
1222
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1220

def get
  @get
end

#set_iam_policyString

The action identifier for the setIamPolicy method to be used for this collection Corresponds to the JSON property setIamPolicy

Returns:

  • (String)


1226
1227
1228
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1226

def set_iam_policy
  @set_iam_policy
end

#updateString

The action identifier for the update method to be used for this collection Corresponds to the JSON property update

Returns:

  • (String)


1231
1232
1233
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1231

def update
  @update
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1238
1239
1240
1241
1242
1243
1244
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1238

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