Skip to content

Commit 070d9fa

Browse files
feat: add AllowedDomainSettings to the UpdateIapSettingsRequest (#3806)
* feat: add AllowedDomainSettings to the UpdateIapSettingsRequest feat: add AttributePropagationSettings to the UpdateIapSettingsRequest feat: add remediation_token_generation_enabled to the CsmSettings chore: deprecate password reauth method which will no longer be accepted by IAP APIs. PiperOrigin-RevId: 496681848 Source-Link: googleapis/googleapis@be2d54e Source-Link: googleapis/googleapis-gen@dae449b Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWlhcC8uT3dsQm90LnlhbWwiLCJoIjoiZGFlNDQ5YjRkM2E0OTQwNmViNDliNDEwMDU1YmRmNDMwYzUxYTg4MyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: sofisl <[email protected]>
1 parent 46b4330 commit 070d9fa

8 files changed

Lines changed: 2198 additions & 1027 deletions

File tree

packages/google-cloud-iap/protos/google/cloud/iap/v1/service.proto

Lines changed: 207 additions & 112 deletions
Large diffs are not rendered by default.

packages/google-cloud-iap/protos/protos.d.ts

Lines changed: 494 additions & 241 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-cloud-iap/protos/protos.js

Lines changed: 1261 additions & 542 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-cloud-iap/protos/protos.json

Lines changed: 221 additions & 126 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-cloud-iap/samples/generated/v1/identity_aware_proxy_admin_service.create_tunnel_dest_group.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ function main(parent, tunnelDestGroup, tunnelDestGroupId) {
3939
*/
4040
// const tunnelDestGroup = {}
4141
/**
42-
* Required. The ID to use for the TunnelDestGroup, which becomes the final component of
43-
* the resource name.
42+
* Required. The ID to use for the TunnelDestGroup, which becomes the final
43+
* component of the resource name.
4444
* This value must be 4-63 characters, and valid characters
45-
* are `[a-z][0-9]-`.
45+
* are `[a-z]-`.
4646
*/
4747
// const tunnelDestGroupId = 'abc123'
4848

packages/google-cloud-iap/src/v1/identity_aware_proxy_admin_service_client.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@ export class IdentityAwareProxyAdminServiceClient {
121121
(typeof window !== 'undefined' && typeof window?.fetch === 'function');
122122
opts = Object.assign({servicePath, port, clientConfig, fallback}, opts);
123123

124+
// Request numeric enum values if REST transport is used.
125+
opts.numericEnums = true;
126+
124127
// If scopes are unset in options and we're connecting to a non-default endpoint, set scopes just in case.
125128
if (servicePath !== staticMembers.servicePath && !('scopes' in opts)) {
126129
opts['scopes'] = staticMembers.scopes;
@@ -811,11 +814,11 @@ export class IdentityAwareProxyAdminServiceClient {
811814
* @param {google.cloud.iap.v1.TunnelDestGroup} request.tunnelDestGroup
812815
* Required. The TunnelDestGroup to create.
813816
* @param {string} request.tunnelDestGroupId
814-
* Required. The ID to use for the TunnelDestGroup, which becomes the final component of
815-
* the resource name.
817+
* Required. The ID to use for the TunnelDestGroup, which becomes the final
818+
* component of the resource name.
816819
*
817820
* This value must be 4-63 characters, and valid characters
818-
* are `{@link 0-9|a-z}-`.
821+
* are `[a-z]-`.
819822
* @param {object} [options]
820823
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
821824
* @returns {Promise} - The promise which resolves to an array.

packages/google-cloud-iap/src/v1/identity_aware_proxy_o_auth_service_client.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ export class IdentityAwareProxyOAuthServiceClient {
123123
(typeof window !== 'undefined' && typeof window?.fetch === 'function');
124124
opts = Object.assign({servicePath, port, clientConfig, fallback}, opts);
125125

126+
// Request numeric enum values if REST transport is used.
127+
opts.numericEnums = true;
128+
126129
// If scopes are unset in options and we're connecting to a non-default endpoint, set scopes just in case.
127130
if (servicePath !== staticMembers.servicePath && !('scopes' in opts)) {
128131
opts['scopes'] = staticMembers.scopes;

packages/google-cloud-iap/src/v1beta1/identity_aware_proxy_admin_v1_beta1_client.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@ export class IdentityAwareProxyAdminV1Beta1Client {
118118
(typeof window !== 'undefined' && typeof window?.fetch === 'function');
119119
opts = Object.assign({servicePath, port, clientConfig, fallback}, opts);
120120

121+
// Request numeric enum values if REST transport is used.
122+
opts.numericEnums = true;
123+
121124
// If scopes are unset in options and we're connecting to a non-default endpoint, set scopes just in case.
122125
if (servicePath !== staticMembers.servicePath && !('scopes' in opts)) {
123126
opts['scopes'] = staticMembers.scopes;

0 commit comments

Comments
 (0)