-
Notifications
You must be signed in to change notification settings - Fork 462
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 (#12798)
Auto-created at 2025-01-10 13:14:01 +0000 using the toys pull request generator.
- Loading branch information
1 parent
7b27c2f
commit 1dc0e95
Showing
6 changed files
with
62 additions
and
7 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
51 changes: 51 additions & 0 deletions
51
...ager/lib/google_api/workload_manager/v1/model/sap_discovery_component_replication_site.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,51 @@ | ||
# 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.SapDiscoveryComponentReplicationSite do | ||
@moduledoc """ | ||
A replication site used in Disaster Recovery (DR) configurations. | ||
## Attributes | ||
* `component` (*type:* `GoogleApi.WorkloadManager.V1.Model.SapDiscoveryComponent.t`, *default:* `nil`) - Optional. The system component for the site. | ||
* `sourceSite` (*type:* `String.t`, *default:* `nil`) - Optional. The name of the source site from which this one replicates. | ||
""" | ||
|
||
use GoogleApi.Gax.ModelBase | ||
|
||
@type t :: %__MODULE__{ | ||
:component => GoogleApi.WorkloadManager.V1.Model.SapDiscoveryComponent.t() | nil, | ||
:sourceSite => String.t() | nil | ||
} | ||
|
||
field(:component, as: GoogleApi.WorkloadManager.V1.Model.SapDiscoveryComponent) | ||
field(:sourceSite) | ||
end | ||
|
||
defimpl Poison.Decoder, | ||
for: GoogleApi.WorkloadManager.V1.Model.SapDiscoveryComponentReplicationSite do | ||
def decode(value, options) do | ||
GoogleApi.WorkloadManager.V1.Model.SapDiscoveryComponentReplicationSite.decode(value, options) | ||
end | ||
end | ||
|
||
defimpl Poison.Encoder, | ||
for: GoogleApi.WorkloadManager.V1.Model.SapDiscoveryComponentReplicationSite 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