google-apis-recommender_v1 0.23.0 → 0.25.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: 05ddeb9770e3e4a3c9c29a6dd87f4f8b78df23ac65ab426bc124c6aa296bbc76
4
- data.tar.gz: fd50e6d887867bf9d880ddcd24904cf6b2f0bf52cd9ea20bd181a91190e8f849
3
+ metadata.gz: 104d4ec05b610d73381168869190a70d570f2cbd1f1283ef7764267041aaf0b2
4
+ data.tar.gz: ac4f6f3ed19777d5e629da68ac69b20eb46f369606c1554e009669e5248ceacc
5
5
  SHA512:
6
- metadata.gz: af188c0373ff0beeeb652b1e9885fdd8358329906178d9bca091c32f6164e5e2ef84f09e8388b47604ef379c6a04f9c51c6acec4040257f39bceef52520138a1
7
- data.tar.gz: 171e579fded3ea542587d473c2ef95ad429464778ca54c80855569c67cf0c0dece27a20f9c61f5884724b641dcc15195d3bd06347e201dc9dd277e080d7d1e7a
6
+ metadata.gz: e7b67e5bafd491dffb3044b0d1378abdc4523ca8960014091e2962f813e6314727e0e0b333ce134e99a702967959da8d2cdeaedd01c643ce3a251dded3418ddb
7
+ data.tar.gz: 515fb0bad4d5e0e8fac0aa8d096cf298d3fc106a6f75dc85f9155c12358399e2704479977ce723d59a6a755c0c80a57462c522403f8fdd7cded3e5c9e815ed0c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-recommender_v1
2
2
 
3
+ ### v0.25.0 (2022-10-13)
4
+
5
+ * Regenerated from discovery document revision 20220924
6
+
7
+ ### v0.24.0 (2022-09-22)
8
+
9
+ * Regenerated from discovery document revision 20220917
10
+ * Regenerated using generator version 0.10.0
11
+
3
12
  ### v0.23.0 (2022-09-16)
4
13
 
5
14
  * Unspecified changes
@@ -61,11 +61,22 @@ module Google
61
61
  # @return [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1CostProjection]
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::RecommenderV1::GoogleCloudRecommenderV1ReliabilityProjection]
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::RecommenderV1::GoogleCloudRecommenderV1SecurityProjection]
67
72
  attr_accessor :security_projection
68
73
 
74
+ # Contains metadata about how much sustainability a recommendation can save or
75
+ # incur.
76
+ # Corresponds to the JSON property `sustainabilityProjection`
77
+ # @return [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1SustainabilityProjection]
78
+ attr_accessor :sustainability_projection
79
+
69
80
  def initialize(**args)
70
81
  update!(**args)
71
82
  end
@@ -74,7 +85,9 @@ module Google
74
85
  def update!(**args)
75
86
  @category = args[:category] if args.key?(:category)
76
87
  @cost_projection = args[:cost_projection] if args.key?(:cost_projection)
88
+ @reliability_projection = args[:reliability_projection] if args.key?(:reliability_projection)
77
89
  @security_projection = args[:security_projection] if args.key?(:security_projection)
90
+ @sustainability_projection = args[:sustainability_projection] if args.key?(:sustainability_projection)
78
91
  end
79
92
  end
80
93
 
@@ -838,6 +851,31 @@ module Google
838
851
  end
839
852
  end
840
853
 
854
+ # Contains information on the impact of a reliability recommendation.
855
+ class GoogleCloudRecommenderV1ReliabilityProjection
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
+
841
879
  # Contains various ways of describing the impact on Security.
842
880
  class GoogleCloudRecommenderV1SecurityProjection
843
881
  include Google::Apis::Core::Hashable
@@ -857,6 +895,33 @@ module Google
857
895
  end
858
896
  end
859
897
 
