google-apis-workloadmanager_v1 0.11.0 → 0.13.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: 7bd0a7178a873d3d3214063deaa4add3829204ec016dd3c90a1196daaec29321
4
- data.tar.gz: 556833e6057a709d12d44034f0b6d8935a01813787557ed1105aed92d67d7102
3
+ metadata.gz: 36b0a69818267f1936f741bde08f6dc547ae679b8519ff6cbe14503bf04aeeae
4
+ data.tar.gz: 8336639e219bc80eaa94d0e09ea6a39b3da74cf7296e22373634a8f1e761adf3
5
5
  SHA512:
6
- metadata.gz: be9de00e0aed8f50ab17994a03d93336473d830ccf14bb89e2a5aeb8a2686e56ee7940a5f8d9c4becd08ac700181fa425bc25937bf656177c431f4cb6caa1ebd
7
- data.tar.gz: e016669296688e34c4d3d767f72208d5f31dc3312207dfac5dc606284ddadcd7d120c595e6a6b39bef8c07926b87a96d4f343243a80ac5afbffdeb5c5b3f093f
6
+ metadata.gz: 6ce16dc57be9611dc3d707d774a5038f85677b4cd47e371b651f23599b6a04d29e7f4b8327733c5b802a8f939fef5a9826e026f08772dd44159a9213085e1259
7
+ data.tar.gz: 9f7813072b4967b6d754f414680acaf29153675408ed6720e02dcb789648427eead7fb056080c3ef695aa6803530cca08748944e3497ed63ae6ea14af3def41a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-workloadmanager_v1
2
2
 
3
+ ### v0.13.0 (2024-01-22)
4
+
5
+ * Regenerated from discovery document revision 20240103
6
+ * Regenerated using generator version 0.13.0
7
+
8
+ ### v0.12.0 (2023-12-17)
9
+
10
+ * Regenerated from discovery document revision 20231211
11
+
3
12
  ### v0.11.0 (2023-09-10)
4
13
 
5
14
  * Regenerated from discovery document revision 20230907
@@ -22,6 +22,32 @@ module Google
22
22
  module Apis
23
23
  module WorkloadmanagerV1
24
24
 
25
+ # Message describing big query destination
26
+ class BigQueryDestination
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Optional. determine if results will be saved in a new table
30
+ # Corresponds to the JSON property `createNewResultsTable`
31
+ # @return [Boolean]
32
+ attr_accessor :create_new_results_table
33
+ alias_method :create_new_results_table?, :create_new_results_table
34
+
35
+ # Optional. destination dataset to save evaluation results
36
+ # Corresponds to the JSON property `destinationDataset`
37
+ # @return [String]
38
+ attr_accessor :destination_dataset
39
+
40
+ def initialize(**args)
41
+ update!(**args)
42
+ end
43
+
44
+ # Update properties of this object
45
+ def update!(**args)
46
+ @create_new_results_table = args[:create_new_results_table] if args.key?(:create_new_results_table)
47
+ @destination_dataset = args[:destination_dataset] if args.key?(:destination_dataset)
48
+ end
49
+ end
50
+
25
51
  # The request message for Operations.CancelOperation.
26
52
  class CancelOperationRequest
27
53
  include Google::Apis::Core::Hashable
@@ -55,6 +81,11 @@ module Google
55
81
  class Evaluation
56
82
  include Google::Apis::Core::Hashable
57
83
 
84
+ # Message describing big query destination
85
+ # Corresponds to the JSON property `bigQueryDestination`
86
+ # @return [Google::Apis::WorkloadmanagerV1::BigQueryDestination]
87
+ attr_accessor :big_query_destination
88
+
58
89
  # Output only. [Output only] Create time stamp
59
90
  # Corresponds to the JSON property `createTime`
60
91
  # @return [String]
@@ -119,6 +150,7 @@ module Google
119
150
 
120
151
  # Update properties of this object
121
152
  def update!(**args)
153
+ @big_query_destination = args[:big_query_destination] if args.key?(:big_query_destination)
122
154
  @create_time = args[:create_time] if args.key?(:create_time)
123
155
  @custom_rules_bucket = args[:custom_rules_bucket] if args.key?(:custom_rules_bucket)
124
156
  @description = args[:description] if args.key?(:description)
