google-apis-workloadmanager_v1 0.19.0 → 0.21.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d982842b8464ceab29656847da1e43bedf98c99ec491206c1879f4e452a43fa0
4
- data.tar.gz: 99a6a723ff6c74e358a914b66a3bcddc5d4f92ed22764843a9dc51a1776ab782
3
+ metadata.gz: 656c40bbb1df562d4dca65c0818a7b1f6e7befb31b82a92a33a25c8adebda0d4
4
+ data.tar.gz: 2ab0e413b83947d290b7b07e84ef71556bae06c49b64ef08137577dd93a585cb
5
5
  SHA512:
6
- metadata.gz: c13ca1a385a54535cc6e56d70d5c8f86f4788a96490106b45744a4569e1f2bd6b1bb266a7db522fc1c262a80ffd3ab89ba643ddb7a317e5087260a25d6d14762
7
- data.tar.gz: 4494733f4a9f6e3b5759d49e260a0d91436bc920ae36eb37284295cdd3430d83020917c30b7d6942b7c54ac4e0207c70acaf952aa81995e95643d8060f573970
6
+ metadata.gz: adbcf0314915f41e9b75b766e3db91e41cfd8016646d552cfda0e3ace81f747d0267a121ef1703dddd1fe4689196a316702638d71f58faf219b20ebd887e8fd0
7
+ data.tar.gz: 33fca748a0ba7d7fa691503cb47b098e79d271cc204e411140026e4d723119ee0210a0d2128a59f825b5cf615086cccf5afe03bca93d2798597129d92ba78add
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-workloadmanager_v1
2
2
 
3
+ ### v0.21.0 (2024-06-23)
4
+
5
+ * Regenerated from discovery document revision 20240616
6
+
7
+ ### v0.20.0 (2024-05-19)
8
+
9
+ * Regenerated from discovery document revision 20240501
10
+ * Regenerated using generator version 0.15.0
11
+
3
12
  ### v0.19.0 (2024-03-24)
4
13
 
5
14
  * Regenerated from discovery document revision 20240322
@@ -22,6 +22,46 @@ module Google
22
22
  module Apis
23
23
  module WorkloadmanagerV1
24
24
 
25
+ # Provides the mapping of a cloud asset to a direct physical location or to a
26
+ # proxy that defines the location on its behalf.
27
+ class AssetLocation
28
+ include Google::Apis::Core::Hashable
29
+
30
+ # Defines the customer expectation around ZI/ZS for this asset and ZI/ZS state
31
+ # of the region at the time of asset creation.
32
+ # Corresponds to the JSON property `expected`
33
+ # @return [Google::Apis::WorkloadmanagerV1::IsolationExpectations]
34
+ attr_accessor :expected
35
+
36
+ # Defines extra parameters required for specific asset types.
37
+ # Corresponds to the JSON property `extraParameters`
38
+ # @return [Array<Google::Apis::WorkloadmanagerV1::ExtraParameter>]
39
+ attr_accessor :extra_parameters
40
+
41
+ # Contains all kinds of physical location definitions for this asset.
42
+ # Corresponds to the JSON property `locationData`
43
+ # @return [Array<Google::Apis::WorkloadmanagerV1::LocationData>]
44
+ attr_accessor :location_data
45
+
46
+ # Defines parents assets if any in order to allow later generation of
47
+ # child_asset_location data via child assets.
48
+ # Corresponds to the JSON property `parentAsset`
49
+ # @return [Array<Google::Apis::WorkloadmanagerV1::CloudAsset>]
50
+ attr_accessor :parent_asset
51
+
52
+ def initialize(**args)
53
+ update!(**args)
54
+ end
55
+
56
+ # Update properties of this object
57
+ def update!(**args)
58
+ @expected = args[:expected] if args.key?(:expected)
59
+ @extra_parameters = args[:extra_parameters] if args.key?(:extra_parameters)
60
+ @location_data = args[:location_data] if args.key?(:location_data)
61
+ @parent_asset = args[:parent_asset] if args.key?(:parent_asset)
62
+ end
63
+ end
64
+
25
65
  # Message describing big query destination
26
66
  class BigQueryDestination
27
67
  include Google::Apis::Core::Hashable
@@ -48,6 +88,26 @@ module Google
48
88
  end
49
89
  end
50
90
 
91
+ # Policy ID that identified data placement in Blobstore as per go/blobstore-user-
92
+ # guide#data-metadata-placement-and-failure-domains
93
+ class BlobstoreLocation
94
+ include Google::Apis::Core::Hashable
95
+
96
+ #
97
+ # Corresponds to the JSON property `policyId`
98
+ # @return [Array<String>]
99
+ attr_accessor :policy_id
100
+
101
+ def initialize(**args)
102
+ update!(**args)
103
+ end
104
+
105
+ # Update properties of this object
106
+ def update!(**args)
107
+ @policy_id = args[:policy_id] if args.key?(:policy_id)
108
+ end
109
+ end
110
+
51
111
  # The request message for Operations.CancelOperation.
52
112
  class CancelOperationRequest
53
113
  include Google::Apis::Core::Hashable
@@ -61,6 +121,69 @@ module Google
61
121
  end
62
122
  end
63
123
 