898
+ # Contains metadata about how much sustainability a recommendation can save or
899
+ # incur.
900
+ class GoogleCloudRecommenderV1SustainabilityProjection
901
+ include Google::Apis::Core::Hashable
902
+
903
+ # Duration for which this sustainability applies.
904
+ # Corresponds to the JSON property `duration`
905
+ # @return [String]
906
+ attr_accessor :duration
907
+
908
+ # Carbon Footprint generated in kg of CO2 equivalent. Chose kg_c_o2e so that the
909
+ # name renders correctly in camelCase (kgCO2e).
910
+ # Corresponds to the JSON property `kgCO2e`
911
+ # @return [Float]
912
+ attr_accessor :kg_co2e
913
+
914
+ def initialize(**args)
915
+ update!(**args)
916
+ end
917
+
918
+ # Update properties of this object
919
+ def update!(**args)
920
+ @duration = args[:duration] if args.key?(:duration)
921
+ @kg_co2e = args[:kg_co2e] if args.key?(:kg_co2e)
922
+ end
923
+ end
924
+
860
925
  # Contains various matching options for values for a GCP resource field.
861
926
  class GoogleCloudRecommenderV1ValueMatcher
862
927
  include Google::Apis::Core::Hashable
@@ -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.23.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220905"
25
+ REVISION = "20220924"
26
26
  end
27
27
  end
28
28
  end
@@ -148,12 +148,24 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
+ class GoogleCloudRecommenderV1ReliabilityProjection
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
151
157
  class GoogleCloudRecommenderV1SecurityProjection
152
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
159
 
154
160
  include Google::Apis::Core::JsonObjectSupport
155
161
  end
156
162
 
163
+ class GoogleCloudRecommenderV1SustainabilityProjection
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
157
169
  class GoogleCloudRecommenderV1ValueMatcher
158
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
171
 
@@ -181,8 +193,12 @@ module Google
181
193
  property :category, as: 'category'
182
194
  property :cost_projection, as: 'costProjection', class: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1CostProjection, decorator: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1CostProjection::Representation
183
195
 
196
+ property :reliability_projection, as: 'reliabilityProjection', class: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1ReliabilityProjection, decorator: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1ReliabilityProjection::Representation
197
+
184
198
  property :security_projection, as: 'securityProjection', class: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1SecurityProjection, decorator: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1SecurityProjection::Representation
185
199
 
200
+ property :sustainability_projection, as: 'sustainabilityProjection', class: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1SustainabilityProjection, decorator: Google::Apis::RecommenderV1::GoogleCloudRecommenderV1SustainabilityProjection::Representation
201
+
186
202
  end
187
203
  end
188
204
 
@@ -386,6 +402,14 @@ module Google
386
402
  end
387
403
  end
388
404
 
405
+ class GoogleCloudRecommenderV1ReliabilityProjection
406
+ # @private
407
+ class Representation < Google::Apis::Core::JsonRepresentation
408
+ hash :details, as: 'details'
409
+ collection :risks, as: 'risks'
410
+ end
411
+ end
412
+
389
413
  class GoogleCloudRecommenderV1SecurityProjection
390
414
  # @private
391
415
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -393,6 +417,14 @@ module Google
393
417
  end
394
418
  end
395
419
 
420
+ class GoogleCloudRecommenderV1SustainabilityProjection
421
+ # @private
422
+ class Representation < Google::Apis::Core::JsonRepresentation
423
+ property :duration, as: 'duration'
424
+ property :kg_co2e, as: 'kgCO2e'
425
+ end
426
+ end
427
+
396
428
  class GoogleCloudRecommenderV1ValueMatcher
397
429
  # @private
398
430
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -49,6 +49,84 @@ module Google
49
49
  @batch_path = 'batch'
50
50
  end
51
51
 
