Struct gapi_grpc::google::cloud::secrets::v1beta1::secret_manager_service_client::SecretManagerServiceClient [−][src]
Secret Manager Service
Manages secrets and operations using those secrets. Implements a REST model with the following objects:
- [Secret][google.cloud.secrets.v1beta1.Secret]
- [SecretVersion][google.cloud.secrets.v1beta1.SecretVersion]
Implementations
impl SecretManagerServiceClient<Channel>
[src]
pub async fn connect<D>(dst: D) -> Result<Self, Error> where
D: TryInto<Endpoint>,
D::Error: Into<StdError>,
[src]
D: TryInto<Endpoint>,
D::Error: Into<StdError>,
Attempt to create a new client by connecting to a given endpoint.
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]
T: GrpcService<BoxBody>,
T::ResponseBody: Body + HttpBody + Send + 'static,
T::Error: Into<StdError>,
<T::ResponseBody as HttpBody>::Error: Into<StdError> + Send,
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]
&mut self,
request: impl IntoRequest<ListSecretsRequest>
) -> Result<Response<ListSecretsResponse>, Status>
Lists [Secrets][google.cloud.secrets.v1beta1.Secret].
pub async fn create_secret(
&mut self,
request: impl IntoRequest<CreateSecretRequest>
) -> Result<Response<Secret>, Status>
[src]
&mut self,
request: impl IntoRequest<CreateSecretRequest>
) -> Result<Response<Secret>, Status>
Creates a new [Secret][google.cloud.secrets.v1beta1.Secret] containing no [SecretVersions][google.cloud.secrets.v1beta1.SecretVersion].
pub async fn add_secret_version(
&mut self,
request: impl IntoRequest<AddSecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
[src]
&mut self,
request: impl IntoRequest<AddSecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
Creates a new [SecretVersion][google.cloud.secrets.v1beta1.SecretVersion] containing secret data and attaches it to an existing [Secret][google.cloud.secrets.v1beta1.Secret].
pub async fn get_secret(
&mut self,
request: impl IntoRequest<GetSecretRequest>
) -> Result<Response<Secret>, Status>
[src]
&mut self,
request: impl IntoRequest<GetSecretRequest>
) -> Result<Response<Secret>, Status>
Gets metadata for a given [Secret][google.cloud.secrets.v1beta1.Secret].
pub async fn update_secret(
&mut self,
request: impl IntoRequest<UpdateSecretRequest>
) -> Result<Response<Secret>, Status>
[src]
&mut self,
request: impl IntoRequest<UpdateSecretRequest>
) -> Result<Response<Secret>, Status>
Updates metadata of an existing [Secret][google.cloud.secrets.v1beta1.Secret].
pub async fn delete_secret(
&mut self,
request: impl IntoRequest<DeleteSecretRequest>
) -> Result<Response<()>, Status>
[src]
&mut self,
request: impl IntoRequest<DeleteSecretRequest>
) -> Result<Response<()>, Status>
Deletes a [Secret][google.cloud.secrets.v1beta1.Secret].
pub async fn list_secret_versions(
&mut self,
request: impl IntoRequest<ListSecretVersionsRequest>
) -> Result<Response<ListSecretVersionsResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<ListSecretVersionsRequest>
) -> Result<Response<ListSecretVersionsResponse>, Status>
Lists [SecretVersions][google.cloud.secrets.v1beta1.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]
&mut self,
request: impl IntoRequest<GetSecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
Gets metadata for a [SecretVersion][google.cloud.secrets.v1beta1.SecretVersion].
projects/*/secrets/*/versions/latest
is an alias to the latest
[SecretVersion][google.cloud.secrets.v1beta1.SecretVersion].
pub async fn access_secret_version(
&mut self,
request: impl IntoRequest<AccessSecretVersionRequest>
) -> Result<Response<AccessSecretVersionResponse>, Status>
[src]
&mut self,
request: impl IntoRequest<AccessSecretVersionRequest>
) -> Result<Response<AccessSecretVersionResponse>, Status>
Accesses a [SecretVersion][google.cloud.secrets.v1beta1.SecretVersion]. This call returns the secret data.
projects/*/secrets/*/versions/latest
is an alias to the latest
[SecretVersion][google.cloud.secrets.v1beta1.SecretVersion].
pub async fn disable_secret_version(
&mut self,
request: impl IntoRequest<DisableSecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
[src]
&mut self,
request: impl IntoRequest<DisableSecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
Disables a [SecretVersion][google.cloud.secrets.v1beta1.SecretVersion].
Sets the [state][google.cloud.secrets.v1beta1.SecretVersion.state] of the [SecretVersion][google.cloud.secrets.v1beta1.SecretVersion] to [DISABLED][google.cloud.secrets.v1beta1.SecretVersion.State.DISABLED].
pub async fn enable_secret_version(
&mut self,
request: impl IntoRequest<EnableSecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
[src]
&mut self,
request: impl IntoRequest<EnableSecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
Enables a [SecretVersion][google.cloud.secrets.v1beta1.SecretVersion].
Sets the [state][google.cloud.secrets.v1beta1.SecretVersion.state] of the [SecretVersion][google.cloud.secrets.v1beta1.SecretVersion] to [ENABLED][google.cloud.secrets.v1beta1.SecretVersion.State.ENABLED].
pub async fn destroy_secret_version(
&mut self,
request: impl IntoRequest<DestroySecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
[src]
&mut self,
request: impl IntoRequest<DestroySecretVersionRequest>
) -> Result<Response<SecretVersion>, Status>
Destroys a [SecretVersion][google.cloud.secrets.v1beta1.SecretVersion].
Sets the [state][google.cloud.secrets.v1beta1.SecretVersion.state] of the [SecretVersion][google.cloud.secrets.v1beta1.SecretVersion] to [DESTROYED][google.cloud.secrets.v1beta1.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]
&mut self,
request: impl IntoRequest<SetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
Sets the access control policy on the specified secret. Replaces any existing policy.
Permissions on [SecretVersions][google.cloud.secrets.v1beta1.SecretVersion] are enforced according to the policy set on the associated [Secret][google.cloud.secrets.v1beta1.Secret].
pub async fn get_iam_policy(
&mut self,
request: impl IntoRequest<GetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
[src]
&mut self,
request: impl IntoRequest<GetIamPolicyRequest>
) -> Result<Response<Policy>, Status>
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]
&mut self,
request: impl IntoRequest<TestIamPermissionsRequest>
) -> Result<Response<TestIamPermissionsResponse>, Status>
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]
fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[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,
T: Send,
impl<T> Sync for SecretManagerServiceClient<T> where
T: Sync,
T: Sync,
impl<T> Unpin for SecretManagerServiceClient<T> where
T: Unpin,
T: Unpin,
impl<T> !UnwindSafe for SecretManagerServiceClient<T>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoRequest<T> for T
[src]
pub fn into_request(self) -> Request<T>
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,
impl<T> WithSubscriber for T
[src]
pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,