@@ -892,6 +924,11 @@ module Google
892
924
  # @return [Google::Apis::WorkloadmanagerV1::SapDiscoveryMetadata]
893
925
  attr_accessor :metadata
894
926
 
927
+ # Optional. The GCP project number that this SapSystem belongs to.
928
+ # Corresponds to the JSON property `projectNumber`
929
+ # @return [String]
930
+ attr_accessor :project_number
931
+
895
932
  # Output only. A combination of database SID, database instance URI and tenant
896
933
  # DB name to make a unique identifier per-system.
897
934
  # Corresponds to the JSON property `systemId`
@@ -912,6 +949,7 @@ module Google
912
949
  @application_layer = args[:application_layer] if args.key?(:application_layer)
913
950
  @database_layer = args[:database_layer] if args.key?(:database_layer)
914
951
  @metadata = args[:metadata] if args.key?(:metadata)
952
+ @project_number = args[:project_number] if args.key?(:project_number)
915
953
  @system_id = args[:system_id] if args.key?(:system_id)
916
954
  @update_time = args[:update_time] if args.key?(:update_time)
917
955
  end
@@ -931,6 +969,12 @@ module Google
931
969
  # @return [Google::Apis::WorkloadmanagerV1::SapDiscoveryComponentDatabaseProperties]
932
970
  attr_accessor :database_properties
933
971
 
972
+ # Optional. A list of host URIs that are part of the HA configuration if present.
973
+ # An empty list indicates the component is not configured for HA.
974
+ # Corresponds to the JSON property `haHosts`
975
+ # @return [Array<String>]
976
+ attr_accessor :ha_hosts
977
+
934
978
  # Required. Pantheon Project in which the resources reside.
935
979
  # Corresponds to the JSON property `hostProject`
936
980
  # @return [String]
@@ -947,6 +991,11 @@ module Google
947
991
  # @return [String]
948
992
  attr_accessor :sid
949
993
 
994
+ # Optional. The detected topology of the component.
995
+ # Corresponds to the JSON property `topologyType`
996
+ # @return [String]
997
+ attr_accessor :topology_type
998
+
950
999
  def initialize(**args)
951
1000
  update!(**args)
952
1001
  end
@@ -955,9 +1004,11 @@ module Google
955
1004
  def update!(**args)
956
1005
  @application_properties = args[:application_properties] if args.key?(:application_properties)
957
1006
  @database_properties = args[:database_properties] if args.key?(:database_properties)
1007
+ @ha_hosts = args[:ha_hosts] if args.key?(:ha_hosts)
958
1008
  @host_project = args[:host_project] if args.key?(:host_project)
959
1009
  @resources = args[:resources] if args.key?(:resources)
960
1010
  @sid = args[:sid] if args.key?(:sid)
1011
+ @topology_type = args[:topology_type] if args.key?(:topology_type)
961
1012
  end
962
1013
  end
963
1014
 
@@ -965,6 +1016,13 @@ module Google
965
1016
  class SapDiscoveryComponentApplicationProperties
966
1017
  include Google::Apis::Core::Hashable
967
1018
 
1019
+ # Optional. Indicates whether this is a Java or ABAP Netweaver instance. true
1020
+ # means it is ABAP, false means it is Java.
1021
+ # Corresponds to the JSON property `abap`
1022
+ # @return [Boolean]
1023
+ attr_accessor :abap
1024
+ alias_method :abap?, :abap
1025
+
968
1026
  # Required. Type of the application. Netweaver, etc.
969
1027
  # Corresponds to the JSON property `applicationType`
970
1028
  # @return [String]
@@ -975,6 +1033,11 @@ module Google
975
1033
  # @return [String]
976
1034
  attr_accessor :ascs_uri
977
1035
 
1036
+ # Optional. Kernel version for Netweaver running in the system.
1037
+ # Corresponds to the JSON property `kernelVersion`
1038
+ # @return [String]
1039
+ attr_accessor :kernel_version
1040
+
978
1041
  # Optional. Resource URI of the recognized shared NFS of the application. May be
979
1042
  # empty if the application server has only a single node.
980
1043
  # Corresponds to the JSON property `nfsUri`
@@ -987,8 +1050,10 @@ module Google
987
1050
 
988
1051
  # Update properties of this object
989
1052
  def update!(**args)