52
+ # Gets the requested InsightTypeConfig. There is only one instance of the config
53
+ # for each InsightType.
54
+ # @param [String] name
55
+ # Required. Name of the InsightTypeConfig to get. Acceptable formats: * `
56
+ # projects/[PROJECT_NUMBER]/locations/[LOCATION]/insightTypes/[INSIGHT_TYPE_ID]/
57
+ # config` * `projects/[PROJECT_ID]/locations/[LOCATION]/insightTypes/[
58
+ # INSIGHT_TYPE_ID]/config` * `organizations/[ORGANIZATION_ID]/locations/[
59
+ # LOCATION]/insightTypes/[INSIGHT_TYPE_ID]/config` * `billingAccounts/[
60
+ # BILLING_ACCOUNT_ID]/locations/[LOCATION]/insightTypes/[INSIGHT_TYPE_ID]/config`
61
+ # @param [String] fields
62
+ # Selector specifying which fields to include in a partial response.
63
+ # @param [String] quota_user
64
+ # Available to use for quota purposes for server-side applications. Can be any
65
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
66
+ # @param [Google::Apis::RequestOptions] options
67
+ # Request-specific options
68
+ #
69
+ # @yield [result, err] Result & error if block supplied
70
+ # @yieldparam result [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1InsightTypeConfig] parsed result object
71
+ # @yieldparam err [StandardError] error object if request failed
72
+ #
73
+ # @return [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1InsightTypeConfig]
74
+ #
75
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
76
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
77
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
78
+ def get_billing_account_location_insight_type_config(name, fields: nil, quota_user: nil, options: nil, &block)
79
+ command = make_simple_command(:get, 'v1/{+name}', options)
80
+ command.response_representation = Google::Apis::RecommenderV1::GoogleCloudRecommenderV1InsightTypeConfig::Representation
81
+ command.response_class = Google::Apis::RecommenderV1::GoogleCloudRecommenderV1InsightTypeConfig
82
+ command.params['name'] = name unless name.nil?
83
+ command.query['fields'] = fields unless fields.nil?
84
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
85
+ execute_or_queue_command(command, &block)
86
+ end
87
+
88
+ # Updates an InsightTypeConfig change. This will create a new revision of the
89
+ # config.
90
+ # @param [String] name
91
+ # Name of insight type config. Eg, projects/[PROJECT_NUMBER]/locations/[LOCATION]
92
+ # /insightTypes/[INSIGHT_TYPE_ID]/config
93
+ # @param [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1InsightTypeConfig] google_cloud_recommender_v1_insight_type_config_object
94
+ # @param [String] update_mask
95
+ # The list of fields to be updated.
96
+ # @param [Boolean] validate_only
97
+ # If true, validate the request and preview the change, but do not actually
98
+ # update it.
99
+ # @param [String] fields
100
+ # Selector specifying which fields to include in a partial response.
101
+ # @param [String] quota_user
102
+ # Available to use for quota purposes for server-side applications. Can be any
103
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
104
+ # @param [Google::Apis::RequestOptions] options
105
+ # Request-specific options
106
+ #
107
+ # @yield [result, err] Result & error if block supplied
108
+ # @yieldparam result [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1InsightTypeConfig] parsed result object
109
+ # @yieldparam err [StandardError] error object if request failed
110
+ #
111
+ # @return [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1InsightTypeConfig]
112
+ #
113
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
114
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
115
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
116
+ def update_billing_account_location_insight_type_config(name, google_cloud_recommender_v1_insight_type_config_object = nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
117
+ command = make_simple_command(:patch, 'v1/{+name}', options)
118
+ command.request_representation = Google::Apis::RecommenderV1::GoogleCloudRecommenderV1InsightTypeConfig::Representation
119
+ command.request_object = google_cloud_recommender_v1_insight_type_config_object
120
+ command.response_representation = Google::Apis::RecommenderV1::GoogleCloudRecommenderV1InsightTypeConfig::Representation
121
+ command.response_class = Google::Apis::RecommenderV1::GoogleCloudRecommenderV1InsightTypeConfig
122
+ command.params['name'] = name unless name.nil?
123
+ command.query['updateMask'] = update_mask unless update_mask.nil?
124
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
125
+ command.query['fields'] = fields unless fields.nil?
126
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
127
+ execute_or_queue_command(command, &block)
128
+ end
129
+
52
130
  # Gets the requested insight. Requires the recommender.*.get IAM permission for
53
131
  # the specified insight type.
54
132
  # @param [String] name
@@ -177,6 +255,83 @@ module Google
177
255
  execute_or_queue_command(command, &block)
178
256
  end
179
257
 
258
+ # Gets the requested Recommender Config. There is only one instance of the
259
+ # config for each Recommender.
260
+ # @param [String] name
261
+ # Required. Name of the Recommendation Config to get. Acceptable formats: * `
262
+ # projects/[PROJECT_NUMBER]/locations/[LOCATION]/recommenders/[RECOMMENDER_ID]/
263
+ # config` * `projects/[PROJECT_ID]/locations/[LOCATION]/recommenders/[
264
+ # RECOMMENDER_ID]/config` * `organizations/[ORGANIZATION_ID]/locations/[LOCATION]
265
+ # /recommenders/[RECOMMENDER_ID]/config` * `billingAccounts/[BILLING_ACCOUNT_ID]/
266
+ # locations/[LOCATION]/recommenders/[RECOMMENDER_ID]/config`
267
+ # @param [String] fields
268
+ # Selector specifying which fields to include in a partial response.
269
+ # @param [String] quota_user
270
+ # Available to use for quota purposes for server-side applications. Can be any
271
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
272
+ # @param [Google::Apis::RequestOptions] options
273
+ # Request-specific options
274
+ #
275
+ # @yield [result, err] Result & error if block supplied
276
+ # @yieldparam result [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1RecommenderConfig] parsed result object
277
+ # @yieldparam err [StandardError] error object if request failed
278
+ #
279
+ # @return [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1RecommenderConfig]
280
+ #
281
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
282
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
283
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
284
+ def get_billing_account_location_recommender_config(name, fields: nil, quota_user: nil, options: nil, &block)
285
+ command = make_simple_command(:get, 'v1/{+name}', options)
286
+ command.response_representation = Google::Apis::RecommenderV1::GoogleCloudRecommenderV1RecommenderConfig::Representation
287
+ command.response_class = Google::Apis::RecommenderV1::GoogleCloudRecommenderV1RecommenderConfig
288
+ command.params['name'] = name unless name.nil?
289
+ command.query['fields'] = fields unless fields.nil?
290
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
291
+ execute_or_queue_command(command, &block)
292
+ end
293
+
294
+ # Updates a Recommender Config. This will create a new revision of the config.
295
+ # @param [String] name
296
+ # Name of recommender config. Eg, projects/[PROJECT_NUMBER]/locations/[LOCATION]/
297
+ # recommenders/[RECOMMENDER_ID]/config
298
+ # @param [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1RecommenderConfig] google_cloud_recommender_v1_recommender_config_object
299
+ # @param [String] update_mask
300
+ # The list of fields to be updated.
301
+ # @param [Boolean] validate_only
302
+ # If true, validate the request and preview the change, but do not actually
303
+ # update it.
304
+ # @param [String] fields
305
+ # Selector specifying which fields to include in a partial response.
306
+ # @param [String] quota_user
307
+ # Available to use for quota purposes for server-side applications. Can be any
308
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
309
+ # @param [Google::Apis::RequestOptions] options
310
+ # Request-specific options
311
+ #
312
+ # @yield [result, err] Result & error if block supplied
313
+ # @yieldparam result [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1RecommenderConfig] parsed result object
314
+ # @yieldparam err [StandardError] error object if request failed
315
+ #
316
+ # @return [Google::Apis::RecommenderV1::GoogleCloudRecommenderV1RecommenderConfig]
317
+ #
318
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
319
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
320
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
321
+ def update_billing_account_location_recommender_config(name, google_cloud_recommender_v1_recommender_config_object = nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
322
+ command = make_simple_command(:patch, 'v1/{+name}', options)
323
+ command.request_representation = Google::Apis::RecommenderV1::GoogleCloudRecommenderV1RecommenderConfig::Representation
324
+ command.request_object = google_cloud_recommender_v1_recommender_config_object
325
+ command.response_representation = Google::Apis::RecommenderV1::GoogleCloudRecommenderV1RecommenderConfig::Representation
326
+ command.response_class = Google::Apis::RecommenderV1::GoogleCloudRecommenderV1RecommenderConfig
327
+ command.params['name'] = name unless name.nil?
328
+ command.query['updateMask'] = update_mask unless update_mask.nil?
329
+ command.query['validateOnly'] = validate_only unless validate_only.nil?
330
+ command.query['fields'] = fields unless fields.nil?
331
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
332
+ execute_or_queue_command(command, &block)
333
+ end
334
+
180
335
  # Gets the requested recommendation. Requires the recommender.*.get IAM
181
336
  # permission for the specified recommender.
182
337
  # @param [String] name
@@ -723,10 +878,11 @@ module Google
723
878
  # for each InsightType.
724
879
  # @param [String] name
725
880
  # Required. Name of the InsightTypeConfig to get. Acceptable formats: * `
726
- # projects/[PROJECT_NUMBER]/locations/global/recommenders/[INSIGHT_TYPE_ID]/
727
- # config` * `projects/[PROJECT_ID]/locations/global/recommenders/[
728
- # INSIGHT_TYPE_ID]/config` * `organizations/[ORGANIZATION_ID]/locations/global/
729
- # recommenders/[INSIGHT_TYPE_ID]/config`
881
+ # projects/[PROJECT_NUMBER]/locations/[LOCATION]/insightTypes/[INSIGHT_TYPE_ID]/
882
+ # config` * `projects/[PROJECT_ID]/locations/[LOCATION]/insightTypes/[
883
+ # INSIGHT_TYPE_ID]/config` * `organizations/[ORGANIZATION_ID]/locations/[
884
+ # LOCATION]/insightTypes/[INSIGHT_TYPE_ID]/config` * `billingAccounts/[
885
+ # BILLING_ACCOUNT_ID]/locations/[LOCATION]/insightTypes/[INSIGHT_TYPE_ID]/config`
730
886
  # @param [String] fields
731
887
  # Selector specifying which fields to include in a partial response.
732
888
  # @param [String] quota_user
@@ -931,7 +1087,8 @@ module Google
931
1087
  # projects/[PROJECT_NUMBER]/locations/[LOCATION]/recommenders/[RECOMMENDER_ID]/
932
1088
  # config` * `projects/[PROJECT_ID]/locations/[LOCATION]/recommenders/[
933
1089
  # RECOMMENDER_ID]/config` * `organizations/[ORGANIZATION_ID]/locations/[LOCATION]
934
- # /recommenders/[RECOMMENDER_ID]/config`
1090
+ # /recommenders/[RECOMMENDER_ID]/config` * `billingAccounts/[BILLING_ACCOUNT_ID]/
1091
+ # locations/[LOCATION]/recommenders/[RECOMMENDER_ID]/config`
935
1092
  # @param [String] fields
936
1093
  # Selector specifying which fields to include in a partial response.
937
1094
  # @param [String] quota_user
@@ -1211,10 +1368,11 @@ module Google
1211
1368
  # for each InsightType.
1212
1369
  # @param [String] name
1213
1370
  # Required. Name of the InsightTypeConfig to get. Acceptable formats: * `
1214
- # projects/[PROJECT_NUMBER]/locations/global/recommenders/[INSIGHT_TYPE_ID]/
1215
- # config` * `projects/[PROJECT_ID]/locations/global/recommenders/[
1216
- # INSIGHT_TYPE_ID]/config` * `organizations/[ORGANIZATION_ID]/locations/global/
1217
- # recommenders/[INSIGHT_TYPE_ID]/config`
1371
+ # projects/[PROJECT_NUMBER]/locations/[LOCATION]/insightTypes/[INSIGHT_TYPE_ID]/
1372
+ # config` * `projects/[PROJECT_ID]/locations/[LOCATION]/insightTypes/[
1373
+ # INSIGHT_TYPE_ID]/config` * `organizations/[ORGANIZATION_ID]/locations/[
1374
+ # LOCATION]/insightTypes/[INSIGHT_TYPE_ID]/config` * `billingAccounts/[
1375
+ # BILLING_ACCOUNT_ID]/locations/[LOCATION]/insightTypes/[INSIGHT_TYPE_ID]/config`
1218
1376
  # @param [String] fields
1219
1377
  # Selector specifying which fields to include in a partial response.
1220
1378
  # @param [String] quota_user
@@ -1419,7 +1577,8 @@ module Google
1419
1577
  # projects/[PROJECT_NUMBER]/locations/[LOCATION]/recommenders/[RECOMMENDER_ID]/
1420
1578
  # config` * `projects/[PROJECT_ID]/locations/[LOCATION]/recommenders/[
1421
1579
  # RECOMMENDER_ID]/config` * `organizations/[ORGANIZATION_ID]/locations/[LOCATION]
1422
- # /recommenders/[RECOMMENDER_ID]/config`
1580
+ # /recommenders/[RECOMMENDER_ID]/config` * `billingAccounts/[BILLING_ACCOUNT_ID]/
1581
+ # locations/[LOCATION]/recommenders/[RECOMMENDER_ID]/config`
1423
1582
  # @param [String] fields
1424
1583
  # Selector specifying which fields to include in a partial response.
1425
1584
  # @param [String] quota_user
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.23.0
4
+ version: 0.25.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-09-19 00:00:00.000000000 Z
11
+ date: 2022-10-17 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.7.2
19
+ version: 0.9.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.7.2
29
+ version: 0.9.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.23.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-recommender_v1/v0.25.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: []