public static final class SecretManagerServiceGrpc.SecretManagerServiceBlockingStub extends AbstractBlockingStub<SecretManagerServiceGrpc.SecretManagerServiceBlockingStub>
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]
AbstractStub.StubFactory<T extends AbstractStub<T>>
Modifier and Type | Method and Description |
---|---|
AccessSecretVersionResponse |
accessSecretVersion(AccessSecretVersionRequest request)
Accesses a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].
|
SecretVersion |
addSecretVersion(AddSecretVersionRequest request)
Creates a new [SecretVersion][google.cloud.secretmanager.v1.SecretVersion] containing secret data and attaches
it to an existing [Secret][google.cloud.secretmanager.v1.Secret].
|
protected SecretManagerServiceGrpc.SecretManagerServiceBlockingStub |
build(Channel channel,
CallOptions callOptions) |
Secret |
createSecret(CreateSecretRequest request)
Creates a new [Secret][google.cloud.secretmanager.v1.Secret] containing no [SecretVersions][google.cloud.secretmanager.v1.SecretVersion].
|
Empty |
deleteSecret(DeleteSecretRequest request)
Deletes a [Secret][google.cloud.secretmanager.v1.Secret].
|
SecretVersion |
destroySecretVersion(DestroySecretVersionRequest request)
Destroys a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].
|
SecretVersion |
disableSecretVersion(DisableSecretVersionRequest request)
Disables a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].
|
SecretVersion |
enableSecretVersion(EnableSecretVersionRequest request)
Enables a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].
|
com.google.iam.v1.Policy |
getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the access control policy for a secret.
|
Secret |
getSecret(GetSecretRequest request)
Gets metadata for a given [Secret][google.cloud.secretmanager.v1.Secret].
|
SecretVersion |
getSecretVersion(GetSecretVersionRequest request)
Gets metadata for a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].
|
ListSecretsResponse |
listSecrets(ListSecretsRequest request)
Lists [Secrets][google.cloud.secretmanager.v1.Secret].
|
ListSecretVersionsResponse |
listSecretVersions(ListSecretVersionsRequest request)
Lists [SecretVersions][google.cloud.secretmanager.v1.SecretVersion].
|
com.google.iam.v1.Policy |
setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Sets the access control policy on the specified secret.
|
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Returns permissions that a caller has for the specified secret.
|
Secret |
updateSecret(UpdateSecretRequest request)
Updates metadata of an existing [Secret][google.cloud.secretmanager.v1.Secret].
|
newStub, newStub
getCallOptions, getChannel, withCallCredentials, withChannel, withCompression, withDeadline, withDeadlineAfter, withExecutor, withInterceptors, withMaxInboundMessageSize, withMaxOutboundMessageSize, withOption, withWaitForReady
protected SecretManagerServiceGrpc.SecretManagerServiceBlockingStub build(Channel channel, CallOptions callOptions)
build
in class AbstractStub<SecretManagerServiceGrpc.SecretManagerServiceBlockingStub>
public ListSecretsResponse listSecrets(ListSecretsRequest request)
Lists [Secrets][google.cloud.secretmanager.v1.Secret].
public Secret createSecret(CreateSecretRequest request)
Creates a new [Secret][google.cloud.secretmanager.v1.Secret] containing no [SecretVersions][google.cloud.secretmanager.v1.SecretVersion].
public SecretVersion addSecretVersion(AddSecretVersionRequest request)
Creates a new [SecretVersion][google.cloud.secretmanager.v1.SecretVersion] containing secret data and attaches it to an existing [Secret][google.cloud.secretmanager.v1.Secret].
public Secret getSecret(GetSecretRequest request)
Gets metadata for a given [Secret][google.cloud.secretmanager.v1.Secret].
public Secret updateSecret(UpdateSecretRequest request)
Updates metadata of an existing [Secret][google.cloud.secretmanager.v1.Secret].
public Empty deleteSecret(DeleteSecretRequest request)
Deletes a [Secret][google.cloud.secretmanager.v1.Secret].
public ListSecretVersionsResponse listSecretVersions(ListSecretVersionsRequest request)
Lists [SecretVersions][google.cloud.secretmanager.v1.SecretVersion]. This call does not return secret data.
public SecretVersion getSecretVersion(GetSecretVersionRequest request)
Gets metadata for a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion]. `projects/*/secrets/*/versions/latest` is an alias to the most recently created [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].
public AccessSecretVersionResponse accessSecretVersion(AccessSecretVersionRequest request)
Accesses a [SecretVersion][google.cloud.secretmanager.v1.SecretVersion]. This call returns the secret data. `projects/*/secrets/*/versions/latest` is an alias to the most recently created [SecretVersion][google.cloud.secretmanager.v1.SecretVersion].
public SecretVersion disableSecretVersion(DisableSecretVersionRequest request)
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].
public SecretVersion enableSecretVersion(EnableSecretVersionRequest request)
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].
public SecretVersion destroySecretVersion(DestroySecretVersionRequest request)
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.
public com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
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].
public com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the access control policy for a secret. Returns empty policy if the secret exists and does not have a policy set.
public com.google.iam.v1.TestIamPermissionsResponse testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
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.
Copyright © 2022 Google LLC. All rights reserved.