google-apis-workloadmanager_v1 0.7.0 → 0.8.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e81b42e6729f976544b6604f320fb7a4c0ec767f21f93363111783b301f7a604
|
4
|
+
data.tar.gz: ca8fb45630d4efac6ee152ab26104d8233400b6d457405b1c6f2c3e9a7988a27
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be0e689c703e7535cd7ea47368f7b43e6a6d7c4b685c724d5a5cd2fe64b216448c559a9ee7c862e3b182099ab4b77eb0bac0e2507ebf1b012506ade44587d0e0
|
7
|
+
data.tar.gz: 9511cdca70599a6818482b23586e4848a7e2ff54abe095a65082c79e8ef5f4ef6b81b19025768eaae155f2c13d08fa3aabda79914e67a37a73aa00235ef35ef9
|
data/CHANGELOG.md
CHANGED
@@ -1131,15 +1131,34 @@ module Google
|
|
1131
1131
|
end
|
1132
1132
|
end
|
1133
1133
|
|
1134
|
-
# Message
|
1135
|
-
class
|
1134
|
+
# Message containing collected data names and values.
|
1135
|
+
class SqlserverValidationDetails
|
1136
1136
|
include Google::Apis::Core::Hashable
|
1137
1137
|
|
1138
|
-
#
|
1138
|
+
# Required. Collected data is in format.
|
1139
1139
|
# Corresponds to the JSON property `fields`
|
1140
1140
|
# @return [Hash<String,String>]
|
1141
1141
|
attr_accessor :fields
|
1142
1142
|
|
1143
|
+
def initialize(**args)
|
1144
|
+
update!(**args)
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
# Update properties of this object
|
1148
|
+
def update!(**args)
|
1149
|
+
@fields = args[:fields] if args.key?(:fields)
|
1150
|
+
end
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
# Message describing the Sqlserver validation metrics.
|
1154
|
+
class SqlserverValidationValidationDetail
|
1155
|
+
include Google::Apis::Core::Hashable
|
1156
|
+
|
1157
|
+
# Required. Details wraps map that represents collected data names and values.
|
1158
|
+
# Corresponds to the JSON property `details`
|
1159
|
+
# @return [Array<Google::Apis::WorkloadmanagerV1::SqlserverValidationDetails>]
|
1160
|
+
attr_accessor :details
|
1161
|
+
|
1143
1162
|
# The Sqlserver system that the validation data is from.
|
1144
1163
|
# Corresponds to the JSON property `type`
|
1145
1164
|
# @return [String]
|
@@ -1151,7 +1170,7 @@ module Google
|
|
1151
1170
|
|
1152
1171
|
# Update properties of this object
|
1153
1172
|
def update!(**args)
|
1154
|
-
@
|
1173
|
+
@details = args[:details] if args.key?(:details)
|
1155
1174
|
@type = args[:type] if args.key?(:type)
|
1156
1175
|
end
|
1157
1176
|
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
|
+
GEM_VERSION = "0.8.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 = "
|
25
|
+
REVISION = "20230621"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -202,6 +202,12 @@ module Google
|
|
202
202
|
include Google::Apis::Core::JsonObjectSupport
|
203
203
|
end
|
204
204
|
|
205
|
+
class SqlserverValidationDetails
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
205
211
|
class SqlserverValidationValidationDetail
|
206
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
213
|
|
@@ -546,10 +552,18 @@ module Google
|
|
546
552
|
end
|
547
553
|
end
|
548
554
|
|
549
|
-
class
|
555
|
+
class SqlserverValidationDetails
|
550
556
|
# @private
|
551
557
|
class Representation < Google::Apis::Core::JsonRepresentation
|
552
558
|
hash :fields, as: 'fields'
|
559
|
+
end
|
560
|
+
end
|
561
|
+
|
562
|
+
class SqlserverValidationValidationDetail
|
563
|
+
# @private
|
564
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
565
|
+
collection :details, as: 'details', class: Google::Apis::WorkloadmanagerV1::SqlserverValidationDetails, decorator: Google::Apis::WorkloadmanagerV1::SqlserverValidationDetails::Representation
|
566
|
+
|
553
567
|
property :type, as: 'type'
|
554
568
|
end
|
555
569
|
end
|
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.
|
4
|
+
version: 0.8.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-
|
11
|
+
date: 2023-07-02 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workloadmanager_v1/v0.8.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: []
|