pub struct ProjectMethods<'a, S>
where S: 'a,
{ /* private fields */ }
Expand description

A builder providing access to all methods supported on project resources. It is not used directly, but through the Dataproc hub.

§Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate google_dataproc1 as dataproc1;
 
use std::default::Default;
use dataproc1::{Dataproc, oauth2, hyper, hyper_rustls, chrono, FieldMask};
 
let secret: oauth2::ApplicationSecret = Default::default();
let auth = oauth2::InstalledFlowAuthenticator::builder(
        secret,
        oauth2::InstalledFlowReturnMethod::HTTPRedirect,
    ).build().await.unwrap();
let mut hub = Dataproc::new(hyper::Client::builder().build(hyper_rustls::HttpsConnectorBuilder::new().with_native_roots().https_or_http().enable_http1().build()), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `locations_autoscaling_policies_create(...)`, `locations_autoscaling_policies_delete(...)`, `locations_autoscaling_policies_get(...)`, `locations_autoscaling_policies_get_iam_policy(...)`, `locations_autoscaling_policies_list(...)`, `locations_autoscaling_policies_set_iam_policy(...)`, `locations_autoscaling_policies_test_iam_permissions(...)`, `locations_autoscaling_policies_update(...)`, `locations_batches_create(...)`, `locations_batches_delete(...)`, `locations_batches_get(...)`, `locations_batches_list(...)`, `locations_operations_cancel(...)`, `locations_operations_delete(...)`, `locations_operations_get(...)`, `locations_operations_list(...)`, `locations_session_templates_create(...)`, `locations_session_templates_delete(...)`, `locations_session_templates_get(...)`, `locations_session_templates_list(...)`, `locations_session_templates_patch(...)`, `locations_sessions_create(...)`, `locations_sessions_delete(...)`, `locations_sessions_get(...)`, `locations_sessions_list(...)`, `locations_sessions_terminate(...)`, `locations_workflow_templates_create(...)`, `locations_workflow_templates_delete(...)`, `locations_workflow_templates_get(...)`, `locations_workflow_templates_get_iam_policy(...)`, `locations_workflow_templates_instantiate(...)`, `locations_workflow_templates_instantiate_inline(...)`, `locations_workflow_templates_list(...)`, `locations_workflow_templates_set_iam_policy(...)`, `locations_workflow_templates_test_iam_permissions(...)`, `locations_workflow_templates_update(...)`, `regions_autoscaling_policies_create(...)`, `regions_autoscaling_policies_delete(...)`, `regions_autoscaling_policies_get(...)`, `regions_autoscaling_policies_get_iam_policy(...)`, `regions_autoscaling_policies_list(...)`, `regions_autoscaling_policies_set_iam_policy(...)`, `regions_autoscaling_policies_test_iam_permissions(...)`, `regions_autoscaling_policies_update(...)`, `regions_clusters_create(...)`, `regions_clusters_delete(...)`, `regions_clusters_diagnose(...)`, `regions_clusters_get(...)`, `regions_clusters_get_iam_policy(...)`, `regions_clusters_inject_credentials(...)`, `regions_clusters_list(...)`, `regions_clusters_node_groups_create(...)`, `regions_clusters_node_groups_get(...)`, `regions_clusters_node_groups_repair(...)`, `regions_clusters_node_groups_resize(...)`, `regions_clusters_patch(...)`, `regions_clusters_repair(...)`, `regions_clusters_set_iam_policy(...)`, `regions_clusters_start(...)`, `regions_clusters_stop(...)`, `regions_clusters_test_iam_permissions(...)`, `regions_jobs_cancel(...)`, `regions_jobs_delete(...)`, `regions_jobs_get(...)`, `regions_jobs_get_iam_policy(...)`, `regions_jobs_list(...)`, `regions_jobs_patch(...)`, `regions_jobs_set_iam_policy(...)`, `regions_jobs_submit(...)`, `regions_jobs_submit_as_operation(...)`, `regions_jobs_test_iam_permissions(...)`, `regions_operations_cancel(...)`, `regions_operations_delete(...)`, `regions_operations_get(...)`, `regions_operations_get_iam_policy(...)`, `regions_operations_list(...)`, `regions_operations_set_iam_policy(...)`, `regions_operations_test_iam_permissions(...)`, `regions_workflow_templates_create(...)`, `regions_workflow_templates_delete(...)`, `regions_workflow_templates_get(...)`, `regions_workflow_templates_get_iam_policy(...)`, `regions_workflow_templates_instantiate(...)`, `regions_workflow_templates_instantiate_inline(...)`, `regions_workflow_templates_list(...)`, `regions_workflow_templates_set_iam_policy(...)`, `regions_workflow_templates_test_iam_permissions(...)` and `regions_workflow_templates_update(...)`
// to build up your call.
let rb = hub.projects();

Implementations§

source§

impl<'a, S> ProjectMethods<'a, S>

source

pub fn locations_autoscaling_policies_create( &self, request: AutoscalingPolicy, parent: &str ) -> ProjectLocationAutoscalingPolicyCreateCall<'a, S>

Create a builder to help you perform the following task:

Creates new autoscaling policy.

§Arguments
  • request - No description provided.
  • parent - Required. The “resource name” of the region or location, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.autoscalingPolicies.create, the resource name of the region has the following format: projects/{project_id}/regions/{region} For projects.locations.autoscalingPolicies.create, the resource name of the location has the following format: projects/{project_id}/locations/{location}
source

pub fn locations_autoscaling_policies_delete( &self, name: &str ) -> ProjectLocationAutoscalingPolicyDeleteCall<'a, S>

Create a builder to help you perform the following task:

Deletes an autoscaling policy. It is an error to delete an autoscaling policy that is in use by one or more clusters.

§Arguments
  • name - Required. The “resource name” of the autoscaling policy, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.autoscalingPolicies.delete, the resource name of the policy has the following format: projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For projects.locations.autoscalingPolicies.delete, the resource name of the policy has the following format: projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id}
