aws-sdk-applicationsignals 1.12.0 → 1.14.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationsignals/client.rb +50 -1
- data/lib/aws-sdk-applicationsignals/client_api.rb +11 -0
- data/lib/aws-sdk-applicationsignals/types.rb +55 -3
- data/lib/aws-sdk-applicationsignals.rb +1 -1
- data/sig/client.rbs +13 -1
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +8 -0
- 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: 6f61fd5ba1644cc4d24935084f47ffe56ed0568f49d7a40df00c20fa21378f86
|
4
|
+
data.tar.gz: 5dcbef16a32d96d64413e77ef9bb0eb7ed780dc55a473b42d3303f69c6595cdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f740427cbda2090d5ffb5009b539b1d66bd18b20b53794b3bdf189d7e3e087dbe8d24c8e543183a066700906187f7cd38764d8f6a21bc677ee1b10850ae1c19
|
7
|
+
data.tar.gz: fa4b4cf0c51a85e7d628b167aaf865f03d989a861fbad8b35278f685f468886a11ecb5c03c27a7345bf3883a575188a57c6f523c53997f91be6ec221307c848b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.14.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.13.0 (2024-11-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Amazon CloudWatch Application Signals now supports creating Service Level Objectives with burn rates. Users can now create or update SLOs with burn rate configurations to meet their specific business requirements.
|
13
|
+
|
4
14
|
1.12.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.14.0
|
@@ -257,11 +257,34 @@ module Aws::ApplicationSignals
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -715,6 +738,11 @@ module Aws::ApplicationSignals
|
|
715
738
|
# use them to scope user permissions by granting a user permission to
|
716
739
|
# access or change only resources with certain tag values.
|
717
740
|
#
|
741
|
+
# @option params [Array<Types::BurnRateConfiguration>] :burn_rate_configurations
|
742
|
+
# Use this array to create *burn rates* for this SLO. Each burn rate is
|
743
|
+
# a metric that indicates how fast the service is consuming the error
|
744
|
+
# budget, relative to the attainment goal of the SLO.
|
745
|
+
#
|
718
746
|
# @return [Types::CreateServiceLevelObjectiveOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
719
747
|
#
|
720
748
|
# * {Types::CreateServiceLevelObjectiveOutput#slo #slo} => Types::ServiceLevelObjective
|
@@ -871,6 +899,11 @@ module Aws::ApplicationSignals
|
|
871
899
|
# value: "TagValue", # required
|
872
900
|
# },
|
873
901
|
# ],
|
902
|
+
# burn_rate_configurations: [
|
903
|
+
# {
|
904
|
+
# look_back_window_minutes: 1, # required
|
905
|
+
# },
|
906
|
+
# ],
|
874
907
|
# })
|
875
908
|
#
|
876
909
|
# @example Response structure
|
@@ -960,6 +993,8 @@ module Aws::ApplicationSignals
|
|
960
993
|
# resp.slo.goal.interval.calendar_interval.duration #=> Integer
|
961
994
|
# resp.slo.goal.attainment_goal #=> Float
|
962
995
|
# resp.slo.goal.warning_threshold #=> Float
|
996
|
+
# resp.slo.burn_rate_configurations #=> Array
|
997
|
+
# resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
|
963
998
|
#
|
964
999
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/CreateServiceLevelObjective AWS API Documentation
|
965
1000
|
#
|
@@ -1189,6 +1224,8 @@ module Aws::ApplicationSignals
|
|
1189
1224
|
# resp.slo.goal.interval.calendar_interval.duration #=> Integer
|
1190
1225
|
# resp.slo.goal.attainment_goal #=> Float
|
1191
1226
|
# resp.slo.goal.warning_threshold #=> Float
|
1227
|
+
# resp.slo.burn_rate_configurations #=> Array
|
1228
|
+
# resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
|
1192
1229
|
#
|
1193
1230
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/GetServiceLevelObjective AWS API Documentation
|
1194
1231
|
#
|
@@ -1844,6 +1881,11 @@ module Aws::ApplicationSignals
|
|
1844
1881
|
# the SLO. This includes the time period for evaluation and the
|
1845
1882
|
# attainment threshold.
|
1846
1883
|
#
|
1884
|
+
# @option params [Array<Types::BurnRateConfiguration>] :burn_rate_configurations
|
1885
|
+
# Use this array to create *burn rates* for this SLO. Each burn rate is
|
1886
|
+
# a metric that indicates how fast the service is consuming the error
|
1887
|
+
# budget, relative to the attainment goal of the SLO.
|
1888
|
+
#
|
1847
1889
|
# @return [Types::UpdateServiceLevelObjectiveOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1848
1890
|
#
|
1849
1891
|
# * {Types::UpdateServiceLevelObjectiveOutput#slo #slo} => Types::ServiceLevelObjective
|
@@ -1994,6 +2036,11 @@ module Aws::ApplicationSignals
|
|
1994
2036
|
# attainment_goal: 1.0,
|
1995
2037
|
# warning_threshold: 1.0,
|
1996
2038
|
# },
|
2039
|
+
# burn_rate_configurations: [
|
2040
|
+
# {
|
2041
|
+
# look_back_window_minutes: 1, # required
|
2042
|
+
# },
|
2043
|
+
# ],
|
1997
2044
|
# })
|
1998
2045
|
#
|
1999
2046
|
# @example Response structure
|
@@ -2083,6 +2130,8 @@ module Aws::ApplicationSignals
|
|
2083
2130
|
# resp.slo.goal.interval.calendar_interval.duration #=> Integer
|
2084
2131
|
# resp.slo.goal.attainment_goal #=> Float
|
2085
2132
|
# resp.slo.goal.warning_threshold #=> Float
|
2133
|
+
# resp.slo.burn_rate_configurations #=> Array
|
2134
|
+
# resp.slo.burn_rate_configurations[0].look_back_window_minutes #=> Integer
|
2086
2135
|
#
|
2087
2136
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/UpdateServiceLevelObjective AWS API Documentation
|
2088
2137
|
#
|
@@ -2111,7 +2160,7 @@ module Aws::ApplicationSignals
|
|
2111
2160
|
tracer: tracer
|
2112
2161
|
)
|
2113
2162
|
context[:gem_name] = 'aws-sdk-applicationsignals'
|
2114
|
-
context[:gem_version] = '1.
|
2163
|
+
context[:gem_version] = '1.14.0'
|
2115
2164
|
Seahorse::Client::Request.new(handlers, context)
|
2116
2165
|
end
|
2117
2166
|
|
@@ -26,6 +26,9 @@ module Aws::ApplicationSignals
|
|
26
26
|
BatchGetServiceLevelObjectiveBudgetReportOutput = Shapes::StructureShape.new(name: 'BatchGetServiceLevelObjectiveBudgetReportOutput')
|
27
27
|
BudgetRequestsRemaining = Shapes::IntegerShape.new(name: 'BudgetRequestsRemaining')
|
28
28
|
BudgetSecondsRemaining = Shapes::IntegerShape.new(name: 'BudgetSecondsRemaining')
|
29
|
+
BurnRateConfiguration = Shapes::StructureShape.new(name: 'BurnRateConfiguration')
|
30
|
+
BurnRateConfigurations = Shapes::ListShape.new(name: 'BurnRateConfigurations')
|
31
|
+
BurnRateLookBackWindowMinutes = Shapes::IntegerShape.new(name: 'BurnRateLookBackWindowMinutes')
|
29
32
|
CalendarInterval = Shapes::StructureShape.new(name: 'CalendarInterval')
|
30
33
|
CalendarIntervalDuration = Shapes::IntegerShape.new(name: 'CalendarIntervalDuration')
|
31
34
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
@@ -171,6 +174,11 @@ module Aws::ApplicationSignals
|
|
171
174
|
BatchGetServiceLevelObjectiveBudgetReportOutput.add_member(:errors, Shapes::ShapeRef.new(shape: ServiceLevelObjectiveBudgetReportErrors, required: true, location_name: "Errors"))
|
172
175
|
BatchGetServiceLevelObjectiveBudgetReportOutput.struct_class = Types::BatchGetServiceLevelObjectiveBudgetReportOutput
|
173
176
|
|
177
|
+
BurnRateConfiguration.add_member(:look_back_window_minutes, Shapes::ShapeRef.new(shape: BurnRateLookBackWindowMinutes, required: true, location_name: "LookBackWindowMinutes"))
|
178
|
+
BurnRateConfiguration.struct_class = Types::BurnRateConfiguration
|
179
|
+
|
180
|
+
BurnRateConfigurations.member = Shapes::ShapeRef.new(shape: BurnRateConfiguration)
|
181
|
+
|
174
182
|
CalendarInterval.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "StartTime"))
|
175
183
|
CalendarInterval.add_member(:duration_unit, Shapes::ShapeRef.new(shape: DurationUnit, required: true, location_name: "DurationUnit"))
|
176
184
|
CalendarInterval.add_member(:duration, Shapes::ShapeRef.new(shape: CalendarIntervalDuration, required: true, location_name: "Duration"))
|
@@ -185,6 +193,7 @@ module Aws::ApplicationSignals
|
|
185
193
|
CreateServiceLevelObjectiveInput.add_member(:request_based_sli_config, Shapes::ShapeRef.new(shape: RequestBasedServiceLevelIndicatorConfig, location_name: "RequestBasedSliConfig"))
|
186
194
|
CreateServiceLevelObjectiveInput.add_member(:goal, Shapes::ShapeRef.new(shape: Goal, location_name: "Goal"))
|
187
195
|
CreateServiceLevelObjectiveInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
196
|
+
CreateServiceLevelObjectiveInput.add_member(:burn_rate_configurations, Shapes::ShapeRef.new(shape: BurnRateConfigurations, location_name: "BurnRateConfigurations"))
|
188
197
|
CreateServiceLevelObjectiveInput.struct_class = Types::CreateServiceLevelObjectiveInput
|
189
198
|
|
190
199
|
CreateServiceLevelObjectiveOutput.add_member(:slo, Shapes::ShapeRef.new(shape: ServiceLevelObjective, required: true, location_name: "Slo"))
|
@@ -426,6 +435,7 @@ module Aws::ApplicationSignals
|
|
426
435
|
ServiceLevelObjective.add_member(:request_based_sli, Shapes::ShapeRef.new(shape: RequestBasedServiceLevelIndicator, location_name: "RequestBasedSli"))
|
427
436
|
ServiceLevelObjective.add_member(:evaluation_type, Shapes::ShapeRef.new(shape: EvaluationType, location_name: "EvaluationType"))
|
428
437
|
ServiceLevelObjective.add_member(:goal, Shapes::ShapeRef.new(shape: Goal, required: true, location_name: "Goal"))
|
438
|
+
ServiceLevelObjective.add_member(:burn_rate_configurations, Shapes::ShapeRef.new(shape: BurnRateConfigurations, location_name: "BurnRateConfigurations"))
|
429
439
|
ServiceLevelObjective.struct_class = Types::ServiceLevelObjective
|
430
440
|
|
431
441
|
ServiceLevelObjectiveBudgetReport.add_member(:arn, Shapes::ShapeRef.new(shape: ServiceLevelObjectiveArn, required: true, location_name: "Arn"))
|
@@ -511,6 +521,7 @@ module Aws::ApplicationSignals
|
|
511
521
|
UpdateServiceLevelObjectiveInput.add_member(:sli_config, Shapes::ShapeRef.new(shape: ServiceLevelIndicatorConfig, location_name: "SliConfig"))
|
512
522
|
UpdateServiceLevelObjectiveInput.add_member(:request_based_sli_config, Shapes::ShapeRef.new(shape: RequestBasedServiceLevelIndicatorConfig, location_name: "RequestBasedSliConfig"))
|
513
523
|
UpdateServiceLevelObjectiveInput.add_member(:goal, Shapes::ShapeRef.new(shape: Goal, location_name: "Goal"))
|
524
|
+
UpdateServiceLevelObjectiveInput.add_member(:burn_rate_configurations, Shapes::ShapeRef.new(shape: BurnRateConfigurations, location_name: "BurnRateConfigurations"))
|
514
525
|
UpdateServiceLevelObjectiveInput.struct_class = Types::UpdateServiceLevelObjectiveInput
|
515
526
|
|
516
527
|
UpdateServiceLevelObjectiveOutput.add_member(:slo, Shapes::ShapeRef.new(shape: ServiceLevelObjective, required: true, location_name: "Slo"))
|
@@ -67,6 +67,36 @@ module Aws::ApplicationSignals
|
|
67
67
|
include Aws::Structure
|
68
68
|
end
|
69
69
|
|
70
|
+
# This object defines the length of the look-back window used to
|
71
|
+
# calculate one burn rate metric for this SLO. The burn rate measures
|
72
|
+
# how fast the service is consuming the error budget, relative to the
|
73
|
+
# attainment goal of the SLO. A burn rate of exactly 1 indicates that
|
74
|
+
# the SLO goal will be met exactly.
|
75
|
+
#
|
76
|
+
# For example, if you specify 60 as the number of minutes in the
|
77
|
+
# look-back window, the burn rate is calculated as the following:
|
78
|
+
#
|
79
|
+
# *burn rate = error rate over the look-back window / (1 - attainment
|
80
|
+
# goal percentage)*
|
81
|
+
#
|
82
|
+
# For more information about burn rates, see [Calculate burn rates][1].
|
83
|
+
#
|
84
|
+
#
|
85
|
+
#
|
86
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-ServiceLevelObjectives.html#CloudWatch-ServiceLevelObjectives-burn
|
87
|
+
#
|
88
|
+
# @!attribute [rw] look_back_window_minutes
|
89
|
+
# The number of minutes to use as the look-back window.
|
90
|
+
# @return [Integer]
|
91
|
+
#
|
92
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/BurnRateConfiguration AWS API Documentation
|
93
|
+
#
|
94
|
+
class BurnRateConfiguration < Struct.new(
|
95
|
+
:look_back_window_minutes)
|
96
|
+
SENSITIVE = []
|
97
|
+
include Aws::Structure
|
98
|
+
end
|
99
|
+
|
70
100
|
# If the interval for this service level objective is a calendar
|
71
101
|
# interval, this structure contains the interval specifications.
|
72
102
|
#
|
@@ -157,6 +187,12 @@ module Aws::ApplicationSignals
|
|
157
187
|
# values.
|
158
188
|
# @return [Array<Types::Tag>]
|
159
189
|
#
|
190
|
+
# @!attribute [rw] burn_rate_configurations
|
191
|
+
# Use this array to create *burn rates* for this SLO. Each burn rate
|
192
|
+
# is a metric that indicates how fast the service is consuming the
|
193
|
+
# error budget, relative to the attainment goal of the SLO.
|
194
|
+
# @return [Array<Types::BurnRateConfiguration>]
|
195
|
+
#
|
160
196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/CreateServiceLevelObjectiveInput AWS API Documentation
|
161
197
|
#
|
162
198
|
class CreateServiceLevelObjectiveInput < Struct.new(
|
@@ -165,7 +201,8 @@ module Aws::ApplicationSignals
|
|
165
201
|
:sli_config,
|
166
202
|
:request_based_sli_config,
|
167
203
|
:goal,
|
168
|
-
:tags
|
204
|
+
:tags,
|
205
|
+
:burn_rate_configurations)
|
169
206
|
SENSITIVE = []
|
170
207
|
include Aws::Structure
|
171
208
|
end
|
@@ -1905,6 +1942,13 @@ module Aws::ApplicationSignals
|
|
1905
1942
|
# threshold.
|
1906
1943
|
# @return [Types::Goal]
|
1907
1944
|
#
|
1945
|
+
# @!attribute [rw] burn_rate_configurations
|
1946
|
+
# Each object in this array defines the length of the look-back window
|
1947
|
+
# used to calculate one burn rate metric for this SLO. The burn rate
|
1948
|
+
# measures how fast the service is consuming the error budget,
|
1949
|
+
# relative to the attainment goal of the SLO.
|
1950
|
+
# @return [Array<Types::BurnRateConfiguration>]
|
1951
|
+
#
|
1908
1952
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/ServiceLevelObjective AWS API Documentation
|
1909
1953
|
#
|
1910
1954
|
class ServiceLevelObjective < Struct.new(
|
@@ -1916,7 +1960,8 @@ module Aws::ApplicationSignals
|
|
1916
1960
|
:sli,
|
1917
1961
|
:request_based_sli,
|
1918
1962
|
:evaluation_type,
|
1919
|
-
:goal
|
1963
|
+
:goal,
|
1964
|
+
:burn_rate_configurations)
|
1920
1965
|
SENSITIVE = []
|
1921
1966
|
include Aws::Structure
|
1922
1967
|
end
|
@@ -2401,6 +2446,12 @@ module Aws::ApplicationSignals
|
|
2401
2446
|
# attainment threshold.
|
2402
2447
|
# @return [Types::Goal]
|
2403
2448
|
#
|
2449
|
+
# @!attribute [rw] burn_rate_configurations
|
2450
|
+
# Use this array to create *burn rates* for this SLO. Each burn rate
|
2451
|
+
# is a metric that indicates how fast the service is consuming the
|
2452
|
+
# error budget, relative to the attainment goal of the SLO.
|
2453
|
+
# @return [Array<Types::BurnRateConfiguration>]
|
2454
|
+
#
|
2404
2455
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-signals-2024-04-15/UpdateServiceLevelObjectiveInput AWS API Documentation
|
2405
2456
|
#
|
2406
2457
|
class UpdateServiceLevelObjectiveInput < Struct.new(
|
@@ -2408,7 +2459,8 @@ module Aws::ApplicationSignals
|
|
2408
2459
|
:description,
|
2409
2460
|
:sli_config,
|
2410
2461
|
:request_based_sli_config,
|
2411
|
-
:goal
|
2462
|
+
:goal,
|
2463
|
+
:burn_rate_configurations)
|
2412
2464
|
SENSITIVE = []
|
2413
2465
|
include Aws::Structure
|
2414
2466
|
end
|
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -238,6 +240,11 @@ module Aws
|
|
238
240
|
key: ::String,
|
239
241
|
value: ::String
|
240
242
|
},
|
243
|
+
],
|
244
|
+
?burn_rate_configurations: Array[
|
245
|
+
{
|
246
|
+
look_back_window_minutes: ::Integer
|
247
|
+
},
|
241
248
|
]
|
242
249
|
) -> _CreateServiceLevelObjectiveResponseSuccess
|
243
250
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceLevelObjectiveResponseSuccess
|
@@ -544,7 +551,12 @@ module Aws
|
|
544
551
|
}?,
|
545
552
|
attainment_goal: ::Float?,
|
546
553
|
warning_threshold: ::Float?
|
547
|
-
}
|
554
|
+
},
|
555
|
+
?burn_rate_configurations: Array[
|
556
|
+
{
|
557
|
+
look_back_window_minutes: ::Integer
|
558
|
+
},
|
559
|
+
]
|
548
560
|
) -> _UpdateServiceLevelObjectiveResponseSuccess
|
549
561
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServiceLevelObjectiveResponseSuccess
|
550
562
|
end
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -26,6 +26,11 @@ module Aws::ApplicationSignals
|
|
26
26
|
SENSITIVE: []
|
27
27
|
end
|
28
28
|
|
29
|
+
class BurnRateConfiguration
|
30
|
+
attr_accessor look_back_window_minutes: ::Integer
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
29
34
|
class CalendarInterval
|
30
35
|
attr_accessor start_time: ::Time
|
31
36
|
attr_accessor duration_unit: ("MINUTE" | "HOUR" | "DAY" | "MONTH")
|
@@ -45,6 +50,7 @@ module Aws::ApplicationSignals
|
|
45
50
|
attr_accessor request_based_sli_config: Types::RequestBasedServiceLevelIndicatorConfig
|
46
51
|
attr_accessor goal: Types::Goal
|
47
52
|
attr_accessor tags: ::Array[Types::Tag]
|
53
|
+
attr_accessor burn_rate_configurations: ::Array[Types::BurnRateConfiguration]
|
48
54
|
SENSITIVE: []
|
49
55
|
end
|
50
56
|
|
@@ -363,6 +369,7 @@ module Aws::ApplicationSignals
|
|
363
369
|
attr_accessor request_based_sli: Types::RequestBasedServiceLevelIndicator
|
364
370
|
attr_accessor evaluation_type: ("PeriodBased" | "RequestBased")
|
365
371
|
attr_accessor goal: Types::Goal
|
372
|
+
attr_accessor burn_rate_configurations: ::Array[Types::BurnRateConfiguration]
|
366
373
|
SENSITIVE: []
|
367
374
|
end
|
368
375
|
|
@@ -458,6 +465,7 @@ module Aws::ApplicationSignals
|
|
458
465
|
attr_accessor sli_config: Types::ServiceLevelIndicatorConfig
|
459
466
|
attr_accessor request_based_sli_config: Types::RequestBasedServiceLevelIndicatorConfig
|
460
467
|
attr_accessor goal: Types::Goal
|
468
|
+
attr_accessor burn_rate_configurations: ::Array[Types::BurnRateConfiguration]
|
461
469
|
SENSITIVE: []
|
462
470
|
end
|
463
471
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-applicationsignals
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|