Skip to content

Commit 7d91832

Browse files
chore: update v2.12.0 gapic-generator-typescript (#301)
- [ ] Regenerate this pull request now. Committer: @summer-ji-eng PiperOrigin-RevId: 424244721 Source-Link: googleapis/googleapis@4b6b01f Source-Link: https://github.com/googleapis/googleapis-gen/commit/8ac83fba606d008c7e8a42e7d55b6596ec4be35f Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOGFjODNmYmE2MDZkMDA4YzdlOGE0MmU3ZDU1YjY1OTZlYzRiZTM1ZiJ9
1 parent 315dd21 commit 7d91832

18 files changed

+23
-4
lines changed

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.approve_build.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(name) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.cancel_build.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(projectId, id) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.create_build.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(projectId, build) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.create_build_trigger.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(projectId, trigger) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.create_worker_pool.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(parent, workerPool, workerPoolId) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.delete_build_trigger.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(projectId, triggerId) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.delete_worker_pool.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(name) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.get_build.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(projectId, id) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.get_build_trigger.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(projectId, triggerId) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.get_worker_pool.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(name) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.list_build_triggers.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(projectId) {
@@ -52,7 +53,7 @@ function main(projectId) {
5253
// Run request
5354
const iterable = await cloudbuildClient.listBuildTriggersAsync(request);
5455
for await (const response of iterable) {
55-
console.log(response);
56+
console.log(response);
5657
}
5758
}
5859

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.list_builds.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(projectId) {
@@ -61,7 +62,7 @@ function main(projectId) {
6162
// Run request
6263
const iterable = await cloudbuildClient.listBuildsAsync(request);
6364
for await (const response of iterable) {
64-
console.log(response);
65+
console.log(response);
6566
}
6667
}
6768

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.list_worker_pools.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(parent) {
@@ -50,7 +51,7 @@ function main(parent) {
5051
// Run request
5152
const iterable = await cloudbuildClient.listWorkerPoolsAsync(request);
5253
for await (const response of iterable) {
53-
console.log(response);
54+
console.log(response);
5455
}
5556
}
5657

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.receive_trigger_webhook.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main() {
@@ -49,7 +50,8 @@ function main() {
4950

5051
async function callReceiveTriggerWebhook() {
5152
// Construct request
52-
const request = {};
53+
const request = {
54+
};
5355

5456
// Run request
5557
const response = await cloudbuildClient.receiveTriggerWebhook(request);

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.retry_build.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(projectId, id) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.run_build_trigger.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(projectId, triggerId) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.update_build_trigger.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(projectId, triggerId, trigger) {

generated,README.md,.eslintrc.yml/generated/v1/cloud_build.update_worker_pool.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
1516
'use strict';
1617

1718
function main(workerPool) {

0 commit comments

Comments
 (0)