google-cloud-recommender-v1 0.5.0 → 0.5.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d1da770da5c25de18691055a3af3de5f71b8506923d54b0cfcb3ab46d4bfa94
|
|
4
|
+
data.tar.gz: 9612c85747ebd41f9d6852be00243f7654d10ca7cd3864d5e57dd290de7594dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1abad90ecbd0ee1d7ac970ae04b1ccf190441e837458e7eea8bcb9b015d9e44ff4bd145368d1c24991521042347c20470e09f98af3e4652d196c90dc840422ab
|
|
7
|
+
data.tar.gz: a6f8f143d7cf86346ac02db9ee02f7176751aa41e31dea2771714fff28b8b86922c14a96739c5afa4bf5f54b9116793769fbee175960fdda1adea67a00bce312
|
|
@@ -73,7 +73,7 @@ module Google
|
|
|
73
73
|
initial_delay: 0.1,
|
|
74
74
|
max_delay: 60.0,
|
|
75
75
|
multiplier: 1.3,
|
|
76
|
-
retry_codes: [
|
|
76
|
+
retry_codes: [4, 14]
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
default_config.rpcs.get_recommendation.timeout = 60.0
|
|
@@ -81,7 +81,7 @@ module Google
|
|
|
81
81
|
initial_delay: 0.1,
|
|
82
82
|
max_delay: 60.0,
|
|
83
83
|
multiplier: 1.3,
|
|
84
|
-
retry_codes: [
|
|
84
|
+
retry_codes: [4, 14]
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
default_config.rpcs.mark_recommendation_claimed.timeout = 60.0
|
|
@@ -38,23 +38,23 @@ module Google
|
|
|
38
38
|
|
|
39
39
|
# Lists insights for a Cloud project. Requires the recommender.*.list IAM
|
|
40
40
|
# permission for the specified insight type.
|
|
41
|
-
rpc :ListInsights, ListInsightsRequest, ListInsightsResponse
|
|
41
|
+
rpc :ListInsights, Google::Cloud::Recommender::V1::ListInsightsRequest, Google::Cloud::Recommender::V1::ListInsightsResponse
|
|
42
42
|
# Gets the requested insight. Requires the recommender.*.get IAM permission
|
|
43
43
|
# for the specified insight type.
|
|
44
|
-
rpc :GetInsight, GetInsightRequest, Insight
|
|
44
|
+
rpc :GetInsight, Google::Cloud::Recommender::V1::GetInsightRequest, Google::Cloud::Recommender::V1::Insight
|
|
45
45
|
# Marks the Insight State as Accepted. Users can use this method to
|
|
46
46
|
# indicate to the Recommender API that they have applied some action based
|
|
47
47
|
# on the insight. This stops the insight content from being updated.
|
|
48
48
|
#
|
|
49
49
|
# MarkInsightAccepted can be applied to insights in ACTIVE state. Requires
|
|
50
50
|
# the recommender.*.update IAM permission for the specified insight.
|
|
51
|
-
rpc :MarkInsightAccepted, MarkInsightAcceptedRequest, Insight
|
|
51
|
+
rpc :MarkInsightAccepted, Google::Cloud::Recommender::V1::MarkInsightAcceptedRequest, Google::Cloud::Recommender::V1::Insight
|
|
52
52
|
# Lists recommendations for a Cloud project. Requires the recommender.*.list
|
|
53
53
|
# IAM permission for the specified recommender.
|
|
54
|
-
rpc :ListRecommendations, ListRecommendationsRequest, ListRecommendationsResponse
|
|
54
|
+
rpc :ListRecommendations, Google::Cloud::Recommender::V1::ListRecommendationsRequest, Google::Cloud::Recommender::V1::ListRecommendationsResponse
|
|
55
55
|
# Gets the requested recommendation. Requires the recommender.*.get
|
|
56
56
|
# IAM permission for the specified recommender.
|
|
57
|
-
rpc :GetRecommendation, GetRecommendationRequest, Recommendation
|
|
57
|
+
rpc :GetRecommendation, Google::Cloud::Recommender::V1::GetRecommendationRequest, Google::Cloud::Recommender::V1::Recommendation
|
|
58
58
|
# Marks the Recommendation State as Claimed. Users can use this method to
|
|
59
59
|
# indicate to the Recommender API that they are starting to apply the
|
|
60
60
|
# recommendation themselves. This stops the recommendation content from being
|
|
@@ -65,7 +65,7 @@ module Google
|
|
|
65
65
|
#
|
|
66
66
|
# Requires the recommender.*.update IAM permission for the specified
|
|
67
67
|
# recommender.
|
|
68
|
-
rpc :MarkRecommendationClaimed, MarkRecommendationClaimedRequest, Recommendation
|
|
68
|
+
rpc :MarkRecommendationClaimed, Google::Cloud::Recommender::V1::MarkRecommendationClaimedRequest, Google::Cloud::Recommender::V1::Recommendation
|
|
69
69
|
# Marks the Recommendation State as Succeeded. Users can use this method to
|
|
70
70
|
# indicate to the Recommender API that they have applied the recommendation
|
|
71
71
|
# themselves, and the operation was successful. This stops the recommendation
|
|
@@ -77,7 +77,7 @@ module Google
|
|
|
77
77
|
#
|
|
78
78
|
# Requires the recommender.*.update IAM permission for the specified
|
|
79
79
|
# recommender.
|
|
80
|
-
rpc :MarkRecommendationSucceeded, MarkRecommendationSucceededRequest, Recommendation
|
|
80
|
+
rpc :MarkRecommendationSucceeded, Google::Cloud::Recommender::V1::MarkRecommendationSucceededRequest, Google::Cloud::Recommender::V1::Recommendation
|
|
81
81
|
# Marks the Recommendation State as Failed. Users can use this method to
|
|
82
82
|
# indicate to the Recommender API that they have applied the recommendation
|
|
83
83
|
# themselves, and the operation failed. This stops the recommendation content
|
|
@@ -89,7 +89,7 @@ module Google
|
|
|
89
89
|
#
|
|
90
90
|
# Requires the recommender.*.update IAM permission for the specified
|
|
91
91
|
# recommender.
|
|
92
|
-
rpc :MarkRecommendationFailed, MarkRecommendationFailedRequest, Recommendation
|
|
92
|
+
rpc :MarkRecommendationFailed, Google::Cloud::Recommender::V1::MarkRecommendationFailedRequest, Google::Cloud::Recommender::V1::Recommendation
|
|
93
93
|
end
|
|
94
94
|
|
|
95
95
|
Stub = Service.rpc_stub_class
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-recommender-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-08-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|