Class: Google::Apis::ComputeAlpha::RegionSetPolicyRequest
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::RegionSetPolicyRequest
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#bindings ⇒ Array<Google::Apis::ComputeAlpha::Binding>
Flatten Policy to create a backwacd compatible wire-format.
-
#etag ⇒ String
Flatten Policy to create a backward compatible wire-format.
-
#policy ⇒ Google::Apis::ComputeAlpha::Policy
Defines an Identity and Access Management (IAM) policy.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RegionSetPolicyRequest
constructor
A new instance of RegionSetPolicyRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ RegionSetPolicyRequest
Returns a new instance of RegionSetPolicyRequest
22333 22334 22335 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22333 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bindings ⇒ Array<Google::Apis::ComputeAlpha::Binding>
Flatten Policy to create a backwacd compatible wire-format. Deprecated. Use '
policy' to specify bindings.
Corresponds to the JSON property bindings
22303 22304 22305 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22303 def bindings @bindings end |
#etag ⇒ String
Flatten Policy to create a backward compatible wire-format. Deprecated. Use '
policy' to specify the etag.
Corresponds to the JSON property etag
NOTE: Values are automatically base64 encoded/decoded in the client library.
22310 22311 22312 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22310 def etag @etag end |
#policy ⇒ Google::Apis::ComputeAlpha::Policy
Defines an Identity and Access Management (IAM) policy. It is used to specify
access control policies for Cloud Platform resources.
A Policy
consists of a list of bindings
. A binding
binds a list of
members
to a role
, where the members can be user accounts, Google groups,
Google domains, and service accounts. A role
is a named list of permissions
defined by IAM.
JSON Example
"bindings": [
"role": "roles/owner", "members": [ "user:mike@example.com",
"group:admins@example.com", "domain:google.com", "serviceAccount:my-other-app@
appspot.gserviceaccount.com" ] ,
"role": "roles/viewer", "members": ["user:
sean@example.com"] ]
YAML Example
bindings: - members: - user:mike@example.com - group:admins@example.com -
domain:google.com - serviceAccount:my-other-app@appspot.gserviceaccount.com
role: roles/owner - members: - user:sean@example.com role: roles/viewer
For a description of IAM and its features, see the IAM developer's guide.
Corresponds to the JSON property policy
22331 22332 22333 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22331 def policy @policy end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22338 22339 22340 22341 22342 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22338 def update!(**args) @bindings = args[:bindings] if args.key?(:bindings) @etag = args[:etag] if args.key?(:etag) @policy = args[:policy] if args.key?(:policy) end |