-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Showing
2 changed files
with
97 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright 2021 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'; | ||
|
||
function main(operationName) { | ||
// [START contactcenterinsights_get_operation] | ||
/** | ||
* TODO(developer): Uncomment this variable before running the sample. | ||
*/ | ||
// const operationName = 'projects/my_project_id/locations/us-central1/operations/my_operation_id'; | ||
|
||
// Imports the Contact Center Insights client. | ||
const { | ||
ContactCenterInsightsClient, | ||
} = require('@google-cloud/contact-center-insights'); | ||
|
||
// Instantiates a client. | ||
const client = new ContactCenterInsightsClient(); | ||
|
||
async function getOperation() { | ||
const [operation] = await client.operationsClient.getOperation({ | ||
name: operationName, | ||
}); | ||
console.info(`Got operation ${operation.name}.`); | ||
} | ||
getOperation(); | ||
// [END contactcenterinsights_get_operation] | ||
} | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// Copyright 2021 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'; | ||
|
||
const {assert} = require('chai'); | ||
const {before, describe, it} = require('mocha'); | ||
const cp = require('child_process'); | ||
const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'}); | ||
|
||
const { | ||
ContactCenterInsightsClient, | ||
} = require('@google-cloud/contact-center-insights'); | ||
const client = new ContactCenterInsightsClient(); | ||
|
||
describe('GetOperation', () => { | ||
let projectId; | ||
|
||
before(async () => { | ||
projectId = await client.getProjectId(); | ||
}); | ||
|
||
it('should get an operation', async () => { | ||
/** | ||
* TODO(developer): Replace this variable with your operation name. | ||
*/ | ||
const operationName = `projects/${projectId}/locations/us-central1/operations/12345`; | ||
|
||
try { | ||
const stdout = execSync(`node ./getOperation.js ${operationName}`); | ||
assert.match(stdout, new RegExp(`Got operation ${operationName}`)); | ||
} catch (e) { | ||
if (!e.message.includes('not found')) { | ||
throw e; | ||
} | ||
} | ||
}); | ||
}); |