-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48f9b44
commit ed1ec7b
Showing
18 changed files
with
1,869 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/** | ||
* Copyright 2019 Google LLC | ||
* | ||
* 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 | ||
* | ||
* https://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'; | ||
|
||
// sample-metadata: | ||
// title: Activate HMAC SA Key. | ||
// description: Activate HMAC SA Key. | ||
// usage: node hmacKeyActivate.js <hmacKeyAccessId> [projectId] | ||
|
||
function main( | ||
hmacKeyAccessId = 'GOOG0234230X00', | ||
projectId = 'serviceAccountProjectId' | ||
) { | ||
// [START storage_activate_hmac_key] | ||
// Imports the Google Cloud client library | ||
const {Storage} = require('@google-cloud/storage'); | ||
|
||
// Creates a client | ||
const storage = new Storage(); | ||
|
||
// Activate HMAC SA Key | ||
async function activateHmacKey() { | ||
/** | ||
* TODO(developer): Uncomment the following line before running the sample. | ||
*/ | ||
// const hmacKeyAccessId = 'HMAC Access Key Id to update, e.g. GOOG0234230X00'; | ||
// const projectId = 'The project Id this service account belongs to, e.g. serviceAccountProjectId'; | ||
|
||
const hmacKey = storage.hmacKey(hmacKeyAccessId, {projectId}); | ||
const [hmacKeyMetadata] = await hmacKey.setMetadata({state: 'ACTIVE'}); | ||
|
||
console.log(`The HMAC key is now active.`); | ||
console.log(`The HMAC key metadata is:`); | ||
for (const [key, value] of Object.entries(hmacKeyMetadata)) { | ||
console.log(`${key}: ${value}`); | ||
} | ||
} | ||
// [END storage_activate_hmac_key] | ||
activateHmacKey(); | ||
} | ||
|
||
main(...process.argv.slice(2)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/** | ||
* Copyright 2019 Google LLC | ||
* | ||
* 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 | ||
* | ||
* https://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'; | ||
|
||
// sample-metadata: | ||
// title: Create HMAC SA Key. | ||
// description: Create HMAC SA Key. | ||
// usage: node hmacKeyCreate.js <serviceAccountEmail> [projectId] | ||
|
||
function main( | ||
serviceAccountEmail = '[email protected]', | ||
projectId = 'serviceAccountProjectId' | ||
) { | ||
// [START storage_create_hmac_key] | ||
// Imports the Google Cloud client library | ||
const {Storage} = require('@google-cloud/storage'); | ||
|
||
// Creates a client | ||
const storage = new Storage(); | ||
|
||
// Create HMAC SA Key | ||
async function createHmacKey() { | ||
/** | ||
* TODO(developer): Uncomment the following line before running the sample. | ||
*/ | ||
// const serviceAccountEmail = 'Service Account Email to associate HMAC Key'; | ||
// const projectId = 'The project Id this service account to be created in, e.g. serviceAccountProjectId'; | ||
|
||
const [hmacKey, secret] = await storage.createHmacKey(serviceAccountEmail, { | ||
projectId, | ||
}); | ||
|
||
console.log(`The base64 encoded secret is: ${secret}`); | ||
console.log(`Do not miss that secret, there is no API to recover it.`); | ||
console.log(`The HMAC key metadata is:`); | ||
for (const [key, value] of Object.entries(hmacKey.metadata)) { | ||
console.log(`${key}: ${value}`); | ||
} | ||
} | ||
// [END storage_create_hmac_key] | ||
createHmacKey(); | ||
} | ||
|
||
main(...process.argv.slice(2)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/** | ||
* Copyright 2019 Google LLC | ||
* | ||
* 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 | ||
* | ||
* https://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'; | ||
|
||
// sample-metadata: | ||
// title: Deactivate HMAC SA Key. | ||
// description: Deactivate HMAC SA Key. | ||
// usage: node hmacKeyDeactivate.js <hmacKeyAccessId> [projectId] | ||
|
||
function main( | ||
hmacKeyAccessId = 'GOOG0234230X00', | ||
projectId = 'serviceAccountProjectId' | ||
) { | ||
// [START storage_deactivate_hmac_key] | ||
// Imports the Google Cloud client library | ||
const {Storage} = require('@google-cloud/storage'); | ||
|
||
// Creates a client | ||
const storage = new Storage(); | ||
|
||
// Deactivate HMAC SA Key | ||
async function deactivateHmacKey() { | ||
/** | ||
* TODO(developer): Uncomment the following line before running the sample. | ||
*/ | ||
// const hmacKeyAccessId = 'HMAC Access Key Id to update, e.g. GOOG0234230X00'; | ||
// const projectId = 'The project Id this service account belongs to, e.g. serviceAccountProjectId'; | ||
|
||
const hmacKey = storage.hmacKey(hmacKeyAccessId, {projectId}); | ||
const [hmacKeyMetadata] = await hmacKey.setMetadata({state: 'INACTIVE'}); | ||
|
||
console.log(`The HMAC key is now inactive.`); | ||
console.log(`The HMAC key metadata is:`); | ||
for (const [key, value] of Object.entries(hmacKeyMetadata)) { | ||
console.log(`${key}: ${value}`); | ||
} | ||
} | ||
// [END storage_deactivate_hmac_key] | ||
deactivateHmacKey(); | ||
} | ||
|
||
main(...process.argv.slice(2)); |
Oops, something went wrong.