forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquickstart.js
58 lines (50 loc) · 1.63 KB
/
quickstart.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* Copyright 2017, Google, Inc.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
// [START kms_quickstart]
// Imports the Google APIs client library
const {google} = require('googleapis');
// Your Google Cloud Platform project ID
const projectId = process.env.GCLOUD_PROJECT;
// Lists keys in the "global" location.
const location = 'global';
// Acquires credentials
google.auth
.getClient({scopes: ['https://www.googleapis.com/auth/cloud-platform']})
.then(auth => {
// Instantiates an authorized client
const cloudkms = google.cloudkms({
version: 'v1',
auth,
});
const request = {
parent: `projects/${projectId}/locations/${location}`,
};
// Lists key rings
cloudkms.projects.locations.keyRings.list(request, (err, result) => {
if (err) {
console.error(err);
return;
}
const keyRings = result.data.keyRings || [];
if (keyRings.length) {
console.log('Key rings:');
keyRings.forEach(keyRing => console.log(keyRing.name));
} else {
console.log(`No key rings found.`);
}
});
});
// [END kms_quickstart]