Show / Hide Table of Contents

Class ListPatchDeploymentsResponse

A response message for listing patch deployments.

Inheritance
System.Object
ListPatchDeploymentsResponse
Implements
Google.Apis.Requests.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.OSConfig.v1beta.Data
Assembly: Google.Apis.OSConfig.v1beta.dll
Syntax
public class ListPatchDeploymentsResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

NextPageToken

A pagination token that can be used to get the next page of patch deployments.

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

PatchDeployments

The list of patch deployments.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top