124
+ #
125
+ class CloudAsset
126
+ include Google::Apis::Core::Hashable
127
+
128
+ #
129
+ # Corresponds to the JSON property `assetName`
130
+ # @return [String]
131
+ attr_accessor :asset_name
132
+
133
+ #
134
+ # Corresponds to the JSON property `assetType`
135
+ # @return [String]
136
+ attr_accessor :asset_type
137
+
138
+ def initialize(**args)
139
+ update!(**args)
140
+ end
141
+
142
+ # Update properties of this object
143
+ def update!(**args)
144
+ @asset_name = args[:asset_name] if args.key?(:asset_name)
145
+ @asset_type = args[:asset_type] if args.key?(:asset_type)
146
+ end
147
+ end
148
+
149
+ #
150
+ class CloudAssetComposition
151
+ include Google::Apis::Core::Hashable
152
+
153
+ #
154
+ # Corresponds to the JSON property `childAsset`
155
+ # @return [Array<Google::Apis::WorkloadmanagerV1::CloudAsset>]
156
+ attr_accessor :child_asset
157
+
158
+ def initialize(**args)
159
+ update!(**args)
160
+ end
161
+
162
+ # Update properties of this object
163
+ def update!(**args)
164
+ @child_asset = args[:child_asset] if args.key?(:child_asset)
165
+ end
166
+ end
167
+
168
+ #
169
+ class DirectLocationAssignment
170
+ include Google::Apis::Core::Hashable
171
+
172
+ #
173
+ # Corresponds to the JSON property `location`
174
+ # @return [Array<Google::Apis::WorkloadmanagerV1::LocationAssignment>]
175
+ attr_accessor :location
176
+
177
+ def initialize(**args)
178
+ update!(**args)
179
+ end
180
+
181
+ # Update properties of this object
182
+ def update!(**args)
183
+ @location = args[:location] if args.key?(:location)
184
+ end
185
+ end
186
+
64
187
  # A generic empty message that you can re-use to avoid defining duplicated empty
65
188
  # messages in your APIs. A typical example is to use it as the request or the
66
189
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -179,6 +302,11 @@ module Google
179
302
  # @return [String]
180
303
  attr_accessor :evaluation_id
181
304
 
305
+ # Optional. External data sources
306
+ # Corresponds to the JSON property `externalDataSources`
307
+ # @return [Array<Google::Apis::WorkloadmanagerV1::ExternalDataSources>]
308
+ attr_accessor :external_data_sources
309
+
182
310
  # Output only. [Output only] Inventory time stamp
183
311
  # Corresponds to the JSON property `inventoryTime`
184
312
  # @return [String]
@@ -219,6 +347,7 @@ module Google
219
347
  def update!(**args)
220
348
  @end_time = args[:end_time] if args.key?(:end_time)
221
349
  @evaluation_id = args[:evaluation_id] if args.key?(:evaluation_id)
350
+ @external_data_sources = args[:external_data_sources] if args.key?(:external_data_sources)
222
351
  @inventory_time = args[:inventory_time] if args.key?(:inventory_time)
223
352
  @labels = args[:labels] if args.key?(:labels)
224
353
  @name = args[:name] if args.key?(:name)
@@ -232,7 +361,7 @@ module Google
232
361
  class ExecutionResult
233
362
  include Google::Apis::Core::Hashable
234
363
 
235
- # the document url of the rule
364
+ # The URL for the documentation of the rule.
236
365
  # Corresponds to the JSON property `documentationUrl`
237
366
  # @return [String]
238
367
  attr_accessor :documentation_url
@@ -242,22 +371,22 @@ module Google
242
371
  # @return [Google::Apis::WorkloadmanagerV1::Resource]
243
372
  attr_accessor :resource
244
373
 
245
- # the rule which violate in execution
374
+ # The rule that is violated in an evaluation.
246
375
  # Corresponds to the JSON property `rule`
247
376
  # @return [String]
248
377
  attr_accessor :rule
249
378
 
250
- # severity of violation
379
+ # The severity of violation.
251
380
  # Corresponds to the JSON property `severity`
252
381
  # @return [String]
253
382
  attr_accessor :severity
254
383
 
255
- # Message describing the violdation in execution result
384
+ # Message describing the violation in an evaluation result.
256
385
  # Corresponds to the JSON property `violationDetails`
257
386
  # @return [Google::Apis::WorkloadmanagerV1::ViolationDetails]
258
387
  attr_accessor :violation_details
259
388
 
260
- # the violation message of an execution
389
+ # The violation message of an execution.
261
390
  # Corresponds to the JSON property `violationMessage`
262
391
  # @return [String]
263
392
  attr_accessor :violation_message
@@ -277,6 +406,59 @@ module Google
277
406
  end
278
407
  end
279
408
 
409
+ # Message for external data sources
410
+ class ExternalDataSources
411
+ include Google::Apis::Core::Hashable
412
+
413
+ # Required. Name of external data source. The name will be used inside the rego/
414
+ # sql to refer the external data
415
+ # Corresponds to the JSON property `name`
416
+ # @return [String]
417
+ attr_accessor :name
418
+
419
+ # Required. Type of external data source
420
+ # Corresponds to the JSON property `type`
421
+ # @return [String]
422
+ attr_accessor :type
423
+
424
+ # Required. URI of external data source. example of bq table `project_ID`.`
425
+ # dataset_ID`.`table_ID`
426
+ # Corresponds to the JSON property `uri`
427
+ # @return [String]
428
+ attr_accessor :uri
429
+
430
+ def initialize(**args)
431
+ update!(**args)
432
+ end
433
+
434
+ # Update properties of this object
435
+ def update!(**args)
436
+ @name = args[:name] if args.key?(:name)
437
+ @type = args[:type] if args.key?(:type)
438
+ @uri = args[:uri] if args.key?(:uri)
439
+ end
440
+ end
441
+
442
+ # Defines parameters that should only be used for specific asset types.
443
+ class ExtraParameter
444
+ include Google::Apis::Core::Hashable
445
+
446
+ # To be used for specifying the intended distribution of regional compute.
447
+ # googleapis.com/InstanceGroupManager instances
448
+ # Corresponds to the JSON property `regionalMigDistributionPolicy`
449
+ # @return [Google::Apis::WorkloadmanagerV1::RegionalMigDistributionPolicy]
450
+ attr_accessor :regional_mig_distribution_policy
451
+
452
+ def initialize(**args)
453
+ update!(**args)
454
+ end
455
+
456
+ # Update properties of this object
457
+ def update!(**args)
458
+ @regional_mig_distribution_policy = args[:regional_mig_distribution_policy] if args.key?(:regional_mig_distribution_policy)
459
+ end
460
+ end
461
+
280
462
  # Message describing compute engine instance filter
