-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathdisableAnywhereCache.js
More file actions
101 lines (88 loc) · 3.51 KB
/
disableAnywhereCache.js
File metadata and controls
101 lines (88 loc) · 3.51 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// Copyright 2025 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';
/**
* This application demonstrates how to perform basic operations on an Anywhere Cache
* instance with the Google Cloud Storage API.
*
* For more information, see the documentation at https://cloud.google.com/storage/docs/anywhere-cache.
*/
function main(bucketName, cacheName) {
// [START storage_control_disable_anywhere_cache]
/**
* Disables an Anywhere Cache instance.
*
* Disabling a cache is the first step to permanently removing it. Once disabled,
* the cache stops ingesting new data. After a grace period, the cache and its
* contents are deleted. This is useful for decommissioning caches that are no
* longer needed.
*
* @param {string} bucketName The name of the bucket where the cache resides.
* Example: 'your-gcp-bucket-name'
* @param {string} cacheName The unique identifier of the cache instance to disable.
* Example: 'cacheName'
*/
// Imports the Control library
const {StorageControlClient} = require('@google-cloud/storage-control').v2;
// Instantiates a client
const controlClient = new StorageControlClient();
async function callDisableAnywhereCache() {
// You have a one-hour grace period after disabling a cache to resume it and prevent its deletion.
// If you don't resume the cache within that hour, it will be deleted, its data will be evicted,
// and the cache will be permanently removed from the bucket.
const anywhereCachePath = controlClient.anywhereCachePath(
'_',
bucketName,
cacheName
);
// Create the request
const request = {
name: anywhereCachePath,
};
try {
// Run request. This initiates the disablement process.
const [response] = await controlClient.disableAnywhereCache(request);
console.log(
`Successfully initiated disablement for Anywhere Cache: '${cacheName}'.`
);
console.log(` Current State: ${response.state}`);
console.log(` Resource Name: ${response.name}`);
} catch (error) {
// Catch and handle potential API errors.
console.error(
`Error disabling Anywhere Cache '${cacheName}': ${error.message}`
);
if (error.code === 5) {
// NOT_FOUND (gRPC code 5) error can occur if the bucket or cache does not exist.
console.error(
`Please ensure the cache '${cacheName}' exists in bucket '${bucketName}'.`
);
} else if (error.code === 9) {
// FAILED_PRECONDITION (gRPC code 9) can occur if the cache is already being disabled
// or is not in a RUNNING state that allows the disable operation.
console.error(
`Cache '${cacheName}' may not be in a state that allows disabling (e.g., must be RUNNING).`
);
}
throw error;
}
}
callDisableAnywhereCache();
// [END storage_control_disable_anywhere_cache]
}
process.on('unhandledRejection', err => {
console.error(err.message);
process.exitCode = 1;
});
main(...process.argv.slice(2));