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: Automated regeneration of BeyondCorp client #11374

Closed
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
2 changes: 1 addition & 1 deletion clients/beyond_corp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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,
Expand All @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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,
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion clients/beyond_corp/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.BeyondCorp.Mixfile do
use Mix.Project

@version "0.7.0"
@version "0.8.0"

def project() do
[
Expand Down
Loading