1053
+ @abap = args[:abap] if args.key?(:abap)
990
1054
  @application_type = args[:application_type] if args.key?(:application_type)
991
1055
  @ascs_uri = args[:ascs_uri] if args.key?(:ascs_uri)
1056
+ @kernel_version = args[:kernel_version] if args.key?(:kernel_version)
992
1057
  @nfs_uri = args[:nfs_uri] if args.key?(:nfs_uri)
993
1058
  end
994
1059
  end
@@ -1002,6 +1067,11 @@ module Google
1002
1067
  # @return [String]
1003
1068
  attr_accessor :database_type
1004
1069
 
1070
+ # Optional. The version of the database software running in the system.
1071
+ # Corresponds to the JSON property `databaseVersion`
1072
+ # @return [String]
1073
+ attr_accessor :database_version
1074
+
1005
1075
  # Required. URI of the recognized primary instance of the database.
1006
1076
  # Corresponds to the JSON property `primaryInstanceUri`
1007
1077
  # @return [String]
@@ -1020,6 +1090,7 @@ module Google
1020
1090
  # Update properties of this object
1021
1091
  def update!(**args)
1022
1092
  @database_type = args[:database_type] if args.key?(:database_type)
1093
+ @database_version = args[:database_version] if args.key?(:database_version)
1023
1094
  @primary_instance_uri = args[:primary_instance_uri] if args.key?(:primary_instance_uri)
1024
1095
  @shared_nfs_uri = args[:shared_nfs_uri] if args.key?(:shared_nfs_uri)
1025
1096
  end
@@ -1067,6 +1138,11 @@ module Google
1067
1138
  class SapDiscoveryResource
1068
1139
  include Google::Apis::Core::Hashable
1069
1140
 
1141
+ # A set of properties only present for an instance type resource
1142
+ # Corresponds to the JSON property `instanceProperties`
1143
+ # @return [Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstanceProperties]
1144
+ attr_accessor :instance_properties
1145
+
1070
1146
  # Optional. A list of resource URIs related to this resource.
1071
1147
  # Corresponds to the JSON property `relatedResources`
1072
1148
  # @return [Array<String>]
@@ -1099,6 +1175,7 @@ module Google
1099
1175
 
1100
1176
  # Update properties of this object
1101
1177
  def update!(**args)
1178
+ @instance_properties = args[:instance_properties] if args.key?(:instance_properties)
1102
1179
  @related_resources = args[:related_resources] if args.key?(:related_resources)
1103
1180
  @resource_kind = args[:resource_kind] if args.key?(:resource_kind)
1104
1181
  @resource_type = args[:resource_type] if args.key?(:resource_type)
@@ -1107,23 +1184,60 @@ module Google
1107
1184
  end
1108
1185
  end
1109
1186
 
1187
+ # A set of properties only present for an instance type resource
1188
+ class SapDiscoveryResourceInstanceProperties
1189
+ include Google::Apis::Core::Hashable
1190
+
1191
+ # Optional. A list of instance URIs that are part of a cluster with this one.
1192
+ # Corresponds to the JSON property `clusterInstances`
1193
+ # @return [Array<String>]
1194
+ attr_accessor :cluster_instances
1195
+
1196
+ # Optional. A virtual hostname of the instance if it has one.
1197
+ # Corresponds to the JSON property `virtualHostname`
1198
+ # @return [String]
1199
+ attr_accessor :virtual_hostname
1200
+
1201
+ def initialize(**args)
1202
+ update!(**args)
1203
+ end
1204
+
1205
+ # Update properties of this object
1206
+ def update!(**args)
1207
+ @cluster_instances = args[:cluster_instances] if args.key?(:cluster_instances)
1208
+ @virtual_hostname = args[:virtual_hostname] if args.key?(:virtual_hostname)
1209
+ end
1210
+ end
1211
+
1110
1212
  # A presentation of SAP workload insight. The schema of SAP workloads validation
1111
1213
  # related data.
1112
1214
  class SapValidation
1113
1215
  include Google::Apis::Core::Hashable
1114
1216
 
1217
+ # Required. The project_id of the cloud project that the Insight data comes from.
1218
+ # Corresponds to the JSON property `projectId`
1219
+ # @return [String]
1220
+ attr_accessor :project_id
1221
+
1115
1222
  # Optional. A list of SAP validation metrics data.
