Show / Hide Table of Contents

Class ListOrgPoliciesResponse

The response returned from the ListOrgPolicies method. It will be empty if no Policies are set on the resource.

Inheritance
System.Object
ListOrgPoliciesResponse
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.CloudResourceManager.v1.Data
Assembly: Google.Apis.CloudResourceManager.v1.dll
Syntax
public class ListOrgPoliciesResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

NextPageToken

Page token used to retrieve the next page. This is currently not used, but the server may at any point start supplying a valid token.

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

Policies

The Policies that are set on the resource. It will be empty if no Policies are set.

Declaration
[JsonProperty("policies")]
public virtual IList<OrgPolicy> Policies { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<OrgPolicy>

Implements

IDirectResponseSchema
In This Article
Back to top