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 ServiceDirectory hub.

§Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate google_servicedirectory1 as servicedirectory1;
 
use std::default::Default;
use servicedirectory1::{ServiceDirectory, 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 = ServiceDirectory::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_get(...)`, `locations_list(...)`, `locations_namespaces_create(...)`, `locations_namespaces_delete(...)`, `locations_namespaces_get(...)`, `locations_namespaces_get_iam_policy(...)`, `locations_namespaces_list(...)`, `locations_namespaces_patch(...)`, `locations_namespaces_services_create(...)`, `locations_namespaces_services_delete(...)`, `locations_namespaces_services_endpoints_create(...)`, `locations_namespaces_services_endpoints_delete(...)`, `locations_namespaces_services_endpoints_get(...)`, `locations_namespaces_services_endpoints_list(...)`, `locations_namespaces_services_endpoints_patch(...)`, `locations_namespaces_services_get(...)`, `locations_namespaces_services_get_iam_policy(...)`, `locations_namespaces_services_list(...)`, `locations_namespaces_services_patch(...)`, `locations_namespaces_services_resolve(...)`, `locations_namespaces_services_set_iam_policy(...)`, `locations_namespaces_services_test_iam_permissions(...)`, `locations_namespaces_set_iam_policy(...)` and `locations_namespaces_test_iam_permissions(...)`
// to build up your call.
let rb = hub.projects();

Implementations§

source§

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

source

pub fn locations_namespaces_services_endpoints_create( &self, request: Endpoint, parent: &str ) -> ProjectLocationNamespaceServiceEndpointCreateCall<'a, S>

Create a builder to help you perform the following task:

Creates an endpoint, and returns the new endpoint.

§Arguments
  • request - No description provided.
  • parent - Required. The resource name of the service that this endpoint provides.
source

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

Create a builder to help you perform the following task:

Deletes an endpoint.

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

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

Create a builder to help you perform the following task:

Gets an endpoint.

§Arguments
  • name - Required. The name of the endpoint to get.
source

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

Create a builder to help you perform the following task:

Lists all endpoints.

§Arguments
  • parent - Required. The resource name of the service whose endpoints you’d like to list.
source

pub fn locations_namespaces_services_endpoints_patch( &self, request: Endpoint, name: &str ) -> ProjectLocationNamespaceServiceEndpointPatchCall<'a, S>

Create a builder to help you perform the following task:

Updates an endpoint.

§Arguments
  • request - No description provided.
  • name - Immutable. The resource name for the endpoint in the format projects/*/locations/*/namespaces/*/services/*/endpoints/*.
source

pub fn locations_namespaces_services_create( &self, request: Service, parent: &str ) -> ProjectLocationNamespaceServiceCreateCall<'a, S>

Create a builder to help you perform the following task:

Creates a service, and returns the new service.

§Arguments
  • request - No description provided.
  • parent - Required. The resource name of the namespace this service will belong to.
source

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

Create a builder to help you perform the following task:

Deletes a service. This also deletes all endpoints associated with the service.

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

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

Create a builder to help you perform the following task:

Gets a service.

§Arguments
  • name - Required. The name of the service to get.
source

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

Create a builder to help you perform the following task:

Gets the IAM Policy for a resource (namespace or service only).

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being requested. See Resource names for the appropriate value for this field.
source

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

Create a builder to help you perform the following task:

Lists all services belonging to a namespace.

§Arguments
  • parent - Required. The resource name of the namespace whose services you’d like to list.
source

pub fn locations_namespaces_services_patch( &self, request: Service, name: &str ) -> ProjectLocationNamespaceServicePatchCall<'a, S>

Create a builder to help you perform the following task:

Updates a service.

§Arguments
  • request - No description provided.
  • name - Immutable. The resource name for the service in the format projects/*/locations/*/namespaces/*/services/*.
source

pub fn locations_namespaces_services_resolve( &self, request: ResolveServiceRequest, name: &str ) -> ProjectLocationNamespaceServiceResolveCall<'a, S>

Create a builder to help you perform the following task:

Returns a service and its associated endpoints. Resolving a service is not considered an active developer method.

§Arguments
  • request - No description provided.
  • name - Required. The name of the service to resolve.
source

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

Create a builder to help you perform the following task:

Sets the IAM Policy for a resource (namespace or service only).

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See Resource names for the appropriate value for this field.
source

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

Create a builder to help you perform the following task:

Tests IAM permissions for a resource (namespace or service only).

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See Resource names for the appropriate value for this field.
source

pub fn locations_namespaces_create( &self, request: Namespace, parent: &str ) -> ProjectLocationNamespaceCreateCall<'a, S>

Create a builder to help you perform the following task:

Creates a namespace, and returns the new namespace.

§Arguments
  • request - No description provided.
  • parent - Required. The resource name of the project and location the namespace will be created in.
source

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

Create a builder to help you perform the following task:

Deletes a namespace. This also deletes all services and endpoints in the namespace.

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

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

Create a builder to help you perform the following task:

Gets a namespace.

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

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

Create a builder to help you perform the following task:

Gets the IAM Policy for a resource (namespace or service only).

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being requested. See Resource names for the appropriate value for this field.
source

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

Create a builder to help you perform the following task:

Lists all namespaces.

§Arguments
  • parent - Required. The resource name of the project and location whose namespaces you’d like to list.
source

pub fn locations_namespaces_patch( &self, request: Namespace, name: &str ) -> ProjectLocationNamespacePatchCall<'a, S>

Create a builder to help you perform the following task:

Updates a namespace.

§Arguments
  • request - No description provided.
  • name - Immutable. The resource name for the namespace in the format projects/*/locations/*/namespaces/*.
source

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

Create a builder to help you perform the following task:

Sets the IAM Policy for a resource (namespace or service only).

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See Resource names for the appropriate value for this field.
source

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

Create a builder to help you perform the following task:

Tests IAM permissions for a resource (namespace or service only).

§Arguments
  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See Resource names for the appropriate value for this field.
source

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

Create a builder to help you perform the following task:

Gets information about a location.

§Arguments
  • name - Resource name for the location.
source

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

Create a builder to help you perform the following task:

Lists information about the supported locations for this service.

§Arguments
  • name - The resource that owns the locations collection, if applicable.

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