google-apis-recommender_v1beta1 0.33.0 → 0.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/recommender_v1beta1/classes.rb +12 -0
- data/lib/google/apis/recommender_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/recommender_v1beta1/representations.rb +3 -0
- data/lib/google/apis/recommender_v1beta1/service.rb +4 -4
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3df1f151ae6d22bf7344bf60945e04a6e4bde14ec690bc9612e3902bcadc3025
|
4
|
+
data.tar.gz: 16a60f838b24138feb10e5d08f30229bab9159b6fa0c7da804a4ab31704d6d9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f84a85d195bca9644afc0b9c0c652c49b0d7d9dc03616eee90a80a66fb320d9e23bb30413a823bf7239a1f1a74e8261ff5bb45aaa116fc71cc383986d6f9b07
|
7
|
+
data.tar.gz: 3434fa03069dbeb1a915d47b49944f7774ea4069954475aae352cc879d5eb84deb7b02dd0f1000b354a9859551addc6084499111f709206ba1fe19df9ba0a8c4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-recommender_v1beta1
|
2
2
|
|
3
|
+
### v0.35.0 (2023-10-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231008
|
6
|
+
|
7
|
+
### v0.34.0 (2023-09-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230910
|
10
|
+
|
3
11
|
### v0.33.0 (2023-08-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230806
|
@@ -31,6 +31,11 @@ module Google
|
|
31
31
|
# @return [Google::Apis::RecommenderV1beta1::GoogleTypeMoney]
|
32
32
|
attr_accessor :cost
|
33
33
|
|
34
|
+
# Represents an amount of money with its currency type.
|
35
|
+
# Corresponds to the JSON property `costInLocalCurrency`
|
36
|
+
# @return [Google::Apis::RecommenderV1beta1::GoogleTypeMoney]
|
37
|
+
attr_accessor :cost_in_local_currency
|
38
|
+
|
34
39
|
# Duration for which this cost applies.
|
35
40
|
# Corresponds to the JSON property `duration`
|
36
41
|
# @return [String]
|
@@ -43,6 +48,7 @@ module Google
|
|
43
48
|
# Update properties of this object
|
44
49
|
def update!(**args)
|
45
50
|
@cost = args[:cost] if args.key?(:cost)
|
51
|
+
@cost_in_local_currency = args[:cost_in_local_currency] if args.key?(:cost_in_local_currency)
|
46
52
|
@duration = args[:duration] if args.key?(:duration)
|
47
53
|
end
|
48
54
|
end
|
@@ -754,6 +760,11 @@ module Google
|
|
754
760
|
# @return [Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1RecommendationStateInfo]
|
755
761
|
attr_accessor :state_info
|
756
762
|
|
763
|
+
# Fully qualified resource names that this recommendation is targeting.
|
764
|
+
# Corresponds to the JSON property `targetResources`
|
765
|
+
# @return [Array<String>]
|
766
|
+
attr_accessor :target_resources
|
767
|
+
|
757
768
|
# Corresponds to a mutually exclusive group ID within a recommender. A non-empty
|
758
769
|
# ID indicates that the recommendation belongs to a mutually exclusive group.
|
759
770
|
# This means that only one recommendation within the group is suggested to be
|
@@ -779,6 +790,7 @@ module Google
|
|
779
790
|
@priority = args[:priority] if args.key?(:priority)
|
780
791
|
@recommender_subtype = args[:recommender_subtype] if args.key?(:recommender_subtype)
|
781
792
|
@state_info = args[:state_info] if args.key?(:state_info)
|
793
|
+
@target_resources = args[:target_resources] if args.key?(:target_resources)
|
782
794
|
@xor_group_id = args[:xor_group_id] if args.key?(:xor_group_id)
|
783
795
|
end
|
784
796
|
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.
|
19
|
+
GEM_VERSION = "0.35.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 = "20231008"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -213,6 +213,8 @@ module Google
|
|
213
213
|
class Representation < Google::Apis::Core::JsonRepresentation
|
214
214
|
property :cost, as: 'cost', class: Google::Apis::RecommenderV1beta1::GoogleTypeMoney, decorator: Google::Apis::RecommenderV1beta1::GoogleTypeMoney::Representation
|
215
215
|
|
216
|
+
property :cost_in_local_currency, as: 'costInLocalCurrency', class: Google::Apis::RecommenderV1beta1::GoogleTypeMoney, decorator: Google::Apis::RecommenderV1beta1::GoogleTypeMoney::Representation
|
217
|
+
|
216
218
|
property :duration, as: 'duration'
|
217
219
|
end
|
218
220
|
end
|
@@ -415,6 +417,7 @@ module Google
|
|
415
417
|
property :recommender_subtype, as: 'recommenderSubtype'
|
416
418
|
property :state_info, as: 'stateInfo', class: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1RecommendationStateInfo, decorator: Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1RecommendationStateInfo::Representation
|
417
419
|
|
420
|
+
collection :target_resources, as: 'targetResources'
|
418
421
|
property :xor_group_id, as: 'xorGroupId'
|
419
422
|
end
|
420
423
|
end
|
@@ -471,7 +471,7 @@ module Google
|
|
471
471
|
# recommendations in ACTIVE state. Requires the recommender.*.update IAM
|
472
472
|
# permission for the specified recommender.
|
473
473
|
# @param [String] name
|
474
|
-
# Name of the recommendation.
|
474
|
+
# Required. Name of the recommendation.
|
475
475
|
# @param [Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1MarkRecommendationDismissedRequest] google_cloud_recommender_v1beta1_mark_recommendation_dismissed_request_object
|
476
476
|
# @param [String] fields
|
477
477
|
# Selector specifying which fields to include in a partial response.
|
@@ -847,7 +847,7 @@ module Google
|
|
847
847
|
# recommendations in ACTIVE state. Requires the recommender.*.update IAM
|
848
848
|
# permission for the specified recommender.
|
849
849
|
# @param [String] name
|
850
|
-
# Name of the recommendation.
|
850
|
+
# Required. Name of the recommendation.
|
851
851
|
# @param [Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1MarkRecommendationDismissedRequest] google_cloud_recommender_v1beta1_mark_recommendation_dismissed_request_object
|
852
852
|
# @param [String] fields
|
853
853
|
# Selector specifying which fields to include in a partial response.
|
@@ -1413,7 +1413,7 @@ module Google
|
|
1413
1413
|
# recommendations in ACTIVE state. Requires the recommender.*.update IAM
|
1414
1414
|
# permission for the specified recommender.
|
1415
1415
|
# @param [String] name
|
1416
|
-
# Name of the recommendation.
|
1416
|
+
# Required. Name of the recommendation.
|
1417
1417
|
# @param [Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1MarkRecommendationDismissedRequest] google_cloud_recommender_v1beta1_mark_recommendation_dismissed_request_object
|
1418
1418
|
# @param [String] fields
|
1419
1419
|
# Selector specifying which fields to include in a partial response.
|
@@ -1944,7 +1944,7 @@ module Google
|
|
1944
1944
|
# recommendations in ACTIVE state. Requires the recommender.*.update IAM
|
1945
1945
|
# permission for the specified recommender.
|
1946
1946
|
# @param [String] name
|
1947
|
-
# Name of the recommendation.
|
1947
|
+
# Required. Name of the recommendation.
|
1948
1948
|
# @param [Google::Apis::RecommenderV1beta1::GoogleCloudRecommenderV1beta1MarkRecommendationDismissedRequest] google_cloud_recommender_v1beta1_mark_recommendation_dismissed_request_object
|
1949
1949
|
# @param [String] fields
|
1950
1950
|
# Selector specifying which fields to include in a partial response.
|
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.35.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-10-22 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-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.35.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.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Recommender API V1beta1
|