source

pub fn locations_autoscaling_policies_get( &self, name: &str ) -> ProjectLocationAutoscalingPolicyGetCall<'a, S>

Create a builder to help you perform the following task:

Retrieves autoscaling policy.

§Arguments
  • name - Required. The “resource name” of the autoscaling policy, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.autoscalingPolicies.get, the resource name of the policy has the following format: projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For projects.locations.autoscalingPolicies.get, the resource name of the policy has the following format: projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id}
source

pub fn locations_autoscaling_policies_get_iam_policy( &self, request: GetIamPolicyRequest, resource: &str ) -> ProjectLocationAutoscalingPolicyGetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn locations_autoscaling_policies_list( &self, parent: &str ) -> ProjectLocationAutoscalingPolicyListCall<'a, S>

Create a builder to help you perform the following task:

Lists autoscaling policies in the project.

§Arguments
  • parent - Required. The “resource name” of the region or location, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.autoscalingPolicies.list, the resource name of the region has the following format: projects/{project_id}/regions/{region} For projects.locations.autoscalingPolicies.list, the resource name of the location has the following format: projects/{project_id}/locations/{location}
source

pub fn locations_autoscaling_policies_set_iam_policy( &self, request: SetIamPolicyRequest, resource: &str ) -> ProjectLocationAutoscalingPolicySetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn locations_autoscaling_policies_test_iam_permissions( &self, request: TestIamPermissionsRequest, resource: &str ) -> ProjectLocationAutoscalingPolicyTestIamPermissionCall<'a, S>

Create a builder to help you perform the following task:

Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may “fail open” without warning.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn locations_autoscaling_policies_update( &self, request: AutoscalingPolicy, name: &str ) -> ProjectLocationAutoscalingPolicyUpdateCall<'a, S>

Create a builder to help you perform the following task:

Updates (replaces) autoscaling policy.Disabled check for update_mask, because all updates will be full replacements.

§Arguments
  • request - No description provided.
  • name - Output only. The “resource name” of the autoscaling policy, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.autoscalingPolicies, the resource name of the policy has the following format: projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For projects.locations.autoscalingPolicies, the resource name of the policy has the following format: projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id}
source

pub fn locations_batches_create( &self, request: Batch, parent: &str ) -> ProjectLocationBatchCreateCall<'a, S>

Create a builder to help you perform the following task:

Creates a batch workload that executes asynchronously.

§Arguments
  • request - No description provided.
  • parent - Required. The parent resource where this batch will be created.
source

pub fn locations_batches_delete( &self, name: &str ) -> ProjectLocationBatchDeleteCall<'a, S>

Create a builder to help you perform the following task:

Deletes the batch workload resource. If the batch is not in a CANCELLED, SUCCEEDED or FAILED State, the delete operation fails and the response returns FAILED_PRECONDITION.

§Arguments
  • name - Required. The fully qualified name of the batch to retrieve in the format “projects/PROJECT_ID/locations/DATAPROC_REGION/batches/BATCH_ID”
source

pub fn locations_batches_get( &self, name: &str ) -> ProjectLocationBatchGetCall<'a, S>

Create a builder to help you perform the following task:

Gets the batch workload resource representation.

§Arguments
  • name - Required. The fully qualified name of the batch to retrieve in the format “projects/PROJECT_ID/locations/DATAPROC_REGION/batches/BATCH_ID”
source

pub fn locations_batches_list( &self, parent: &str ) -> ProjectLocationBatchListCall<'a, S>

Create a builder to help you perform the following task:

Lists batch workloads.

§Arguments
  • parent - Required. The parent, which owns this collection of batches.
source

pub fn locations_operations_cancel( &self, name: &str ) -> ProjectLocationOperationCancelCall<'a, S>

Create a builder to help you perform the following task:

Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn’t support this method, it returns google.rpc.Code.UNIMPLEMENTED. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to Code.CANCELLED.

§Arguments
  • name - The name of the operation resource to be cancelled.
source

