pub struct ProjectMethods<'a, C>where
C: 'a,{ /* private fields */ }
Expand description
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 google_sourcerepo1 as sourcerepo1;
use sourcerepo1::{CloudSourceRepositories, FieldMask, hyper_rustls, hyper_util, yup_oauth2};
let secret: yup_oauth2::ApplicationSecret = Default::default();
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
secret,
yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
).build().await.unwrap();
let client = hyper_util::client::legacy::Client::builder(
hyper_util::rt::TokioExecutor::new()
)
.build(
hyper_rustls::HttpsConnectorBuilder::new()
.with_native_roots()
.unwrap()
.https_or_http()
.enable_http1()
.build()
);
let mut hub = CloudSourceRepositories::new(client, 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();
Implementations§
Source§impl<'a, C> ProjectMethods<'a, C>
impl<'a, C> ProjectMethods<'a, C>
Sourcepub fn repos_create(
&self,
request: Repo,
parent: &str,
) -> ProjectRepoCreateCall<'a, C>
pub fn repos_create( &self, request: Repo, parent: &str, ) -> ProjectRepoCreateCall<'a, C>
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 formprojects/
.
Sourcepub fn repos_delete(&self, name: &str) -> ProjectRepoDeleteCall<'a, C>
pub fn repos_delete(&self, name: &str) -> ProjectRepoDeleteCall<'a, C>
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 formprojects//repos/
.
Sourcepub fn repos_get(&self, name: &str) -> ProjectRepoGetCall<'a, C>
pub fn repos_get(&self, name: &str) -> ProjectRepoGetCall<'a, C>
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 formprojects//repos/
.
Sourcepub fn repos_get_iam_policy(
&self,
resource: &str,
) -> ProjectRepoGetIamPolicyCall<'a, C>
pub fn repos_get_iam_policy( &self, resource: &str, ) -> ProjectRepoGetIamPolicyCall<'a, C>
Create a builder to help you perform the following task:
Gets the IAM policy 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 Resource names for the appropriate value for this field.
Sourcepub fn repos_list(&self, name: &str) -> ProjectRepoListCall<'a, C>
pub fn repos_list(&self, name: &str) -> ProjectRepoListCall<'a, C>
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 formprojects/
.
Sourcepub fn repos_patch(
&self,
request: UpdateRepoRequest,
name: &str,
) -> ProjectRepoPatchCall<'a, C>
pub fn repos_patch( &self, request: UpdateRepoRequest, name: &str, ) -> ProjectRepoPatchCall<'a, C>
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 formprojects//repos/
.
Sourcepub fn repos_set_iam_policy(
&self,
request: SetIamPolicyRequest,
resource: &str,
) -> ProjectRepoSetIamPolicyCall<'a, C>
pub fn repos_set_iam_policy( &self, request: SetIamPolicyRequest, resource: &str, ) -> ProjectRepoSetIamPolicyCall<'a, C>
Create a builder to help you perform the following task:
Sets the IAM 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 Resource names for the appropriate value for this field.
Sourcepub fn repos_sync(
&self,
request: SyncRepoRequest,
name: &str,
) -> ProjectRepoSyncCall<'a, C>
pub fn repos_sync( &self, request: SyncRepoRequest, name: &str, ) -> ProjectRepoSyncCall<'a, C>
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 formprojects//repos/
.
Sourcepub fn repos_test_iam_permissions(
&self,
request: TestIamPermissionsRequest,
resource: &str,
) -> ProjectRepoTestIamPermissionCall<'a, C>
pub fn repos_test_iam_permissions( &self, request: TestIamPermissionsRequest, resource: &str, ) -> ProjectRepoTestIamPermissionCall<'a, C>
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 Resource names for the appropriate value for this field.
Sourcepub fn get_config(&self, name: &str) -> ProjectGetConfigCall<'a, C>
pub fn get_config(&self, name: &str) -> ProjectGetConfigCall<'a, C>
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 formprojects/
.
Sourcepub fn update_config(
&self,
request: UpdateProjectConfigRequest,
name: &str,
) -> ProjectUpdateConfigCall<'a, C>
pub fn update_config( &self, request: UpdateProjectConfigRequest, name: &str, ) -> ProjectUpdateConfigCall<'a, C>
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 formprojects/
.
Trait Implementations§
impl<'a, C> MethodsBuilder for ProjectMethods<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for ProjectMethods<'a, C>
impl<'a, C> !RefUnwindSafe for ProjectMethods<'a, C>
impl<'a, C> Send for ProjectMethods<'a, C>where
C: Sync,
impl<'a, C> Sync for ProjectMethods<'a, C>where
C: Sync,
impl<'a, C> Unpin for ProjectMethods<'a, C>
impl<'a, C> !UnwindSafe for ProjectMethods<'a, C>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more