281
463
  class GceInstanceFilter
282
464
  include Google::Apis::Core::Hashable
@@ -341,6 +523,63 @@ module Google
341
523
  end
342
524
  end
343
525
 
526
+ #
527
+ class IsolationExpectations
528
+ include Google::Apis::Core::Hashable
529
+
530
+ #
531
+ # Corresponds to the JSON property `ziOrgPolicy`
532
+ # @return [String]
533
+ attr_accessor :zi_org_policy
534
+
535
+ #
536
+ # Corresponds to the JSON property `ziRegionPolicy`
537
+ # @return [String]
538
+ attr_accessor :zi_region_policy
539
+
540
+ #
541
+ # Corresponds to the JSON property `ziRegionState`
542
+ # @return [String]
543
+ attr_accessor :zi_region_state
544
+
545
+ # Deprecated: use zi_org_policy, zi_region_policy and zi_region_state instead
546
+ # for setting ZI expectations as per go/zicy-publish-physical-location.
547
+ # Corresponds to the JSON property `zoneIsolation`
548
+ # @return [String]
549
+ attr_accessor :zone_isolation
550
+
551
+ # Deprecated: use zs_org_policy, and zs_region_stateinstead for setting Zs
552
+ # expectations as per go/zicy-publish-physical-location.
553
+ # Corresponds to the JSON property `zoneSeparation`
554
+ # @return [String]
555
+ attr_accessor :zone_separation
556
+
557
+ #
558
+ # Corresponds to the JSON property `zsOrgPolicy`
559
+ # @return [String]
560
+ attr_accessor :zs_org_policy
561
+
562
+ #
563
+ # Corresponds to the JSON property `zsRegionState`
564
+ # @return [String]
565
+ attr_accessor :zs_region_state
566
+
567
+ def initialize(**args)
568
+ update!(**args)
569
+ end
570
+
571
+ # Update properties of this object
572
+ def update!(**args)
573
+ @zi_org_policy = args[:zi_org_policy] if args.key?(:zi_org_policy)
574
+ @zi_region_policy = args[:zi_region_policy] if args.key?(:zi_region_policy)
575
+ @zi_region_state = args[:zi_region_state] if args.key?(:zi_region_state)
576
+ @zone_isolation = args[:zone_isolation] if args.key?(:zone_isolation)
577
+ @zone_separation = args[:zone_separation] if args.key?(:zone_separation)
578
+ @zs_org_policy = args[:zs_org_policy] if args.key?(:zs_org_policy)
579
+ @zs_region_state = args[:zs_region_state] if args.key?(:zs_region_state)
580
+ end
581
+ end
582
+
344
583
  # Message for response to listing Evaluations
345
584
  class ListEvaluationsResponse
346
585
  include Google::Apis::Core::Hashable
@@ -577,6 +816,82 @@ module Google
577
816
  end
578
817
  end
579
818
 
819
+ #
820
+ class LocationAssignment
821
+ include Google::Apis::Core::Hashable
822
+
823
+ #
824
+ # Corresponds to the JSON property `location`
825
+ # @return [String]
826
+ attr_accessor :location
827
+
828
+ #
829
+ # Corresponds to the JSON property `locationType`
830
+ # @return [String]
831
+ attr_accessor :location_type
832
+
833
+ def initialize(**args)
834
+ update!(**args)
835
+ end
836
+
837
+ # Update properties of this object
838
+ def update!(**args)
839
+ @location = args[:location] if args.key?(:location)
840
+ @location_type = args[:location_type] if args.key?(:location_type)
841
+ end
842
+ end
843
+
844
+ #
845
+ class LocationData
846
+ include Google::Apis::Core::Hashable
847
+
848
+ # Policy ID that identified data placement in Blobstore as per go/blobstore-user-
849
+ # guide#data-metadata-placement-and-failure-domains
850
+ # Corresponds to the JSON property `blobstoreLocation`
851
+ # @return [Google::Apis::WorkloadmanagerV1::BlobstoreLocation]
852
+ attr_accessor :blobstore_location
853
+
854
+ #
855
+ # Corresponds to the JSON property `childAssetLocation`
856
+ # @return [Google::Apis::WorkloadmanagerV1::CloudAssetComposition]
857
+ attr_accessor :child_asset_location
858
+
859
+ #
860
+ # Corresponds to the JSON property `directLocation`
861
+ # @return [Google::Apis::WorkloadmanagerV1::DirectLocationAssignment]
862
+ attr_accessor :direct_location
863
+
864
+ #
865
+ # Corresponds to the JSON property `gcpProjectProxy`
866
+ # @return [Google::Apis::WorkloadmanagerV1::TenantProjectProxy]
867
+ attr_accessor :gcp_project_proxy
868
+
869
+ # Message describing that the location of the customer resource is tied to
870
+ # placer allocations
871
+ # Corresponds to the JSON property `placerLocation`
872
+ # @return [Google::Apis::WorkloadmanagerV1::PlacerLocation]
873
+ attr_accessor :placer_location
874
+
875
+ #
876
+ # Corresponds to the JSON property `spannerLocation`
877
+ # @return [Google::Apis::WorkloadmanagerV1::SpannerLocation]
878
+ attr_accessor :spanner_location
879
+
880
+ def initialize(**args)
881
+ update!(**args)
882
+ end
883
+
884
+ # Update properties of this object
885
+ def update!(**args)
886
+ @blobstore_location = args[:blobstore_location] if args.key?(:blobstore_location)
887
+ @child_asset_location = args[:child_asset_location] if args.key?(:child_asset_location)
888
+ @direct_location = args[:direct_location] if args.key?(:direct_location)
889
+ @gcp_project_proxy = args[:gcp_project_proxy] if args.key?(:gcp_project_proxy)
890
+ @placer_location = args[:placer_location] if args.key?(:placer_location)
891
+ @spanner_location = args[:spanner_location] if args.key?(:spanner_location)
892
+ end
893
+ end
894
+
580
895
  # This resource represents a long-running operation that is the result of a