pub fn locations_operations_delete( &self, name: &str ) -> ProjectLocationOperationDeleteCall<'a, S>

Create a builder to help you perform the following task:

Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn’t support this method, it returns google.rpc.Code.UNIMPLEMENTED.

§Arguments
  • name - The name of the operation resource to be deleted.
source

pub fn locations_operations_get( &self, name: &str ) -> ProjectLocationOperationGetCall<'a, S>

Create a builder to help you perform the following task:

Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.

§Arguments
  • name - The name of the operation resource.
source

pub fn locations_operations_list( &self, name: &str ) -> ProjectLocationOperationListCall<'a, S>

Create a builder to help you perform the following task:

Lists operations that match the specified filter in the request. If the server doesn’t support this method, it returns UNIMPLEMENTED.

§Arguments
  • name - The name of the operation’s parent resource.
source

pub fn locations_session_templates_create( &self, request: SessionTemplate, parent: &str ) -> ProjectLocationSessionTemplateCreateCall<'a, S>

Create a builder to help you perform the following task:

Create a session template synchronously.

§Arguments
  • request - No description provided.
  • parent - Required. The parent resource where this session template will be created.
source

pub fn locations_session_templates_delete( &self, name: &str ) -> ProjectLocationSessionTemplateDeleteCall<'a, S>

Create a builder to help you perform the following task:

Deletes a session template.

§Arguments
  • name - Required. The name of the session template resource to delete.
source

pub fn locations_session_templates_get( &self, name: &str ) -> ProjectLocationSessionTemplateGetCall<'a, S>

Create a builder to help you perform the following task:

Gets the resource representation for a session template.

§Arguments
  • name - Required. The name of the session template to retrieve.
source

pub fn locations_session_templates_list( &self, parent: &str ) -> ProjectLocationSessionTemplateListCall<'a, S>

Create a builder to help you perform the following task:

Lists session templates.

§Arguments
  • parent - Required. The parent that owns this collection of session templates.
source

pub fn locations_session_templates_patch( &self, request: SessionTemplate, name: &str ) -> ProjectLocationSessionTemplatePatchCall<'a, S>

Create a builder to help you perform the following task:

Updates the session template synchronously.

§Arguments
  • request - No description provided.
  • name - Required. The resource name of the session template.
source

pub fn locations_sessions_create( &self, request: Session, parent: &str ) -> ProjectLocationSessionCreateCall<'a, S>

Create a builder to help you perform the following task:

Create an interactive session asynchronously.

§Arguments
  • request - No description provided.
  • parent - Required. The parent resource where this session will be created.
source

pub fn locations_sessions_delete( &self, name: &str ) -> ProjectLocationSessionDeleteCall<'a, S>

Create a builder to help you perform the following task:

Deletes the interactive session resource. If the session is not in terminal state, it is terminated, and then deleted.

§Arguments
  • name - Required. The name of the session resource to delete.
source

pub fn locations_sessions_get( &self, name: &str ) -> ProjectLocationSessionGetCall<'a, S>

Create a builder to help you perform the following task:

Gets the resource representation for an interactive session.

§Arguments
  • name - Required. The name of the session to retrieve.
source

pub fn locations_sessions_list( &self, parent: &str ) -> ProjectLocationSessionListCall<'a, S>

Create a builder to help you perform the following task:

Lists interactive sessions.

§Arguments
  • parent - Required. The parent, which owns this collection of sessions.
source

pub fn locations_sessions_terminate( &self, request: TerminateSessionRequest, name: &str ) -> ProjectLocationSessionTerminateCall<'a, S>

Create a builder to help you perform the following task:

Terminates the interactive session.

§Arguments
  • request - No description provided.
  • name - Required. The name of the session resource to terminate.
source

pub fn locations_workflow_templates_create( &self, request: WorkflowTemplate, parent: &str ) -> ProjectLocationWorkflowTemplateCreateCall<'a, S>

Create a builder to help you perform the following task:

Creates new workflow template.

§Arguments
  • request - No description provided.
  • 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.create, the resource name of the region has the following format: projects/{project_id}/regions/{region} For projects.locations.workflowTemplates.create, the resource name of the location has the following format: projects/{project_id}/locations/{location}
source

pub fn locations_workflow_templates_delete( &self, name: &str ) -> ProjectLocationWorkflowTemplateDeleteCall<'a, S>

Create a builder to help you perform the following task:

Deletes a workflow template. It does not cancel in-progress workflows.

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

pub fn locations_workflow_templates_get( &self, name: &str ) -> ProjectLocationWorkflowTemplateGetCall<'a, S>

Create a builder to help you perform the following task:

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

§Arguments
  • 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}
source

pub fn locations_workflow_templates_get_iam_policy( &self, request: GetIamPolicyRequest, resource: &str ) -> ProjectLocationWorkflowTemplateGetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn locations_workflow_templates_instantiate( &self, request: InstantiateWorkflowTemplateRequest, name: &str ) -> ProjectLocationWorkflowTemplateInstantiateCall<'a, S>

Create a builder to help you perform the following task:

