[][src]Struct google_sourcerepo1::ProjectMethods

pub struct ProjectMethods<'a, C, A> where
    C: 'a,
    A: 'a, 
{ /* fields omitted */ }

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_sourcerepo1 as sourcerepo1;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use sourcerepo1::CloudSourceRepositories;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())),
                              <MemoryStorage as Default>::default(), None);
let mut hub = CloudSourceRepositories::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `get_config(...)`, `repos_create(...)`, `repos_delete(...)`, `repos_get(...)`, `repos_get_iam_policy(...)`, `repos_list(...)`, `repos_patch(...)`, `repos_set_iam_policy(...)`, `repos_sync(...)`, `repos_test_iam_permissions(...)` and `update_config(...)`
// to build up your call.
let rb = hub.projects();

Methods

impl<'a, C, A> ProjectMethods<'a, C, A>[src]

pub fn update_config(
    &self,
    request: UpdateProjectConfigRequest,
    name: &str
) -> ProjectUpdateConfigCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Updates the Cloud Source Repositories configuration of the project.

Arguments

  • request - No description provided.
  • name - The name of the requested project. Values are of the form projects/<project>.

pub fn repos_delete(&self, name: &str) -> ProjectRepoDeleteCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Deletes a repo.

Arguments

  • name - The name of the repo to delete. Values are of the form projects/<project>/repos/<repo>.

pub fn repos_test_iam_permissions(
    &self,
    request: TestIamPermissionsRequest,
    resource: &str
) -> ProjectRepoTestIamPermissionCall<'a, C, A>
[src]

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.

Arguments

  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.

pub fn repos_set_iam_policy(
    &self,
    request: SetIamPolicyRequest,
    resource: &str
) -> ProjectRepoSetIamPolicyCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Sets the access control policy on the specified resource. Replaces any existing policy.

Arguments

  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.

pub fn repos_patch(
    &self,
    request: UpdateRepoRequest,
    name: &str
) -> ProjectRepoPatchCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Updates information about a repo.

Arguments

  • request - No description provided.
  • name - The name of the requested repository. Values are of the form projects/<project>/repos/<repo>.

pub fn repos_get_iam_policy(
    &self,
    resource: &str
) -> ProjectRepoGetIamPolicyCall<'a, C, A>
[src]

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

  • resource - REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.

pub fn repos_create(
    &self,
    request: Repo,
    parent: &str
) -> ProjectRepoCreateCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Creates a repo in the given project with the given name.

If the named repository already exists, CreateRepo returns ALREADY_EXISTS.

Arguments

  • request - No description provided.
  • parent - The project in which to create the repo. Values are of the form projects/<project>.

pub fn repos_list(&self, name: &str) -> ProjectRepoListCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Returns all repos belonging to a project. The sizes of the repos are not set by ListRepos. To get the size of a repo, use GetRepo.

Arguments

  • name - The project ID whose repos should be listed. Values are of the form projects/<project>.

pub fn repos_sync(
    &self,
    request: SyncRepoRequest,
    name: &str
) -> ProjectRepoSyncCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Synchronize a connected repo.

The response contains SyncRepoMetadata in the metadata field.

Arguments

  • request - No description provided.
  • name - The name of the repo to synchronize. Values are of the form projects/<project>/repos/<repo>.

pub fn repos_get(&self, name: &str) -> ProjectRepoGetCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Returns information about a repo.

Arguments

  • name - The name of the requested repository. Values are of the form projects/<project>/repos/<repo>.

pub fn get_config(&self, name: &str) -> ProjectGetConfigCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Returns the Cloud Source Repositories configuration of the project.

Arguments

  • name - The name of the requested project. Values are of the form projects/<project>.

Trait Implementations

impl<'a, C, A> MethodsBuilder for ProjectMethods<'a, C, A>[src]

Auto Trait Implementations

impl<'a, C, A> !Send for ProjectMethods<'a, C, A>

impl<'a, C, A> !Sync for ProjectMethods<'a, C, A>

impl<'a, C, A> Unpin for ProjectMethods<'a, C, A>

impl<'a, C, A> !UnwindSafe for ProjectMethods<'a, C, A>

impl<'a, C, A> !RefUnwindSafe for ProjectMethods<'a, C, A>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any