aws-sdk-applicationsignals 1.29.0 → 1.31.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 +81 -93
- data/lib/aws-sdk-applicationsignals/client_api.rb +6 -0
- data/lib/aws-sdk-applicationsignals/endpoint_parameters.rb +3 -3
- data/lib/aws-sdk-applicationsignals/types.rb +241 -253
- data/lib/aws-sdk-applicationsignals.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/types.rbs +8 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 19f9fc9145deb4642fea3edc66f85dc888c31dbe8c3eb24bbdc5ce45106fd827
|
|
4
|
+
data.tar.gz: 4588f22b076f10fabced98a3b5e00fb1ef988cae43fde43da168a23673384555
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f59fefbbab21b7d4defe187169fa63ff9ccb99c8c972a0c2af91c596d2e125f9f10f1dc58705edfce47b6d0d1495c03f117b02664317ae8e337c8c0117d70dd
|
|
7
|
+
data.tar.gz: 9bca175b85bb2394030f971157b921adbffd42d8e02d5bdc5c93ec9b494a080e670bffcbf471c19b4fcc4acf0f12e0396117bc689a15eabb7c27d2e2b001dd5c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.31.0 (2025-10-28)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for CloudWatch Synthetics Canary resources in ListAuditFindings API. This enhancement allows customers to retrieve audit findings specifically for CloudWatch Synthetics canaries and enables service-canary correlation analysis.
|
|
8
|
+
|
|
9
|
+
1.30.0 (2025-10-24)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Update endpoint ruleset parameters casing
|
|
13
|
+
|
|
4
14
|
1.29.0 (2025-10-21)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.31.0
|
|
@@ -1112,8 +1112,13 @@ module Aws::ApplicationSignals
|
|
|
1112
1112
|
req.send_request(options)
|
|
1113
1113
|
end
|
|
1114
1114
|
|
|
1115
|
-
# Deletes
|
|
1116
|
-
#
|
|
1115
|
+
# Deletes a grouping configuration that defines how services are grouped
|
|
1116
|
+
# and organized in Application Signals. Once deleted, services will no
|
|
1117
|
+
# longer be grouped according to the specified configuration rules.
|
|
1118
|
+
#
|
|
1119
|
+
# This operation is irreversible. After deletion, you must recreate the
|
|
1120
|
+
# grouping configuration if you want to restore the same grouping
|
|
1121
|
+
# behavior.
|
|
1117
1122
|
#
|
|
1118
1123
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1119
1124
|
#
|
|
@@ -1370,72 +1375,41 @@ module Aws::ApplicationSignals
|
|
|
1370
1375
|
req.send_request(options)
|
|
1371
1376
|
end
|
|
1372
1377
|
|
|
1373
|
-
#
|
|
1374
|
-
#
|
|
1375
|
-
#
|
|
1376
|
-
#
|
|
1377
|
-
#
|
|
1378
|
-
#
|
|
1378
|
+
# Retrieves a list of audit findings for Application Signals resources.
|
|
1379
|
+
# Audit findings identify potential issues, misconfigurations, or
|
|
1380
|
+
# compliance violations in your observability setup.
|
|
1381
|
+
#
|
|
1382
|
+
# You can filter findings by time range, auditor type, and target
|
|
1383
|
+
# resources to focus on specific areas of concern. This operation
|
|
1384
|
+
# supports pagination for large result sets.
|
|
1379
1385
|
#
|
|
1380
1386
|
# @option params [required, Time,DateTime,Date,Integer,String] :start_time
|
|
1381
|
-
# The start
|
|
1382
|
-
#
|
|
1383
|
-
#
|
|
1387
|
+
# The start time for the audit findings query. Only findings created on
|
|
1388
|
+
# or after this time will be included in the results. Specify the time
|
|
1389
|
+
# as the number of milliseconds since January 1, 1970, 00:00:00 UTC.
|
|
1384
1390
|
#
|
|
1385
1391
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
|
1386
|
-
# The end
|
|
1387
|
-
#
|
|
1388
|
-
#
|
|
1392
|
+
# The end time for the audit findings query. Only findings created
|
|
1393
|
+
# before this time will be included in the results. Specify the time as
|
|
1394
|
+
# the number of milliseconds since January 1, 1970, 00:00:00 UTC.
|
|
1389
1395
|
#
|
|
1390
1396
|
# @option params [Array<String>] :auditors
|
|
1391
|
-
#
|
|
1392
|
-
# generated by the specified auditors will be returned.
|
|
1393
|
-
#
|
|
1394
|
-
# The following auditors are available for configuration:
|
|
1395
|
-
#
|
|
1396
|
-
# * `slo` - SloAuditor: Identifies SLO violations and detects breached
|
|
1397
|
-
# thresholds during the Assessment phase.
|
|
1398
|
-
#
|
|
1399
|
-
# * `operation_metric` - OperationMetricAuditor: Detects anomalies in
|
|
1400
|
-
# service operation metrics from Application Signals RED metrics
|
|
1401
|
-
# during the Assessment phase
|
|
1402
|
-
#
|
|
1403
|
-
# * `service_quota` - ServiceQuotaAuditor: Monitors resource utilization
|
|
1404
|
-
# against service quotas during the Assessment phase
|
|
1405
|
-
#
|
|
1406
|
-
# * `trace` - TraceAuditor: Performs deep-dive analysis of distributed
|
|
1407
|
-
# traces, correlating traces with breached SLOs or abnormal RED
|
|
1408
|
-
# metrics during the Analysis phase
|
|
1409
|
-
#
|
|
1410
|
-
# * `dependency_metric` - CriticalPathAuditor: Analyzes service
|
|
1411
|
-
# dependency impacts and maps dependency relationships from
|
|
1412
|
-
# Application Signals RED metrics during the Analysis phase
|
|
1413
|
-
#
|
|
1414
|
-
# * `top_contributor` - TopContributorAuditor: Identifies
|
|
1415
|
-
# infrastructure-level contributors to issues by analyzing EMF logs of
|
|
1416
|
-
# Application Signals RED metrics during the Analysis phase
|
|
1417
|
-
#
|
|
1418
|
-
# * `log` - LogAuditor: Extracts insights from application logs,
|
|
1419
|
-
# categorizing error types and ranking severity by frequency during
|
|
1420
|
-
# the Analysis phase
|
|
1421
|
-
#
|
|
1422
|
-
# <note markdown="1"> `InitAuditor` and `Summarizer` auditors are not configurable as they
|
|
1423
|
-
# are automatically triggered during the audit process.
|
|
1424
|
-
#
|
|
1425
|
-
# </note>
|
|
1397
|
+
# An array of auditor names to filter the findings. Only findings
|
|
1398
|
+
# generated by the specified auditors will be returned. When not
|
|
1399
|
+
# specified, findings from all auditors are included except canary.
|
|
1426
1400
|
#
|
|
1427
1401
|
# @option params [required, Array<Types::AuditTarget>] :audit_targets
|
|
1428
|
-
#
|
|
1429
|
-
#
|
|
1430
|
-
#
|
|
1402
|
+
# An array of audit target specifications to filter the findings. Only
|
|
1403
|
+
# findings related to the specified targets (such as specific services,
|
|
1404
|
+
# SLOs, operations or canary) will be returned.
|
|
1431
1405
|
#
|
|
1432
1406
|
# @option params [String] :next_token
|
|
1433
|
-
#
|
|
1434
|
-
#
|
|
1407
|
+
# The token for the next set of results. Use this token to retrieve
|
|
1408
|
+
# additional pages of audit findings when the result set is large.
|
|
1435
1409
|
#
|
|
1436
1410
|
# @option params [Integer] :max_results
|
|
1437
|
-
# The maximum number of audit findings to return in
|
|
1438
|
-
#
|
|
1411
|
+
# The maximum number of audit findings to return in a single request.
|
|
1412
|
+
# Valid range is 1 to 100. If not specified, defaults to 50.
|
|
1439
1413
|
#
|
|
1440
1414
|
# @return [Types::ListAuditFindingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1441
1415
|
#
|
|
@@ -1472,6 +1446,9 @@ module Aws::ApplicationSignals
|
|
|
1472
1446
|
# operation: "String",
|
|
1473
1447
|
# metric_type: "String",
|
|
1474
1448
|
# },
|
|
1449
|
+
# canary: {
|
|
1450
|
+
# canary_name: "String", # required
|
|
1451
|
+
# },
|
|
1475
1452
|
# },
|
|
1476
1453
|
# },
|
|
1477
1454
|
# ],
|
|
@@ -1532,15 +1509,17 @@ module Aws::ApplicationSignals
|
|
|
1532
1509
|
req.send_request(options)
|
|
1533
1510
|
end
|
|
1534
1511
|
|
|
1535
|
-
#
|
|
1536
|
-
#
|
|
1537
|
-
#
|
|
1538
|
-
#
|
|
1539
|
-
#
|
|
1512
|
+
# Retrieves the available grouping attribute definitions that can be
|
|
1513
|
+
# used to create grouping configurations. These definitions specify the
|
|
1514
|
+
# attributes and rules available for organizing services.
|
|
1515
|
+
#
|
|
1516
|
+
# Use this operation to discover what grouping options are available
|
|
1517
|
+
# before creating or updating grouping configurations.
|
|
1540
1518
|
#
|
|
1541
1519
|
# @option params [String] :next_token
|
|
1542
|
-
#
|
|
1543
|
-
#
|
|
1520
|
+
# The token for the next set of results. Use this token to retrieve
|
|
1521
|
+
# additional pages of grouping attribute definitions when the result set
|
|
1522
|
+
# is large.
|
|
1544
1523
|
#
|
|
1545
1524
|
# @return [Types::ListGroupingAttributeDefinitionsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1546
1525
|
#
|
|
@@ -2032,41 +2011,48 @@ module Aws::ApplicationSignals
|
|
|
2032
2011
|
req.send_request(options)
|
|
2033
2012
|
end
|
|
2034
2013
|
|
|
2035
|
-
#
|
|
2036
|
-
#
|
|
2037
|
-
#
|
|
2038
|
-
#
|
|
2014
|
+
# Retrieves the current state information for services monitored by
|
|
2015
|
+
# Application Signals. Service states include health status, recent
|
|
2016
|
+
# change events, and other operational metadata.
|
|
2017
|
+
#
|
|
2018
|
+
# You can filter results by time range, AWS account, and service
|
|
2019
|
+
# attributes to focus on specific services or time periods. This
|
|
2020
|
+
# operation supports pagination and can include data from linked
|
|
2021
|
+
# accounts.
|
|
2039
2022
|
#
|
|
2040
2023
|
# @option params [required, Time,DateTime,Date,Integer,String] :start_time
|
|
2041
|
-
# The start
|
|
2042
|
-
#
|
|
2043
|
-
#
|
|
2024
|
+
# The start time for the service states query. Only service states from
|
|
2025
|
+
# this time onward will be included. Specify the time as the number of
|
|
2026
|
+
# milliseconds since January 1, 1970, 00:00:00 UTC.
|
|
2044
2027
|
#
|
|
2045
2028
|
# @option params [required, Time,DateTime,Date,Integer,String] :end_time
|
|
2046
|
-
# The end
|
|
2047
|
-
#
|
|
2048
|
-
#
|
|
2029
|
+
# The end time for the service states query. Only service states before
|
|
2030
|
+
# this time will be included. Specify the time as the number of
|
|
2031
|
+
# milliseconds since January 1, 1970, 00:00:00 UTC.
|
|
2049
2032
|
#
|
|
2050
2033
|
# @option params [Integer] :max_results
|
|
2051
|
-
# The maximum number of service states to return in
|
|
2052
|
-
#
|
|
2034
|
+
# The maximum number of service states to return in a single request.
|
|
2035
|
+
# Valid range is 1 to 100. If not specified, defaults to 50.
|
|
2053
2036
|
#
|
|
2054
2037
|
# @option params [String] :next_token
|
|
2055
|
-
#
|
|
2056
|
-
#
|
|
2038
|
+
# The token for the next set of results. Use this token to retrieve
|
|
2039
|
+
# additional pages of service states when the result set is large.
|
|
2057
2040
|
#
|
|
2058
2041
|
# @option params [Boolean] :include_linked_accounts
|
|
2059
|
-
#
|
|
2060
|
-
# `true` to include
|
|
2061
|
-
#
|
|
2042
|
+
# Specifies whether to include service states from linked AWS accounts
|
|
2043
|
+
# in the results. Set to `true` to include linked accounts, or `false`
|
|
2044
|
+
# to only include the current account. Defaults to `false`.
|
|
2062
2045
|
#
|
|
2063
2046
|
# @option params [String] :aws_account_id
|
|
2064
|
-
# The
|
|
2065
|
-
#
|
|
2047
|
+
# The AWS account ID to filter service states. If specified, only
|
|
2048
|
+
# service states from this account will be returned. If not specified,
|
|
2049
|
+
# service states from the current account (and linked accounts if
|
|
2050
|
+
# enabled) are returned.
|
|
2066
2051
|
#
|
|
2067
2052
|
# @option params [Array<Types::AttributeFilter>] :attribute_filters
|
|
2068
|
-
#
|
|
2069
|
-
# filter
|
|
2053
|
+
# An array of attribute filters to narrow down the service states
|
|
2054
|
+
# returned. Each filter specifies an attribute name and the values to
|
|
2055
|
+
# match against.
|
|
2070
2056
|
#
|
|
2071
2057
|
# @return [Types::ListServiceStatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2072
2058
|
#
|
|
@@ -2256,17 +2242,19 @@ module Aws::ApplicationSignals
|
|
|
2256
2242
|
req.send_request(options)
|
|
2257
2243
|
end
|
|
2258
2244
|
|
|
2259
|
-
# Creates or updates
|
|
2260
|
-
#
|
|
2261
|
-
#
|
|
2262
|
-
#
|
|
2263
|
-
#
|
|
2264
|
-
#
|
|
2245
|
+
# Creates or updates a grouping configuration that defines how services
|
|
2246
|
+
# are organized and grouped in Application Signals dashboards and
|
|
2247
|
+
# service maps.
|
|
2248
|
+
#
|
|
2249
|
+
# Grouping configurations allow you to logically organize services based
|
|
2250
|
+
# on attributes such as environment, team ownership, or business
|
|
2251
|
+
# function, making it easier to monitor and manage related services
|
|
2252
|
+
# together.
|
|
2265
2253
|
#
|
|
2266
2254
|
# @option params [required, Array<Types::GroupingAttributeDefinition>] :grouping_attribute_definitions
|
|
2267
2255
|
# An array of grouping attribute definitions that specify how services
|
|
2268
|
-
# should be grouped. Each definition includes
|
|
2269
|
-
# keys
|
|
2256
|
+
# should be grouped. Each definition includes the grouping name, source
|
|
2257
|
+
# keys, and default values.
|
|
2270
2258
|
#
|
|
2271
2259
|
# @return [Types::PutGroupingConfigurationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2272
2260
|
#
|
|
@@ -2763,7 +2751,7 @@ module Aws::ApplicationSignals
|
|
|
2763
2751
|
tracer: tracer
|
|
2764
2752
|
)
|
|
2765
2753
|
context[:gem_name] = 'aws-sdk-applicationsignals'
|
|
2766
|
-
context[:gem_version] = '1.
|
|
2754
|
+
context[:gem_version] = '1.31.0'
|
|
2767
2755
|
Seahorse::Client::Request.new(handlers, context)
|
|
2768
2756
|
end
|
|
2769
2757
|
|
|
@@ -51,6 +51,7 @@ module Aws::ApplicationSignals
|
|
|
51
51
|
BurnRateLookBackWindowMinutes = Shapes::IntegerShape.new(name: 'BurnRateLookBackWindowMinutes')
|
|
52
52
|
CalendarInterval = Shapes::StructureShape.new(name: 'CalendarInterval')
|
|
53
53
|
CalendarIntervalDuration = Shapes::IntegerShape.new(name: 'CalendarIntervalDuration')
|
|
54
|
+
CanaryEntity = Shapes::StructureShape.new(name: 'CanaryEntity')
|
|
54
55
|
ChangeEvent = Shapes::StructureShape.new(name: 'ChangeEvent')
|
|
55
56
|
ChangeEventType = Shapes::StringShape.new(name: 'ChangeEventType')
|
|
56
57
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
@@ -264,10 +265,12 @@ module Aws::ApplicationSignals
|
|
|
264
265
|
AuditTargetEntity.add_member(:service, Shapes::ShapeRef.new(shape: ServiceEntity, location_name: "Service"))
|
|
265
266
|
AuditTargetEntity.add_member(:slo, Shapes::ShapeRef.new(shape: ServiceLevelObjectiveEntity, location_name: "Slo"))
|
|
266
267
|
AuditTargetEntity.add_member(:service_operation, Shapes::ShapeRef.new(shape: ServiceOperationEntity, location_name: "ServiceOperation"))
|
|
268
|
+
AuditTargetEntity.add_member(:canary, Shapes::ShapeRef.new(shape: CanaryEntity, location_name: "Canary"))
|
|
267
269
|
AuditTargetEntity.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
268
270
|
AuditTargetEntity.add_member_subclass(:service, Types::AuditTargetEntity::Service)
|
|
269
271
|
AuditTargetEntity.add_member_subclass(:slo, Types::AuditTargetEntity::Slo)
|
|
270
272
|
AuditTargetEntity.add_member_subclass(:service_operation, Types::AuditTargetEntity::ServiceOperation)
|
|
273
|
+
AuditTargetEntity.add_member_subclass(:canary, Types::AuditTargetEntity::Canary)
|
|
271
274
|
AuditTargetEntity.add_member_subclass(:unknown, Types::AuditTargetEntity::Unknown)
|
|
272
275
|
AuditTargetEntity.struct_class = Types::AuditTargetEntity
|
|
273
276
|
|
|
@@ -317,6 +320,9 @@ module Aws::ApplicationSignals
|
|
|
317
320
|
CalendarInterval.add_member(:duration, Shapes::ShapeRef.new(shape: CalendarIntervalDuration, required: true, location_name: "Duration"))
|
|
318
321
|
CalendarInterval.struct_class = Types::CalendarInterval
|
|
319
322
|
|
|
323
|
+
CanaryEntity.add_member(:canary_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CanaryName"))
|
|
324
|
+
CanaryEntity.struct_class = Types::CanaryEntity
|
|
325
|
+
|
|
320
326
|
ChangeEvent.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "Timestamp"))
|
|
321
327
|
ChangeEvent.add_member(:account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location_name: "AccountId"))
|
|
322
328
|
ChangeEvent.add_member(:region, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Region"))
|
|
@@ -13,17 +13,17 @@ module Aws::ApplicationSignals
|
|
|
13
13
|
# @!attribute use_fips
|
|
14
14
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
|
15
15
|
#
|
|
16
|
-
# @return [
|
|
16
|
+
# @return [boolean]
|
|
17
17
|
#
|
|
18
18
|
# @!attribute endpoint
|
|
19
19
|
# Override the endpoint used to send this request
|
|
20
20
|
#
|
|
21
|
-
# @return [
|
|
21
|
+
# @return [string]
|
|
22
22
|
#
|
|
23
23
|
# @!attribute region
|
|
24
24
|
# The AWS region used to dispatch the request.
|
|
25
25
|
#
|
|
26
|
-
# @return [
|
|
26
|
+
# @return [string]
|
|
27
27
|
#
|
|
28
28
|
EndpointParameters = Struct.new(
|
|
29
29
|
:use_fips,
|