Instantiates a template and begins execution.The returned Operation can be used to track execution of workflow by polling operations.get. The Operation will complete when entire workflow is finished.The running workflow can be aborted via operations.cancel. This will cause any inflight jobs to be cancelled and workflow-owned clusters to be deleted.The Operation.metadata will be WorkflowMetadata (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#workflowmetadata). Also see Using WorkflowMetadata (https://cloud.google.com/dataproc/docs/concepts/workflows/debugging#using_workflowmetadata).On successful completion, Operation.response will be Empty.

§Arguments
  • request - No description provided.
  • name - Required. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.workflowTemplates.instantiate, the resource name of the template has the following format: projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For projects.locations.workflowTemplates.instantiate, the resource name of the template has the following format: projects/{project_id}/locations/{location}/workflowTemplates/{template_id}
source

pub fn locations_workflow_templates_instantiate_inline( &self, request: WorkflowTemplate, parent: &str ) -> ProjectLocationWorkflowTemplateInstantiateInlineCall<'a, S>

Create a builder to help you perform the following task:

Instantiates a template and begins execution.This method is equivalent to executing the sequence CreateWorkflowTemplate, InstantiateWorkflowTemplate, DeleteWorkflowTemplate.The returned Operation can be used to track execution of workflow by polling operations.get. The Operation will complete when entire workflow is finished.The running workflow can be aborted via operations.cancel. This will cause any inflight jobs to be cancelled and workflow-owned clusters to be deleted.The Operation.metadata will be WorkflowMetadata (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#workflowmetadata). Also see Using WorkflowMetadata (https://cloud.google.com/dataproc/docs/concepts/workflows/debugging#using_workflowmetadata).On successful completion, Operation.response will be Empty.

§Arguments
  • request - No description provided.
  • 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,instantiateinline, the resource name of the region has the following format: projects/{project_id}/regions/{region} For projects.locations.workflowTemplates.instantiateinline, the resource name of the location has the following format: projects/{project_id}/locations/{location}
source

pub fn locations_workflow_templates_list( &self, parent: &str ) -> ProjectLocationWorkflowTemplateListCall<'a, S>

Create a builder to help you perform the following task:

Lists workflows that match the specified filter in the request.

§Arguments
  • 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}
source

pub fn locations_workflow_templates_set_iam_policy( &self, request: SetIamPolicyRequest, resource: &str ) -> ProjectLocationWorkflowTemplateSetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn locations_workflow_templates_test_iam_permissions( &self, request: TestIamPermissionsRequest, resource: &str ) -> ProjectLocationWorkflowTemplateTestIamPermissionCall<'a, S>

Create a builder to help you perform the following task:

Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may “fail open” without warning.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn locations_workflow_templates_update( &self, request: WorkflowTemplate, name: &str ) -> ProjectLocationWorkflowTemplateUpdateCall<'a, S>

Create a builder to help you perform the following task:

Updates (replaces) workflow template. The updated template must contain version that matches the current server version.

§Arguments
  • request - No description provided.
  • name - Output only. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.workflowTemplates, the resource name of the template has the following format: projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For projects.locations.workflowTemplates, the resource name of the template has the following format: projects/{project_id}/locations/{location}/workflowTemplates/{template_id}
source

pub fn regions_autoscaling_policies_create( &self, request: AutoscalingPolicy, parent: &str ) -> ProjectRegionAutoscalingPolicyCreateCall<'a, S>

Create a builder to help you perform the following task:

Creates new autoscaling policy.

§Arguments
  • request - No description provided.
  • parent - Required. The “resource name” of the region or location, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.autoscalingPolicies.create, the resource name of the region has the following format: projects/{project_id}/regions/{region} For projects.locations.autoscalingPolicies.create, the resource name of the location has the following format: projects/{project_id}/locations/{location}
source

pub fn regions_autoscaling_policies_delete( &self, name: &str ) -> ProjectRegionAutoscalingPolicyDeleteCall<'a, S>

Create a builder to help you perform the following task:

Deletes an autoscaling policy. It is an error to delete an autoscaling policy that is in use by one or more clusters.

§Arguments
  • name - Required. The “resource name” of the autoscaling policy, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.autoscalingPolicies.delete, the resource name of the policy has the following format: projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For projects.locations.autoscalingPolicies.delete, the resource name of the policy has the following format: projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id}
source

pub fn regions_autoscaling_policies_get( &self, name: &str ) -> ProjectRegionAutoscalingPolicyGetCall<'a, S>

Create a builder to help you perform the following task:

Retrieves autoscaling policy.

§Arguments
  • name - Required. The “resource name” of the autoscaling policy, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.autoscalingPolicies.get, the resource name of the policy has the following format: projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For projects.locations.autoscalingPolicies.get, the resource name of the policy has the following format: projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id}
source

pub fn regions_autoscaling_policies_get_iam_policy( &self, request: GetIamPolicyRequest, resource: &str ) -> ProjectRegionAutoscalingPolicyGetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_autoscaling_policies_list( &self, parent: &str ) -> ProjectRegionAutoscalingPolicyListCall<'a, S>

