Constructor
new SecretManagerServiceClient(optionsopt, gaxInstanceopt)
Construct an instance of SecretManagerServiceClient.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
object |
<optional> |
The configuration object. The options accepted by the constructor are described in detail in this document. The common options are: Properties
|
||||||||||||||||||||||||||||||||||||||||||||||||
gaxInstance |
gax |
<optional> |
loaded instance of |
Members
apiEndpoint
The DNS address for this API service.
apiEndpoint
The DNS address for this API service - same as servicePath.
port
The port for this API service.
scopes
The scopes needed to make gRPC calls for every method defined in this service.
servicePath
The DNS address for this API service.
Methods
close() → {Promise}
Terminate the gRPC channel and close the client.
The client will no longer be usable and all future behavior is undefined.
Returns:
Type | Description |
---|---|
Promise |
A promise that resolves when the client is closed. |
getLocation(request, optionsopt) → {Promise}
Gets information about a location.
Parameters:
Name | Type | Attributes | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Promise |
|
getProjectId() → {Promise}
Return the project ID used by this class.
Returns:
Type | Description |
---|---|
Promise |
A promise that resolves to string containing the project ID. |
initialize() → {Promise}
Initialize the client. Performs asynchronous operations (such as authentication) and prepares the client. This function will be called automatically when any class method is called for the first time, but if you need to initialize it before calling an actual method, feel free to call initialize() directly.
You can await on this method if you want to make sure the client is initialized.
Returns:
Type | Description |
---|---|
Promise |
A promise that resolves to an authenticated service stub. |
listLocationsAsync(request, optionsopt) → {Object}
Lists information about the supported locations for this service. Returns an iterable object.
for
-await
-of
syntax is used with the iterable to get response elements on-demand.
Parameters:
Name | Type | Attributes | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Object |
An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing Location. The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples. |
Example
```
const iterable = client.listLocationsAsync(request);
for await (const response of iterable) {
// process response
}
```
listSecretVersionsAsync(request, optionsopt) → {Object}
Equivalent to listSecretVersions
, but returns an iterable object.
for
-await
-of
syntax is used with the iterable to get response elements on-demand.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Object |
An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing SecretVersion. The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples. |
Example
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The resource name of the
* Secret google.cloud.secretmanager.v1beta2.Secret associated with the
* SecretVersions google.cloud.secretmanager.v1beta2.SecretVersion to list,
* in the format `projects/* /secrets/*` or `projects/* /locations/* /secrets/*`.
*/
// const parent = 'abc123'
/**
* Optional. The maximum number of results to be returned in a single page. If
* set to 0, the server decides the number of results to return. If the
* number is greater than 25000, it is capped at 25000.
*/
// const pageSize = 1234
/**
* Optional. Pagination token, returned earlier via
* ListSecretVersionsResponse.next_page_token .
*/
// const pageToken = 'abc123'
/**
* Optional. Filter string, adhering to the rules in
* List-operation
* filtering (https://cloud.google.com/secret-manager/docs/filtering). List
* only secret versions matching the filter. If filter is empty, all secret
* versions are listed.
*/
// const filter = 'abc123'
// Imports the Secretmanager library
const {SecretManagerServiceClient} = require('@google-cloud/secretmanager').v1beta2;
// Instantiates a client
const secretmanagerClient = new SecretManagerServiceClient();
async function callListSecretVersions() {
// Construct request
const request = {
parent,
};
// Run request
const iterable = secretmanagerClient.listSecretVersionsAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callListSecretVersions();
listSecretVersionsStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase()
, but returns a NodeJS Stream object.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Stream |
An object stream which emits an object representing SecretVersion on 'data' event.
The client library will perform auto-pagination by default: it will call the API as many
times as needed. Note that it can affect your quota.
We recommend using |
listSecretsAsync(request, optionsopt) → {Object}
Equivalent to listSecrets
, but returns an iterable object.
for
-await
-of
syntax is used with the iterable to get response elements on-demand.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Object |
An iterable Object that allows async iteration. When you iterate the returned iterable, each element will be an object representing Secret. The API will be called under the hood as needed, once per the page, so you can stop the iteration when you don't need more results. Please see the documentation for more details and examples. |
Example
/**
* This snippet has been automatically generated and should be regarded as a code template only.
* It will require modifications to work.
* It may require correct/in-range values for request initialization.
* TODO(developer): Uncomment these variables before running the sample.
*/
/**
* Required. The resource name of the project associated with the
* Secrets google.cloud.secretmanager.v1beta2.Secret, in the format
* `projects/*` or `projects/* /locations/*`
*/
// const parent = 'abc123'
/**
* Optional. The maximum number of results to be returned in a single page. If
* set to 0, the server decides the number of results to return. If the
* number is greater than 25000, it is capped at 25000.
*/
// const pageSize = 1234
/**
* Optional. Pagination token, returned earlier via
* ListSecretsResponse.next_page_token google.cloud.secretmanager.v1beta2.ListSecretsResponse.next_page_token.
*/
// const pageToken = 'abc123'
/**
* Optional. Filter string, adhering to the rules in
* List-operation
* filtering (https://cloud.google.com/secret-manager/docs/filtering). List
* only secrets matching the filter. If filter is empty, all secrets are
* listed.
*/
// const filter = 'abc123'
// Imports the Secretmanager library
const {SecretManagerServiceClient} = require('@google-cloud/secretmanager').v1beta2;
// Instantiates a client
const secretmanagerClient = new SecretManagerServiceClient();
async function callListSecrets() {
// Construct request
const request = {
parent,
};
// Run request
const iterable = secretmanagerClient.listSecretsAsync(request);
for await (const response of iterable) {
console.log(response);
}
}
callListSecrets();
listSecretsStream(request, optionsopt) → {Stream}
Equivalent to method.name.toCamelCase()
, but returns a NodeJS Stream object.
Parameters:
Name | Type | Attributes | Description | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
request |
Object |
The request object that will be sent. Properties
|
|||||||||||||||||||||
options |
object |
<optional> |
Call options. See CallOptions for more details. |
Returns:
Type | Description |
---|---|
Stream |
An object stream which emits an object representing Secret on 'data' event.
The client library will perform auto-pagination by default: it will call the API as many
times as needed. Note that it can affect your quota.
We recommend using |
matchLocationFromProjectLocationSecretName(projectLocationSecretName) → {string}
Parse the location from ProjectLocationSecret resource.
Parameters:
Name | Type | Description |
---|---|---|
projectLocationSecretName |
string |
A fully-qualified path representing project_location_secret resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the location. |
matchLocationFromProjectLocationSecretSecretVersionName(projectLocationSecretSecretVersionName) → {string}
Parse the location from ProjectLocationSecretSecretVersion resource.
Parameters:
Name | Type | Description |
---|---|---|
projectLocationSecretSecretVersionName |
string |
A fully-qualified path representing project_location_secret_secret_version resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the location. |
matchProjectFromProjectLocationSecretName(projectLocationSecretName) → {string}
Parse the project from ProjectLocationSecret resource.
Parameters:
Name | Type | Description |
---|---|---|
projectLocationSecretName |
string |
A fully-qualified path representing project_location_secret resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromProjectLocationSecretSecretVersionName(projectLocationSecretSecretVersionName) → {string}
Parse the project from ProjectLocationSecretSecretVersion resource.
Parameters:
Name | Type | Description |
---|---|---|
projectLocationSecretSecretVersionName |
string |
A fully-qualified path representing project_location_secret_secret_version resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromProjectName(projectName) → {string}
Parse the project from Project resource.
Parameters:
Name | Type | Description |
---|---|---|
projectName |
string |
A fully-qualified path representing Project resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromProjectSecretName(projectSecretName) → {string}
Parse the project from ProjectSecret resource.
Parameters:
Name | Type | Description |
---|---|---|
projectSecretName |
string |
A fully-qualified path representing project_secret resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromProjectSecretSecretVersionName(projectSecretSecretVersionName) → {string}
Parse the project from ProjectSecretSecretVersion resource.
Parameters:
Name | Type | Description |
---|---|---|
projectSecretSecretVersionName |
string |
A fully-qualified path representing project_secret_secret_version resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchProjectFromTopicName(topicName) → {string}
Parse the project from Topic resource.
Parameters:
Name | Type | Description |
---|---|---|
topicName |
string |
A fully-qualified path representing Topic resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the project. |
matchSecretFromProjectLocationSecretName(projectLocationSecretName) → {string}
Parse the secret from ProjectLocationSecret resource.
Parameters:
Name | Type | Description |
---|---|---|
projectLocationSecretName |
string |
A fully-qualified path representing project_location_secret resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the secret. |
matchSecretFromProjectLocationSecretSecretVersionName(projectLocationSecretSecretVersionName) → {string}
Parse the secret from ProjectLocationSecretSecretVersion resource.
Parameters:
Name | Type | Description |
---|---|---|
projectLocationSecretSecretVersionName |
string |
A fully-qualified path representing project_location_secret_secret_version resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the secret. |
matchSecretFromProjectSecretName(projectSecretName) → {string}
Parse the secret from ProjectSecret resource.
Parameters:
Name | Type | Description |
---|---|---|
projectSecretName |
string |
A fully-qualified path representing project_secret resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the secret. |
matchSecretFromProjectSecretSecretVersionName(projectSecretSecretVersionName) → {string}
Parse the secret from ProjectSecretSecretVersion resource.
Parameters:
Name | Type | Description |
---|---|---|
projectSecretSecretVersionName |
string |
A fully-qualified path representing project_secret_secret_version resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the secret. |
matchSecretVersionFromProjectLocationSecretSecretVersionName(projectLocationSecretSecretVersionName) → {string}
Parse the secret_version from ProjectLocationSecretSecretVersion resource.
Parameters:
Name | Type | Description |
---|---|---|
projectLocationSecretSecretVersionName |
string |
A fully-qualified path representing project_location_secret_secret_version resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the secret_version. |
matchSecretVersionFromProjectSecretSecretVersionName(projectSecretSecretVersionName) → {string}
Parse the secret_version from ProjectSecretSecretVersion resource.
Parameters:
Name | Type | Description |
---|---|---|
projectSecretSecretVersionName |
string |
A fully-qualified path representing project_secret_secret_version resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the secret_version. |
matchTopicFromTopicName(topicName) → {string}
Parse the topic from Topic resource.
Parameters:
Name | Type | Description |
---|---|---|
topicName |
string |
A fully-qualified path representing Topic resource. |
Returns:
Type | Description |
---|---|
string |
A string representing the topic. |
projectLocationSecretPath(project, location, secret) → {string}
Return a fully-qualified projectLocationSecret resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
location |
string | |
secret |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
projectLocationSecretSecretVersionPath(project, location, secret, secret_version) → {string}
Return a fully-qualified projectLocationSecretSecretVersion resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
location |
string | |
secret |
string | |
secret_version |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
projectPath(project) → {string}
Return a fully-qualified project resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
projectSecretPath(project, secret) → {string}
Return a fully-qualified projectSecret resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
secret |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
projectSecretSecretVersionPath(project, secret, secret_version) → {string}
Return a fully-qualified projectSecretSecretVersion resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
secret |
string | |
secret_version |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |
topicPath(project, topic) → {string}
Return a fully-qualified topic resource name string.
Parameters:
Name | Type | Description |
---|---|---|
project |
string | |
topic |
string |
Returns:
Type | Description |
---|---|
string |
Resource name string. |