Show / Hide Table of Contents

Class ProjectsResource.RegionsResource.WorkflowTemplatesResource.ListRequest

Lists workflows that match the specified filter in the request.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListWorkflowTemplatesResponse>
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>
ProjectsResource.RegionsResource.WorkflowTemplatesResource.ListRequest
Implements
IClientServiceRequest<ListWorkflowTemplatesResponse>
IClientServiceRequest
Inherited Members
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>.Xgafv
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>.AccessToken
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>.Alt
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>.Callback
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>.Fields
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>.Key
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>.OauthToken
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>.PrettyPrint
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>.QuotaUser
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>.UploadType
DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>.UploadProtocol
ClientServiceRequest<ListWorkflowTemplatesResponse>.Execute()
ClientServiceRequest<ListWorkflowTemplatesResponse>.ExecuteAsStream()
ClientServiceRequest<ListWorkflowTemplatesResponse>.ExecuteAsync()
ClientServiceRequest<ListWorkflowTemplatesResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListWorkflowTemplatesResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListWorkflowTemplatesResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListWorkflowTemplatesResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListWorkflowTemplatesResponse>.GenerateRequestUri()
ClientServiceRequest<ListWorkflowTemplatesResponse>.GetBody()
ClientServiceRequest<ListWorkflowTemplatesResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListWorkflowTemplatesResponse>.ETagAction
ClientServiceRequest<ListWorkflowTemplatesResponse>.ModifyRequest
ClientServiceRequest<ListWorkflowTemplatesResponse>.RequestParameters
ClientServiceRequest<ListWorkflowTemplatesResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
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.Dataproc.v1
Assembly: Google.Apis.Dataproc.v1.dll
Syntax
public class ListRequest : DataprocBaseServiceRequest<ListWorkflowTemplatesResponse>, IClientServiceRequest<ListWorkflowTemplatesResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type Name Description
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.Dataproc.v1.Data.ListWorkflowTemplatesResponse>.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.Dataproc.v1.Data.ListWorkflowTemplatesResponse>.MethodName

PageSize

Optional. The maximum number of results to return in each response.

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

PageToken

Optional. The page token, returned by a previous call, to request the next page of results.

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

Parent

Required. The resource name of the region or location, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.workflowTemplates,list, the resource name of the region has the following format: projects/{project_id}/regions/{region} For projects.locations.workflowTemplates.list, the resource name of the location has the following format: projects/{project_id}/locations/{location}

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.Dataproc.v1.Data.ListWorkflowTemplatesResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Dataproc.v1.DataprocBaseServiceRequest<Google.Apis.Dataproc.v1.Data.ListWorkflowTemplatesResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top