Struct google_sqladmin1_beta4::SQLAdmin
source · pub struct SQLAdmin<C, A> { /* private fields */ }
Expand description
Central instance to access all SQLAdmin related resource activities
§Examples
Instantiate a new hub
extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_sqladmin1_beta4 as sqladmin1_beta4;
use sqladmin1_beta4::User;
use sqladmin1_beta4::{Result, Error};
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use sqladmin1_beta4::SQLAdmin;
// Get an ApplicationSecret instance by some means. It contains the `client_id` and
// `client_secret`, among other things.
let secret: ApplicationSecret = Default::default();
// Instantiate the authenticator. It will choose a suitable authentication flow for you,
// unless you replace `None` with the desired Flow.
// Provide your own `AuthenticatorDelegate` to adjust the way it operates and get feedback about
// what's going on. You probably want to bring in your own `TokenStorage` to persist tokens and
// retrieve them from storage.
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 = SQLAdmin::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), auth);
// As the method needs a request, you would usually fill it with the desired information
// into the respective structure. Some of the parts shown here might not be applicable !
// Values shown here are possibly random and not representative !
let mut req = User::default();
// You can configure optional parameters by calling the respective setters at will, and
// execute the final call using `doit()`.
// Values shown here are possibly random and not representative !
let result = hub.users().update(req, "project", "instance", "name")
.host("erat")
.doit();
match result {
Err(e) => match e {
// The Error enum provides details about what exactly happened.
// You can also just use its `Debug`, `Display` or `Error` traits
Error::HttpError(_)
|Error::MissingAPIKey
|Error::MissingToken(_)
|Error::Cancelled
|Error::UploadSizeLimitExceeded(_, _)
|Error::Failure(_)
|Error::BadRequest(_)
|Error::FieldClash(_)
|Error::JsonDecodeError(_, _) => println!("{}", e),
},
Ok(res) => println!("Success: {:?}", res),
}
Implementations§
source§impl<'a, C, A> SQLAdmin<C, A>
impl<'a, C, A> SQLAdmin<C, A>
pub fn new(client: C, authenticator: A) -> SQLAdmin<C, A>
pub fn backup_runs(&'a self) -> BackupRunMethods<'a, C, A>
pub fn databases(&'a self) -> DatabaseMethods<'a, C, A>
pub fn flags(&'a self) -> FlagMethods<'a, C, A>
pub fn instances(&'a self) -> InstanceMethods<'a, C, A>
pub fn operations(&'a self) -> OperationMethods<'a, C, A>
pub fn ssl_certs(&'a self) -> SslCertMethods<'a, C, A>
pub fn tiers(&'a self) -> TierMethods<'a, C, A>
pub fn users(&'a self) -> UserMethods<'a, C, A>
sourcepub fn user_agent(&mut self, agent_name: String) -> String
pub fn user_agent(&mut self, agent_name: String) -> String
Set the user-agent header field to use in all requests to the server.
It defaults to google-api-rust-client/1.0.7
.
Returns the previously set user-agent.
Trait Implementations§
Auto Trait Implementations§
impl<C, A> !Freeze for SQLAdmin<C, A>
impl<C, A> !RefUnwindSafe for SQLAdmin<C, A>
impl<C, A> Send for SQLAdmin<C, A>
impl<C, A> !Sync for SQLAdmin<C, A>
impl<C, A> Unpin for SQLAdmin<C, A>
impl<C, A> UnwindSafe for SQLAdmin<C, A>where
C: UnwindSafe,
A: UnwindSafe,
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
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>
Converts
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>
Converts
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