581
896
  # network API call.
582
897
  class Operation
@@ -698,21 +1013,69 @@ module Google
698
1013
  end
699
1014
  end
700
1015
 
1016
+ # Message describing that the location of the customer resource is tied to
1017
+ # placer allocations
1018
+ class PlacerLocation
1019
+ include Google::Apis::Core::Hashable
1020
+
1021
+ # Directory with a config related to it in placer (e.g. "/placer/prod/home/my-
1022
+ # root/my-dir")
1023
+ # Corresponds to the JSON property `placerConfig`
1024
+ # @return [String]
1025
+ attr_accessor :placer_config
1026
+
1027
+ def initialize(**args)
1028
+ update!(**args)
1029
+ end
1030
+
1031
+ # Update properties of this object
1032
+ def update!(**args)
1033
+ @placer_config = args[:placer_config] if args.key?(:placer_config)
1034
+ end
1035
+ end
1036
+
1037
+ # To be used for specifying the intended distribution of regional compute.
1038
+ # googleapis.com/InstanceGroupManager instances
1039
+ class RegionalMigDistributionPolicy
1040
+ include Google::Apis::Core::Hashable
1041
+
1042
+ # The shape in which the group converges around distribution of resources.
1043
+ # Instance of proto2 enum
1044
+ # Corresponds to the JSON property `targetShape`
1045
+ # @return [Fixnum]
1046
+ attr_accessor :target_shape
1047
+
1048
+ # Cloud zones used by regional MIG to create instances.
1049
+ # Corresponds to the JSON property `zones`
1050
+ # @return [Array<Google::Apis::WorkloadmanagerV1::ZoneConfiguration>]
1051
+ attr_accessor :zones
1052
+
1053
+ def initialize(**args)
1054
+ update!(**args)
1055
+ end
1056
+
1057
+ # Update properties of this object
1058
+ def update!(**args)
1059
+ @target_shape = args[:target_shape] if args.key?(:target_shape)
1060
+ @zones = args[:zones] if args.key?(:zones)
1061
+ end
1062
+ end
1063
+
701
1064
  # Message represent resource in execution result
702
1065
  class Resource
703
1066
  include Google::Apis::Core::Hashable
704
1067
 
705
- # the name of the resource
1068
+ # The name of the resource.
706
1069
  # Corresponds to the JSON property `name`
707
1070
  # @return [String]
708
1071
  attr_accessor :name
709
1072
 
710
- # the service account accosiate with resource
1073
+ # The service account associated with the resource.
711
1074
  # Corresponds to the JSON property `serviceAccount`
712
1075
  # @return [String]
713
1076
  attr_accessor :service_account
714
1077
 
715
- # the type of reresource
1078
+ # The type of resource.
716
1079
  # Corresponds to the JSON property `type`
717
1080
  # @return [String]
718
1081
  attr_accessor :type
@@ -992,6 +1355,12 @@ module Google
992
1355
  # @return [String]
993
1356
  attr_accessor :host_project
994
1357
 
1358
+ # Optional. A list of replication sites used in Disaster Recovery (DR)
1359
+ # configurations.
1360
+ # Corresponds to the JSON property `replicationSites`
1361
+ # @return [Array<Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent>]
1362
+ attr_accessor :replication_sites
1363
+
995
1364
  # Optional. The resources in a component.
996
1365
  # Corresponds to the JSON property `resources`
997
1366
  # @return [Array<Google::Apis::WorkloadmanagerV1::SapDiscoveryResource>]
@@ -1018,6 +1387,7 @@ module Google
1018
1387
  @database_properties = args[:database_properties] if args.key?(:database_properties)
1019
1388
  @ha_hosts = args[:ha_hosts] if args.key?(:ha_hosts)
1020
1389
  @host_project = args[:host_project] if args.key?(:host_project)
1390
+ @replication_sites = args[:replication_sites] if args.key?(:replication_sites)
1021
1391
  @resources = args[:resources] if args.key?(:resources)
1022
1392
  @sid = args[:sid] if args.key?(:sid)
1023
1393
  @topology_type = args[:topology_type] if args.key?(:topology_type)
@@ -1028,8 +1398,8 @@ module Google
1028
1398
  class SapDiscoveryComponentApplicationProperties
1029
1399
  include Google::Apis::Core::Hashable
1030
1400
 
1031
- # Optional. Indicates whether this is a Java or ABAP Netweaver instance. true
1032
- # means it is ABAP, false means it is Java.
1401
+ # Optional. Deprecated: ApplicationType now tells you whether this is ABAP or
1402
+ # Java.
1033
1403
  # Corresponds to the JSON property `abap`
