Class: Google::Apis::IamV1::BindingDelta
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::BindingDelta
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/iam_v1/classes.rb,
lib/google/apis/iam_v1/representations.rb,
lib/google/apis/iam_v1/representations.rb
Overview
One delta entry for Binding. Each individual change (only one member in each entry) to a binding will be a separate entry.
Instance Attribute Summary collapse
-
#action ⇒ String
The action that was performed on a Binding.
-
#condition ⇒ Google::Apis::IamV1::Expr
Represents a textual expression in the Common Expression Language (CEL) syntax.
-
#member ⇒ String
A single identity requesting access for a Google Cloud resource.
-
#role ⇒ String
Role that is assigned to
members
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BindingDelta
constructor
A new instance of BindingDelta.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BindingDelta
Returns a new instance of BindingDelta.
294 295 296 |
# File 'lib/google/apis/iam_v1/classes.rb', line 294 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
The action that was performed on a Binding. Required
Corresponds to the JSON property action
261 262 263 |
# File 'lib/google/apis/iam_v1/classes.rb', line 261 def action @action end |
#condition ⇒ Google::Apis::IamV1::Expr
Represents a textual expression in the Common Expression Language (CEL) syntax.
CEL is a C-like expression language. The syntax and semantics of CEL are
documented at https://github.com/google/cel-spec. Example (Comparison): title:
"Summary size limit" description: "Determines if a summary is less than 100
chars" expression: "document.summary.size() < 100" Example (Equality): title: "
Requestor is owner" description: "Determines if requestor is the document
owner" expression: "document.owner == request.auth.claims.email" Example (
Logic): title: "Public documents" description: "Determine whether the document
should be publicly visible" expression: "document.type != 'private' &&
document.type != 'internal'" Example (Data Manipulation): title: "Notification
string" description: "Create a notification string with a timestamp."
expression: "'New message received at ' + string(document.create_time)" The
exact variables and functions that may be referenced within an expression are
determined by the service that evaluates it. See the service documentation for
additional information.
Corresponds to the JSON property condition
280 281 282 |
# File 'lib/google/apis/iam_v1/classes.rb', line 280 def condition @condition end |
#member ⇒ String
A single identity requesting access for a Google Cloud resource. Follows the
same format of Binding.members. Required
Corresponds to the JSON property member
286 287 288 |
# File 'lib/google/apis/iam_v1/classes.rb', line 286 def member @member end |
#role ⇒ String
Role that is assigned to members
. For example, roles/viewer
, roles/editor
, or roles/owner
. Required
Corresponds to the JSON property role
292 293 294 |
# File 'lib/google/apis/iam_v1/classes.rb', line 292 def role @role end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
299 300 301 302 303 304 |
# File 'lib/google/apis/iam_v1/classes.rb', line 299 def update!(**args) @action = args[:action] if args.key?(:action) @condition = args[:condition] if args.key?(:condition) @member = args[:member] if args.key?(:member) @role = args[:role] if args.key?(:role) end |