1116
1223
  # Corresponds to the JSON property `validationDetails`
1117
1224
  # @return [Array<Google::Apis::WorkloadmanagerV1::SapValidationValidationDetail>]
1118
1225
  attr_accessor :validation_details
1119
1226
 
1227
+ # Optional. The zone of the instance that the Insight data comes from.
1228
+ # Corresponds to the JSON property `zone`
1229
+ # @return [String]
1230
+ attr_accessor :zone
1231
+
1120
1232
  def initialize(**args)
1121
1233
  update!(**args)
1122
1234
  end
1123
1235
 
1124
1236
  # Update properties of this object
1125
1237
  def update!(**args)
1238
+ @project_id = args[:project_id] if args.key?(:project_id)
1126
1239
  @validation_details = args[:validation_details] if args.key?(:validation_details)
1240
+ @zone = args[:zone] if args.key?(:zone)
1127
1241
  end
1128
1242
  end
1129
1243
 
@@ -1136,6 +1250,12 @@ module Google
1136
1250
  # @return [Hash<String,String>]
1137
1251
  attr_accessor :details
1138
1252
 
1253
+ # Optional. Was there a SAP system detected for this validation type.
1254
+ # Corresponds to the JSON property `isPresent`
1255
+ # @return [Boolean]
1256
+ attr_accessor :is_present
1257
+ alias_method :is_present?, :is_present
1258
+
1139
1259
  # Optional. The SAP system that the validation data is from.
1140
1260
  # Corresponds to the JSON property `sapValidationType`
1141
1261
  # @return [String]
@@ -1148,6 +1268,7 @@ module Google
1148
1268
  # Update properties of this object
1149
1269
  def update!(**args)
1150
1270
  @details = args[:details] if args.key?(:details)
1271
+ @is_present = args[:is_present] if args.key?(:is_present)
1151
1272
  @sap_validation_type = args[:sap_validation_type] if args.key?(:sap_validation_type)
1152
1273
  end
1153
1274
  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.11.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230907"
25
+ REVISION = "20240103"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ module Google
22
22
  module Apis
23
23
  module WorkloadmanagerV1
24
24
 
25
+ class BigQueryDestination
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
25
31
  class CancelOperationRequest
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
@@ -190,6 +196,12 @@ module Google
190
196
  include Google::Apis::Core::JsonObjectSupport
191
197
  end
192
198
 
199
+ class SapDiscoveryResourceInstanceProperties
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
193
205
  class SapValidation
194
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
207
 
@@ -250,6 +262,14 @@ module Google
250
262
  include Google::Apis::Core::JsonObjectSupport
251
263
  end
252
264
 
265
+ class BigQueryDestination
266
+ # @private
267
+ class Representation < Google::Apis::Core::JsonRepresentation
268
+ property :create_new_results_table, as: 'createNewResultsTable'
269
+ property :destination_dataset, as: 'destinationDataset'
270
+ end
271
+ end
272
+
253
273
  class CancelOperationRequest
254
274
  # @private
255
275
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -265,6 +285,8 @@ module Google
265
285
  class Evaluation
266
286
  # @private
267
287
  class Representation < Google::Apis::Core::JsonRepresentation
288
+ property :big_query_destination, as: 'bigQueryDestination', class: Google::Apis::WorkloadmanagerV1::BigQueryDestination, decorator: Google::Apis::WorkloadmanagerV1::BigQueryDestination::Representation
289
+
268
290
  property :create_time, as: 'createTime'
269
291
  property :custom_rules_bucket, as: 'customRulesBucket'
270
292
  property :description, as: 'description'
@@ -494,6 +516,7 @@ module Google
494
516
 
495
517
  property :metadata, as: 'metadata', class: Google::Apis::WorkloadmanagerV1::SapDiscoveryMetadata, decorator: Google::Apis::WorkloadmanagerV1::SapDiscoveryMetadata::Representation
496
518
 
519
+ property :project_number, as: 'projectNumber'
497
520
  property :system_id, as: 'systemId'
498
521
  property :update_time, as: 'updateTime'
499
522
  end
@@ -506,18 +529,22 @@ module Google
506
529
 
507
530
  property :database_properties, as: 'databaseProperties', class: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponentDatabaseProperties, decorator: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponentDatabaseProperties::Representation
508
531
 
