Struct google_sql1_beta4::api::ProjectMethods
source · 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 SQLAdmin hub.
§Example
Instantiate a resource builder
extern crate hyper;
extern crate hyper_rustls;
extern crate google_sql1_beta4 as sql1_beta4;
use std::default::Default;
use sql1_beta4::{SQLAdmin, 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 = SQLAdmin::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 `instances_reschedule_maintenance(...)`, `instances_start_external_sync(...)` and `instances_verify_external_sync_settings(...)`
// to build up your call.
let rb = hub.projects();Implementations§
source§impl<'a, S> ProjectMethods<'a, S>
impl<'a, S> ProjectMethods<'a, S>
sourcepub fn instances_reschedule_maintenance(
&self,
request: SqlInstancesRescheduleMaintenanceRequestBody,
project: &str,
instance: &str
) -> ProjectInstanceRescheduleMaintenanceCall<'a, S>
pub fn instances_reschedule_maintenance( &self, request: SqlInstancesRescheduleMaintenanceRequestBody, project: &str, instance: &str ) -> ProjectInstanceRescheduleMaintenanceCall<'a, S>
Create a builder to help you perform the following task:
Reschedules the maintenance on the given instance.
§Arguments
request- No description provided.project- ID of the project that contains the instance.instance- Cloud SQL instance ID. This does not include the project ID.
sourcepub fn instances_start_external_sync(
&self,
project: &str,
instance: &str
) -> ProjectInstanceStartExternalSyncCall<'a, S>
pub fn instances_start_external_sync( &self, project: &str, instance: &str ) -> ProjectInstanceStartExternalSyncCall<'a, S>
Create a builder to help you perform the following task:
Start External master migration.
§Arguments
project- ID of the project that contains the first generation instance.instance- Cloud SQL instance ID. This does not include the project ID.
sourcepub fn instances_verify_external_sync_settings(
&self,
project: &str,
instance: &str
) -> ProjectInstanceVerifyExternalSyncSettingCall<'a, S>
pub fn instances_verify_external_sync_settings( &self, project: &str, instance: &str ) -> ProjectInstanceVerifyExternalSyncSettingCall<'a, S>
Create a builder to help you perform the following task:
Verify External master external sync settings.
§Arguments
project- Project ID of the project that contains the instance.instance- Cloud SQL instance ID. This does not include the project ID.
Trait Implementations§
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> 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
Mutably borrows from an owned value. Read more