Show / Hide Table of Contents

Class RowAccessPolicyReference

Inheritance
System.Object
RowAccessPolicyReference
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.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class RowAccessPolicyReference : IDirectResponseSchema

Properties

DatasetId

[Required] The ID of the dataset containing this row access policy.

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

ETag

The ETag of the item.

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

PolicyId

[Required] The ID of the row access policy. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 256 characters.

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

ProjectId

[Required] The ID of the project containing this row access policy.

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

TableId

[Required] The ID of the table containing this row access policy.

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

Implements

IDirectResponseSchema
In This Article
Back to top