google-apis-recommender_v1 0.35.0 → 0.37.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: fd6fe2e67e18379f0056e379817d4c4546b9a5abab7f2edec71c57780bd0ca80
4
- data.tar.gz: e3367fdd966aeb76ccf34ee077e32dc0dbcbd32630062d2977558239a333f1e6
3
+ metadata.gz: e3d2ffb5a8a72ad94beb7a2c0dcf2a7a4605fcf11678f9a3c2937fb7e1eba3d1
4
+ data.tar.gz: bf60bbf3ef5d3ce1dfc68bcf27330db26be475f6e1407e088a8594a67ca17664
5
5
  SHA512:
6
- metadata.gz: a78a9b88b5b70ceb257163eeb2da3d9aba2d476bed02a444debc0e20cfa41c30a3fd546ebd928aa418872690e18ae76b9e48b088374ff1d1412acf58833d2a6b
7
- data.tar.gz: 6f8e7b0092788d3e2d8340a84cacf6bd9bcd692b8fff5f70e8a950b17bbbcb851aceb18264cb8965f7ba1bb90c75bee4750301149fe37c2c1cfc02777a280741
6
+ metadata.gz: a4d11f3ff034057b38c3bcb353ae84f66639f049c3c0268800d13830d8906eaa519251e3dfa12c257795db9ebc44cdf547785b6c4ca40b475a55ec05fbed1deb
7
+ data.tar.gz: 3f7f65f03d04f0d809c1ea667204aba3e73f7a3d36504499b58ae782033ac3afe2e0c4b863120c88631c9efe60a916fb56a69cfd5097acf0ea30de882d1a02c4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-recommender_v1
2
2
 
3
+ ### v0.37.0 (2024-10-20)
4
+
5
+ * Regenerated from discovery document revision 20241013
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.36.0 (2024-05-19)
9
+
10
+ * Regenerated using generator version 0.15.0
11
+
3
12
  ### v0.35.0 (2024-05-05)
4
13
 
5
14
  * Regenerated from discovery document revision 20240428
@@ -67,6 +67,13 @@ module Google
67
67
  # @return [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1CostProjection]
68
68
  attr_accessor :cost_projection
69
69
 
70
+ # If populated, the impact contains multiple components. In this case, the top-
71
+ # level impact contains aggregated values and each component contains per-
72
+ # service details.
73
+ # Corresponds to the JSON property `impactComponents`
74
+ # @return [Array<Google::Apis::RecommenderV1::GoogleCloudRecommenderV1Impact>]
75
+ attr_accessor :impact_components
76
+
70
77
  # Contains information on the impact of a reliability recommendation.
71
78
  # Corresponds to the JSON property `reliabilityProjection`
72
79
  # @return [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1ReliabilityProjection]
@@ -77,6 +84,11 @@ module Google
77
84
  # @return [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1SecurityProjection]
78
85
  attr_accessor :security_projection
79
86
 
87
+ # The service that this impact is associated with.
88
+ # Corresponds to the JSON property `service`
89
+ # @return [String]
90
+ attr_accessor :service
91
+
80
92
  # Contains metadata about how much sustainability a recommendation can save or
81
93
  # incur.
82
94
  # Corresponds to the JSON property `sustainabilityProjection`
@@ -91,8 +103,10 @@ module Google
91
103
  def update!(**args)
92
104
  @category = args[:category] if args.key?(:category)
93
105
  @cost_projection = args[:cost_projection] if args.key?(:cost_projection)
106
+ @impact_components = args[:impact_components] if args.key?(:impact_components)
94
107
  @reliability_projection = args[:reliability_projection] if args.key?(:reliability_projection)
95
108
  @security_projection = args[:security_projection] if args.key?(:security_projection)
109
+ @service = args[:service] if args.key?(:service)
96
110
  @sustainability_projection = args[:sustainability_projection] if args.key?(:sustainability_projection)
97
111
  end
98
112
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RecommenderV1
18
18
  # Version of the google-apis-recommender_v1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.37.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
@@ -201,10 +201,13 @@ module Google
201
201
  property :category, as: 'category'
202
202
  property :cost_projection, as: 'costProjection', class: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1CostProjection, decorator: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1CostProjection::Representation
203
203
 
204
+ collection :impact_components, as: 'impactComponents', class: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1Impact, decorator: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1Impact::Representation
205
+
204
206
  property :reliability_projection, as: 'reliabilityProjection', class: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1ReliabilityProjection, decorator: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1ReliabilityProjection::Representation
205
207
 
206
208
  property :security_projection, as: 'securityProjection', class: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1SecurityProjection, decorator: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1SecurityProjection::Representation
207
209
 
210
+ property :service, as: 'service'
208
211
  property :sustainability_projection, as: 'sustainabilityProjection', class: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1SustainabilityProjection, decorator: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1SustainabilityProjection::Representation
209
212
 
210
213
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-recommender_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.37.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-10-27 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-recommender_v1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-recommender_v1/v0.37.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-recommender_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.5.6
78
+ rubygems_version: 3.5.21
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Recommender API V1