Create a builder to help you perform the following task:

Lists autoscaling policies in the project.

§Arguments
  • parent - Required. The “resource name” of the region or location, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.autoscalingPolicies.list, the resource name of the region has the following format: projects/{project_id}/regions/{region} For projects.locations.autoscalingPolicies.list, the resource name of the location has the following format: projects/{project_id}/locations/{location}
source

pub fn regions_autoscaling_policies_set_iam_policy( &self, request: SetIamPolicyRequest, resource: &str ) -> ProjectRegionAutoscalingPolicySetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_autoscaling_policies_test_iam_permissions( &self, request: TestIamPermissionsRequest, resource: &str ) -> ProjectRegionAutoscalingPolicyTestIamPermissionCall<'a, S>

Create a builder to help you perform the following task:

Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may “fail open” without warning.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_autoscaling_policies_update( &self, request: AutoscalingPolicy, name: &str ) -> ProjectRegionAutoscalingPolicyUpdateCall<'a, S>

Create a builder to help you perform the following task:

Updates (replaces) autoscaling policy.Disabled check for update_mask, because all updates will be full replacements.

§Arguments
  • request - No description provided.
  • name - Output only. The “resource name” of the autoscaling policy, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.autoscalingPolicies, the resource name of the policy has the following format: projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id} For projects.locations.autoscalingPolicies, the resource name of the policy has the following format: projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id}
source

pub fn regions_clusters_node_groups_create( &self, request: NodeGroup, parent: &str ) -> ProjectRegionClusterNodeGroupCreateCall<'a, S>

Create a builder to help you perform the following task:

