Class: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1MethodSelector
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1MethodSelector
- 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
-
#method_prop ⇒ String
A valid method name for the corresponding
service_namein ApiOperation. -
#permission ⇒ String
A valid Cloud IAM permission for the corresponding
service_namein ApiOperation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleIdentityAccesscontextmanagerV1MethodSelector
constructor
A new instance of GoogleIdentityAccesscontextmanagerV1MethodSelector.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleIdentityAccesscontextmanagerV1MethodSelector
Returns a new instance of GoogleIdentityAccesscontextmanagerV1MethodSelector.
1778 1779 1780 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1778 def initialize(**args) update!(**args) end |
Instance Attribute Details
#method_prop ⇒ String
A valid method name for the corresponding service_name in ApiOperation. If *
is used as the value for the method, then ALL methods and permissions are
allowed.
Corresponds to the JSON property method
1770 1771 1772 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1770 def method_prop @method_prop end |
#permission ⇒ String
A valid Cloud IAM permission for the corresponding service_name in
ApiOperation.
Corresponds to the JSON property permission
1776 1777 1778 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1776 def @permission end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1783 1784 1785 1786 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1783 def update!(**args) @method_prop = args[:method_prop] if args.key?(:method_prop) @permission = args[:permission] if args.key?(:permission) end |