[][src]Struct google_sqladmin1_beta4::SslCertMethods

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

A builder providing access to all methods supported on sslCert 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 yup_oauth2 as oauth2;
extern crate google_sqladmin1_beta4 as sqladmin1_beta4;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use sqladmin1_beta4::SQLAdmin;
 
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 = SQLAdmin::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 `create_ephemeral(...)`, `delete(...)`, `get(...)`, `insert(...)` and `list(...)`
// to build up your call.
let rb = hub.ssl_certs();

Methods

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

pub fn insert(
    &self,
    request: SslCertsInsertRequest,
    project: &str,
    instance: &str
) -> SslCertInsertCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Creates an SSL certificate and returns it along with the private key and server certificate authority. The new certificate will not be usable until the instance is restarted.

Arguments

  • request - No description provided.
  • project - Project ID of the project that contains the instance.
  • instance - Cloud SQL instance ID. This does not include the project ID.

pub fn delete(
    &self,
    project: &str,
    instance: &str,
    sha1_fingerprint: &str
) -> SslCertDeleteCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Deletes the SSL certificate. For First Generation instances, the certificate remains valid until the instance is restarted.

Arguments

  • project - Project ID of the project that contains the instance.
  • instance - Cloud SQL instance ID. This does not include the project ID.
  • sha1Fingerprint - Sha1 FingerPrint.

pub fn get(
    &self,
    project: &str,
    instance: &str,
    sha1_fingerprint: &str
) -> SslCertGetCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Retrieves a particular SSL certificate. Does not include the private key (required for usage). The private key must be saved from the response to initial creation.

Arguments

  • project - Project ID of the project that contains the instance.
  • instance - Cloud SQL instance ID. This does not include the project ID.
  • sha1Fingerprint - Sha1 FingerPrint.

pub fn create_ephemeral(
    &self,
    request: SslCertsCreateEphemeralRequest,
    project: &str,
    instance: &str
) -> SslCertCreateEphemeralCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Generates a short-lived X509 certificate containing the provided public key and signed by a private key specific to the target instance. Users may use the certificate to authenticate as themselves when connecting to the database.

Arguments

  • request - No description provided.
  • project - Project ID of the Cloud SQL project.
  • instance - Cloud SQL instance ID. This does not include the project ID.

pub fn list(&self, project: &str, instance: &str) -> SslCertListCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Lists all of the current SSL certificates for the instance.

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, C, A> MethodsBuilder for SslCertMethods<'a, C, A>[src]

Auto Trait Implementations

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

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

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

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

impl<'a, C, A> !RefUnwindSafe for SslCertMethods<'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 = Infallible

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<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

fn get_type(&self) -> TypeId

Get the TypeId of this object.