google-apis-recommender_v1beta1 0.40.0 → 0.42.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: e05997a6f661bd6b566f53b1955b727312ce6f21b9ea84694984d08872cbe479
4
- data.tar.gz: 2f4549e0f66702acc3f51aa6700b88edb81e2d2b40f649cf4e4b8c5d2bcba801
3
+ metadata.gz: aea0be9d0af169bf051ed3ddebdcf8fc3cfe5639113970b4a9ecfff23f12df72
4
+ data.tar.gz: fe909a039e05fd65b6f6e9265170ac21e0aa2f061a6c44c8daaca0b4b2e7dac3
5
5
  SHA512:
6
- metadata.gz: 891ce59440f48589e26050a663ec0a59c3eda8464a367093ae4981358f517882f1260a6d0f6dad3eb085a71333751a8945ebb2f6070036ba2b5391141fca6f37
7
- data.tar.gz: 2e432ebf9343e8c6073dd38ffc1ca410783c90032cc5bb38fe19488743c8e552febb89ef587e221e1eb542a7e2c35d545dfc58a3f4981e8a95bef8e2ef3c6a8d
6
+ metadata.gz: 3fd422f230ae0a4d7bd06e5b10e6827fb9c68ac948acc0a89969d272b0ea79c17b173177f1ec94a8f9d9bab2d612aa131b303d311ef4d86b1c261ff45220c362
7
+ data.tar.gz: 34634ff7cb147a5a3d6c3cb289d196bdad7a59531528e614e0ec8d36b03e6514146bdc125b91a1bd9d74f6a0c2052d646e5db2e3d98f2377c70114e23a314f95
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-recommender_v1beta1
2
2
 
3
+ ### v0.42.0 (2024-12-02)
4
+
5
+ * Regenerated from discovery document revision 20241013
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.41.0 (2024-05-19)
9
+
10
+ * Regenerated using generator version 0.15.0
11
+
3
12
  ### v0.40.0 (2024-05-05)
4
13
 
5
14
  * Regenerated from discovery document revision 20240428
@@ -145,6 +145,13 @@ module Google
145
145
  # @return [Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1CostProjection]
146
146
  attr_accessor :cost_projection
147
147
 
148
+ # If populated, the impact contains multiple components. In this case, the top-
149
+ # level impact contains aggregated values and each component contains per-
150
+ # service details.
151
+ # Corresponds to the JSON property `impactComponents`
152
+ # @return [Array<Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1Impact>]
153
+ attr_accessor :impact_components
154
+
148
155
  # Contains information on the impact of a reliability recommendation.
149
156
  # Corresponds to the JSON property `reliabilityProjection`
150
157
  # @return [Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ReliabilityProjection]
@@ -155,6 +162,11 @@ module Google
155
162
  # @return [Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1SecurityProjection]
156
163
  attr_accessor :security_projection
157
164
 
165
+ # The service that this impact is associated with.
166
+ # Corresponds to the JSON property `service`
167
+ # @return [String]
168
+ attr_accessor :service
169
+
158
170
  # Contains metadata about how much sustainability a recommendation can save or
159
171
  # incur.
160
172
  # Corresponds to the JSON property `sustainabilityProjection`
@@ -169,8 +181,10 @@ module Google
169
181
  def update!(**args)
170
182
  @category = args[:category] if args.key?(:category)
171
183
  @cost_projection = args[:cost_projection] if args.key?(:cost_projection)
184
+ @impact_components = args[:impact_components] if args.key?(:impact_components)
172
185
  @reliability_projection = args[:reliability_projection] if args.key?(:reliability_projection)
173
186
  @security_projection = args[:security_projection] if args.key?(:security_projection)
187
+ @service = args[:service] if args.key?(:service)
174
188
  @sustainability_projection = args[:sustainability_projection] if args.key?(:sustainability_projection)
175
189
  end
176
190
  end
@@ -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.40.0"
19
+ GEM_VERSION = "0.42.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.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240428"
25
+ REVISION = "20241013"
26
26
  end
27
27
  end
28
28
  end
@@ -258,10 +258,13 @@ module Google
258
258
  property :category, as: 'category'
259
259
  property :cost_projection, as: 'costProjection', class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1CostProjection, decorator: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1CostProjection::Representation
260
260
 
261
+ collection :impact_components, as: 'impactComponents', class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1Impact, decorator: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1Impact::Representation
262
+
261
263
  property :reliability_projection, as: 'reliabilityProjection', class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ReliabilityProjection, decorator: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1ReliabilityProjection::Representation
262
264
 
263
265
  property :security_projection, as: 'securityProjection', class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1SecurityProjection, decorator: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1SecurityProjection::Representation
264
266
 
267
+ property :service, as: 'service'
265
268
  property :sustainability_projection, as: 'sustainabilityProjection', class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1SustainabilityProjection, decorator: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1SustainabilityProjection::Representation
266
269
 
267
270
  end
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.40.0
4
+ version: 0.42.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-05-05 00:00:00.000000000 Z
11
+ date: 2024-12-04 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-recommender_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-recommender_v1beta1/v0.40.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-recommender_v1beta1/v0.42.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: []
@@ -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.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Recommender API V1beta1