aws-sdk-xray 1.40.0 → 1.41.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-xray/client.rb +42 -32
- data/lib/aws-sdk-xray/types.rb +94 -61
- data/lib/aws-sdk-xray.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c84dd5bcc85469ec829a34a8fbc68369ff823948da7945e8353339c31b53ca3
|
|
4
|
+
data.tar.gz: 61aa26f9b774bbadf333e267ee3dd83919778961f2318fcac6ecd06885ff849f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a30d5e928ec49660b15b66001b58aa1b89200a788f54cfaf8d37fc583a2df15478de6e577cc85fbaf0d75424ae6bbb579e5e669f1c2f364605e10f90be7a4381
|
|
7
|
+
data.tar.gz: d5a560cd5e455c1c2fb8938bae6e68ff74353520c5e12d54fc0933c8e333efcbcf706e3133f9578140a8faa81d6f2fdc5bb7696b3291115e39175ef87a3aac10
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.41.0
|
data/lib/aws-sdk-xray/client.rb
CHANGED
|
@@ -396,7 +396,8 @@ module Aws::XRay
|
|
|
396
396
|
# @option params [Array<Types::Tag>] :tags
|
|
397
397
|
# A map that contains one or more tag keys and tag values to attach to
|
|
398
398
|
# an X-Ray group. For more information about ways to use tags, see
|
|
399
|
-
# [Tagging
|
|
399
|
+
# [Tagging Amazon Web Services resources][1] in the *Amazon Web Services
|
|
400
|
+
# General Reference*.
|
|
400
401
|
#
|
|
401
402
|
# The following restrictions apply to tags:
|
|
402
403
|
#
|
|
@@ -411,7 +412,8 @@ module Aws::XRay
|
|
|
411
412
|
#
|
|
412
413
|
# * Tag keys and values are case sensitive.
|
|
413
414
|
#
|
|
414
|
-
# * Don't use `aws:` as a prefix for keys; it's reserved for
|
|
415
|
+
# * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
|
|
416
|
+
# Web Services use.
|
|
415
417
|
#
|
|
416
418
|
#
|
|
417
419
|
#
|
|
@@ -456,21 +458,27 @@ module Aws::XRay
|
|
|
456
458
|
end
|
|
457
459
|
|
|
458
460
|
# Creates a rule to control sampling behavior for instrumented
|
|
459
|
-
# applications. Services retrieve rules with GetSamplingRules, and
|
|
461
|
+
# applications. Services retrieve rules with [GetSamplingRules][1], and
|
|
460
462
|
# evaluate each rule in ascending order of *priority* for each request.
|
|
461
463
|
# If a rule matches, the service records a trace, borrowing it from the
|
|
462
464
|
# 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
|
|
465
|
+
# with [GetSamplingTargets][2] to get updated versions of each in-use
|
|
466
|
+
# rule. The updated rule contains a trace quota that the service can use
|
|
465
467
|
# instead of borrowing from the reservoir.
|
|
466
468
|
#
|
|
469
|
+
#
|
|
470
|
+
#
|
|
471
|
+
# [1]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingRules.html
|
|
472
|
+
# [2]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html
|
|
473
|
+
#
|
|
467
474
|
# @option params [required, Types::SamplingRule] :sampling_rule
|
|
468
475
|
# The rule definition.
|
|
469
476
|
#
|
|
470
477
|
# @option params [Array<Types::Tag>] :tags
|
|
471
478
|
# A map that contains one or more tag keys and tag values to attach to
|
|
472
479
|
# an X-Ray sampling rule. For more information about ways to use tags,
|
|
473
|
-
# see [Tagging
|
|
480
|
+
# see [Tagging Amazon Web Services resources][1] in the *Amazon Web
|
|
481
|
+
# Services General Reference*.
|
|
474
482
|
#
|
|
475
483
|
# The following restrictions apply to tags:
|
|
476
484
|
#
|
|
@@ -485,7 +493,8 @@ module Aws::XRay
|
|
|
485
493
|
#
|
|
486
494
|
# * Tag keys and values are case sensitive.
|
|
487
495
|
#
|
|
488
|
-
# * Don't use `aws:` as a prefix for keys; it's reserved for
|
|
496
|
+
# * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
|
|
497
|
+
# Web Services use.
|
|
489
498
|
#
|
|
490
499
|
#
|
|
491
500
|
#
|
|
@@ -1130,9 +1139,9 @@ module Aws::XRay
|
|
|
1130
1139
|
# Retrieves a document that describes services that process incoming
|
|
1131
1140
|
# requests, and downstream services that they call as a result. Root
|
|
1132
1141
|
# 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.
|
|
1142
|
+
# services. Root services are applications that use the [Amazon Web
|
|
1143
|
+
# Services X-Ray SDK][1]. Downstream services can be other applications,
|
|
1144
|
+
# Amazon Web Services resources, HTTP web APIs, or SQL databases.
|
|
1136
1145
|
#
|
|
1137
1146
|
#
|
|
1138
1147
|
#
|
|
@@ -1422,8 +1431,8 @@ module Aws::XRay
|
|
|
1422
1431
|
# `annotation.account = "12345"`
|
|
1423
1432
|
#
|
|
1424
1433
|
# 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*.
|
|
1434
|
+
# filter expressions, see [Using Filter Expressions][1] in the *Amazon
|
|
1435
|
+
# Web Services X-Ray Developer Guide*.
|
|
1427
1436
|
#
|
|
1428
1437
|
#
|
|
1429
1438
|
#
|
|
@@ -1587,8 +1596,8 @@ module Aws::XRay
|
|
|
1587
1596
|
req.send_request(options)
|
|
1588
1597
|
end
|
|
1589
1598
|
|
|
1590
|
-
# Returns a list of tags that are applied to the specified
|
|
1591
|
-
# group or sampling rule.
|
|
1599
|
+
# Returns a list of tags that are applied to the specified Amazon Web
|
|
1600
|
+
# Services X-Ray group or sampling rule.
|
|
1592
1601
|
#
|
|
1593
1602
|
# @option params [required, String] :resource_arn
|
|
1594
1603
|
# The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
|
|
@@ -1629,13 +1638,13 @@ module Aws::XRay
|
|
|
1629
1638
|
# Updates the encryption configuration for X-Ray data.
|
|
1630
1639
|
#
|
|
1631
1640
|
# @option params [String] :key_id
|
|
1632
|
-
# An
|
|
1641
|
+
# An Amazon Web Services KMS key in one of the following formats:
|
|
1633
1642
|
#
|
|
1634
1643
|
# * **Alias** - The name of the key. For example, `alias/MyKey`.
|
|
1635
1644
|
#
|
|
1636
1645
|
# * **Key ID** - The KMS key ID of the key. For example,
|
|
1637
|
-
# `ae4aa6d49-a4d8-9df9-a475-4ff6d7898456`.
|
|
1638
|
-
# asymmetric
|
|
1646
|
+
# `ae4aa6d49-a4d8-9df9-a475-4ff6d7898456`. Amazon Web Services X-Ray
|
|
1647
|
+
# does not support asymmetric KMS keys.
|
|
1639
1648
|
#
|
|
1640
1649
|
# * **ARN** - The full Amazon Resource Name of the key ID or alias. For
|
|
1641
1650
|
# example,
|
|
@@ -1674,7 +1683,7 @@ module Aws::XRay
|
|
|
1674
1683
|
req.send_request(options)
|
|
1675
1684
|
end
|
|
1676
1685
|
|
|
1677
|
-
# Used by the
|
|
1686
|
+
# Used by the Amazon Web Services X-Ray daemon to upload telemetry.
|
|
1678
1687
|
#
|
|
1679
1688
|
# @option params [required, Array<Types::TelemetryRecord>] :telemetry_records
|
|
1680
1689
|
#
|
|
@@ -1720,14 +1729,14 @@ module Aws::XRay
|
|
|
1720
1729
|
req.send_request(options)
|
|
1721
1730
|
end
|
|
1722
1731
|
|
|
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.
|
|
1732
|
+
# Uploads segment documents to Amazon Web Services X-Ray. The [X-Ray
|
|
1733
|
+
# SDK][1] generates segment documents and sends them to the X-Ray
|
|
1734
|
+
# daemon, which uploads them in batches. A segment document can be a
|
|
1735
|
+
# completed segment, an in-progress segment, or an array of subsegments.
|
|
1727
1736
|
#
|
|
1728
1737
|
# Segments must include the following fields. For the full segment
|
|
1729
|
-
# document schema, see [
|
|
1730
|
-
# X-Ray Developer Guide*.
|
|
1738
|
+
# document schema, see [Amazon Web Services X-Ray Segment Documents][2]
|
|
1739
|
+
# in the *Amazon Web Services X-Ray Developer Guide*.
|
|
1731
1740
|
#
|
|
1732
1741
|
# **Required segment document fields**
|
|
1733
1742
|
#
|
|
@@ -1803,7 +1812,8 @@ module Aws::XRay
|
|
|
1803
1812
|
req.send_request(options)
|
|
1804
1813
|
end
|
|
1805
1814
|
|
|
1806
|
-
# Applies tags to an existing
|
|
1815
|
+
# Applies tags to an existing Amazon Web Services X-Ray group or
|
|
1816
|
+
# sampling rule.
|
|
1807
1817
|
#
|
|
1808
1818
|
# @option params [required, String] :resource_arn
|
|
1809
1819
|
# The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
|
|
@@ -1811,8 +1821,8 @@ module Aws::XRay
|
|
|
1811
1821
|
# @option params [required, Array<Types::Tag>] :tags
|
|
1812
1822
|
# A map that contains one or more tag keys and tag values to attach to
|
|
1813
1823
|
# an X-Ray group or sampling rule. For more information about ways to
|
|
1814
|
-
# use tags, see [Tagging
|
|
1815
|
-
# Reference*.
|
|
1824
|
+
# use tags, see [Tagging Amazon Web Services resources][1] in the
|
|
1825
|
+
# *Amazon Web Services General Reference*.
|
|
1816
1826
|
#
|
|
1817
1827
|
# The following restrictions apply to tags:
|
|
1818
1828
|
#
|
|
@@ -1827,8 +1837,8 @@ module Aws::XRay
|
|
|
1827
1837
|
#
|
|
1828
1838
|
# * Tag keys and values are case sensitive.
|
|
1829
1839
|
#
|
|
1830
|
-
# * Don't use `aws:` as a prefix for keys; it's reserved for
|
|
1831
|
-
# You cannot edit or delete system tags.
|
|
1840
|
+
# * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
|
|
1841
|
+
# Web Services use. You cannot edit or delete system tags.
|
|
1832
1842
|
#
|
|
1833
1843
|
#
|
|
1834
1844
|
#
|
|
@@ -1857,8 +1867,8 @@ module Aws::XRay
|
|
|
1857
1867
|
req.send_request(options)
|
|
1858
1868
|
end
|
|
1859
1869
|
|
|
1860
|
-
# Removes tags from an
|
|
1861
|
-
# or delete system tags (those with an `aws:` prefix).
|
|
1870
|
+
# Removes tags from an Amazon Web Services X-Ray group or sampling rule.
|
|
1871
|
+
# You cannot edit or delete system tags (those with an `aws:` prefix).
|
|
1862
1872
|
#
|
|
1863
1873
|
# @option params [required, String] :resource_arn
|
|
1864
1874
|
# The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
|
|
@@ -2011,7 +2021,7 @@ module Aws::XRay
|
|
|
2011
2021
|
params: params,
|
|
2012
2022
|
config: config)
|
|
2013
2023
|
context[:gem_name] = 'aws-sdk-xray'
|
|
2014
|
-
context[:gem_version] = '1.
|
|
2024
|
+
context[:gem_version] = '1.41.0'
|
|
2015
2025
|
Seahorse::Client::Request.new(handlers, context)
|
|
2016
2026
|
end
|
|
2017
2027
|
|
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.41.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-09-
|
|
11
|
+
date: 2021-09-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|