-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'googleapis:main' into class-multiplexed-session
- Loading branch information
Showing
5 changed files
with
212 additions
and
0 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
73 changes: 73 additions & 0 deletions
73
samples/create-instance-without-default-backup-schedules.js
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,73 @@ | ||
/** | ||
* Copyright 2024 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 | ||
* | ||
* 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'; | ||
|
||
function main(instanceId, projectId) { | ||
async function createInstanceWithoutDefaultBackupSchedules() { | ||
// [START spanner_create_instance_without_default_backup_schedule] | ||
/** | ||
* TODO(developer): Uncomment the following lines before running the sample. | ||
**/ | ||
// const projectId = 'my-project-id'; | ||
// const instanceId = 'my-instance'; | ||
|
||
// Imports the Google Cloud client library | ||
const {Spanner, protos} = require('@google-cloud/spanner'); | ||
|
||
// Creates a client | ||
const spanner = new Spanner({ | ||
projectId: projectId, | ||
}); | ||
|
||
const instanceAdminClient = await spanner.getInstanceAdminClient(); | ||
// Creates a new instance | ||
try { | ||
const [operation] = await instanceAdminClient.createInstance({ | ||
instanceId: instanceId, | ||
parent: instanceAdminClient.projectPath(projectId), | ||
instance: { | ||
config: instanceAdminClient.instanceConfigPath( | ||
projectId, | ||
'regional-me-central2' | ||
), | ||
nodeCount: 1, | ||
displayName: 'Display name for the instance.', | ||
labels: { | ||
cloud_spanner_samples: 'true', | ||
created: Math.round(Date.now() / 1000).toString(), // current time | ||
}, | ||
defaultBackupScheduleType: | ||
protos.google.spanner.admin.instance.v1.Instance | ||
.DefaultBackupScheduleType.NONE, | ||
}, | ||
}); | ||
await operation.promise(); | ||
|
||
console.log( | ||
`Created instance ${instanceId} without default backup schedules.` | ||
); | ||
} catch (err) { | ||
console.error('ERROR:', err); | ||
} | ||
// [END spanner_create_instance_without_default_backup_schedule] | ||
} | ||
createInstanceWithoutDefaultBackupSchedules(); | ||
} | ||
process.on('unhandledRejection', err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); | ||
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
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,74 @@ | ||
/** | ||
* Copyright 2024 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 | ||
* | ||
* 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. | ||
*/ | ||
|
||
// sample-metadata: | ||
// title: Updates an instance. | ||
// usage: node instance-update.js <INSTANCE_ID> <PROJECT_ID> | ||
|
||
'use strict'; | ||
|
||
function main(instanceId, projectId) { | ||
async function updateInstanceDefaultBackupScheduleType() { | ||
// [START spanner_update_instance_default_backup_schedule_type] | ||
/** | ||
* TODO(developer): Uncomment the following lines before running the sample. | ||
*/ | ||
// const projectId = 'my-project-id'; | ||
// const instanceId = 'my-instance'; | ||
|
||
// Imports the Google Cloud client library | ||
const {Spanner, protos} = require('@google-cloud/spanner'); | ||
|
||
// Creates a client | ||
const spanner = new Spanner({ | ||
projectId: projectId, | ||
}); | ||
const instanceAdminClient = await spanner.getInstanceAdminClient(); | ||
|
||
// Updates an instance | ||
try { | ||
const [operation] = await instanceAdminClient.updateInstance({ | ||
instance: { | ||
name: instanceAdminClient.instancePath(projectId, instanceId), | ||
defaultBackupScheduleType: | ||
protos.google.spanner.admin.instance.v1.Instance | ||
.DefaultBackupScheduleType.AUTOMATIC, // optional | ||
}, | ||
// Field mask specifying fields that should get updated in an Instance | ||
fieldMask: (protos.google.protobuf.FieldMask = { | ||
paths: ['default_backup_schedule_type'], | ||
}), | ||
}); | ||
|
||
await operation.promise(); | ||
const [metadata] = await instanceAdminClient.getInstance({ | ||
name: instanceAdminClient.instancePath(projectId, instanceId), | ||
}); | ||
console.log( | ||
`Instance ${instanceId} has been updated with the ${metadata.defaultBackupScheduleType}` + | ||
' default backup schedule type.' | ||
); | ||
} catch (err) { | ||
console.error('ERROR:', err); | ||
} | ||
// [END spanner_update_instance_default_backup_schedule_type] | ||
} | ||
updateInstanceDefaultBackupScheduleType(); | ||
} | ||
process.on('unhandledRejection', err => { | ||
console.error(err.message); | ||
process.exitCode = 1; | ||
}); | ||
main(...process.argv.slice(2)); |