google-apis-recommender_v1beta1 0.26.0 → 0.28.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: e3c99388d6b05f57fbe70599049584c195a7cf66d831563c5c3482c80c60a2a4
|
4
|
+
data.tar.gz: 9e6bdec5afdb0fa5caa6addb0e0eed1c904420855d76c19499480781be2302d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab515b1d57b2adf24e1454642d36da38f5d801455743d4dddc5f6b4a3712f5b440694b2ff39ba8532c60159162932b2140c76c5e9dc8d1cb8b6f547e2f5fd0fb
|
7
|
+
data.tar.gz: c3d6a4b2e87c1d81e0a335603321ba83c1bb888ddb634ccdac69a3ac65e15836282b6466be697a0d4872bb0058387ddcc5bf45420d64c782ca6b2b24395368be
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-recommender_v1beta1
|
2
2
|
|
3
|
+
### v0.28.0 (2022-10-19)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.11.0
|
6
|
+
|
7
|
+
### v0.27.0 (2022-09-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220924
|
10
|
+
|
3
11
|
### v0.26.0 (2022-09-25)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20220917
|
@@ -61,6 +61,11 @@ module Google
|
|
61
61
|
# @return [Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1CostProjection]
|
62
62
|
attr_accessor :cost_projection
|
63
63
|
|
64
|
+
# Contains information on the impact of a reliability recommendation.
|
65
|
+
# Corresponds to the JSON property `reliabilityProjection`
|
66
|
+
# @return [Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ReliabilityProjection]
|
67
|
+
attr_accessor :reliability_projection
|
68
|
+
|
64
69
|
# Contains various ways of describing the impact on Security.
|
65
70
|
# Corresponds to the JSON property `securityProjection`
|
66
71
|
# @return [Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1SecurityProjection]
|
@@ -80,6 +85,7 @@ module Google
|
|
80
85
|
def update!(**args)
|
81
86
|
@category = args[:category] if args.key?(:category)
|
82
87
|
@cost_projection = args[:cost_projection] if args.key?(:cost_projection)
|
88
|
+
@reliability_projection = args[:reliability_projection] if args.key?(:reliability_projection)
|
83
89
|
@security_projection = args[:security_projection] if args.key?(:security_projection)
|
84
90
|
@sustainability_projection = args[:sustainability_projection] if args.key?(:sustainability_projection)
|
85
91
|
end
|
@@ -845,6 +851,31 @@ module Google
|
|
845
851
|
end
|
846
852
|
end
|
847
853
|
|
854
|
+
# Contains information on the impact of a reliability recommendation.
|
855
|
+
class GoogleCloudRecommenderV1beta1ReliabilityProjection
|
856
|
+
include Google::Apis::Core::Hashable
|
857
|
+
|
858
|
+
# Per-recommender projection.
|
859
|
+
# Corresponds to the JSON property `details`
|
860
|
+
# @return [Hash<String,Object>]
|
861
|
+
attr_accessor :details
|
862
|
+
|
863
|
+
# Reliability risks mitigated by this recommendation.
|
864
|
+
# Corresponds to the JSON property `risks`
|
865
|
+
# @return [Array<String>]
|
866
|
+
attr_accessor :risks
|
867
|
+
|
868
|
+
def initialize(**args)
|
869
|
+
update!(**args)
|
870
|
+
end
|
871
|
+
|
872
|
+
# Update properties of this object
|
873
|
+
def update!(**args)
|
874
|
+
@details = args[:details] if args.key?(:details)
|
875
|
+
@risks = args[:risks] if args.key?(:risks)
|
876
|
+
end
|
877
|
+
end
|
878
|
+
|
848
879
|
# Contains various ways of describing the impact on Security.
|
849
880
|
class GoogleCloudRecommenderV1beta1SecurityProjection
|
850
881
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RecommenderV1beta1
|
18
18
|
# Version of the google-apis-recommender_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.28.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220924"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -148,6 +148,12 @@ module Google
|
|
148
148
|
include Google::Apis::Core::JsonObjectSupport
|
149
149
|
end
|
150
150
|
|
151
|
+
class GoogleCloudRecommenderV1beta1ReliabilityProjection
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
151
157
|
class GoogleCloudRecommenderV1beta1SecurityProjection
|
152
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
159
|
|
@@ -187,6 +193,8 @@ module Google
|
|
187
193
|
property :category, as: 'category'
|
188
194
|
property :cost_projection, as: 'costProjection', class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1CostProjection, decorator: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1CostProjection::Representation
|
189
195
|
|
196
|
+
property :reliability_projection, as: 'reliabilityProjection', class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ReliabilityProjection, decorator: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ReliabilityProjection::Representation
|
197
|
+
|
190
198
|
property :security_projection, as: 'securityProjection', class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1SecurityProjection, decorator: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1SecurityProjection::Representation
|
191
199
|
|
192
200
|
property :sustainability_projection, as: 'sustainabilityProjection', class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1SustainabilityProjection, decorator: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1SustainabilityProjection::Representation
|
@@ -394,6 +402,14 @@ module Google
|
|
394
402
|
end
|
395
403
|
end
|
396
404
|
|
405
|
+
class GoogleCloudRecommenderV1beta1ReliabilityProjection
|
406
|
+
# @private
|
407
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
408
|
+
hash :details, as: 'details'
|
409
|
+
collection :risks, as: 'risks'
|
410
|
+
end
|
411
|
+
end
|
412
|
+
|
397
413
|
class GoogleCloudRecommenderV1beta1SecurityProjection
|
398
414
|
# @private
|
399
415
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-recommender_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.28.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: 2022-
|
11
|
+
date: 2022-10-21 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.9.
|
19
|
+
version: 0.9.1
|
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.9.
|
29
|
+
version: 0.9.1
|
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-recommender_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-recommender_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-recommender_v1beta1/v0.28.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-recommender_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|