Class: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1MethodSelector

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudasset_v1p7beta1/classes.rb,
lib/google/apis/cloudasset_v1p7beta1/representations.rb,
lib/google/apis/cloudasset_v1p7beta1/representations.rb

Overview

An allowed method or permission of a service specified in ApiOperation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleIdentityAccesscontextmanagerV1MethodSelector

Returns a new instance of GoogleIdentityAccesscontextmanagerV1MethodSelector.



1706
1707
1708
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1706

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

Instance Attribute Details

#method_propString

Value for method should be a valid method name for the corresponding service_name in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed. Corresponds to the JSON property method

Returns:

  • (String)


1698
1699
1700
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1698

def method_prop
  @method_prop
end

#permissionString

Value for permission should be a valid Cloud IAM permission for the corresponding service_name in ApiOperation. Corresponds to the JSON property permission

Returns:

  • (String)


1704
1705
1706
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1704

def permission
  @permission
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1711
1712
1713
1714
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1711

def update!(**args)
  @method_prop = args[:method_prop] if args.key?(:method_prop)
  @permission = args[:permission] if args.key?(:permission)
end