-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Automated regeneration of WorkloadManager client (#13028)
Auto-created at 2025-02-24 13:16:51 +0000 using the toys pull request generator.
- Loading branch information
1 parent
bd9bcf4
commit 2217c4b
Showing
27 changed files
with
1,594 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
clients/workload_manager/lib/google_api/workload_manager/v1/model/api_layer_server.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright 2019 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# NOTE: This file is auto generated by the elixir code generator program. | ||
# Do not edit this file manually. | ||
|
||
defmodule GoogleApi.WorkloadManager.V1.Model.APILayerServer do | ||
@moduledoc """ | ||
The API layer server | ||
## Attributes | ||
* `name` (*type:* `String.t`, *default:* `nil`) - Output only. The api layer name | ||
* `osVersion` (*type:* `String.t`, *default:* `nil`) - Output only. OS information | ||
* `resources` (*type:* `list(GoogleApi.WorkloadManager.V1.Model.CloudResource.t)`, *default:* `nil`) - Output only. resources in the component | ||
""" | ||
|
||
use GoogleApi.Gax.ModelBase | ||
|
||
@type t :: %__MODULE__{ | ||
:name => String.t() | nil, | ||
:osVersion => String.t() | nil, | ||
:resources => list(GoogleApi.WorkloadManager.V1.Model.CloudResource.t()) | nil | ||
} | ||
|
||
field(:name) | ||
field(:osVersion) | ||
field(:resources, as: GoogleApi.WorkloadManager.V1.Model.CloudResource, type: :list) | ||
end | ||
|
||
defimpl Poison.Decoder, for: GoogleApi.WorkloadManager.V1.Model.APILayerServer do | ||
def decode(value, options) do | ||
GoogleApi.WorkloadManager.V1.Model.APILayerServer.decode(value, options) | ||
end | ||
end | ||
|
||
defimpl Poison.Encoder, for: GoogleApi.WorkloadManager.V1.Model.APILayerServer do | ||
def encode(value, options) do | ||
GoogleApi.Gax.ModelBase.encode(value, options) | ||
end | ||
end |
55 changes: 55 additions & 0 deletions
55
clients/workload_manager/lib/google_api/workload_manager/v1/model/availability_group.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright 2019 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# NOTE: This file is auto generated by the elixir code generator program. | ||
# Do not edit this file manually. | ||
|
||
defmodule GoogleApi.WorkloadManager.V1.Model.AvailabilityGroup do | ||
@moduledoc """ | ||
The availability groups for sqlserver | ||
## Attributes | ||
* `databases` (*type:* `list(String.t)`, *default:* `nil`) - Output only. The databases | ||
* `name` (*type:* `String.t`, *default:* `nil`) - Output only. The availability group name | ||
* `primaryServer` (*type:* `String.t`, *default:* `nil`) - Output only. The primary server | ||
* `secondaryServers` (*type:* `list(String.t)`, *default:* `nil`) - Output only. The secondary servers | ||
""" | ||
|
||
use GoogleApi.Gax.ModelBase | ||
|
||
@type t :: %__MODULE__{ | ||
:databases => list(String.t()) | nil, | ||
:name => String.t() | nil, | ||
:primaryServer => String.t() | nil, | ||
:secondaryServers => list(String.t()) | nil | ||
} | ||
|
||
field(:databases, type: :list) | ||
field(:name) | ||
field(:primaryServer) | ||
field(:secondaryServers, type: :list) | ||
end | ||
|
||
defimpl Poison.Decoder, for: GoogleApi.WorkloadManager.V1.Model.AvailabilityGroup do | ||
def decode(value, options) do | ||
GoogleApi.WorkloadManager.V1.Model.AvailabilityGroup.decode(value, options) | ||
end | ||
end | ||
|
||
defimpl Poison.Encoder, for: GoogleApi.WorkloadManager.V1.Model.AvailabilityGroup do | ||
def encode(value, options) do | ||
GoogleApi.Gax.ModelBase.encode(value, options) | ||
end | ||
end |
Oops, something went wrong.