Show / Hide Table of Contents

Class ProjectsResource.RegionsResource.WorkflowTemplatesResource.GetRequest

Retrieves the latest workflow template.Can retrieve previously instantiated template by specifying optional version parameter.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<WorkflowTemplate>
DataprocBaseServiceRequest<WorkflowTemplate>
ProjectsResource.RegionsResource.WorkflowTemplatesResource.GetRequest
Implements
IClientServiceRequest<WorkflowTemplate>
IClientServiceRequest
Inherited Members
DataprocBaseServiceRequest<WorkflowTemplate>.Xgafv
DataprocBaseServiceRequest<WorkflowTemplate>.AccessToken
DataprocBaseServiceRequest<WorkflowTemplate>.Alt
DataprocBaseServiceRequest<WorkflowTemplate>.Callback
DataprocBaseServiceRequest<WorkflowTemplate>.Fields
DataprocBaseServiceRequest<WorkflowTemplate>.Key
DataprocBaseServiceRequest<WorkflowTemplate>.OauthToken
DataprocBaseServiceRequest<WorkflowTemplate>.PrettyPrint
DataprocBaseServiceRequest<WorkflowTemplate>.QuotaUser
DataprocBaseServiceRequest<WorkflowTemplate>.UploadType
DataprocBaseServiceRequest<WorkflowTemplate>.UploadProtocol
ClientServiceRequest<WorkflowTemplate>.Execute()
ClientServiceRequest<WorkflowTemplate>.ExecuteAsStream()
ClientServiceRequest<WorkflowTemplate>.ExecuteAsync()
ClientServiceRequest<WorkflowTemplate>.ExecuteAsync(CancellationToken)
ClientServiceRequest<WorkflowTemplate>.ExecuteAsStreamAsync()
ClientServiceRequest<WorkflowTemplate>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<WorkflowTemplate>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<WorkflowTemplate>.GenerateRequestUri()
ClientServiceRequest<WorkflowTemplate>.GetBody()
ClientServiceRequest<WorkflowTemplate>.GetDefaultETagAction(String)
ClientServiceRequest<WorkflowTemplate>.ETagAction
ClientServiceRequest<WorkflowTemplate>.ModifyRequest
ClientServiceRequest<WorkflowTemplate>.RequestParameters
ClientServiceRequest<WorkflowTemplate>.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 GetRequest : DataprocBaseServiceRequest<WorkflowTemplate>, IClientServiceRequest<WorkflowTemplate>, IClientServiceRequest

Constructors

GetRequest(IClientService, String)

Constructs a new Get request.

Declaration
public GetRequest(IClientService service, string name)
Parameters
Type Name Description
IClientService service
System.String name

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.WorkflowTemplate>.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.WorkflowTemplate>.MethodName

Name

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

Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { 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.WorkflowTemplate>.RestPath

Version

Optional. The version of workflow template to retrieve. Only previously instantiated versions can be retrieved.If unspecified, retrieves the current version.

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

Methods

InitParameters()

Initializes Get parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top