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 WorkloadManager client #12878

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.WorkloadManager.V1 do
API client metadata for GoogleApi.WorkloadManager.V1.
"""

@discovery_revision "20250101"
@discovery_revision "20250120"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ defmodule GoogleApi.WorkloadManager.V1.Model.SapDiscovery do
* `projectNumber` (*type:* `String.t`, *default:* `nil`) - Optional. The GCP project number that this SapSystem belongs to.
* `systemId` (*type:* `String.t`, *default:* `nil`) - Output only. A combination of database SID, database instance URI and tenant DB name to make a unique identifier per-system.
* `updateTime` (*type:* `DateTime.t`, *default:* `nil`) - Required. Unix timestamp this system has been updated last.
* `useDrReconciliation` (*type:* `boolean()`, *default:* `nil`) - Optional. Whether to use DR reconciliation or not.
* `workloadProperties` (*type:* `GoogleApi.WorkloadManager.V1.Model.SapDiscoveryWorkloadProperties.t`, *default:* `nil`) - Optional. The properties of the workload.
"""

Expand All @@ -39,6 +40,7 @@ defmodule GoogleApi.WorkloadManager.V1.Model.SapDiscovery do
:projectNumber => String.t() | nil,
:systemId => String.t() | nil,
:updateTime => DateTime.t() | nil,
:useDrReconciliation => boolean() | nil,
:workloadProperties =>
GoogleApi.WorkloadManager.V1.Model.SapDiscoveryWorkloadProperties.t() | nil
}
Expand All @@ -49,6 +51,7 @@ defmodule GoogleApi.WorkloadManager.V1.Model.SapDiscovery do
field(:projectNumber)
field(:systemId)
field(:updateTime, as: DateTime)
field(:useDrReconciliation)

field(:workloadProperties, as: GoogleApi.WorkloadManager.V1.Model.SapDiscoveryWorkloadProperties)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ defmodule GoogleApi.WorkloadManager.V1.Model.SapDiscoveryComponentDatabaseProper
* `databaseType` (*type:* `String.t`, *default:* `nil`) - Required. Type of the database. HANA, DB2, etc.
* `databaseVersion` (*type:* `String.t`, *default:* `nil`) - Optional. The version of the database software running in the system.
* `instanceNumber` (*type:* `String.t`, *default:* `nil`) - Optional. Instance number of the SAP instance.
* `landscapeId` (*type:* `String.t`, *default:* `nil`) - Optional. Landscape ID from the HANA nameserver.
* `primaryInstanceUri` (*type:* `String.t`, *default:* `nil`) - Required. URI of the recognized primary instance of the database.
* `sharedNfsUri` (*type:* `String.t`, *default:* `nil`) - Optional. URI of the recognized shared NFS of the database. May be empty if the database has only a single node.
"""
Expand All @@ -36,6 +37,7 @@ defmodule GoogleApi.WorkloadManager.V1.Model.SapDiscoveryComponentDatabaseProper
:databaseType => String.t() | nil,
:databaseVersion => String.t() | nil,
:instanceNumber => String.t() | nil,
:landscapeId => String.t() | nil,
:primaryInstanceUri => String.t() | nil,
:sharedNfsUri => String.t() | nil
}
Expand All @@ -44,6 +46,7 @@ defmodule GoogleApi.WorkloadManager.V1.Model.SapDiscoveryComponentDatabaseProper
field(:databaseType)
field(:databaseVersion)
field(:instanceNumber)
field(:landscapeId)
field(:primaryInstanceUri)
field(:sharedNfsUri)
end
Expand Down
Loading