google-apis-workloadmanager_v1 0.5.0 → 0.6.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: 44eace8646f9557478c40a59e6abfc4c5b9b6de10be052482e85a80df623916e
4
- data.tar.gz: cd864f90e916e167f7a43d2673c37c79a2109cc70a9a6dc11bd136bf3f1c9c44
3
+ metadata.gz: 94549fc7fde942cb278abec271838bff9bcab00c756bc958ace727310852dccc
4
+ data.tar.gz: 159ce15ac778a522edcf22a965c89da1a116c9af3f7ae38e2688d08d6576a1b6
5
5
  SHA512:
6
- metadata.gz: d0d62bdc300fa224f6d29483ab0033a904daa18a561bba6b726250a899fff58af485b9b8fc1a2678a6718c7cec2f1b08b4d3a09e8bc22b6d01211571fc5bf109
7
- data.tar.gz: 95f3554b15d35b65172410a85da59fec8379da74d923dd4bc61812bc56d2c01f8b7c730f59de7ba30311bdcdec33c5963ba5539f41b61b464eaba911259741e9
6
+ metadata.gz: bfffa5cf168aab779c6de0736714aa05ab870011545793c3dde514854ba3ee26f05769c406945c411bd3e0c4f85d3ebee68045dce955a53f2a00d5fc1d6174b3
7
+ data.tar.gz: 9bfed866de4a9082a218315ac94e6873755056094ea9964b7c15f6af5851bbbcdfc01b40828085a13f8af9a8f115fa6d54a7ded4af6d02ee6e604883c9cf93de
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workloadmanager_v1
2
2
 
3
+ ### v0.6.0 (2023-05-14)
4
+
5
+ * Regenerated from discovery document revision 20230503
6
+
3
7
  ### v0.5.0 (2023-04-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20230406
@@ -276,6 +276,12 @@ module Google
276
276
  # @return [String]
277
277
  attr_accessor :sent_time
278
278
 
279
+ # A presentation of SQLServer workload insight. The schema of SqlServer
280
+ # workloads validation related data.
281
+ # Corresponds to the JSON property `sqlserverValidation`
282
+ # @return [Google::Apis::WorkloadmanagerV1::SqlserverValidation]
283
+ attr_accessor :sqlserver_validation
284
+
279
285
  def initialize(**args)
280
286
  update!(**args)
281
287
  end
@@ -285,6 +291,7 @@ module Google
285
291
  @sap_discovery = args[:sap_discovery] if args.key?(:sap_discovery)
286
292
  @sap_validation = args[:sap_validation] if args.key?(:sap_validation)
287
293
  @sent_time = args[:sent_time] if args.key?(:sent_time)
294
+ @sqlserver_validation = args[:sqlserver_validation] if args.key?(:sqlserver_validation)
288
295
  end
289
296
  end
290
297
 
@@ -477,7 +484,7 @@ module Google
477
484
  end
478
485
  end
479
486
 
480
- # A resource that represents Google Cloud Platform location.
487
+ # A resource that represents a Google Cloud location.
481
488
  class Location
482
489
  include Google::Apis::Core::Hashable
483
490
 
@@ -991,11 +998,6 @@ module Google
991
998
  # @return [String]
992
999
  attr_accessor :resource_kind
993
1000
 
994
- # Indicates whether this is a new, updated, or missing resource.
995
- # Corresponds to the JSON property `resourceState`
996
- # @return [String]
997
- attr_accessor :resource_state
998
-
999
1001
  # The type of this resource.
1000
1002
  # Corresponds to the JSON property `resourceType`
1001
1003
  # @return [String]
@@ -1019,7 +1021,6 @@ module Google
1019
1021
  def update!(**args)
1020
1022
  @related_resources = args[:related_resources] if args.key?(:related_resources)
1021
1023
  @resource_kind = args[:resource_kind] if args.key?(:resource_kind)
1022
- @resource_state = args[:resource_state] if args.key?(:resource_state)
1023
1024
  @resource_type = args[:resource_type] if args.key?(:resource_type)
1024
1025
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
1025
1026
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -1090,6 +1091,63 @@ module Google
1090
1091
  end
1091
1092
  end
1092
1093
 
