Class: Google::Iam::V1::BindingDelta
- Inherits:
-
Object
- Object
- Google::Iam::V1::BindingDelta
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/iam/v1/policy.rb
Overview
One delta entry for Binding. Each individual change (only one member in each entry) to a binding will be a separate entry.
Defined Under Namespace
Modules: Action
Instance Attribute Summary collapse
-
#action ⇒ ::Google::Iam::V1::BindingDelta::Action
The action that was performed on a Binding.
-
#condition ⇒ ::Google::Type::Expr
The condition that is associated with this binding.
-
#member ⇒ ::String
A single identity requesting access for a Google Cloud resource.
-
#role ⇒ ::String
Role that is assigned to
members
.
Instance Attribute Details
#action ⇒ ::Google::Iam::V1::BindingDelta::Action
Returns The action that was performed on a Binding. Required.
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'proto_docs/google/iam/v1/policy.rb', line 369 class BindingDelta include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The type of action performed on a Binding in a policy. module Action # Unspecified. ACTION_UNSPECIFIED = 0 # Addition of a Binding. ADD = 1 # Removal of a Binding. REMOVE = 2 end end |
#condition ⇒ ::Google::Type::Expr
Returns The condition that is associated with this binding.
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'proto_docs/google/iam/v1/policy.rb', line 369 class BindingDelta include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The type of action performed on a Binding in a policy. module Action # Unspecified. ACTION_UNSPECIFIED = 0 # Addition of a Binding. ADD = 1 # Removal of a Binding. REMOVE = 2 end end |
#member ⇒ ::String
Returns A single identity requesting access for a Google Cloud resource. Follows the same format of Binding.members. Required.
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'proto_docs/google/iam/v1/policy.rb', line 369 class BindingDelta include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The type of action performed on a Binding in a policy. module Action # Unspecified. ACTION_UNSPECIFIED = 0 # Addition of a Binding. ADD = 1 # Removal of a Binding. REMOVE = 2 end end |
#role ⇒ ::String
Returns Role that is assigned to members
.
For example, roles/viewer
, roles/editor
, or roles/owner
.
Required.
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'proto_docs/google/iam/v1/policy.rb', line 369 class BindingDelta include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The type of action performed on a Binding in a policy. module Action # Unspecified. ACTION_UNSPECIFIED = 0 # Addition of a Binding. ADD = 1 # Removal of a Binding. REMOVE = 2 end end |