Show / Hide Table of Contents

Class ProjectsResource.PatchDeploymentsResource.ListRequest

Get a page of OS Config patch deployments.

Inheritance
System.Object
Google.Apis.Requests.ClientServiceRequest
Google.Apis.Requests.ClientServiceRequest<ListPatchDeploymentsResponse>
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>
ProjectsResource.PatchDeploymentsResource.ListRequest
Implements
Google.Apis.Requests.IClientServiceRequest<ListPatchDeploymentsResponse>
Google.Apis.Requests.IClientServiceRequest
Inherited Members
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>.Xgafv
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>.AccessToken
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>.Alt
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>.Callback
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>.Fields
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>.Key
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>.OauthToken
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>.PrettyPrint
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>.QuotaUser
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>.UploadType
OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>.UploadProtocol
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.Execute()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.ExecuteAsStream()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.ExecuteAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.ExecuteAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.ExecuteAsStreamAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.ExecuteAsStreamAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.CreateRequest(System.Nullable<System.Boolean>)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.GenerateRequestUri()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.GetBody()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.GetDefaultETagAction(System.String)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.ETagAction
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.ModifyRequest
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.ValidateParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.RequestParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.Service
Google.Apis.Requests.ClientServiceRequest._unsuccessfulResponseHandlers
Google.Apis.Requests.ClientServiceRequest._exceptionHandlers
Google.Apis.Requests.ClientServiceRequest._executeInterceptors
Google.Apis.Requests.ClientServiceRequest.AddUnsuccessfulResponseHandler(Google.Apis.Http.IHttpUnsuccessfulResponseHandler)
Google.Apis.Requests.ClientServiceRequest.AddExceptionHandler(Google.Apis.Http.IHttpExceptionHandler)
Google.Apis.Requests.ClientServiceRequest.AddExecuteInterceptor(Google.Apis.Http.IHttpExecuteInterceptor)
Google.Apis.Requests.ClientServiceRequest.Credential
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
Assembly: Google.Apis.OSConfig.v1beta.dll
Syntax
public class ListRequest : OSConfigBaseServiceRequest<ListPatchDeploymentsResponse>, IClientServiceRequest<ListPatchDeploymentsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type Name Description
Google.Apis.Services.IClientService service
System.String parent

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.MethodName

PageSize

Optional. The maximum number of patch deployments to return. Default is 100.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

Optional. A pagination token returned from a previous call to ListPatchDeployments that indicates where this listing should continue from.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

Parent

Required. The resource name of the parent in the form projects/*.

Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.OSConfig.v1beta.OSConfigBaseServiceRequest<Google.Apis.OSConfig.v1beta.Data.ListPatchDeploymentsResponse>.InitParameters()

Implements

Google.Apis.Requests.IClientServiceRequest<TResponse>
Google.Apis.Requests.IClientServiceRequest
In This Article
Back to top