1034
1404
  # @return [Boolean]
1035
1405
  attr_accessor :abap
@@ -1055,6 +1425,11 @@ module Google
1055
1425
  # @return [String]
1056
1426
  attr_accessor :ascs_uri
1057
1427
 
1428
+ # Optional. Instance number of the ERS instance.
1429
+ # Corresponds to the JSON property `ersInstanceNumber`
1430
+ # @return [String]
1431
+ attr_accessor :ers_instance_number
1432
+
1058
1433
  # Optional. Kernel version for Netweaver running in the system.
1059
1434
  # Corresponds to the JSON property `kernelVersion`
1060
1435
  # @return [String]
@@ -1077,6 +1452,7 @@ module Google
1077
1452
  @application_type = args[:application_type] if args.key?(:application_type)
1078
1453
  @ascs_instance_number = args[:ascs_instance_number] if args.key?(:ascs_instance_number)
1079
1454
  @ascs_uri = args[:ascs_uri] if args.key?(:ascs_uri)
1455
+ @ers_instance_number = args[:ers_instance_number] if args.key?(:ers_instance_number)
1080
1456
  @kernel_version = args[:kernel_version] if args.key?(:kernel_version)
1081
1457
  @nfs_uri = args[:nfs_uri] if args.key?(:nfs_uri)
1082
1458
  end
@@ -1224,6 +1600,11 @@ module Google
1224
1600
  class SapDiscoveryResourceInstanceProperties
1225
1601
  include Google::Apis::Core::Hashable
1226
1602
 
1603
+ # Optional. App server instances on the host
1604
+ # Corresponds to the JSON property `appInstances`
1605
+ # @return [Array<Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstancePropertiesAppInstance>]
1606
+ attr_accessor :app_instances
1607
+
1227
1608
  # Optional. A list of instance URIs that are part of a cluster with this one.
1228
1609
  # Corresponds to the JSON property `clusterInstances`
1229
1610
  # @return [Array<String>]
@@ -1234,6 +1615,11 @@ module Google
1234
1615
  # @return [Fixnum]
1235
1616
  attr_accessor :instance_number
1236
1617
 
1618
+ # Optional. Bitmask of instance role, a resource may have multiple roles at once.
1619
+ # Corresponds to the JSON property `instanceRole`
1620
+ # @return [String]
1621
+ attr_accessor :instance_role
1622
+
1237
1623
  # Optional. A virtual hostname of the instance if it has one.
1238
1624
  # Corresponds to the JSON property `virtualHostname`
1239
1625
  # @return [String]
@@ -1245,12 +1631,39 @@ module Google
1245
1631
 
1246
1632
  # Update properties of this object
1247
1633
  def update!(**args)
1634
+ @app_instances = args[:app_instances] if args.key?(:app_instances)
1248
1635
  @cluster_instances = args[:cluster_instances] if args.key?(:cluster_instances)
1249
1636
  @instance_number = args[:instance_number] if args.key?(:instance_number)
1637
+ @instance_role = args[:instance_role] if args.key?(:instance_role)
1250
1638
  @virtual_hostname = args[:virtual_hostname] if args.key?(:virtual_hostname)
1251
1639
  end
1252
1640
  end
1253
1641
 
1642
+ # Fields to describe an SAP application server instance.
1643
+ class SapDiscoveryResourceInstancePropertiesAppInstance
1644
+ include Google::Apis::Core::Hashable
1645
+
1646
+ # Optional. Instance name of the SAP application instance.
1647
+ # Corresponds to the JSON property `name`
1648
+ # @return [String]
1649
+ attr_accessor :name
1650
+
1651
+ # Optional. Instance number of the SAP application instance.
1652
+ # Corresponds to the JSON property `number`
1653
+ # @return [String]
1654
+ attr_accessor :number
1655
+
1656
+ def initialize(**args)
1657
+ update!(**args)
1658
+ end
1659
+
1660
+ # Update properties of this object
1661
+ def update!(**args)
1662
+ @name = args[:name] if args.key?(:name)
1663
+ @number = args[:number] if args.key?(:number)
1664
+ end
1665
+ end
1666
+
1254
1667
  # A set of properties describing an SAP workload.
1255
1668
  class SapDiscoveryWorkloadProperties
1256
1669
  include Google::Apis::Core::Hashable
@@ -1428,6 +1841,25 @@ module Google
1428
1841
  end
1429
1842
  end
1430
1843
 
1844
+ #
1845
+ class SpannerLocation
1846
+ include Google::Apis::Core::Hashable
1847
+
1848
+ #
1849
+ # Corresponds to the JSON property `dbName`
1850
+ # @return [Array<String>]
1851
+ attr_accessor :db_name
1852
+
1853
+ def initialize(**args)
1854
+ update!(**args)
1855
+ end
1856
+
1857
+ # Update properties of this object
1858
+ def update!(**args)
1859
+ @db_name = args[:db_name] if args.key?(:db_name)
1860
+ end
1861
+ end
1862
+
1431
1863
  # A presentation of SQLServer workload insight. The schema of SqlServer
1432
1864
  # workloads validation related data.
1433
1865
  class SqlserverValidation
@@ -1551,21 +1983,40 @@ module Google
1551
1983
  end
1552
1984
  end
1553
1985
 
1554
- # Message describing the violdation in execution result
1986
+ #
1987
+ class TenantProjectProxy
1988
+ include Google::Apis::Core::Hashable
1989
+
1990
+ #
1991
+ # Corresponds to the JSON property `projectNumbers`
1992
+ # @return [Array<String>]
1993
+ attr_accessor :project_numbers
1994
+
1995
+ def initialize(**args)
1996
+ update!(**args)
1997
+ end
1998
+
1999
+ # Update properties of this object
2000
+ def update!(**args)
2001
+ @project_numbers = args[:project_numbers] if args.key?(:project_numbers)
2002
+ end
2003
+ end
2004
+
2005
+ # Message describing the violation in an evaluation result.
1555
2006
  class ViolationDetails
