Skip to content

Commit 05e36fb

Browse files
committed
Add list_tasks sample for Batch
1 parent 7954dcf commit 05e36fb

File tree

1 file changed

+74
-0
lines changed

1 file changed

+74
-0
lines changed

batch/list/list_tasks.js

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
// Copyright 2022 Google LLC
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// https://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
'use strict';
16+
17+
/**
18+
* Get a list of all jobs defined in given region.
19+
*
20+
* @param {string} projectId - ID or number of the Google Cloud project you want to use.
21+
* @param {string} region - The Google Cloud region to use, e.g. 'us-central1'
22+
* @param {string} jobName - ID used to uniquely identify the Job within this project and region.
23+
* This field should contain at most 63 characters.
24+
* Only alphanumeric characters or '-' are accepted.
25+
* The '-' character cannot be the first or the last one.
26+
* @param {string} groupName - name of the group of tasks. Usually it's `group0`.
27+
*/
28+
function main(projectId, region, jobName, groupName) {
29+
// [START batch_list_tasks]
30+
/**
31+
* TODO(developer): Uncomment and replace these variables before running the sample.
32+
*/
33+
// const projectId = 'YOUR_PROJECT_ID';
34+
/**
35+
* The region that hosts the job.
36+
*/
37+
// const region = 'us-central-1';
38+
/**
39+
* The name of the job which tasks you want to list.
40+
*/
41+
// const jobName = 'YOUR_JOB_NAME';
42+
/**
43+
* The name of the group of tasks. Usually it's `group0`.
44+
*/
45+
// const groupName = 'group0';
46+
47+
// Imports the Batch library
48+
const batchLib = require('@google-cloud/batch');
49+
50+
// Instantiates a client
51+
const batchClient = new batchLib.v1.BatchServiceClient();
52+
53+
async function callListTasks() {
54+
// Construct request
55+
const request = {
56+
parent: `projects/${projectId}/locations/${region}/jobs/${jobName}/taskGroups/${groupName}`,
57+
};
58+
59+
// Run request
60+
const iterable = await batchClient.listTasksAsync(request);
61+
for await (const response of iterable) {
62+
console.log(response);
63+
}
64+
}
65+
66+
callListTasks();
67+
// [END batch_list_tasks]
68+
}
69+
70+
process.on('unhandledRejection', err => {
71+
console.error(err.message);
72+
process.exitCode = 1;
73+
});
74+
main(...process.argv.slice(2));

0 commit comments

Comments
 (0)