google-apis-workloadmanager_v1 0.28.0 → 0.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ebfbd61a3d7045b9335429ca3a0a3b73f60331112dddff534cdbc0665d880428
4
- data.tar.gz: 5294c65f7cc7d57cdb374475e76a5bccb6f73cb61276e7a31414ec949c60d300
3
+ metadata.gz: c8c7941513564662c10c5f323b442e4c059c12703a65fa8fca648ef2d0d789e4
4
+ data.tar.gz: 73f134c9ce91a53049a2453dd6e2a626dc435dcd5a7b2168916c70cbbb5e757f
5
5
  SHA512:
6
- metadata.gz: d1d90c1f7938714f3af1484426894002fff289a18ebd36ae728459de1f891a46e5652baa190a511915d0c411b998dbb477ab5ab60e9a4c103e06d19cfc7affb7
7
- data.tar.gz: dbd751617cdf4f45bd171edca9b4567fb833006ad1918c64ddbe1c9e52917b553015f8716759a6e3464be7304c25985d7bb8fdeacd28794a7f713bb8fe55d1e0
6
+ metadata.gz: 5fe91228a21f2d073935ae696d8c37d3aa09d782eb3c51fc3202018de99a121460683bad3c6bf91f9048f5ebe8f6b98c6f197158bb349202c36968e2b2bda353
7
+ data.tar.gz: a77d4375b11d6c6c4de5c1efdc153de29cbcc34e3428095bb170b4b8b6e77696d24d24acda3788a977420160e58c0b2c3c36a929a45d4d5dd6d8b5e129990e7c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-workloadmanager_v1
2
2
 
3
+ ### v0.29.0 (2025-01-12)
4
+
5
+ * Regenerated from discovery document revision 20250101
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.28.0 (2024-12-15)
4
9
 
5
10
  * Regenerated from discovery document revision 20241209
@@ -1194,10 +1194,15 @@ module Google
1194
1194
  # @return [String]
1195
1195
  attr_accessor :host_project
1196
1196
 
1197
+ # Optional. The region this component's resources are primarily located in.
1198
+ # Corresponds to the JSON property `region`
1199
+ # @return [String]
1200
+ attr_accessor :region
1201
+
1197
1202
  # Optional. A list of replication sites used in Disaster Recovery (DR)
1198
1203
  # configurations.
1199
1204
  # Corresponds to the JSON property `replicationSites`
1200
- # @return [Array<Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent>]
1205
+ # @return [Array<Google::Apis::WorkloadmanagerV1::SapDiscoveryComponentReplicationSite>]
1201
1206
  attr_accessor :replication_sites
1202
1207
 
1203
1208
  # Optional. The resources in a component.
@@ -1226,6 +1231,7 @@ module Google
1226
1231
  @database_properties = args[:database_properties] if args.key?(:database_properties)
1227
1232
  @ha_hosts = args[:ha_hosts] if args.key?(:ha_hosts)
1228
1233
  @host_project = args[:host_project] if args.key?(:host_project)
1234
+ @region = args[:region] if args.key?(:region)
1229
1235
  @replication_sites = args[:replication_sites] if args.key?(:replication_sites)
1230
1236
  @resources = args[:resources] if args.key?(:resources)
1231
1237
  @sid = args[:sid] if args.key?(:sid)
@@ -1347,6 +1353,31 @@ module Google
1347
1353
  end
1348
1354
  end
1349
1355
 
1356
+ # A replication site used in Disaster Recovery (DR) configurations.
1357
+ class SapDiscoveryComponentReplicationSite
1358
+ include Google::Apis::Core::Hashable
1359
+
1360
+ # Message describing the system component.
1361
+ # Corresponds to the JSON property `component`
1362
+ # @return [Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent]
1363
+ attr_accessor :component
1364
+
1365
+ # Optional. The name of the source site from which this one replicates.
1366
+ # Corresponds to the JSON property `sourceSite`
1367
+ # @return [String]
1368
+ attr_accessor :source_site
1369
+
1370
+ def initialize(**args)
1371
+ update!(**args)
1372
+ end
1373
+
1374
+ # Update properties of this object
1375
+ def update!(**args)
1376
+ @component = args[:component] if args.key?(:component)
1377
+ @source_site = args[:source_site] if args.key?(:source_site)
1378
+ end
1379
+ end
1380
+
1350
1381
  # Message describing SAP discovery system metadata
1351
1382
  class SapDiscoveryMetadata
1352
1383
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module WorkloadmanagerV1
18
18
  # Version of the google-apis-workloadmanager_v1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241209"
25
+ REVISION = "20250101"
26
26
  end
27
27
  end
28
28
  end
@@ -214,6 +214,12 @@ module Google
214
214
  include Google::Apis::Core::JsonObjectSupport
215
215
  end
216
216
 
217
+ class SapDiscoveryComponentReplicationSite
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
217
223
  class SapDiscoveryMetadata
218
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
225
 
@@ -666,7 +672,8 @@ module Google
666
672
 
667
673
  collection :ha_hosts, as: 'haHosts'
668
674
  property :host_project, as: 'hostProject'
669
- collection :replication_sites, as: 'replicationSites', class: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent, decorator: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent::Representation
675
+ property :region, as: 'region'
676
+ collection :replication_sites, as: 'replicationSites', class: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponentReplicationSite, decorator: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponentReplicationSite::Representation
670
677
 
671
678
  collection :resources, as: 'resources', class: Google::Apis::WorkloadmanagerV1::SapDiscoveryResource, decorator: Google::Apis::WorkloadmanagerV1::SapDiscoveryResource::Representation
672
679
 
@@ -701,6 +708,15 @@ module Google
701
708
  end
702
709
  end
703
710
 
711
+ class SapDiscoveryComponentReplicationSite
712
+ # @private
713
+ class Representation < Google::Apis::Core::JsonRepresentation
714
+ property :component, as: 'component', class: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent, decorator: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent::Representation
715
+
716
+ property :source_site, as: 'sourceSite'
717
+ end
718
+ end
719
+
704
720
  class SapDiscoveryMetadata
705
721
  # @private
706
722
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-workloadmanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
10
+ date: 2025-01-12 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workloadmanager_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.28.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.29.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workloadmanager_v1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.2
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Workload Manager API V1
82
79
  test_files: []