1556
2007
  include Google::Apis::Core::Hashable
1557
2008
 
1558
- # the name of asset
2009
+ # The name of the asset.
1559
2010
  # Corresponds to the JSON property `asset`
1560
2011
  # @return [String]
1561
2012
  attr_accessor :asset
1562
2013
 
1563
- # observed
2014
+ # Details of the violation.
1564
2015
  # Corresponds to the JSON property `observed`
1565
2016
  # @return [Hash<String,String>]
1566
2017
  attr_accessor :observed
1567
2018
 
1568
- # the service account associate with resource
2019
+ # The service account associated with the resource.
1569
2020
  # Corresponds to the JSON property `serviceAccount`
1570
2021
  # @return [String]
1571
2022
  attr_accessor :service_account
@@ -1634,6 +2085,25 @@ module Google
1634
2085
  def update!(**args)
1635
2086
  end
1636
2087
  end
2088
+
2089
+ #
2090
+ class ZoneConfiguration
2091
+ include Google::Apis::Core::Hashable
2092
+
2093
+ #
2094
+ # Corresponds to the JSON property `zone`
2095
+ # @return [String]
2096
+ attr_accessor :zone
2097
+
2098
+ def initialize(**args)
2099
+ update!(**args)
2100
+ end
2101
+
2102
+ # Update properties of this object
2103
+ def update!(**args)
2104
+ @zone = args[:zone] if args.key?(:zone)
2105
+ end
2106
+ end
1637
2107
  end
1638
2108
  end
1639
2109
  end
@@ -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.19.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240322"
25
+ REVISION = "20240616"
26
26
  end
27
27
  end
28
28
  end
@@ -22,18 +22,48 @@ module Google
22
22
  module Apis
23
23
  module WorkloadmanagerV1
24
24
 
25
+ class AssetLocation
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
25
31
  class BigQueryDestination
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
28
34
  include Google::Apis::Core::JsonObjectSupport
29
35
  end
30
36
 
37
+ class BlobstoreLocation
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
31
43
  class CancelOperationRequest
32
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
45
 
34
46
  include Google::Apis::Core::JsonObjectSupport
35
47
  end
36
48
 
49
+ class CloudAsset
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
55
+ class CloudAssetComposition
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
61
+ class DirectLocationAssignment
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
37
67
  class Empty
38
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
69
 
@@ -58,6 +88,18 @@ module Google
58
88
  include Google::Apis::Core::JsonObjectSupport
59
89
  end
60
90
 
91
+ class ExternalDataSources
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
97
+ class ExtraParameter
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
61
103
  class GceInstanceFilter
62
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
105
 
@@ -70,6 +112,12 @@ module Google
70
112
  include Google::Apis::Core::JsonObjectSupport
71
113
  end
72
114
 
115
+ class IsolationExpectations
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
73
121
  class ListEvaluationsResponse
74
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
123
 
@@ -118,6 +166,18 @@ module Google
118
166
  include Google::Apis::Core::JsonObjectSupport
119
167
  end
120
168
 
169
+ class LocationAssignment
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
175
+ class LocationData
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
121
181
  class Operation
122
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
183
 
@@ -130,6 +190,18 @@ module Google
130
190
  include Google::Apis::Core::JsonObjectSupport
131
191
  end
132
192
 
193
+ class PlacerLocation
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
199
+ class RegionalMigDistributionPolicy
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
133
205
  class Resource
134
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
207
 
@@ -202,6 +274,12 @@ module Google
202
274
  include Google::Apis::Core::JsonObjectSupport
203
275
  end
204
276
 
277
+ class SapDiscoveryResourceInstancePropertiesAppInstance
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
205
283
  class SapDiscoveryWorkloadProperties
206
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
285
 
@@ -238,6 +316,12 @@ module Google
238
316
  include Google::Apis::Core::JsonObjectSupport
239
317
  end
240
318
 
319
+ class SpannerLocation
320
+ class Representation < Google::Apis::Core::JsonRepresentation; end
321
+
322
+ include Google::Apis::Core::JsonObjectSupport
323
+ end
324
+
241
325
  class SqlserverValidation
242
326
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
327
 
@@ -262,6 +346,12 @@ module Google
262
346
  include Google::Apis::Core::JsonObjectSupport
263
347
  end
264
348
 
349
+ class TenantProjectProxy
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
265
355
  class ViolationDetails
266
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
357
 
@@ -280,6 +370,26 @@ module Google
280
370
  include Google::Apis::Core::JsonObjectSupport
281
371
  end
282
372
 
373
+ class ZoneConfiguration
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
379
+ class AssetLocation
380
+ # @private
381
+ class Representation < Google::Apis::Core::JsonRepresentation
382
+ property :expected, as: 'expected', class: Google::Apis::WorkloadmanagerV1::IsolationExpectations, decorator: Google::Apis::WorkloadmanagerV1::IsolationExpectations::Representation
383
+
384
+ collection :extra_parameters, as: 'extraParameters', class: Google::Apis::WorkloadmanagerV1::ExtraParameter, decorator: Google::Apis::WorkloadmanagerV1::ExtraParameter::Representation
385
+
386
+ collection :location_data, as: 'locationData', class: Google::Apis::WorkloadmanagerV1::LocationData, decorator: Google::Apis::WorkloadmanagerV1::LocationData::Representation
387
+
388
+ collection :parent_asset, as: 'parentAsset', class: Google::Apis::WorkloadmanagerV1::CloudAsset, decorator: Google::Apis::WorkloadmanagerV1::CloudAsset::Representation
389
+
390
+ end
391
+ end
392
+
283
393
  class BigQueryDestination
