Skip to content

Commit

Permalink
fix: rename comment samples (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo authored and bcoe committed Dec 20, 2019
1 parent ee175d7 commit b3b3b0e
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion secret-manager/accessSecretVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function main(name = 'projects/my-project/secrets/my-secret/versions/1') {
// const name = 'projects/my-project/secrets/my-secret/versions/5';
// const name = 'projects/my-project/secrets/my-secret/versions/latest';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down
2 changes: 1 addition & 1 deletion secret-manager/addSecretVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function main(parent = 'projects/my-project/secrets/my-secret') {
*/
// const parent = 'projects/my-project/secrets/my-secret';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down
2 changes: 1 addition & 1 deletion secret-manager/createSecret.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function main(parent = 'projects/my-project', secretId = 'my-secret') {
// const parent = 'projects/my-project';
// const secretId = 'my-secret';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down
2 changes: 1 addition & 1 deletion secret-manager/deleteSecret.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function main(name = 'projects/my-project/secrets/my-secret') {
*/
// const name = 'projects/my-project/secrets/my-secret';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down
2 changes: 1 addition & 1 deletion secret-manager/destroySecretVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function main(name = 'projects/my-project/secrets/my-secret/versions/1') {
*/
// const name = 'projects/my-project/secrets/my-secret/versions/5';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down
2 changes: 1 addition & 1 deletion secret-manager/disableSecretVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function main(name = 'projects/my-project/secrets/my-secret/versions/1') {
*/
// const name = 'projects/my-project/secrets/my-secret/versions/5';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down
2 changes: 1 addition & 1 deletion secret-manager/enableSecretVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function main(name = 'projects/my-project/secrets/my-secret/versions/1') {
*/
// const name = 'projects/my-project/secrets/my-secret/versions/5';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down
2 changes: 1 addition & 1 deletion secret-manager/getSecret.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function main(name = 'projects/my-project/secrets/my-secret') {
*/
// const name = 'projects/my-project/secrets/my-secret';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down
2 changes: 1 addition & 1 deletion secret-manager/getSecretVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function main(name = 'projects/my-project/secrets/my-secret/versions/1') {
// const name = 'projects/my-project/secrets/my-secret/versions/5';
// const name = 'projects/my-project/secrets/my-secret/versions/latest';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down
2 changes: 1 addition & 1 deletion secret-manager/listSecretVersions.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function main(parent = 'projects/my-project/secrets/my-secret') {
*/
// const parent = 'projects/my-project/secrets/my-secret';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down
2 changes: 1 addition & 1 deletion secret-manager/listSecrets.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function main(parent = 'projects/my-project') {
*/
// const parent = 'projects/my-project';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down
2 changes: 1 addition & 1 deletion secret-manager/updateSecret.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function main(name = 'projects/my-project/secrets/my-secret') {
*/
// const name = 'projects/my-project/secrets/my-secret';

// Imports the Google Cloud Some API library
// Imports the Secret Manager library
const {SecretManagerServiceClient} = require('@google-cloud/secret-manager');

// Instantiates a client
Expand Down

0 comments on commit b3b3b0e

Please sign in to comment.