532
+ collection :ha_hosts, as: 'haHosts'
509
533
  property :host_project, as: 'hostProject'
510
534
  collection :resources, as: 'resources', class: Google::Apis::WorkloadmanagerV1::SapDiscoveryResource, decorator: Google::Apis::WorkloadmanagerV1::SapDiscoveryResource::Representation
511
535
 
512
536
  property :sid, as: 'sid'
537
+ property :topology_type, as: 'topologyType'
513
538
  end
514
539
  end
515
540
 
516
541
  class SapDiscoveryComponentApplicationProperties
517
542
  # @private
518
543
  class Representation < Google::Apis::Core::JsonRepresentation
544
+ property :abap, as: 'abap'
519
545
  property :application_type, as: 'applicationType'
520
546
  property :ascs_uri, as: 'ascsUri'
547
+ property :kernel_version, as: 'kernelVersion'
521
548
  property :nfs_uri, as: 'nfsUri'
522
549
  end
523
550
  end
@@ -526,6 +553,7 @@ module Google
526
553
  # @private
527
554
  class Representation < Google::Apis::Core::JsonRepresentation
528
555
  property :database_type, as: 'databaseType'
556
+ property :database_version, as: 'databaseVersion'
529
557
  property :primary_instance_uri, as: 'primaryInstanceUri'
530
558
  property :shared_nfs_uri, as: 'sharedNfsUri'
531
559
  end
@@ -544,6 +572,8 @@ module Google
544
572
  class SapDiscoveryResource
545
573
  # @private
546
574
  class Representation < Google::Apis::Core::JsonRepresentation
575
+ property :instance_properties, as: 'instanceProperties', class: Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstanceProperties, decorator: Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstanceProperties::Representation
576
+
547
577
  collection :related_resources, as: 'relatedResources'
548
578
  property :resource_kind, as: 'resourceKind'
549
579
  property :resource_type, as: 'resourceType'
@@ -552,11 +582,21 @@ module Google
552
582
  end
553
583
  end
554
584
 
585
+ class SapDiscoveryResourceInstanceProperties
586
+ # @private
587
+ class Representation < Google::Apis::Core::JsonRepresentation
588
+ collection :cluster_instances, as: 'clusterInstances'
589
+ property :virtual_hostname, as: 'virtualHostname'
590
+ end
591
+ end
592
+
555
593
  class SapValidation
556
594
  # @private
557
595
  class Representation < Google::Apis::Core::JsonRepresentation
596
+ property :project_id, as: 'projectId'
558
597
  collection :validation_details, as: 'validationDetails', class: Google::Apis::WorkloadmanagerV1::SapValidationValidationDetail, decorator: Google::Apis::WorkloadmanagerV1::SapValidationValidationDetail::Representation
559
598
 
599
+ property :zone, as: 'zone'
560
600
  end
561
601
  end
562
602
 
@@ -564,6 +604,7 @@ module Google
564
604
  # @private
565
605
  class Representation < Google::Apis::Core::JsonRepresentation
566
606
  hash :details, as: 'details'
607
+ property :is_present, as: 'isPresent'
567
608
  property :sap_validation_type, as: 'sapValidationType'
568
609
  end
569
610
  end
@@ -34,6 +34,8 @@ module Google
34
34
  #
35
35
  # @see https://cloud.google.com/workload-manager/docs
36
36
  class WorkloadManagerService < Google::Apis::Core::BaseService
37
+ DEFAULT_ENDPOINT_TEMPLATE = "https://workloadmanager.$UNIVERSE_DOMAIN$/"
38
+
37
39
  # @return [String]
38
40
  # API key. Your API key identifies your project and provides you with API access,
39
41
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -45,7 +47,7 @@ module Google
45
47
  attr_accessor :quota_user
46
48
 
47
49
  def initialize
48
- super('https://workloadmanager.googleapis.com/', '',
50
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
49
51
  client_name: 'google-apis-workloadmanager_v1',
50
52
  client_version: Google::Apis::WorkloadmanagerV1::GEM_VERSION)
51
53
  @batch_path = 'batch'
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.11.0
4
+ version: 0.13.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: 2023-09-10 00:00:00.000000000 Z
11
+ date: 2024-01-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.11.0
19
+ version: 0.12.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.11.0
29
+ version: 0.12.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.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.13.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.19
78
+ rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Workload Manager API V1