Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [Iap] add AllowedDomainSettings to the UpdateIapSettingsRequest #5723

Merged
merged 4 commits into from
Jan 4, 2023
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
Binary file modified Iap/metadata/V1/Service.php
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,14 @@
* In the following format:
* `projects/{project_number/id}/iap_tunnel/locations/{location}`. Please see
* {@see IdentityAwareProxyAdminServiceClient::tunnelLocationName()} for help formatting this field.
* @param string $tunnelDestGroupName Immutable. Identifier for the TunnelDestGroup. Must be unique within the
* project.
* @param string $tunnelDestGroupId The ID to use for the TunnelDestGroup, which becomes the final component of
* the resource name.
* @param string $tunnelDestGroupName Immutable. Identifier for the TunnelDestGroup. Must be unique
* within the project and contain only lower case letters (a-z) and dashes
* (-).
* @param string $tunnelDestGroupId The ID to use for the TunnelDestGroup, which becomes the final
* component of the resource name.
*
* This value must be 4-63 characters, and valid characters
* are `[a-z][0-9]-`.
* are `[a-z]-`.
*/
function create_tunnel_dest_group_sample(
string $formattedParent,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@
/**
* Updates a TunnelDestGroup.
*
* @param string $tunnelDestGroupName Immutable. Identifier for the TunnelDestGroup. Must be unique within the
* project.
* @param string $tunnelDestGroupName Immutable. Identifier for the TunnelDestGroup. Must be unique
* within the project and contain only lower case letters (a-z) and dashes
* (-).
*/
function update_tunnel_dest_group_sample(string $tunnelDestGroupName): void
{
Expand Down
77 changes: 77 additions & 0 deletions Iap/src/V1/AccessDeniedPageSettings.php

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

44 changes: 44 additions & 0 deletions Iap/src/V1/AccessSettings.php

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

112 changes: 112 additions & 0 deletions Iap/src/V1/AllowedDomainsSettings.php

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

Loading