google-apis-servicecontrol_v1 0.44.0 → 0.46.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dff142e65f947235cbb29b2a9d5c167620d225294f496bd94b3796de5df83e0a
|
|
4
|
+
data.tar.gz: e16f337fa1de871a00d49c2a2f173a4918a8caff7881501d221fe2dd82b6203e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85e15b20216c4d917307cf7a7cc30ed1134b934417e79911f2aa805ec3d293358a808859c3b6aed141f7419b7529f73b5b76873a9bf77d4e05681a7e73ea4808
|
|
7
|
+
data.tar.gz: ca6891d39927c0aa89683b0a9cbd10eae035671e61e85ff7925de198e0f889fac503f6624d2e23548f4e6522391ac484e4f946c0f31c39c4df17b18d309b9afe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-servicecontrol_v1
|
|
2
2
|
|
|
3
|
+
### v0.46.0 (2026-01-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251229
|
|
6
|
+
|
|
7
|
+
### v0.45.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251125
|
|
10
|
+
|
|
3
11
|
### v0.44.0 (2025-09-07)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250820
|
|
@@ -1779,6 +1779,11 @@ module Google
|
|
|
1779
1779
|
# @return [Hash<String,Fixnum>]
|
|
1780
1780
|
attr_accessor :quota_consumed
|
|
1781
1781
|
|
|
1782
|
+
# Output only. Indicates the state of the quota extraction.
|
|
1783
|
+
# Corresponds to the JSON property `quotaExtractionState`
|
|
1784
|
+
# @return [String]
|
|
1785
|
+
attr_accessor :quota_extraction_state
|
|
1786
|
+
|
|
1782
1787
|
# Quota metrics to indicate the usage. Depending on the check request, one or
|
|
1783
1788
|
# more of the following metrics will be included: 1. For rate quota, per quota
|
|
1784
1789
|
# group or per quota metric incremental usage will be specified using the
|
|
@@ -1800,6 +1805,7 @@ module Google
|
|
|
1800
1805
|
def update!(**args)
|
|
1801
1806
|
@limit_exceeded = args[:limit_exceeded] if args.key?(:limit_exceeded)
|
|
1802
1807
|
@quota_consumed = args[:quota_consumed] if args.key?(:quota_consumed)
|
|
1808
|
+
@quota_extraction_state = args[:quota_extraction_state] if args.key?(:quota_extraction_state)
|
|
1803
1809
|
@quota_metrics = args[:quota_metrics] if args.key?(:quota_metrics)
|
|
1804
1810
|
end
|
|
1805
1811
|
end
|
|
@@ -3070,6 +3076,13 @@ module Google
|
|
|
3070
3076
|
# @return [String]
|
|
3071
3077
|
attr_accessor :constraint
|
|
3072
3078
|
|
|
3079
|
+
# Optional. Provides extra information for the specific violated constraint. See
|
|
3080
|
+
# the constraint's documentation to determine if this field is populated and
|
|
3081
|
+
# what the structure of the message should be.
|
|
3082
|
+
# Corresponds to the JSON property `constraintViolationInfo`
|
|
3083
|
+
# @return [Hash<String,Object>]
|
|
3084
|
+
attr_accessor :constraint_violation_info
|
|
3085
|
+
|
|
3073
3086
|
# Optional. Error message that policy is indicating.
|
|
3074
3087
|
# Corresponds to the JSON property `errorMessage`
|
|
3075
3088
|
# @return [String]
|
|
@@ -3088,6 +3101,7 @@ module Google
|
|
|
3088
3101
|
def update!(**args)
|
|
3089
3102
|
@checked_value = args[:checked_value] if args.key?(:checked_value)
|
|
3090
3103
|
@constraint = args[:constraint] if args.key?(:constraint)
|
|
3104
|
+
@constraint_violation_info = args[:constraint_violation_info] if args.key?(:constraint_violation_info)
|
|
3091
3105
|
@error_message = args[:error_message] if args.key?(:error_message)
|
|
3092
3106
|
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
|
3093
3107
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ServicecontrolV1
|
|
18
18
|
# Version of the google-apis-servicecontrol_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.46.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251229"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -794,6 +794,7 @@ module Google
|
|
|
794
794
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
795
795
|
collection :limit_exceeded, as: 'limitExceeded'
|
|
796
796
|
hash :quota_consumed, as: 'quotaConsumed'
|
|
797
|
+
property :quota_extraction_state, as: 'quotaExtractionState'
|
|
797
798
|
collection :quota_metrics, as: 'quotaMetrics', class: Google::Apis::ServicecontrolV1::MetricValueSet, decorator: Google::Apis::ServicecontrolV1::MetricValueSet::Representation
|
|
798
799
|
|
|
799
800
|
end
|
|
@@ -1078,6 +1079,7 @@ module Google
|
|
|
1078
1079
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1079
1080
|
property :checked_value, as: 'checkedValue'
|
|
1080
1081
|
property :constraint, as: 'constraint'
|
|
1082
|
+
hash :constraint_violation_info, as: 'constraintViolationInfo'
|
|
1081
1083
|
property :error_message, as: 'errorMessage'
|
|
1082
1084
|
property :policy_type, as: 'policyType'
|
|
1083
1085
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-servicecontrol_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.46.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.46.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|