@aws-sdk/client-xray 3.168.0 → 3.170.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.
Files changed (54) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/XRay.d.ts +490 -140
  3. package/dist-types/ts3.4/XRayClient.d.ts +291 -100
  4. package/dist-types/ts3.4/commands/BatchGetTracesCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateSamplingRuleCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteSamplingRuleCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/GetEncryptionConfigCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/GetGroupsCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/GetInsightCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetInsightEventsCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/GetInsightImpactGraphCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/GetInsightSummariesCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/GetSamplingRulesCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/GetSamplingStatisticSummariesCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/GetSamplingTargetsCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/GetServiceGraphCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/GetTimeSeriesServiceStatisticsCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/GetTraceGraphCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/GetTraceSummariesCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/PutEncryptionConfigCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/PutTelemetryRecordsCommand.d.ts +38 -17
  26. package/dist-types/ts3.4/commands/PutTraceSegmentsCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +34 -17
  30. package/dist-types/ts3.4/commands/UpdateSamplingRuleCommand.d.ts +38 -17
  31. package/dist-types/ts3.4/commands/index.d.ts +27 -27
  32. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  33. package/dist-types/ts3.4/index.d.ts +6 -6
  34. package/dist-types/ts3.4/models/XRayServiceException.d.ts +8 -6
  35. package/dist-types/ts3.4/models/index.d.ts +1 -1
  36. package/dist-types/ts3.4/models/models_0.d.ts +1408 -1321
  37. package/dist-types/ts3.4/pagination/BatchGetTracesPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/GetGroupsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/GetInsightEventsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/GetInsightSummariesPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/GetSamplingRulesPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/GetSamplingStatisticSummariesPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/GetServiceGraphPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/GetTimeSeriesServiceStatisticsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/GetTraceGraphPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/GetTraceSummariesPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  48. package/dist-types/ts3.4/pagination/index.d.ts +11 -11
  49. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +329 -83
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  54. package/package.json +34 -34
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UpdateSamplingRuleRequest, UpdateSamplingRuleResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
- export interface UpdateSamplingRuleCommandInput extends UpdateSamplingRuleRequest {
6
- }
7
- export interface UpdateSamplingRuleCommandOutput extends UpdateSamplingRuleResult, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateSamplingRuleCommand extends $Command<UpdateSamplingRuleCommandInput, UpdateSamplingRuleCommandOutput, XRayClientResolvedConfig> {
11
- readonly input: UpdateSamplingRuleCommandInput;
12
- constructor(input: UpdateSamplingRuleCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSamplingRuleCommandInput, UpdateSamplingRuleCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UpdateSamplingRuleRequest,
10
+ UpdateSamplingRuleResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ XRayClientResolvedConfig,
16
+ } from "../XRayClient";
17
+ export interface UpdateSamplingRuleCommandInput
18
+ extends UpdateSamplingRuleRequest {}
19
+ export interface UpdateSamplingRuleCommandOutput
20
+ extends UpdateSamplingRuleResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateSamplingRuleCommand extends $Command<
24
+ UpdateSamplingRuleCommandInput,
25
+ UpdateSamplingRuleCommandOutput,
26
+ XRayClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateSamplingRuleCommandInput;
29
+ constructor(input: UpdateSamplingRuleCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: XRayClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateSamplingRuleCommandInput, UpdateSamplingRuleCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,27 +1,27 @@
1
- export * from "./BatchGetTracesCommand";
2
- export * from "./CreateGroupCommand";
3
- export * from "./CreateSamplingRuleCommand";
4
- export * from "./DeleteGroupCommand";
5
- export * from "./DeleteSamplingRuleCommand";
6
- export * from "./GetEncryptionConfigCommand";
7
- export * from "./GetGroupCommand";
8
- export * from "./GetGroupsCommand";
9
- export * from "./GetInsightCommand";
10
- export * from "./GetInsightEventsCommand";
11
- export * from "./GetInsightImpactGraphCommand";
12
- export * from "./GetInsightSummariesCommand";
13
- export * from "./GetSamplingRulesCommand";
14
- export * from "./GetSamplingStatisticSummariesCommand";
15
- export * from "./GetSamplingTargetsCommand";
16
- export * from "./GetServiceGraphCommand";
17
- export * from "./GetTimeSeriesServiceStatisticsCommand";
18
- export * from "./GetTraceGraphCommand";
19
- export * from "./GetTraceSummariesCommand";
20
- export * from "./ListTagsForResourceCommand";
21
- export * from "./PutEncryptionConfigCommand";
22
- export * from "./PutTelemetryRecordsCommand";
23
- export * from "./PutTraceSegmentsCommand";
24
- export * from "./TagResourceCommand";
25
- export * from "./UntagResourceCommand";
26
- export * from "./UpdateGroupCommand";
27
- export * from "./UpdateSamplingRuleCommand";
1
+ export * from "./BatchGetTracesCommand";
2
+ export * from "./CreateGroupCommand";
3
+ export * from "./CreateSamplingRuleCommand";
4
+ export * from "./DeleteGroupCommand";
5
+ export * from "./DeleteSamplingRuleCommand";
6
+ export * from "./GetEncryptionConfigCommand";
7
+ export * from "./GetGroupCommand";
8
+ export * from "./GetGroupsCommand";
9
+ export * from "./GetInsightCommand";
10
+ export * from "./GetInsightEventsCommand";
11
+ export * from "./GetInsightImpactGraphCommand";
12
+ export * from "./GetInsightSummariesCommand";
13
+ export * from "./GetSamplingRulesCommand";
14
+ export * from "./GetSamplingStatisticSummariesCommand";
15
+ export * from "./GetSamplingTargetsCommand";
16
+ export * from "./GetServiceGraphCommand";
17
+ export * from "./GetTimeSeriesServiceStatisticsCommand";
18
+ export * from "./GetTraceGraphCommand";
19
+ export * from "./GetTraceSummariesCommand";
20
+ export * from "./ListTagsForResourceCommand";
21
+ export * from "./PutEncryptionConfigCommand";
22
+ export * from "./PutTelemetryRecordsCommand";
23
+ export * from "./PutTraceSegmentsCommand";
24
+ export * from "./TagResourceCommand";
25
+ export * from "./UntagResourceCommand";
26
+ export * from "./UpdateGroupCommand";
27
+ export * from "./UpdateSamplingRuleCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./XRay";
2
- export * from "./XRayClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { XRayServiceException } from "./models/XRayServiceException";
1
+ export * from "./XRay";
2
+ export * from "./XRayClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { XRayServiceException } from "./models/XRayServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class XRayServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class XRayServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";