1094
+ # A presentation of SQLServer workload insight. The schema of SqlServer
1095
+ # workloads validation related data.
1096
+ class SqlserverValidation
1097
+ include Google::Apis::Core::Hashable
1098
+
1099
+ # The agent version collected this data point
1100
+ # Corresponds to the JSON property `agentVersion`
1101
+ # @return [String]
1102
+ attr_accessor :agent_version
1103
+
1104
+ # A list of SqlServer validation metrics data.
1105
+ # Corresponds to the JSON property `validationDetails`
1106
+ # @return [Array<Google::Apis::WorkloadmanagerV1::SqlserverValidationValidationDetail>]
1107
+ attr_accessor :validation_details
1108
+
1109
+ def initialize(**args)
1110
+ update!(**args)
1111
+ end
1112
+
1113
+ # Update properties of this object
1114
+ def update!(**args)
1115
+ @agent_version = args[:agent_version] if args.key?(:agent_version)
1116
+ @validation_details = args[:validation_details] if args.key?(:validation_details)
1117
+ end
1118
+ end
1119
+
1120
+ # Message describing the Sqlserver validation metrics.
1121
+ class SqlserverValidationValidationDetail
1122
+ include Google::Apis::Core::Hashable
1123
+
1124
+ # The pairs of metrics data: field name & field value.
1125
+ # Corresponds to the JSON property `details`
1126
+ # @return [Hash<String,String>]
1127
+ attr_accessor :details
1128
+
1129
+ # The instance id where the ValidationDetail is generated from
1130
+ # Corresponds to the JSON property `instanceId`
1131
+ # @return [String]
1132
+ attr_accessor :instance_id
1133
+
1134
+ # The Sqlserver system that the validation data is from.
1135
+ # Corresponds to the JSON property `type`
1136
+ # @return [String]
1137
+ attr_accessor :type
1138
+
1139
+ def initialize(**args)
1140
+ update!(**args)
1141
+ end
1142
+
1143
+ # Update properties of this object
1144
+ def update!(**args)
1145
+ @details = args[:details] if args.key?(:details)
1146
+ @instance_id = args[:instance_id] if args.key?(:instance_id)
1147
+ @type = args[:type] if args.key?(:type)
1148
+ end
1149
+ end
1150
+
1093
1151
  # The `Status` type defines a logical error model that is suitable for different
1094
1152
  # programming environments, including REST APIs and RPC APIs. It is used by [
1095
1153
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -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.5.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230406"
25
+ REVISION = "20230503"
26
26
  end
27
27
  end
28
28
  end
@@ -196,6 +196,18 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class SqlserverValidation
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class SqlserverValidationValidationDetail
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
199
211
  class Status
200
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
213
 
@@ -293,6 +305,8 @@ module Google
293
305
  property :sap_validation, as: 'sapValidation', class: Google::Apis::WorkloadmanagerV1::SapValidation, decorator: Google::Apis::WorkloadmanagerV1::SapValidation::Representation
294
306
 
295
307
  property :sent_time, as: 'sentTime'
308
+ property :sqlserver_validation, as: 'sqlserverValidation', class: Google::Apis::WorkloadmanagerV1::SqlserverValidation, decorator: Google::Apis::WorkloadmanagerV1::SqlserverValidation::Representation
309
+
296
310
  end
297
311
  end
298
312
 
@@ -492,7 +506,6 @@ module Google
492
506
  class Representation < Google::Apis::Core::JsonRepresentation
493
507
  collection :related_resources, as: 'relatedResources'
494
508
  property :resource_kind, as: 'resourceKind'
495
- property :resource_state, as: 'resourceState'
496
509
  property :resource_type, as: 'resourceType'
497
510
  property :resource_uri, as: 'resourceUri'
498
511
  property :update_time, as: 'updateTime'
@@ -522,6 +535,24 @@ module Google
522
535
  end
523
536
  end
524
537
 
538
+ class SqlserverValidation
539
+ # @private
540
+ class Representation < Google::Apis::Core::JsonRepresentation
541
+ property :agent_version, as: 'agentVersion'
542
+ collection :validation_details, as: 'validationDetails', class: Google::Apis::WorkloadmanagerV1::SqlserverValidationValidationDetail, decorator: Google::Apis::WorkloadmanagerV1::SqlserverValidationValidationDetail::Representation
543
+
544
+ end
545
+ end
546
+
547
+ class SqlserverValidationValidationDetail
548
+ # @private
549
+ class Representation < Google::Apis::Core::JsonRepresentation
550
+ hash :details, as: 'details'
551
+ property :instance_id, as: 'instanceId'
552
+ property :type, as: 'type'
553
+ end
554
+ end
555
+
525
556
  class Status
526
557
  # @private
527
558
  class Representation < Google::Apis::Core::JsonRepresentation
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.5.0
4
+ version: 0.6.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-04-16 00:00:00.000000000 Z
11
+ date: 2023-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.6.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: []