aws-sdk-xray 1.40.0 → 1.44.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-xray/client.rb +54 -33
- data/lib/aws-sdk-xray/types.rb +94 -61
- data/lib/aws-sdk-xray.rb +1 -1
- 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: e1436f60432c454e155680e7598880df8b9a615cc810f07670b3e1e2cc4fabc5
|
|
4
|
+
data.tar.gz: 3f14ba74165621079c6ce9fefc6733745293f8789b3ad4e33c5e7c90b6660aa6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 595678661df419cd12ad23961929689a2b05dc8a773cfc868f77813c0f6e538183781bbd925aa6173e14d3770b4b998874f3cb4f6704569a84574b4bc89d4dc3
|
|
7
|
+
data.tar.gz: 44217f9c67da983e9008dc8ff279bb4ac180cd59ea7f54e9b91e6c9a822bd52cb5595db8911dc73a1d5894c352fe6c64e8da3b93e457e095c17ec6bfa725d85d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.44.0 (2021-11-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.43.0 (2021-11-04)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.42.0 (2021-10-18)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.41.0 (2021-09-07)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Updated references to AWS KMS keys and customer managed keys to reflect current terminology.
|
|
23
|
+
|
|
4
24
|
1.40.0 (2021-09-01)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.44.0
|
data/lib/aws-sdk-xray/client.rb
CHANGED
|
@@ -119,7 +119,9 @@ module Aws::XRay
|
|
|
119
119
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
120
|
# are very aggressive. Construct and pass an instance of
|
|
121
121
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
-
# enable retries and extended timeouts.
|
|
122
|
+
# enable retries and extended timeouts. Instance profile credential
|
|
123
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
|
124
|
+
# to true.
|
|
123
125
|
#
|
|
124
126
|
# @option options [required, String] :region
|
|
125
127
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -275,6 +277,15 @@ module Aws::XRay
|
|
|
275
277
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
276
278
|
# requests are made, and retries are disabled.
|
|
277
279
|
#
|
|
280
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
|
281
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
|
282
|
+
# will be used if available.
|
|
283
|
+
#
|
|
284
|
+
# @option options [Boolean] :use_fips_endpoint
|
|
285
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
|
286
|
+
# When a `fips` region is used, the region is normalized and this config
|
|
287
|
+
# is set to `true`.
|
|
288
|
+
#
|
|
278
289
|
# @option options [Boolean] :validate_params (true)
|
|
279
290
|
# When `true`, request parameters are validated before
|
|
280
291
|
# sending the request.
|
|
@@ -396,7 +407,8 @@ module Aws::XRay
|
|
|
396
407
|
# @option params [Array<Types::Tag>] :tags
|
|
397
408
|
# A map that contains one or more tag keys and tag values to attach to
|
|
398
409
|
# an X-Ray group. For more information about ways to use tags, see
|
|
399
|
-
# [Tagging
|
|
410
|
+
# [Tagging Amazon Web Services resources][1] in the *Amazon Web Services
|
|
411
|
+
# General Reference*.
|
|
400
412
|
#
|
|
401
413
|
# The following restrictions apply to tags:
|
|
402
414
|
#
|
|
@@ -411,7 +423,8 @@ module Aws::XRay
|
|
|
411
423
|
#
|
|
412
424
|
# * Tag keys and values are case sensitive.
|
|
413
425
|
#
|
|
414
|
-
# * Don't use `aws:` as a prefix for keys; it's reserved for
|
|
426
|
+
# * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
|
|
427
|
+
# Web Services use.
|
|
415
428
|
#
|
|
416
429
|
#
|
|
417
430
|
#
|
|
@@ -456,21 +469,27 @@ module Aws::XRay
|
|
|
456
469
|
end
|
|
457
470
|
|
|
458
471
|
# Creates a rule to control sampling behavior for instrumented
|
|
459
|
-
# applications. Services retrieve rules with GetSamplingRules, and
|
|
472
|
+
# applications. Services retrieve rules with [GetSamplingRules][1], and
|
|
460
473
|
# evaluate each rule in ascending order of *priority* for each request.
|
|
461
474
|
# If a rule matches, the service records a trace, borrowing it from the
|
|
462
475
|
# reservoir size. After 10 seconds, the service reports back to X-Ray
|
|
463
|
-
# with GetSamplingTargets to get updated versions of each in-use
|
|
464
|
-
# The updated rule contains a trace quota that the service can use
|
|
476
|
+
# with [GetSamplingTargets][2] to get updated versions of each in-use
|
|
477
|
+
# rule. The updated rule contains a trace quota that the service can use
|
|
465
478
|
# instead of borrowing from the reservoir.
|
|
466
479
|
#
|
|
480
|
+
#
|
|
481
|
+
#
|
|
482
|
+
# [1]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingRules.html
|
|
483
|
+
# [2]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html
|
|
484
|
+
#
|
|
467
485
|
# @option params [required, Types::SamplingRule] :sampling_rule
|
|
468
486
|
# The rule definition.
|
|
469
487
|
#
|
|
470
488
|
# @option params [Array<Types::Tag>] :tags
|
|
471
489
|
# A map that contains one or more tag keys and tag values to attach to
|
|
472
490
|
# an X-Ray sampling rule. For more information about ways to use tags,
|
|
473
|
-
# see [Tagging
|
|
491
|
+
# see [Tagging Amazon Web Services resources][1] in the *Amazon Web
|
|
492
|
+
# Services General Reference*.
|
|
474
493
|
#
|
|
475
494
|
# The following restrictions apply to tags:
|
|
476
495
|
#
|
|
@@ -485,7 +504,8 @@ module Aws::XRay
|
|
|
485
504
|
#
|
|
486
505
|
# * Tag keys and values are case sensitive.
|
|
487
506
|
#
|
|
488
|
-
# * Don't use `aws:` as a prefix for keys; it's reserved for
|
|
507
|
+
# * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
|
|
508
|
+
# Web Services use.
|
|
489
509
|
#
|
|
490
510
|
#
|
|
491
511
|
#
|
|
@@ -1130,9 +1150,9 @@ module Aws::XRay
|
|
|
1130
1150
|
# Retrieves a document that describes services that process incoming
|
|
1131
1151
|
# requests, and downstream services that they call as a result. Root
|
|
1132
1152
|
# services process incoming requests and make calls to downstream
|
|
1133
|
-
# services. Root services are applications that use the [
|
|
1134
|
-
# SDK][1]. Downstream services can be other applications,
|
|
1135
|
-
# HTTP web APIs, or SQL databases.
|
|
1153
|
+
# services. Root services are applications that use the [Amazon Web
|
|
1154
|
+
# Services X-Ray SDK][1]. Downstream services can be other applications,
|
|
1155
|
+
# Amazon Web Services resources, HTTP web APIs, or SQL databases.
|
|
1136
1156
|
#
|
|
1137
1157
|
#
|
|
1138
1158
|
#
|
|
@@ -1422,8 +1442,8 @@ module Aws::XRay
|
|
|
1422
1442
|
# `annotation.account = "12345"`
|
|
1423
1443
|
#
|
|
1424
1444
|
# For a full list of indexed fields and keywords that you can use in
|
|
1425
|
-
# filter expressions, see [Using Filter Expressions][1] in the *
|
|
1426
|
-
# X-Ray Developer Guide*.
|
|
1445
|
+
# filter expressions, see [Using Filter Expressions][1] in the *Amazon
|
|
1446
|
+
# Web Services X-Ray Developer Guide*.
|
|
1427
1447
|
#
|
|
1428
1448
|
#
|
|
1429
1449
|
#
|
|
@@ -1587,8 +1607,8 @@ module Aws::XRay
|
|
|
1587
1607
|
req.send_request(options)
|
|
1588
1608
|
end
|
|
1589
1609
|
|
|
1590
|
-
# Returns a list of tags that are applied to the specified
|
|
1591
|
-
# group or sampling rule.
|
|
1610
|
+
# Returns a list of tags that are applied to the specified Amazon Web
|
|
1611
|
+
# Services X-Ray group or sampling rule.
|
|
1592
1612
|
#
|
|
1593
1613
|
# @option params [required, String] :resource_arn
|
|
1594
1614
|
# The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
|
|
@@ -1629,13 +1649,13 @@ module Aws::XRay
|
|
|
1629
1649
|
# Updates the encryption configuration for X-Ray data.
|
|
1630
1650
|
#
|
|
1631
1651
|
# @option params [String] :key_id
|
|
1632
|
-
# An
|
|
1652
|
+
# An Amazon Web Services KMS key in one of the following formats:
|
|
1633
1653
|
#
|
|
1634
1654
|
# * **Alias** - The name of the key. For example, `alias/MyKey`.
|
|
1635
1655
|
#
|
|
1636
1656
|
# * **Key ID** - The KMS key ID of the key. For example,
|
|
1637
|
-
# `ae4aa6d49-a4d8-9df9-a475-4ff6d7898456`.
|
|
1638
|
-
# asymmetric
|
|
1657
|
+
# `ae4aa6d49-a4d8-9df9-a475-4ff6d7898456`. Amazon Web Services X-Ray
|
|
1658
|
+
# does not support asymmetric KMS keys.
|
|
1639
1659
|
#
|
|
1640
1660
|
# * **ARN** - The full Amazon Resource Name of the key ID or alias. For
|
|
1641
1661
|
# example,
|
|
@@ -1674,7 +1694,7 @@ module Aws::XRay
|
|
|
1674
1694
|
req.send_request(options)
|
|
1675
1695
|
end
|
|
1676
1696
|
|
|
1677
|
-
# Used by the
|
|
1697
|
+
# Used by the Amazon Web Services X-Ray daemon to upload telemetry.
|
|
1678
1698
|
#
|
|
1679
1699
|
# @option params [required, Array<Types::TelemetryRecord>] :telemetry_records
|
|
1680
1700
|
#
|
|
@@ -1720,14 +1740,14 @@ module Aws::XRay
|
|
|
1720
1740
|
req.send_request(options)
|
|
1721
1741
|
end
|
|
1722
1742
|
|
|
1723
|
-
# Uploads segment documents to
|
|
1724
|
-
# segment documents and sends them to the X-Ray
|
|
1725
|
-
# them in batches. A segment document can be a
|
|
1726
|
-
# in-progress segment, or an array of subsegments.
|
|
1743
|
+
# Uploads segment documents to Amazon Web Services X-Ray. The [X-Ray
|
|
1744
|
+
# SDK][1] generates segment documents and sends them to the X-Ray
|
|
1745
|
+
# daemon, which uploads them in batches. A segment document can be a
|
|
1746
|
+
# completed segment, an in-progress segment, or an array of subsegments.
|
|
1727
1747
|
#
|
|
1728
1748
|
# Segments must include the following fields. For the full segment
|
|
1729
|
-
# document schema, see [
|
|
1730
|
-
# X-Ray Developer Guide*.
|
|
1749
|
+
# document schema, see [Amazon Web Services X-Ray Segment Documents][2]
|
|
1750
|
+
# in the *Amazon Web Services X-Ray Developer Guide*.
|
|
1731
1751
|
#
|
|
1732
1752
|
# **Required segment document fields**
|
|
1733
1753
|
#
|
|
@@ -1803,7 +1823,8 @@ module Aws::XRay
|
|
|
1803
1823
|
req.send_request(options)
|
|
1804
1824
|
end
|
|
1805
1825
|
|
|
1806
|
-
# Applies tags to an existing
|
|
1826
|
+
# Applies tags to an existing Amazon Web Services X-Ray group or
|
|
1827
|
+
# sampling rule.
|
|
1807
1828
|
#
|
|
1808
1829
|
# @option params [required, String] :resource_arn
|
|
1809
1830
|
# The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
|
|
@@ -1811,8 +1832,8 @@ module Aws::XRay
|
|
|
1811
1832
|
# @option params [required, Array<Types::Tag>] :tags
|
|
1812
1833
|
# A map that contains one or more tag keys and tag values to attach to
|
|
1813
1834
|
# an X-Ray group or sampling rule. For more information about ways to
|
|
1814
|
-
# use tags, see [Tagging
|
|
1815
|
-
# Reference*.
|
|
1835
|
+
# use tags, see [Tagging Amazon Web Services resources][1] in the
|
|
1836
|
+
# *Amazon Web Services General Reference*.
|
|
1816
1837
|
#
|
|
1817
1838
|
# The following restrictions apply to tags:
|
|
1818
1839
|
#
|
|
@@ -1827,8 +1848,8 @@ module Aws::XRay
|
|
|
1827
1848
|
#
|
|
1828
1849
|
# * Tag keys and values are case sensitive.
|
|
1829
1850
|
#
|
|
1830
|
-
# * Don't use `aws:` as a prefix for keys; it's reserved for
|
|
1831
|
-
# You cannot edit or delete system tags.
|
|
1851
|
+
# * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
|
|
1852
|
+
# Web Services use. You cannot edit or delete system tags.
|
|
1832
1853
|
#
|
|
1833
1854
|
#
|
|
1834
1855
|
#
|
|
@@ -1857,8 +1878,8 @@ module Aws::XRay
|
|
|
1857
1878
|
req.send_request(options)
|
|
1858
1879
|
end
|
|
1859
1880
|
|
|
1860
|
-
# Removes tags from an
|
|
1861
|
-
# or delete system tags (those with an `aws:` prefix).
|
|
1881
|
+
# Removes tags from an Amazon Web Services X-Ray group or sampling rule.
|
|
1882
|
+
# You cannot edit or delete system tags (those with an `aws:` prefix).
|
|
1862
1883
|
#
|
|
1863
1884
|
# @option params [required, String] :resource_arn
|
|
1864
1885
|
# The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
|
|
@@ -2011,7 +2032,7 @@ module Aws::XRay
|
|
|
2011
2032
|
params: params,
|
|
2012
2033
|
config: config)
|
|
2013
2034
|
context[:gem_name] = 'aws-sdk-xray'
|
|
2014
|
-
context[:gem_version] = '1.
|
|
2035
|
+
context[:gem_version] = '1.44.0'
|
|
2015
2036
|
Seahorse::Client::Request.new(handlers, context)
|
|
2016
2037
|
end
|
|
2017
2038
|
|
data/lib/aws-sdk-xray/types.rb
CHANGED
|
@@ -218,7 +218,8 @@ module Aws::XRay
|
|
|
218
218
|
# @!attribute [rw] tags
|
|
219
219
|
# A map that contains one or more tag keys and tag values to attach to
|
|
220
220
|
# an X-Ray group. For more information about ways to use tags, see
|
|
221
|
-
# [Tagging
|
|
221
|
+
# [Tagging Amazon Web Services resources][1] in the *Amazon Web
|
|
222
|
+
# Services General Reference*.
|
|
222
223
|
#
|
|
223
224
|
# The following restrictions apply to tags:
|
|
224
225
|
#
|
|
@@ -233,8 +234,8 @@ module Aws::XRay
|
|
|
233
234
|
#
|
|
234
235
|
# * Tag keys and values are case sensitive.
|
|
235
236
|
#
|
|
236
|
-
# * Don't use `aws:` as a prefix for keys; it's reserved for
|
|
237
|
-
# use.
|
|
237
|
+
# * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
|
|
238
|
+
# Web Services use.
|
|
238
239
|
#
|
|
239
240
|
#
|
|
240
241
|
#
|
|
@@ -303,7 +304,8 @@ module Aws::XRay
|
|
|
303
304
|
# @!attribute [rw] tags
|
|
304
305
|
# A map that contains one or more tag keys and tag values to attach to
|
|
305
306
|
# an X-Ray sampling rule. For more information about ways to use tags,
|
|
306
|
-
# see [Tagging
|
|
307
|
+
# see [Tagging Amazon Web Services resources][1] in the *Amazon Web
|
|
308
|
+
# Services General Reference*.
|
|
307
309
|
#
|
|
308
310
|
# The following restrictions apply to tags:
|
|
309
311
|
#
|
|
@@ -318,8 +320,8 @@ module Aws::XRay
|
|
|
318
320
|
#
|
|
319
321
|
# * Tag keys and values are case sensitive.
|
|
320
322
|
#
|
|
321
|
-
# * Don't use `aws:` as a prefix for keys; it's reserved for
|
|
322
|
-
# use.
|
|
323
|
+
# * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
|
|
324
|
+
# Web Services use.
|
|
323
325
|
#
|
|
324
326
|
#
|
|
325
327
|
#
|
|
@@ -496,8 +498,7 @@ module Aws::XRay
|
|
|
496
498
|
# settings.
|
|
497
499
|
#
|
|
498
500
|
# @!attribute [rw] key_id
|
|
499
|
-
# The ID of the
|
|
500
|
-
# applicable.
|
|
501
|
+
# The ID of the KMS key used for encryption, if applicable.
|
|
501
502
|
# @return [String]
|
|
502
503
|
#
|
|
503
504
|
# @!attribute [rw] status
|
|
@@ -506,8 +507,8 @@ module Aws::XRay
|
|
|
506
507
|
# @return [String]
|
|
507
508
|
#
|
|
508
509
|
# @!attribute [rw] type
|
|
509
|
-
# The type of encryption. Set to `KMS` for encryption with
|
|
510
|
-
# to `NONE` for default encryption.
|
|
510
|
+
# The type of encryption. Set to `KMS` for encryption with KMS keys.
|
|
511
|
+
# Set to `NONE` for default encryption.
|
|
511
512
|
# @return [String]
|
|
512
513
|
#
|
|
513
514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/EncryptionConfig AWS API Documentation
|
|
@@ -971,7 +972,8 @@ module Aws::XRay
|
|
|
971
972
|
# @return [Time]
|
|
972
973
|
#
|
|
973
974
|
# @!attribute [rw] services
|
|
974
|
-
# The
|
|
975
|
+
# The Amazon Web Services instrumented services related to the
|
|
976
|
+
# insight.
|
|
975
977
|
# @return [Array<Types::InsightImpactGraphService>]
|
|
976
978
|
#
|
|
977
979
|
# @!attribute [rw] next_token
|
|
@@ -1211,13 +1213,21 @@ module Aws::XRay
|
|
|
1211
1213
|
# @!attribute [rw] last_rule_modification
|
|
1212
1214
|
# The last time a user changed the sampling rule configuration. If the
|
|
1213
1215
|
# sampling rule configuration changed since the service last retrieved
|
|
1214
|
-
# it, the service should call GetSamplingRules to get the latest
|
|
1216
|
+
# it, the service should call [GetSamplingRules][1] to get the latest
|
|
1215
1217
|
# version.
|
|
1218
|
+
#
|
|
1219
|
+
#
|
|
1220
|
+
#
|
|
1221
|
+
# [1]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingRules.html
|
|
1216
1222
|
# @return [Time]
|
|
1217
1223
|
#
|
|
1218
1224
|
# @!attribute [rw] unprocessed_statistics
|
|
1219
|
-
# Information about SamplingStatisticsDocument that X-Ray could
|
|
1220
|
-
# process.
|
|
1225
|
+
# Information about [SamplingStatisticsDocument][1] that X-Ray could
|
|
1226
|
+
# not process.
|
|
1227
|
+
#
|
|
1228
|
+
#
|
|
1229
|
+
#
|
|
1230
|
+
# [1]: https://docs.aws.amazon.com/xray/latest/api/API_SamplingStatisticsDocument.html
|
|
1221
1231
|
# @return [Array<Types::UnprocessedStatistics>]
|
|
1222
1232
|
#
|
|
1223
1233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/GetSamplingTargetsResult AWS API Documentation
|
|
@@ -1557,7 +1567,7 @@ module Aws::XRay
|
|
|
1557
1567
|
# * The InsightsEnabled boolean can be set to true to enable insights
|
|
1558
1568
|
# for the group or false to disable insights for the group.
|
|
1559
1569
|
#
|
|
1560
|
-
# * The
|
|
1570
|
+
# * The NotificationsEnabled boolean can be set to true to enable
|
|
1561
1571
|
# insights notifications through Amazon EventBridge for the group.
|
|
1562
1572
|
# @return [Types::InsightsConfiguration]
|
|
1563
1573
|
#
|
|
@@ -1804,18 +1814,18 @@ module Aws::XRay
|
|
|
1804
1814
|
# @!attribute [rw] type
|
|
1805
1815
|
# Identifier for the service. Unique within the service map.
|
|
1806
1816
|
#
|
|
1807
|
-
# *
|
|
1808
|
-
# AWS::EC2::Instance for an application
|
|
1809
|
-
# AWS::DynamoDB::Table for an Amazon
|
|
1810
|
-
# application used.
|
|
1817
|
+
# * Amazon Web Services Resource - The type of an Amazon Web Services
|
|
1818
|
+
# resource. For example, AWS::EC2::Instance for an application
|
|
1819
|
+
# running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon
|
|
1820
|
+
# DynamoDB table that the application used.
|
|
1811
1821
|
#
|
|
1812
|
-
# *
|
|
1813
|
-
# AWS::DynamoDB for downstream calls to Amazon
|
|
1814
|
-
# target a specific table.
|
|
1822
|
+
# * Amazon Web Services Service - The type of an Amazon Web Services
|
|
1823
|
+
# service. For example, AWS::DynamoDB for downstream calls to Amazon
|
|
1824
|
+
# DynamoDB that didn't target a specific table.
|
|
1815
1825
|
#
|
|
1816
|
-
# *
|
|
1817
|
-
# AWS::DynamoDB for downstream calls to Amazon
|
|
1818
|
-
# target a specific table.
|
|
1826
|
+
# * Amazon Web Services Service - The type of an Amazon Web Services
|
|
1827
|
+
# service. For example, AWS::DynamoDB for downstream calls to Amazon
|
|
1828
|
+
# DynamoDB that didn't target a specific table.
|
|
1819
1829
|
#
|
|
1820
1830
|
# * remote - A downstream service of indeterminate type.
|
|
1821
1831
|
# @return [String]
|
|
@@ -1829,7 +1839,8 @@ module Aws::XRay
|
|
|
1829
1839
|
# @return [Array<String>]
|
|
1830
1840
|
#
|
|
1831
1841
|
# @!attribute [rw] account_id
|
|
1832
|
-
# Identifier of the
|
|
1842
|
+
# Identifier of the Amazon Web Services account in which the service
|
|
1843
|
+
# runs.
|
|
1833
1844
|
# @return [String]
|
|
1834
1845
|
#
|
|
1835
1846
|
# @!attribute [rw] edges
|
|
@@ -2042,14 +2053,13 @@ module Aws::XRay
|
|
|
2042
2053
|
# }
|
|
2043
2054
|
#
|
|
2044
2055
|
# @!attribute [rw] key_id
|
|
2045
|
-
# An
|
|
2046
|
-
# formats:
|
|
2056
|
+
# An Amazon Web Services KMS key in one of the following formats:
|
|
2047
2057
|
#
|
|
2048
2058
|
# * **Alias** - The name of the key. For example, `alias/MyKey`.
|
|
2049
2059
|
#
|
|
2050
2060
|
# * **Key ID** - The KMS key ID of the key. For example,
|
|
2051
|
-
# `ae4aa6d49-a4d8-9df9-a475-4ff6d7898456`.
|
|
2052
|
-
# support asymmetric
|
|
2061
|
+
# `ae4aa6d49-a4d8-9df9-a475-4ff6d7898456`. Amazon Web Services X-Ray
|
|
2062
|
+
# does not support asymmetric KMS keys.
|
|
2053
2063
|
#
|
|
2054
2064
|
# * **ARN** - The full Amazon Resource Name of the key ID or alias.
|
|
2055
2065
|
# For example,
|
|
@@ -2381,7 +2391,8 @@ module Aws::XRay
|
|
|
2381
2391
|
# @return [String]
|
|
2382
2392
|
#
|
|
2383
2393
|
# @!attribute [rw] resource_arn
|
|
2384
|
-
# Matches the ARN of the
|
|
2394
|
+
# Matches the ARN of the Amazon Web Services resource on which the
|
|
2395
|
+
# service runs.
|
|
2385
2396
|
# @return [String]
|
|
2386
2397
|
#
|
|
2387
2398
|
# @!attribute [rw] priority
|
|
@@ -2449,7 +2460,11 @@ module Aws::XRay
|
|
|
2449
2460
|
include Aws::Structure
|
|
2450
2461
|
end
|
|
2451
2462
|
|
|
2452
|
-
# A SamplingRule and its metadata.
|
|
2463
|
+
# A [SamplingRule][1] and its metadata.
|
|
2464
|
+
#
|
|
2465
|
+
#
|
|
2466
|
+
#
|
|
2467
|
+
# [1]: https://docs.aws.amazon.com/xray/latest/api/API_SamplingRule.html
|
|
2453
2468
|
#
|
|
2454
2469
|
# @!attribute [rw] sampling_rule
|
|
2455
2470
|
# The sampling rule.
|
|
@@ -2506,7 +2521,8 @@ module Aws::XRay
|
|
|
2506
2521
|
# @return [String]
|
|
2507
2522
|
#
|
|
2508
2523
|
# @!attribute [rw] resource_arn
|
|
2509
|
-
# Matches the ARN of the
|
|
2524
|
+
# Matches the ARN of the Amazon Web Services resource on which the
|
|
2525
|
+
# service runs.
|
|
2510
2526
|
# @return [String]
|
|
2511
2527
|
#
|
|
2512
2528
|
# @!attribute [rw] priority
|
|
@@ -2606,7 +2622,11 @@ module Aws::XRay
|
|
|
2606
2622
|
|
|
2607
2623
|
# Request sampling results for a single rule from a service. Results are
|
|
2608
2624
|
# for the last 10 seconds unless the service has been assigned a longer
|
|
2609
|
-
# reporting interval after a previous call to GetSamplingTargets.
|
|
2625
|
+
# reporting interval after a previous call to [GetSamplingTargets][1].
|
|
2626
|
+
#
|
|
2627
|
+
#
|
|
2628
|
+
#
|
|
2629
|
+
# [1]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html
|
|
2610
2630
|
#
|
|
2611
2631
|
# @note When making an API call, you may pass SamplingStatisticsDocument
|
|
2612
2632
|
# data as a hash:
|
|
@@ -2687,7 +2707,11 @@ module Aws::XRay
|
|
|
2687
2707
|
# Temporary changes to a sampling rule configuration. To meet the global
|
|
2688
2708
|
# sampling target for a rule, X-Ray calculates a new reservoir for each
|
|
2689
2709
|
# service based on the recent sampling results of all services that
|
|
2690
|
-
# called GetSamplingTargets.
|
|
2710
|
+
# called [GetSamplingTargets][1].
|
|
2711
|
+
#
|
|
2712
|
+
#
|
|
2713
|
+
#
|
|
2714
|
+
# [1]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html
|
|
2691
2715
|
#
|
|
2692
2716
|
# @!attribute [rw] rule_name
|
|
2693
2717
|
# The name of the sampling rule.
|
|
@@ -2726,15 +2750,18 @@ module Aws::XRay
|
|
|
2726
2750
|
|
|
2727
2751
|
# A segment from a trace that has been ingested by the X-Ray service.
|
|
2728
2752
|
# The segment can be compiled from documents uploaded with
|
|
2729
|
-
# PutTraceSegments, or an `inferred` segment for a downstream
|
|
2730
|
-
# generated from a subsegment sent by the service that called
|
|
2753
|
+
# [PutTraceSegments][1], or an `inferred` segment for a downstream
|
|
2754
|
+
# service, generated from a subsegment sent by the service that called
|
|
2755
|
+
# it.
|
|
2731
2756
|
#
|
|
2732
|
-
# For the full segment document schema, see [
|
|
2733
|
-
# Documents][
|
|
2757
|
+
# For the full segment document schema, see [Amazon Web Services X-Ray
|
|
2758
|
+
# Segment Documents][2] in the *Amazon Web Services X-Ray Developer
|
|
2759
|
+
# Guide*.
|
|
2734
2760
|
#
|
|
2735
2761
|
#
|
|
2736
2762
|
#
|
|
2737
|
-
# [1]: https://docs.aws.amazon.com/xray/latest/
|
|
2763
|
+
# [1]: https://docs.aws.amazon.com/xray/latest/api/API_PutTraceSegments.html
|
|
2764
|
+
# [2]: https://docs.aws.amazon.com/xray/latest/devguide/xray-api-segmentdocuments.html
|
|
2738
2765
|
#
|
|
2739
2766
|
# @!attribute [rw] id
|
|
2740
2767
|
# The segment's ID.
|
|
@@ -2775,20 +2802,21 @@ module Aws::XRay
|
|
|
2775
2802
|
# @return [Boolean]
|
|
2776
2803
|
#
|
|
2777
2804
|
# @!attribute [rw] account_id
|
|
2778
|
-
# Identifier of the
|
|
2805
|
+
# Identifier of the Amazon Web Services account in which the service
|
|
2806
|
+
# runs.
|
|
2779
2807
|
# @return [String]
|
|
2780
2808
|
#
|
|
2781
2809
|
# @!attribute [rw] type
|
|
2782
2810
|
# The type of service.
|
|
2783
2811
|
#
|
|
2784
|
-
# *
|
|
2785
|
-
# `AWS::EC2::Instance` for an application
|
|
2786
|
-
# `AWS::DynamoDB::Table` for an Amazon
|
|
2787
|
-
# application used.
|
|
2812
|
+
# * Amazon Web Services Resource - The type of an Amazon Web Services
|
|
2813
|
+
# resource. For example, `AWS::EC2::Instance` for an application
|
|
2814
|
+
# running on Amazon EC2 or `AWS::DynamoDB::Table` for an Amazon
|
|
2815
|
+
# DynamoDB table that the application used.
|
|
2788
2816
|
#
|
|
2789
|
-
# *
|
|
2790
|
-
# `AWS::DynamoDB` for downstream calls to
|
|
2791
|
-
# didn't target a specific table.
|
|
2817
|
+
# * Amazon Web Services Service - The type of an Amazon Web Services
|
|
2818
|
+
# service. For example, `AWS::DynamoDB` for downstream calls to
|
|
2819
|
+
# Amazon DynamoDB that didn't target a specific table.
|
|
2792
2820
|
#
|
|
2793
2821
|
# * `client` - Represents the clients that sent requests to a root
|
|
2794
2822
|
# service.
|
|
@@ -2904,9 +2932,10 @@ module Aws::XRay
|
|
|
2904
2932
|
include Aws::Structure
|
|
2905
2933
|
end
|
|
2906
2934
|
|
|
2907
|
-
# A map that contains tag keys and tag values to attach to an
|
|
2908
|
-
# group or sampling rule. For more information about ways
|
|
2909
|
-
# see [Tagging
|
|
2935
|
+
# A map that contains tag keys and tag values to attach to an Amazon Web
|
|
2936
|
+
# Services X-Ray group or sampling rule. For more information about ways
|
|
2937
|
+
# to use tags, see [Tagging Amazon Web Services resources][1] in the
|
|
2938
|
+
# *Amazon Web Services General Reference*.
|
|
2910
2939
|
#
|
|
2911
2940
|
# The following restrictions apply to tags:
|
|
2912
2941
|
#
|
|
@@ -2914,8 +2943,8 @@ module Aws::XRay
|
|
|
2914
2943
|
#
|
|
2915
2944
|
# * Tag keys and values are case sensitive.
|
|
2916
2945
|
#
|
|
2917
|
-
# * Don't use `aws:` as a prefix for keys; it's reserved for
|
|
2918
|
-
# You cannot edit or delete system tags.
|
|
2946
|
+
# * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
|
|
2947
|
+
# Web Services use. You cannot edit or delete system tags.
|
|
2919
2948
|
#
|
|
2920
2949
|
#
|
|
2921
2950
|
#
|
|
@@ -2972,8 +3001,8 @@ module Aws::XRay
|
|
|
2972
3001
|
# @!attribute [rw] tags
|
|
2973
3002
|
# A map that contains one or more tag keys and tag values to attach to
|
|
2974
3003
|
# an X-Ray group or sampling rule. For more information about ways to
|
|
2975
|
-
# use tags, see [Tagging
|
|
2976
|
-
# Reference*.
|
|
3004
|
+
# use tags, see [Tagging Amazon Web Services resources][1] in the
|
|
3005
|
+
# *Amazon Web Services General Reference*.
|
|
2977
3006
|
#
|
|
2978
3007
|
# The following restrictions apply to tags:
|
|
2979
3008
|
#
|
|
@@ -2988,8 +3017,8 @@ module Aws::XRay
|
|
|
2988
3017
|
#
|
|
2989
3018
|
# * Tag keys and values are case sensitive.
|
|
2990
3019
|
#
|
|
2991
|
-
# * Don't use `aws:` as a prefix for keys; it's reserved for
|
|
2992
|
-
# use. You cannot edit or delete system tags.
|
|
3020
|
+
# * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
|
|
3021
|
+
# Web Services use. You cannot edit or delete system tags.
|
|
2993
3022
|
#
|
|
2994
3023
|
#
|
|
2995
3024
|
#
|
|
@@ -3138,8 +3167,8 @@ module Aws::XRay
|
|
|
3138
3167
|
#
|
|
3139
3168
|
# @!attribute [rw] limit_exceeded
|
|
3140
3169
|
# LimitExceeded is set to true when the trace has exceeded one of the
|
|
3141
|
-
# defined quotas. For more information about quotas, see [
|
|
3142
|
-
# endpoints and quotas][1].
|
|
3170
|
+
# defined quotas. For more information about quotas, see [Amazon Web
|
|
3171
|
+
# Services X-Ray endpoints and quotas][1].
|
|
3143
3172
|
#
|
|
3144
3173
|
#
|
|
3145
3174
|
#
|
|
@@ -3302,8 +3331,12 @@ module Aws::XRay
|
|
|
3302
3331
|
include Aws::Structure
|
|
3303
3332
|
end
|
|
3304
3333
|
|
|
3305
|
-
# Sampling statistics from a call to GetSamplingTargets that X-Ray
|
|
3306
|
-
# not process.
|
|
3334
|
+
# Sampling statistics from a call to [GetSamplingTargets][1] that X-Ray
|
|
3335
|
+
# could not process.
|
|
3336
|
+
#
|
|
3337
|
+
#
|
|
3338
|
+
#
|
|
3339
|
+
# [1]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html
|
|
3307
3340
|
#
|
|
3308
3341
|
# @!attribute [rw] rule_name
|
|
3309
3342
|
# The name of the sampling rule.
|
data/lib/aws-sdk-xray.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-xray
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.44.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: 2021-
|
|
11
|
+
date: 2021-11-30 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.122.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.122.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|