-
Notifications
You must be signed in to change notification settings - Fork 62
Closed
Labels
api: bigtableIssues related to the googleapis/nodejs-bigtable API.Issues related to the googleapis/nodejs-bigtable API.triage meI really want to be triaged.I really want to be triaged.
Description
Environment details
- OS: any
- Node.js version: any
- npm version: any
@google-cloud/bigtableversion: any
Steps to reproduce
function createInstance() {
const bigtable = new Bigtable();
const instance = bigtable.instance('test-instance');
const instanceOptions = {
clusters: [
{
nodes: 3,
location: 'us-central1-f',
storage: 'ssd',
}
],
labels: { 'prod-label': 'prod-label' },
};
instance.create(instanceOptions, (err, response) => {
if (err) {
console.log(err);
}
console.log(`Created Instance successfully.`);
});
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
api: bigtableIssues related to the googleapis/nodejs-bigtable API.Issues related to the googleapis/nodejs-bigtable API.triage meI really want to be triaged.I really want to be triaged.