Skip to content

Commit

Permalink
fix: [cloudbuild] fix typings for IAM methods (#4454)
Browse files Browse the repository at this point in the history
* feat: Add automap_substitutions flag to use substitutions as envs in Cloud Build

PiperOrigin-RevId: 551218480

Source-Link: googleapis/googleapis@f823915

Source-Link: googleapis/googleapis-gen@5979eec
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWRldnRvb2xzLWNsb3VkYnVpbGQvLk93bEJvdC55YW1sIiwiaCI6IjU5NzllZWNkOGQyYjBmYzE1OGZlNzE1MmE0ZGE0M2NlZDI5Mjk3ODAifQ==

* fix: fix typings for IAM methods
docs: fixed links in the generated Markdown documentation

PiperOrigin-RevId: 551610576

Source-Link: googleapis/googleapis@73b1313

Source-Link: googleapis/googleapis-gen@8bec066
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWRldnRvb2xzLWNsb3VkYnVpbGQvLk93bEJvdC55YW1sIiwiaCI6IjhiZWMwNjY0OTJhNmRhMjg1NWIxYjhjZTU2MjY2NGMwYTZiMzBiMDEifQ==

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* chore!: update to Node 14


---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: sofisl <[email protected]>
Co-authored-by: Sofia Leon <[email protected]>
  • Loading branch information
4 people authored Jul 28, 2023
1 parent 91b7527 commit 1f67b6c
Show file tree
Hide file tree
Showing 13 changed files with 1,774 additions and 173 deletions.
2 changes: 1 addition & 1 deletion containers/node-bootstrap-container/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"homepage": "https://github.com/googleapis/google-cloud-node#readme",
"dependencies": {
"@octokit/rest": "19.0.11"
"@octokit/rest": "19.0.0"
},
"devDependencies": {
"mocha": "^9.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/gapic-node-templating/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
"dependencies": {
"@google-cloud/storage": "^6.1.0",
"@octokit/rest": "19.0.11",
"@octokit/rest": "19.0.0",
"js-yaml": "^4.1.0",
"nunjucks": "^3.2.3",
"yargs": "^17.5.1"
Expand Down
9 changes: 5 additions & 4 deletions packages/google-devtools-cloudbuild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"@types/sinon": "^10.0.0",
"c8": "^7.0.0",
"chai": "^4.2.0",
"gts": "^3.1.0",
"gapic-tools": "^0.1.8",
"gts": "^5.0.0",
"jsdoc": "^4.0.0",
"jsdoc-fresh": "^2.0.0",
"jsdoc-region-tag": "^2.0.0",
Expand All @@ -42,7 +43,7 @@
"mocha": "^9.2.2",
"pack-n-play": "^1.0.0-2",
"sinon": "^15.0.0",
"typescript": "^4.6.4"
"typescript": "^5.1.6"
},
"scripts": {
"clean": "gts clean",
Expand All @@ -62,10 +63,10 @@
},
"license": "Apache-2.0",
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"dependencies": {
"google-gax": "^3.5.8"
"google-gax": "^4.0.3"
},
"homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-devtools-cloudbuild"
}
Original file line number Diff line number Diff line change
Expand Up @@ -802,6 +802,11 @@ message BuildStep {
//
// When script is provided, the user cannot specify the entrypoint or args.
string script = 19;

// Option to include built-in and custom substitutions as env variables
// for this build step. This option will override the global option
// in BuildOption.
optional bool automap_substitutions = 20;
}

// Volume describes a Docker container volume which is mounted into build steps
Expand Down Expand Up @@ -2245,6 +2250,10 @@ message BuildOptions {
// overridden in the build configuration file.
bool dynamic_substitutions = 17;

// Option to include built-in and custom substitutions as env variables
// for all build steps.
bool automap_substitutions = 22;

// Option to define build log streaming behavior to Cloud
// Storage.
LogStreamingOption log_streaming_option = 5;
Expand Down
15 changes: 15 additions & 0 deletions packages/google-devtools-cloudbuild/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

65 changes: 65 additions & 0 deletions packages/google-devtools-cloudbuild/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions packages/google-devtools-cloudbuild/protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1f67b6c

Please sign in to comment.