Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function main(name) {
// const name = 'abc123'

// Imports the Executions library
const {ExecutionsClient} = require('@google-cloud/workflows-executions').v1beta;
const {ExecutionsClient} = require('@google-cloud/workflows').v1beta;

// Instantiates a client
const executionsClient = new ExecutionsClient();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function main(parent, execution) {
// const execution = {}

// Imports the Executions library
const {ExecutionsClient} = require('@google-cloud/workflows-executions').v1beta;
const {ExecutionsClient} = require('@google-cloud/workflows').v1beta;

// Instantiates a client
const executionsClient = new ExecutionsClient();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function main(name) {
// const view = {}

// Imports the Executions library
const {ExecutionsClient} = require('@google-cloud/workflows-executions').v1beta;
const {ExecutionsClient} = require('@google-cloud/workflows').v1beta;

// Instantiates a client
const executionsClient = new ExecutionsClient();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function main(parent) {
// const view = {}

// Imports the Executions library
const {ExecutionsClient} = require('@google-cloud/workflows-executions').v1beta;
const {ExecutionsClient} = require('@google-cloud/workflows').v1beta;

// Instantiates a client
const executionsClient = new ExecutionsClient();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class ExecutionsClient {
private _defaults: {[method: string]: gax.CallSettings};
private _universeDomain: string;
private _servicePath: string;
private _log = logging.log('workflow-executions');
private _log = logging.log('workflows');

auth: gax.GoogleAuth;
descriptors: Descriptors = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class ExecutionsClient {
private _defaults: {[method: string]: gax.CallSettings};
private _universeDomain: string;
private _servicePath: string;
private _log = logging.log('workflows-executions');
private _log = logging.log('workflows');

auth: gax.GoogleAuth;
descriptors: Descriptors = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods",
"language": "typescript",
"protoPackage": "google.cloud.workflows.executions.v1beta",
"libraryPackage": "@google-cloud/workflows-executions",
"libraryPackage": "@google-cloud/workflows",
"services": {
"Executions": {
"clients": {
Expand Down