-
Notifications
You must be signed in to change notification settings - Fork 460
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 (#12722)
Auto-created at 2024-12-14 13:14:51 +0000 using the toys pull request generator.
- Loading branch information
1 parent
b0aad8d
commit e16b009
Showing
9 changed files
with
125 additions
and
5 deletions.
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
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
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/summary.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.Summary do | ||
@moduledoc """ | ||
Message for execution summary | ||
## Attributes | ||
* `failures` (*type:* `String.t`, *default:* `nil`) - Output only. Number of failures | ||
* `newFailures` (*type:* `String.t`, *default:* `nil`) - Output only. Number of new failures compared to the previous execution | ||
* `newFixes` (*type:* `String.t`, *default:* `nil`) - Output only. Number of new fixes compared to the previous execution | ||
""" | ||
|
||
use GoogleApi.Gax.ModelBase | ||
|
||
@type t :: %__MODULE__{ | ||
:failures => String.t() | nil, | ||
:newFailures => String.t() | nil, | ||
:newFixes => String.t() | nil | ||
} | ||
|
||
field(:failures) | ||
field(:newFailures) | ||
field(:newFixes) | ||
end | ||
|
||
defimpl Poison.Decoder, for: GoogleApi.WorkloadManager.V1.Model.Summary do | ||
def decode(value, options) do | ||
GoogleApi.WorkloadManager.V1.Model.Summary.decode(value, options) | ||
end | ||
end | ||
|
||
defimpl Poison.Encoder, for: GoogleApi.WorkloadManager.V1.Model.Summary do | ||
def encode(value, options) do | ||
GoogleApi.Gax.ModelBase.encode(value, options) | ||
end | ||
end |
58 changes: 58 additions & 0 deletions
58
clients/workload_manager/lib/google_api/workload_manager/v1/model/torso_validation.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,58 @@ | ||
# 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.TorsoValidation do | ||
@moduledoc """ | ||
The schema of torso workload validation data. | ||
## Attributes | ||
* `agentVersion` (*type:* `String.t`, *default:* `nil`) - Required. agent_version lists the version of the agent that collected this data. | ||
* `instanceName` (*type:* `String.t`, *default:* `nil`) - Required. instance_name lists the human readable name of the instance that the data comes from. | ||
* `projectId` (*type:* `String.t`, *default:* `nil`) - Required. project_id lists the human readable cloud project that the data comes from. | ||
* `validationDetails` (*type:* `map()`, *default:* `nil`) - Required. validation_details contains the pairs of validation data: field name & field value. | ||
* `workloadType` (*type:* `String.t`, *default:* `nil`) - Required. workload_type specifies the type of torso workload. | ||
""" | ||
|
||
use GoogleApi.Gax.ModelBase | ||
|
||
@type t :: %__MODULE__{ | ||
:agentVersion => String.t() | nil, | ||
:instanceName => String.t() | nil, | ||
:projectId => String.t() | nil, | ||
:validationDetails => map() | nil, | ||
:workloadType => String.t() | nil | ||
} | ||
|
||
field(:agentVersion) | ||
field(:instanceName) | ||
field(:projectId) | ||
field(:validationDetails, type: :map) | ||
field(:workloadType) | ||
end | ||
|
||
defimpl Poison.Decoder, for: GoogleApi.WorkloadManager.V1.Model.TorsoValidation do | ||
def decode(value, options) do | ||
GoogleApi.WorkloadManager.V1.Model.TorsoValidation.decode(value, options) | ||
end | ||
end | ||
|
||
defimpl Poison.Encoder, for: GoogleApi.WorkloadManager.V1.Model.TorsoValidation do | ||
def encode(value, options) do | ||
GoogleApi.Gax.ModelBase.encode(value, options) | ||
end | ||
end |
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