Class: Google::Apis::ServicenetworkingV1beta::PolicyBinding

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

Overview

Grouping of IAM role and IAM member.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PolicyBinding

Returns a new instance of PolicyBinding.

[View source]

3228
3229
3230
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 3228

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

Instance Attribute Details

#memberString

Required. Member to bind the role with. See /iam/docs/reference/rest/v1/Policy# Binding for how to format each member. Eg. - user:myuser@mydomain.com - serviceAccount:my-service-account@app.gserviceaccount.com Corresponds to the JSON property member

Returns:

  • (String)

3214
3215
3216
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 3214

def member
  @member
end

#roleString

Required. Role to apply. Only allowlisted roles can be used at the specified granularity. The role must be one of the following: - 'roles/container. hostServiceAgentUser' applied on the shared VPC host project - 'roles/compute. securityAdmin' applied on the shared VPC host project - 'roles/compute. networkAdmin' applied on the shared VPC host project - 'roles/compute.xpnAdmin' applied on the shared VPC host project - 'roles/dns.admin' applied on the shared VPC host project - 'roles/logging.admin' applied on the shared VPC host project Corresponds to the JSON property role

Returns:

  • (String)

3226
3227
3228
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 3226

def role
  @role
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

3233
3234
3235
3236
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 3233

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