[][src]Struct gcp_client::google::cloud::secretmanager::v1::secret_manager_service_client::SecretManagerServiceClient

pub struct SecretManagerServiceClient<T> { /* fields omitted */ }

Secret Manager Service

Manages secrets and operations using those secrets. Implements a REST model with the following objects:

  • [Secret][google.cloud.secretmanager.v1.Secret]
  • [SecretVersion][google.cloud.secretmanager.v1.SecretVersion]

Implementations

impl<T> SecretManagerServiceClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn list_secrets<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListSecretsRequest>
) -> Result<Response<ListSecretsResponse>, Status>
[src]

Lists [Secrets][google.cloud.secretmanager.v1.Secret].

pub async fn create_secret<'_>(
    &'_ mut self,
    request: impl IntoRequest<CreateSecretRequest>
) -> Result<Response<Secret>, Status>
[src]

Creates a new [Secret][google.cloud.secretmanager.v1.Secret] containing no [SecretVersions][google.cloud.secretmanager.v1.SecretVersion].

pub async fn add_secret_version<'_>(
    &'_ mut self,
    request: impl IntoRequest<AddSecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
[src]

Creates a new [SecretVersion][google.cloud.secretmanager.v1.SecretVersion] containing secret data and attaches it to an existing [Secret][google.cloud.secretmanager.v1.Secret].

pub async fn get_secret<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetSecretRequest>
) -> Result<Response<Secret>, Status>
[src]

Gets metadata for a given [Secret][google.cloud.secretmanager.v1.Secret].

pub async fn update_secret<'_>(
    &'_ mut self,
    request: impl IntoRequest<UpdateSecretRequest>
) -> Result<Response<Secret>, Status>
[src]

Updates metadata of an existing [Secret][google.cloud.secretmanager.v1.Secret].

pub async fn delete_secret<'_>(
    &'_ mut self,
    request: impl IntoRequest<DeleteSecretRequest>
) -> Result<Response<()>, Status>
[src]

Deletes a [Secret][google.cloud.secretmanager.v1.Secret].

pub async fn list_secret_versions<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListSecretVersionsRequest>
) -> Result<Response<ListSecretVersionsResponse>, Status>
[src]

Lists [SecretVersions][google.cloud.secretmanager.v1.SecretVersion]. This call does not return secret data.

pub async fn get_secret_version<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetSecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
[src]

Gets metadata for a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].

projects/*/secrets/*/versions/latest is an alias to the latest [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].

pub async fn access_secret_version<'_>(
    &'_ mut self,
    request: impl IntoRequest<AccessSecretVersionRequest>
) -> Result<Response<AccessSecretVersionResponse>, Status>
[src]

Accesses a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion]. This call returns the secret data.

projects/*/secrets/*/versions/latest is an alias to the latest [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].

pub async fn disable_secret_version<'_>(
    &'_ mut self,
    request: impl IntoRequest<DisableSecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
[src]

Disables a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].

Sets the [state][google.cloud.secretmanager.v1.SecretVersion.state] of the [SecretVersion][google.cloud.secretmanager.v1.SecretVersion] to [DISABLED][google.cloud.secretmanager.v1.SecretVersion.State.DISABLED].

pub async fn enable_secret_version<'_>(
    &'_ mut self,
    request: impl IntoRequest<EnableSecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
[src]

Enables a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].

Sets the [state][google.cloud.secretmanager.v1.SecretVersion.state] of the [SecretVersion][google.cloud.secretmanager.v1.SecretVersion] to [ENABLED][google.cloud.secretmanager.v1.SecretVersion.State.ENABLED].

pub async fn destroy_secret_version<'_>(
    &'_ mut self,
    request: impl IntoRequest<DestroySecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
[src]

Destroys a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].

Sets the [state][google.cloud.secretmanager.v1.SecretVersion.state] of the [SecretVersion][google.cloud.secretmanager.v1.SecretVersion] to [DESTROYED][google.cloud.secretmanager.v1.SecretVersion.State.DESTROYED] and irrevocably destroys the secret data.

pub async fn set_iam_policy<'_>(
    &'_ mut self,
    request: impl IntoRequest<SetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
[src]

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

Permissions on [SecretVersions][google.cloud.secretmanager.v1.SecretVersion] are enforced according to the policy set on the associated [Secret][google.cloud.secretmanager.v1.Secret].

pub async fn get_iam_policy<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
[src]

Gets the access control policy for a secret. Returns empty policy if the secret exists and does not have a policy set.

pub async fn test_iam_permissions<'_>(
    &'_ mut self,
    request: impl IntoRequest<TestIamPermissionsRequest>
) -> Result<Response<TestIamPermissionsResponse>, Status>
[src]

Returns permissions that a caller has for the specified secret. If the secret does not exist, this call returns an empty set of permissions, not a NOT_FOUND error.

Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.

Trait Implementations

impl<T: Clone> Clone for SecretManagerServiceClient<T>[src]

impl<T> Debug for SecretManagerServiceClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for SecretManagerServiceClient<T>

impl<T> Send for SecretManagerServiceClient<T> where
    T: Send

impl<T> Sync for SecretManagerServiceClient<T> where
    T: Sync

impl<T> Unpin for SecretManagerServiceClient<T> where
    T: Unpin

impl<T> !UnwindSafe for SecretManagerServiceClient<T>

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]