284
394
  # @private
285
395
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -288,12 +398,43 @@ module Google
288
398
  end
289
399
  end
290
400
 
401
+ class BlobstoreLocation
402
+ # @private
403
+ class Representation < Google::Apis::Core::JsonRepresentation
404
+ collection :policy_id, as: 'policyId'
405
+ end
406
+ end
407
+
291
408
  class CancelOperationRequest
292
409
  # @private
293
410
  class Representation < Google::Apis::Core::JsonRepresentation
294
411
  end
295
412
  end
296
413
 
414
+ class CloudAsset
415
+ # @private
416
+ class Representation < Google::Apis::Core::JsonRepresentation
417
+ property :asset_name, as: 'assetName'
418
+ property :asset_type, as: 'assetType'
419
+ end
420
+ end
421
+
422
+ class CloudAssetComposition
423
+ # @private
424
+ class Representation < Google::Apis::Core::JsonRepresentation
425
+ collection :child_asset, as: 'childAsset', class: Google::Apis::WorkloadmanagerV1::CloudAsset, decorator: Google::Apis::WorkloadmanagerV1::CloudAsset::Representation
426
+
427
+ end
428
+ end
429
+
430
+ class DirectLocationAssignment
431
+ # @private
432
+ class Representation < Google::Apis::Core::JsonRepresentation
433
+ collection :location, as: 'location', class: Google::Apis::WorkloadmanagerV1::LocationAssignment, decorator: Google::Apis::WorkloadmanagerV1::LocationAssignment::Representation
434
+
435
+ end
436
+ end
437
+
297
438
  class Empty
298
439
  # @private
299
440
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -326,6 +467,8 @@ module Google
326
467
  class Representation < Google::Apis::Core::JsonRepresentation
327
468
  property :end_time, as: 'endTime'
328
469
  property :evaluation_id, as: 'evaluationId'
470
+ collection :external_data_sources, as: 'externalDataSources', class: Google::Apis::WorkloadmanagerV1::ExternalDataSources, decorator: Google::Apis::WorkloadmanagerV1::ExternalDataSources::Representation
471
+
329
472
  property :inventory_time, as: 'inventoryTime'
330
473
  hash :labels, as: 'labels'
331
474
  property :name, as: 'name'
@@ -349,6 +492,23 @@ module Google
349
492
  end
350
493
  end
351
494
 
495
+ class ExternalDataSources
496
+ # @private
497
+ class Representation < Google::Apis::Core::JsonRepresentation
498
+ property :name, as: 'name'
499
+ property :type, as: 'type'
500
+ property :uri, as: 'uri'
501
+ end
502
+ end
503
+
504
+ class ExtraParameter
505
+ # @private
506
+ class Representation < Google::Apis::Core::JsonRepresentation
507
+ property :regional_mig_distribution_policy, as: 'regionalMigDistributionPolicy', class: Google::Apis::WorkloadmanagerV1::RegionalMigDistributionPolicy, decorator: Google::Apis::WorkloadmanagerV1::RegionalMigDistributionPolicy::Representation
508
+
509
+ end
510
+ end
511
+
352
512
  class GceInstanceFilter
353
513
  # @private
354
514
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -370,6 +530,19 @@ module Google
370
530
  end
371
531
  end
372
532
 
533
+ class IsolationExpectations
534
+ # @private
535
+ class Representation < Google::Apis::Core::JsonRepresentation
536
+ property :zi_org_policy, as: 'ziOrgPolicy'
537
+ property :zi_region_policy, as: 'ziRegionPolicy'
538
+ property :zi_region_state, as: 'ziRegionState'
539
+ property :zone_isolation, as: 'zoneIsolation'
540
+ property :zone_separation, as: 'zoneSeparation'
541
+ property :zs_org_policy, as: 'zsOrgPolicy'
542
+ property :zs_region_state, as: 'zsRegionState'
543
+ end
544
+ end
545
+
373
546
  class ListEvaluationsResponse
374
547
  # @private
375
548
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -446,6 +619,32 @@ module Google
446
619
  end
447
620
  end
448
621
 
622
+ class LocationAssignment
623
+ # @private
624
+ class Representation < Google::Apis::Core::JsonRepresentation
625
+ property :location, as: 'location'
626
+ property :location_type, as: 'locationType'
627
+ end
628
+ end
629
+
630
+ class LocationData
631
+ # @private
632
+ class Representation < Google::Apis::Core::JsonRepresentation
633
+ property :blobstore_location, as: 'blobstoreLocation', class: Google::Apis::WorkloadmanagerV1::BlobstoreLocation, decorator: Google::Apis::WorkloadmanagerV1::BlobstoreLocation::Representation
634
+
635
+ property :child_asset_location, as: 'childAssetLocation', class: Google::Apis::WorkloadmanagerV1::CloudAssetComposition, decorator: Google::Apis::WorkloadmanagerV1::CloudAssetComposition::Representation
636
+
637
+ property :direct_location, as: 'directLocation', class: Google::Apis::WorkloadmanagerV1::DirectLocationAssignment, decorator: Google::Apis::WorkloadmanagerV1::DirectLocationAssignment::Representation
638
+
639
+ property :gcp_project_proxy, as: 'gcpProjectProxy', class: Google::Apis::WorkloadmanagerV1::TenantProjectProxy, decorator: Google::Apis::WorkloadmanagerV1::TenantProjectProxy::Representation
640
+
641
+ property :placer_location, as: 'placerLocation', class: Google::Apis::WorkloadmanagerV1::PlacerLocation, decorator: Google::Apis::WorkloadmanagerV1::PlacerLocation::Representation
642
+
643
+ property :spanner_location, as: 'spannerLocation', class: Google::Apis::WorkloadmanagerV1::SpannerLocation, decorator: Google::Apis::WorkloadmanagerV1::SpannerLocation::Representation
644
+
645
+ end
646
+ end
647
+
449
648
  class Operation
