Show / Hide Table of Contents

Class PolicyBinding

Grouping of IAM role and IAM member.

Inheritance
System.Object
PolicyBinding
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ServiceNetworking.v1beta.Data
Assembly: Google.Apis.ServiceNetworking.v1beta.dll
Syntax
public class PolicyBinding : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Member

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

Declaration
[JsonProperty("member")]
public virtual string Member { get; set; }
Property Value
Type Description
System.String

Role

Required. Role to apply. Only whitelisted 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

Declaration
[JsonProperty("role")]
public virtual string Role { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top