Show / Hide Table of Contents

Class ResourcesListResponse

A response containing a partial list of resources and a page token used to build the next request if the request has been truncated.

Inheritance
System.Object
ResourcesListResponse
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.DeploymentManagerAlpha.alpha.Data
Assembly: Google.Apis.DeploymentManagerAlpha.alpha.dll
Syntax
public class ResourcesListResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

NextPageToken

A token used to continue a truncated list request.

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

Resources

Resources contained in this list response.

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

Implements

IDirectResponseSchema
Back to top