450
649
  # @private
451
650
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -471,6 +670,22 @@ module Google
471
670
  end
472
671
  end
473
672
 
673
+ class PlacerLocation
674
+ # @private
675
+ class Representation < Google::Apis::Core::JsonRepresentation
676
+ property :placer_config, as: 'placerConfig'
677
+ end
678
+ end
679
+
680
+ class RegionalMigDistributionPolicy
681
+ # @private
682
+ class Representation < Google::Apis::Core::JsonRepresentation
683
+ property :target_shape, as: 'targetShape'
684
+ collection :zones, as: 'zones', class: Google::Apis::WorkloadmanagerV1::ZoneConfiguration, decorator: Google::Apis::WorkloadmanagerV1::ZoneConfiguration::Representation
685
+
686
+ end
687
+ end
688
+
474
689
  class Resource
475
690
  # @private
476
691
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -552,6 +767,8 @@ module Google
552
767
 
553
768
  collection :ha_hosts, as: 'haHosts'
554
769
  property :host_project, as: 'hostProject'
770
+ collection :replication_sites, as: 'replicationSites', class: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent, decorator: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponent::Representation
771
+
555
772
  collection :resources, as: 'resources', class: Google::Apis::WorkloadmanagerV1::SapDiscoveryResource, decorator: Google::Apis::WorkloadmanagerV1::SapDiscoveryResource::Representation
556
773
 
557
774
  property :sid, as: 'sid'
@@ -567,6 +784,7 @@ module Google
567
784
  property :application_type, as: 'applicationType'
568
785
  property :ascs_instance_number, as: 'ascsInstanceNumber'
569
786
  property :ascs_uri, as: 'ascsUri'
787
+ property :ers_instance_number, as: 'ersInstanceNumber'
570
788
  property :kernel_version, as: 'kernelVersion'
571
789
  property :nfs_uri, as: 'nfsUri'
572
790
  end
@@ -610,12 +828,23 @@ module Google
610
828
  class SapDiscoveryResourceInstanceProperties
611
829
  # @private
612
830
  class Representation < Google::Apis::Core::JsonRepresentation
831
+ collection :app_instances, as: 'appInstances', class: Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstancePropertiesAppInstance, decorator: Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstancePropertiesAppInstance::Representation
832
+
613
833
  collection :cluster_instances, as: 'clusterInstances'
614
834
  property :instance_number, :numeric_string => true, as: 'instanceNumber'
835
+ property :instance_role, as: 'instanceRole'
615
836
  property :virtual_hostname, as: 'virtualHostname'
616
837
  end
617
838
  end
618
839
 
840
+ class SapDiscoveryResourceInstancePropertiesAppInstance
841
+ # @private
842
+ class Representation < Google::Apis::Core::JsonRepresentation
843
+ property :name, as: 'name'
844
+ property :number, as: 'number'
845
+ end
846
+ end
847
+
619
848
  class SapDiscoveryWorkloadProperties
620
849
  # @private
621
850
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -671,6 +900,13 @@ module Google
671
900
  end
672
901
  end
673
902
 
903
+ class SpannerLocation
904
+ # @private
905
+ class Representation < Google::Apis::Core::JsonRepresentation
906
+ collection :db_name, as: 'dbName'
907
+ end
908
+ end
909
+
674
910
  class SqlserverValidation
675
911
  # @private
676
912
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -707,6 +943,13 @@ module Google
707
943
  end
708
944
  end
709
945
 
946
+ class TenantProjectProxy
947
+ # @private
948
+ class Representation < Google::Apis::Core::JsonRepresentation
949
+ collection :project_numbers, as: 'projectNumbers'
950
+ end
951
+ end
952
+
710
953
  class ViolationDetails
711
954
  # @private
712
955
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -731,6 +974,13 @@ module Google
731
974
  class Representation < Google::Apis::Core::JsonRepresentation
732
975
  end
733
976
  end
977
+
978
+ class ZoneConfiguration
979
+ # @private
980
+ class Representation < Google::Apis::Core::JsonRepresentation
981
+ property :zone, as: 'zone'
982
+ end
983
+ end
734
984
  end
735
985
  end
736
986
  end
@@ -254,7 +254,7 @@ module Google
254
254
  # @param [String] parent
255
255
  # Required. Parent value for ListEvaluationsRequest
256
256
  # @param [String] filter
257
- # Filtering results
257
+ # Filter to be applied when listing the evaluation results.
258
258
  # @param [String] order_by
259
259
  # Hint for how to order the results
260
260
  # @param [Fixnum] page_size
@@ -443,7 +443,7 @@ module Google
443
443
  execute_or_queue_command(command, &block)
444
444
  end
445
445
 
446
- # List the running result of a single Execution.
446
+ # Lists the result of a single evaluation.
447
447
  # @param [String] parent
448
448
  # Required. The execution results. Format: `parent`/evaluations/*/executions/*/
449
449
  # results
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-workloadmanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-24 00:00:00.000000000 Z
11
+ date: 2024-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  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.19.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.21.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workloadmanager_v1
63
63
  post_install_message:
64
64
  rdoc_options: []