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 NetworkConnectivity client #12675

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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.NetworkConnectivity.V1 do
API client metadata for GoogleApi.NetworkConnectivity.V1.
"""

@discovery_revision "20241030"
@discovery_revision "20241112"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

defmodule GoogleApi.NetworkConnectivity.V1.Model.ListPolicyBasedRoutesResponse do
@moduledoc """
Response for PolicyBasedRouting.ListPolicyBasedRoutes method.
Response for PolicyBasedRoutingService.ListPolicyBasedRoutes method.

## Attributes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defmodule GoogleApi.NetworkConnectivity.V1.Model.OperationMetadata do
* `apiVersion` (*type:* `String.t`, *default:* `nil`) - Output only. API version used to start the operation.
* `createTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The time the operation was created.
* `endTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The time the operation finished running.
* `requestedCancellation` (*type:* `boolean()`, *default:* `nil`) - Output only. Identifies whether the user has requested cancellation of the operation. Operations that have been cancelled successfully have Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
* `requestedCancellation` (*type:* `boolean()`, *default:* `nil`) - Output only. Identifies whether the user has requested cancellation of the operation. Operations that have been cancelled successfully have google.longrunning.Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
* `statusMessage` (*type:* `String.t`, *default:* `nil`) - Output only. Human-readable status of the operation, if any.
* `target` (*type:* `String.t`, *default:* `nil`) - Output only. Server-defined resource path for the target of the operation.
* `verb` (*type:* `String.t`, *default:* `nil`) - Output only. Name of the verb executed by the operation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule GoogleApi.NetworkConnectivity.V1.Model.RegionalEndpoint do
## Attributes

* `accessType` (*type:* `String.t`, *default:* `nil`) - Required. The access type of this regional endpoint. This field is reflected in the PSC Forwarding Rule configuration to enable global access.
* `address` (*type:* `String.t`, *default:* `nil`) - Optional. The IP Address of the Regional Endpoint. When no address is provided, an IP from the subnetwork is allocated. Use one of the following formats: * IPv4 address as in `10.0.0.1` * Address resource URI as in `projects/{project}/regions/{region}/addresses/{address_name}`
* `address` (*type:* `String.t`, *default:* `nil`) - Optional. The IP Address of the Regional Endpoint. When no address is provided, an IP from the subnetwork is allocated. Use one of the following formats: * IPv4 address as in `10.0.0.1` * Address resource URI as in `projects/{project}/regions/{region}/addresses/{address_name}` for an IPv4 or IPv6 address.
* `createTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. Time when the RegionalEndpoint was created.
* `description` (*type:* `String.t`, *default:* `nil`) - Optional. A description of this resource.
* `ipAddress` (*type:* `String.t`, *default:* `nil`) - Output only. The literal IP address of the PSC Forwarding Rule created on behalf of the customer. This field is deprecated. Use address instead.
Expand Down
2 changes: 1 addition & 1 deletion clients/network_connectivity/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.NetworkConnectivity.Mixfile do
use Mix.Project

@version "0.11.0"
@version "0.11.1"

def project() do
[
Expand Down
Loading