From ad73bfb0ea691f363c11eefcbbc5dd4a865f0112 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Thu, 2 May 2024 13:13:09 +0000 Subject: [PATCH] feat: Automated regeneration of BeyondCorp client --- clients/beyond_corp/README.md | 2 +- .../beyond_corp/lib/google_api/beyond_corp/v1/metadata.ex | 2 +- .../lib/google_api/beyond_corp/v1/model/app_gateway.ex | 6 ++++++ ...gle_cloud_beyondcorp_appconnections_v1_app_connection.ex | 6 ++++++ clients/beyond_corp/mix.exs | 2 +- 5 files changed, 15 insertions(+), 3 deletions(-) diff --git a/clients/beyond_corp/README.md b/clients/beyond_corp/README.md index 5c5eb1c553..061338b7e6 100644 --- a/clients/beyond_corp/README.md +++ b/clients/beyond_corp/README.md @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding ```elixir def deps do - [{:google_api_beyond_corp, "~> 0.7"}] + [{:google_api_beyond_corp, "~> 0.8"}] end ``` diff --git a/clients/beyond_corp/lib/google_api/beyond_corp/v1/metadata.ex b/clients/beyond_corp/lib/google_api/beyond_corp/v1/metadata.ex index 04baf29e2b..1a66dc30a4 100644 --- a/clients/beyond_corp/lib/google_api/beyond_corp/v1/metadata.ex +++ b/clients/beyond_corp/lib/google_api/beyond_corp/v1/metadata.ex @@ -20,7 +20,7 @@ defmodule GoogleApi.BeyondCorp.V1 do API client metadata for GoogleApi.BeyondCorp.V1. """ - @discovery_revision "20240228" + @discovery_revision "20240424" def discovery_revision(), do: @discovery_revision end diff --git a/clients/beyond_corp/lib/google_api/beyond_corp/v1/model/app_gateway.ex b/clients/beyond_corp/lib/google_api/beyond_corp/v1/model/app_gateway.ex index 1b952ed82f..b382c49ded 100644 --- a/clients/beyond_corp/lib/google_api/beyond_corp/v1/model/app_gateway.ex +++ b/clients/beyond_corp/lib/google_api/beyond_corp/v1/model/app_gateway.ex @@ -27,6 +27,8 @@ defmodule GoogleApi.BeyondCorp.V1.Model.AppGateway do * `hostType` (*type:* `String.t`, *default:* `nil`) - Required. The type of hosting used by the AppGateway. * `labels` (*type:* `map()`, *default:* `nil`) - Optional. Resource labels to represent user provided metadata. * `name` (*type:* `String.t`, *default:* `nil`) - Required. Unique resource name of the AppGateway. The name is ignored when creating an AppGateway. + * `satisfiesPzi` (*type:* `boolean()`, *default:* `nil`) - Output only. Reserved for future use. + * `satisfiesPzs` (*type:* `boolean()`, *default:* `nil`) - Output only. Reserved for future use. * `state` (*type:* `String.t`, *default:* `nil`) - Output only. The current state of the AppGateway. * `type` (*type:* `String.t`, *default:* `nil`) - Required. The type of network connectivity used by the AppGateway. * `uid` (*type:* `String.t`, *default:* `nil`) - Output only. A unique identifier for the instance generated by the system. @@ -44,6 +46,8 @@ defmodule GoogleApi.BeyondCorp.V1.Model.AppGateway do :hostType => String.t() | nil, :labels => map() | nil, :name => String.t() | nil, + :satisfiesPzi => boolean() | nil, + :satisfiesPzs => boolean() | nil, :state => String.t() | nil, :type => String.t() | nil, :uid => String.t() | nil, @@ -57,6 +61,8 @@ defmodule GoogleApi.BeyondCorp.V1.Model.AppGateway do field(:hostType) field(:labels, type: :map) field(:name) + field(:satisfiesPzi) + field(:satisfiesPzs) field(:state) field(:type) field(:uid) diff --git a/clients/beyond_corp/lib/google_api/beyond_corp/v1/model/google_cloud_beyondcorp_appconnections_v1_app_connection.ex b/clients/beyond_corp/lib/google_api/beyond_corp/v1/model/google_cloud_beyondcorp_appconnections_v1_app_connection.ex index 2f6e9b8998..ae38503c2e 100644 --- a/clients/beyond_corp/lib/google_api/beyond_corp/v1/model/google_cloud_beyondcorp_appconnections_v1_app_connection.ex +++ b/clients/beyond_corp/lib/google_api/beyond_corp/v1/model/google_cloud_beyondcorp_appconnections_v1_app_connection.ex @@ -28,6 +28,8 @@ defmodule GoogleApi.BeyondCorp.V1.Model.GoogleCloudBeyondcorpAppconnectionsV1App * `gateway` (*type:* `GoogleApi.BeyondCorp.V1.Model.GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGateway.t`, *default:* `nil`) - Optional. Gateway used by the AppConnection. * `labels` (*type:* `map()`, *default:* `nil`) - Optional. Resource labels to represent user provided metadata. * `name` (*type:* `String.t`, *default:* `nil`) - Required. Unique resource name of the AppConnection. The name is ignored when creating a AppConnection. + * `satisfiesPzi` (*type:* `boolean()`, *default:* `nil`) - Output only. Reserved for future use. + * `satisfiesPzs` (*type:* `boolean()`, *default:* `nil`) - Output only. Reserved for future use. * `state` (*type:* `String.t`, *default:* `nil`) - Output only. The current state of the AppConnection. * `type` (*type:* `String.t`, *default:* `nil`) - Required. The type of network connectivity used by the AppConnection. * `uid` (*type:* `String.t`, *default:* `nil`) - Output only. A unique identifier for the instance generated by the system. @@ -48,6 +50,8 @@ defmodule GoogleApi.BeyondCorp.V1.Model.GoogleCloudBeyondcorpAppconnectionsV1App | nil, :labels => map() | nil, :name => String.t() | nil, + :satisfiesPzi => boolean() | nil, + :satisfiesPzs => boolean() | nil, :state => String.t() | nil, :type => String.t() | nil, :uid => String.t() | nil, @@ -69,6 +73,8 @@ defmodule GoogleApi.BeyondCorp.V1.Model.GoogleCloudBeyondcorpAppconnectionsV1App field(:labels, type: :map) field(:name) + field(:satisfiesPzi) + field(:satisfiesPzs) field(:state) field(:type) field(:uid) diff --git a/clients/beyond_corp/mix.exs b/clients/beyond_corp/mix.exs index 62140cc450..4c2c7a90bc 100644 --- a/clients/beyond_corp/mix.exs +++ b/clients/beyond_corp/mix.exs @@ -18,7 +18,7 @@ defmodule GoogleApi.BeyondCorp.Mixfile do use Mix.Project - @version "0.7.0" + @version "0.8.0" def project() do [