Creates a node group in a cluster. The returned Operation.metadata is NodeGroupOperationMetadata (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#nodegroupoperationmetadata).

§Arguments
  • request - No description provided.
  • parent - Required. The parent resource where this node group will be created. Format: projects/{project}/regions/{region}/clusters/{cluster}
source

pub fn regions_clusters_node_groups_get( &self, name: &str ) -> ProjectRegionClusterNodeGroupGetCall<'a, S>

Create a builder to help you perform the following task:

Gets the resource representation for a node group in a cluster.

§Arguments
  • name - Required. The name of the node group to retrieve. Format: projects/{project}/regions/{region}/clusters/{cluster}/nodeGroups/{nodeGroup}
source

pub fn regions_clusters_node_groups_repair( &self, request: RepairNodeGroupRequest, name: &str ) -> ProjectRegionClusterNodeGroupRepairCall<'a, S>

Create a builder to help you perform the following task:

Repair nodes in a node group.

§Arguments
  • request - No description provided.
  • name - Required. The name of the node group to resize. Format: projects/{project}/regions/{region}/clusters/{cluster}/nodeGroups/{nodeGroup}
source

pub fn regions_clusters_node_groups_resize( &self, request: ResizeNodeGroupRequest, name: &str ) -> ProjectRegionClusterNodeGroupResizeCall<'a, S>

Create a builder to help you perform the following task:

Resizes a node group in a cluster. The returned Operation.metadata is NodeGroupOperationMetadata (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#nodegroupoperationmetadata).

§Arguments
  • request - No description provided.
  • name - Required. The name of the node group to resize. Format: projects/{project}/regions/{region}/clusters/{cluster}/nodeGroups/{nodeGroup}
source

pub fn regions_clusters_create( &self, request: Cluster, project_id: &str, region: &str ) -> ProjectRegionClusterCreateCall<'a, S>

Create a builder to help you perform the following task:

Creates a cluster in a project. The returned Operation.metadata will be ClusterOperationMetadata (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#clusteroperationmetadata).

§Arguments
  • request - No description provided.
  • projectId - Required. The ID of the Google Cloud Platform project that the cluster belongs to.
  • region - Required. The Dataproc region in which to handle the request.
source

pub fn regions_clusters_delete( &self, project_id: &str, region: &str, cluster_name: &str ) -> ProjectRegionClusterDeleteCall<'a, S>

Create a builder to help you perform the following task:

Deletes a cluster in a project. The returned Operation.metadata will be ClusterOperationMetadata (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#clusteroperationmetadata).

§Arguments
  • projectId - Required. The ID of the Google Cloud Platform project that the cluster belongs to.
  • region - Required. The Dataproc region in which to handle the request.
  • clusterName - Required. The cluster name.
source

pub fn regions_clusters_diagnose( &self, request: DiagnoseClusterRequest, project_id: &str, region: &str, cluster_name: &str ) -> ProjectRegionClusterDiagnoseCall<'a, S>

Create a builder to help you perform the following task:

Gets cluster diagnostic information. The returned Operation.metadata will be ClusterOperationMetadata (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#clusteroperationmetadata). After the operation completes, Operation.response contains DiagnoseClusterResults (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#diagnoseclusterresults).

§Arguments
  • request - No description provided.
  • projectId - Required. The ID of the Google Cloud Platform project that the cluster belongs to.
  • region - Required. The Dataproc region in which to handle the request.
  • clusterName - Required. The cluster name.
source

pub fn regions_clusters_get( &self, project_id: &str, region: &str, cluster_name: &str ) -> ProjectRegionClusterGetCall<'a, S>

Create a builder to help you perform the following task:

Gets the resource representation for a cluster in a project.

§Arguments
  • projectId - Required. The ID of the Google Cloud Platform project that the cluster belongs to.
  • region - Required. The Dataproc region in which to handle the request.
  • clusterName - Required. The cluster name.
source

pub fn regions_clusters_get_iam_policy( &self, request: GetIamPolicyRequest, resource: &str ) -> ProjectRegionClusterGetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_clusters_inject_credentials( &self, request: InjectCredentialsRequest, project: &str, region: &str, cluster: &str ) -> ProjectRegionClusterInjectCredentialCall<'a, S>

Create a builder to help you perform the following task:

Inject encrypted credentials into all of the VMs in a cluster.The target cluster must be a personal auth cluster assigned to the user who is issuing the RPC.

§Arguments
  • request - No description provided.
  • project - Required. The ID of the Google Cloud Platform project the cluster belongs to, of the form projects/.
  • region - Required. The region containing the cluster, of the form regions/.
  • cluster - Required. The cluster, in the form clusters/.
source

pub fn regions_clusters_list( &self, project_id: &str, region: &str ) -> ProjectRegionClusterListCall<'a, S>

Create a builder to help you perform the following task:

Lists all regions/{region}/clusters in a project alphabetically.

§Arguments
  • projectId - Required. The ID of the Google Cloud Platform project that the cluster belongs to.
  • region - Required. The Dataproc region in which to handle the request.
source

pub fn regions_clusters_patch( &self, request: Cluster, project_id: &str, region: &str, cluster_name: &str ) -> ProjectRegionClusterPatchCall<'a, S>

Create a builder to help you perform the following task:

Updates a cluster in a project. The returned Operation.metadata will be ClusterOperationMetadata (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#clusteroperationmetadata). The cluster must be in a RUNNING state or an error is returned.

§Arguments
  • request - No description provided.
  • projectId - Required. The ID of the Google Cloud Platform project the cluster belongs to.
  • region - Required. The Dataproc region in which to handle the request.
  • clusterName - Required. The cluster name.
source

pub fn regions_clusters_repair( &self, request: RepairClusterRequest, project_id: &str, region: &str, cluster_name: &str ) -> ProjectRegionClusterRepairCall<'a, S>

Create a builder to help you perform the following task:

Repairs a cluster.

§Arguments
  • request - No description provided.
  • projectId - Required. The ID of the Google Cloud Platform project the cluster belongs to.
  • region - Required. The Dataproc region in which to handle the request.
  • clusterName - Required. The cluster name.
source

pub fn regions_clusters_set_iam_policy( &self, request: SetIamPolicyRequest, resource: &str ) -> ProjectRegionClusterSetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_clusters_start( &self, request: StartClusterRequest, project_id: &str, region: &str, cluster_name: &str ) -> ProjectRegionClusterStartCall<'a, S>

Create a builder to help you perform the following task:

Starts a cluster in a project.

§Arguments
  • request - No description provided.
  • projectId - Required. The ID of the Google Cloud Platform project the cluster belongs to.
  • region - Required. The Dataproc region in which to handle the request.
  • clusterName - Required. The cluster name.
source

pub fn regions_clusters_stop( &self, request: StopClusterRequest, project_id: &str, region: &str, cluster_name: &str ) -> ProjectRegionClusterStopCall<'a, S>

Create a builder to help you perform the following task:

Stops a cluster in a project.

§Arguments
  • request - No description provided.
  • projectId - Required. The ID of the Google Cloud Platform project the cluster belongs to.
  • region - Required. The Dataproc region in which to handle the request.
  • clusterName - Required. The cluster name.
source

pub fn regions_clusters_test_iam_permissions( &self, request: TestIamPermissionsRequest, resource: &str ) -> ProjectRegionClusterTestIamPermissionCall<'a, S>

Create a builder to help you perform the following task:

Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may “fail open” without warning.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_jobs_cancel( &self, request: CancelJobRequest, project_id: &str, region: &str, job_id: &str ) -> ProjectRegionJobCancelCall<'a, S>

Create a builder to help you perform the following task:

Starts a job cancellation request. To access the job resource after cancellation, call regions/{region}/jobs.list (https://cloud.google.com/dataproc/docs/reference/rest/v1/projects.regions.jobs/list) or regions/{region}/jobs.get (https://cloud.google.com/dataproc/docs/reference/rest/v1/projects.regions.jobs/get).

§Arguments
  • request - No description provided.
  • projectId - Required. The ID of the Google Cloud Platform project that the job belongs to.
  • region - Required. The Dataproc region in which to handle the request.
  • jobId - Required. The job ID.
source

pub fn regions_jobs_delete( &self, project_id: &str, region: &str, job_id: &str ) -> ProjectRegionJobDeleteCall<'a, S>

Create a builder to help you perform the following task:

Deletes the job from the project. If the job is active, the delete fails, and the response returns FAILED_PRECONDITION.

§Arguments
  • projectId - Required. The ID of the Google Cloud Platform project that the job belongs to.
  • region - Required. The Dataproc region in which to handle the request.
  • jobId - Required. The job ID.
source

pub fn regions_jobs_get( &self, project_id: &str, region: &str, job_id: &str ) -> ProjectRegionJobGetCall<'a, S>

Create a builder to help you perform the following task:

Gets the resource representation for a job in a project.

§Arguments
  • projectId - Required. The ID of the Google Cloud Platform project that the job belongs to.
  • region - Required. The Dataproc region in which to handle the request.
  • jobId - Required. The job ID.
source

pub fn regions_jobs_get_iam_policy( &self, request: GetIamPolicyRequest, resource: &str ) -> ProjectRegionJobGetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_jobs_list( &self, project_id: &str, region: &str ) -> ProjectRegionJobListCall<'a, S>

Create a builder to help you perform the following task:

Lists regions/{region}/jobs in a project.

§Arguments
  • projectId - Required. The ID of the Google Cloud Platform project that the job belongs to.
  • region - Required. The Dataproc region in which to handle the request.
source

pub fn regions_jobs_patch( &self, request: Job, project_id: &str, region: &str, job_id: &str ) -> ProjectRegionJobPatchCall<'a, S>

Create a builder to help you perform the following task:

Updates a job in a project.

§Arguments
  • request - No description provided.
  • projectId - Required. The ID of the Google Cloud Platform project that the job belongs to.
  • region - Required. The Dataproc region in which to handle the request.
  • jobId - Required. The job ID.
source

pub fn regions_jobs_set_iam_policy( &self, request: SetIamPolicyRequest, resource: &str ) -> ProjectRegionJobSetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_jobs_submit( &self, request: SubmitJobRequest, project_id: &str, region: &str ) -> ProjectRegionJobSubmitCall<'a, S>

Create a builder to help you perform the following task:

Submits a job to a cluster.

§Arguments
  • request - No description provided.
  • projectId - Required. The ID of the Google Cloud Platform project that the job belongs to.
  • region - Required. The Dataproc region in which to handle the request.
source

pub fn regions_jobs_submit_as_operation( &self, request: SubmitJobRequest, project_id: &str, region: &str ) -> ProjectRegionJobSubmitAsOperationCall<'a, S>

Create a builder to help you perform the following task:

Submits job to a cluster.

§Arguments
  • request - No description provided.
  • projectId - Required. The ID of the Google Cloud Platform project that the job belongs to.
  • region - Required. The Dataproc region in which to handle the request.
source

pub fn regions_jobs_test_iam_permissions( &self, request: TestIamPermissionsRequest, resource: &str ) -> ProjectRegionJobTestIamPermissionCall<'a, S>

Create a builder to help you perform the following task:

Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may “fail open” without warning.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_operations_cancel( &self, name: &str ) -> ProjectRegionOperationCancelCall<'a, S>

Create a builder to help you perform the following task:

Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn’t support this method, it returns google.rpc.Code.UNIMPLEMENTED. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to Code.CANCELLED.

§Arguments
  • name - The name of the operation resource to be cancelled.
source

pub fn regions_operations_delete( &self, name: &str ) -> ProjectRegionOperationDeleteCall<'a, S>

Create a builder to help you perform the following task:

Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn’t support this method, it returns google.rpc.Code.UNIMPLEMENTED.

§Arguments
  • name - The name of the operation resource to be deleted.
source

pub fn regions_operations_get( &self, name: &str ) -> ProjectRegionOperationGetCall<'a, S>

Create a builder to help you perform the following task:

Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.

§Arguments
  • name - The name of the operation resource.
source

pub fn regions_operations_get_iam_policy( &self, request: GetIamPolicyRequest, resource: &str ) -> ProjectRegionOperationGetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_operations_list( &self, name: &str ) -> ProjectRegionOperationListCall<'a, S>

Create a builder to help you perform the following task:

Lists operations that match the specified filter in the request. If the server doesn’t support this method, it returns UNIMPLEMENTED.

§Arguments
  • name - The name of the operation’s parent resource.
source

pub fn regions_operations_set_iam_policy( &self, request: SetIamPolicyRequest, resource: &str ) -> ProjectRegionOperationSetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_operations_test_iam_permissions( &self, request: TestIamPermissionsRequest, resource: &str ) -> ProjectRegionOperationTestIamPermissionCall<'a, S>

Create a builder to help you perform the following task:

Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may “fail open” without warning.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_workflow_templates_create( &self, request: WorkflowTemplate, parent: &str ) -> ProjectRegionWorkflowTemplateCreateCall<'a, S>

Create a builder to help you perform the following task:

Creates new workflow template.

§Arguments
  • request - No description provided.
  • 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.create, the resource name of the region has the following format: projects/{project_id}/regions/{region} For projects.locations.workflowTemplates.create, the resource name of the location has the following format: projects/{project_id}/locations/{location}
source

pub fn regions_workflow_templates_delete( &self, name: &str ) -> ProjectRegionWorkflowTemplateDeleteCall<'a, S>

Create a builder to help you perform the following task:

Deletes a workflow template. It does not cancel in-progress workflows.

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

pub fn regions_workflow_templates_get( &self, name: &str ) -> ProjectRegionWorkflowTemplateGetCall<'a, S>

Create a builder to help you perform the following task:

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

§Arguments
  • 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}
source

pub fn regions_workflow_templates_get_iam_policy( &self, request: GetIamPolicyRequest, resource: &str ) -> ProjectRegionWorkflowTemplateGetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_workflow_templates_instantiate( &self, request: InstantiateWorkflowTemplateRequest, name: &str ) -> ProjectRegionWorkflowTemplateInstantiateCall<'a, S>

Create a builder to help you perform the following task:

Instantiates a template and begins execution.The returned Operation can be used to track execution of workflow by polling operations.get. The Operation will complete when entire workflow is finished.The running workflow can be aborted via operations.cancel. This will cause any inflight jobs to be cancelled and workflow-owned clusters to be deleted.The Operation.metadata will be WorkflowMetadata (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#workflowmetadata). Also see Using WorkflowMetadata (https://cloud.google.com/dataproc/docs/concepts/workflows/debugging#using_workflowmetadata).On successful completion, Operation.response will be Empty.

§Arguments
  • request - No description provided.
  • name - Required. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.workflowTemplates.instantiate, the resource name of the template has the following format: projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For projects.locations.workflowTemplates.instantiate, the resource name of the template has the following format: projects/{project_id}/locations/{location}/workflowTemplates/{template_id}
source

pub fn regions_workflow_templates_instantiate_inline( &self, request: WorkflowTemplate, parent: &str ) -> ProjectRegionWorkflowTemplateInstantiateInlineCall<'a, S>

Create a builder to help you perform the following task:

Instantiates a template and begins execution.This method is equivalent to executing the sequence CreateWorkflowTemplate, InstantiateWorkflowTemplate, DeleteWorkflowTemplate.The returned Operation can be used to track execution of workflow by polling operations.get. The Operation will complete when entire workflow is finished.The running workflow can be aborted via operations.cancel. This will cause any inflight jobs to be cancelled and workflow-owned clusters to be deleted.The Operation.metadata will be WorkflowMetadata (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#workflowmetadata). Also see Using WorkflowMetadata (https://cloud.google.com/dataproc/docs/concepts/workflows/debugging#using_workflowmetadata).On successful completion, Operation.response will be Empty.

§Arguments
  • request - No description provided.
  • 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,instantiateinline, the resource name of the region has the following format: projects/{project_id}/regions/{region} For projects.locations.workflowTemplates.instantiateinline, the resource name of the location has the following format: projects/{project_id}/locations/{location}
source

pub fn regions_workflow_templates_list( &self, parent: &str ) -> ProjectRegionWorkflowTemplateListCall<'a, S>

Create a builder to help you perform the following task:

Lists workflows that match the specified filter in the request.

§Arguments
  • 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}
source

pub fn regions_workflow_templates_set_iam_policy( &self, request: SetIamPolicyRequest, resource: &str ) -> ProjectRegionWorkflowTemplateSetIamPolicyCall<'a, S>

Create a builder to help you perform the following task:

Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_workflow_templates_test_iam_permissions( &self, request: TestIamPermissionsRequest, resource: &str ) -> ProjectRegionWorkflowTemplateTestIamPermissionCall<'a, S>

Create a builder to help you perform the following task:

Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may “fail open” without warning.

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See Resource names (https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.
source

pub fn regions_workflow_templates_update( &self, request: WorkflowTemplate, name: &str ) -> ProjectRegionWorkflowTemplateUpdateCall<'a, S>

Create a builder to help you perform the following task:

Updates (replaces) workflow template. The updated template must contain version that matches the current server version.

§Arguments
  • request - No description provided.
  • name - Output only. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. For projects.regions.workflowTemplates, the resource name of the template has the following format: projects/{project_id}/regions/{region}/workflowTemplates/{template_id} For projects.locations.workflowTemplates, the resource name of the template has the following format: projects/{project_id}/locations/{location}/workflowTemplates/{template_id}

Trait Implementations§

source§

impl<'a, S> MethodsBuilder for ProjectMethods<'a, S>

Auto Trait Implementations§

§

impl<'a, S> !RefUnwindSafe for ProjectMethods<'a, S>

§

impl<'a, S> Send for ProjectMethods<'a, S>
where S: Sync,

§

impl<'a, S> Sync for ProjectMethods<'a, S>
where S: Sync,

§

impl<'a, S> Unpin for ProjectMethods<'a, S>

§

impl<'a, S> !UnwindSafe for ProjectMethods<'a, S>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more