@aws-sdk/client-xray 3.169.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/XRay.d.ts +490 -140
- package/dist-types/ts3.4/XRayClient.d.ts +291 -100
- package/dist-types/ts3.4/commands/BatchGetTracesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateSamplingRuleCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteSamplingRuleCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetEncryptionConfigCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetInsightCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetInsightEventsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetInsightImpactGraphCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetInsightSummariesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetSamplingRulesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetSamplingStatisticSummariesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetSamplingTargetsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetServiceGraphCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetTimeSeriesServiceStatisticsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetTraceGraphCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetTraceSummariesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutEncryptionConfigCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutTelemetryRecordsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutTraceSegmentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateSamplingRuleCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +27 -27
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/XRayServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1408 -1321
- package/dist-types/ts3.4/pagination/BatchGetTracesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetInsightEventsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetInsightSummariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetSamplingRulesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetSamplingStatisticSummariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetServiceGraphPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetTimeSeriesServiceStatisticsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetTraceGraphPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetTraceSummariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/index.d.ts +11 -11
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +329 -83
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-xray
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-xray
|
|
@@ -1,140 +1,490 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
BatchGetTracesCommandInput,
|
|
4
|
+
BatchGetTracesCommandOutput,
|
|
5
|
+
} from "./commands/BatchGetTracesCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateGroupCommandInput,
|
|
8
|
+
CreateGroupCommandOutput,
|
|
9
|
+
} from "./commands/CreateGroupCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateSamplingRuleCommandInput,
|
|
12
|
+
CreateSamplingRuleCommandOutput,
|
|
13
|
+
} from "./commands/CreateSamplingRuleCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteGroupCommandInput,
|
|
16
|
+
DeleteGroupCommandOutput,
|
|
17
|
+
} from "./commands/DeleteGroupCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteSamplingRuleCommandInput,
|
|
20
|
+
DeleteSamplingRuleCommandOutput,
|
|
21
|
+
} from "./commands/DeleteSamplingRuleCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetEncryptionConfigCommandInput,
|
|
24
|
+
GetEncryptionConfigCommandOutput,
|
|
25
|
+
} from "./commands/GetEncryptionConfigCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetGroupCommandInput,
|
|
28
|
+
GetGroupCommandOutput,
|
|
29
|
+
} from "./commands/GetGroupCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetGroupsCommandInput,
|
|
32
|
+
GetGroupsCommandOutput,
|
|
33
|
+
} from "./commands/GetGroupsCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetInsightCommandInput,
|
|
36
|
+
GetInsightCommandOutput,
|
|
37
|
+
} from "./commands/GetInsightCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetInsightEventsCommandInput,
|
|
40
|
+
GetInsightEventsCommandOutput,
|
|
41
|
+
} from "./commands/GetInsightEventsCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetInsightImpactGraphCommandInput,
|
|
44
|
+
GetInsightImpactGraphCommandOutput,
|
|
45
|
+
} from "./commands/GetInsightImpactGraphCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetInsightSummariesCommandInput,
|
|
48
|
+
GetInsightSummariesCommandOutput,
|
|
49
|
+
} from "./commands/GetInsightSummariesCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetSamplingRulesCommandInput,
|
|
52
|
+
GetSamplingRulesCommandOutput,
|
|
53
|
+
} from "./commands/GetSamplingRulesCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetSamplingStatisticSummariesCommandInput,
|
|
56
|
+
GetSamplingStatisticSummariesCommandOutput,
|
|
57
|
+
} from "./commands/GetSamplingStatisticSummariesCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetSamplingTargetsCommandInput,
|
|
60
|
+
GetSamplingTargetsCommandOutput,
|
|
61
|
+
} from "./commands/GetSamplingTargetsCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetServiceGraphCommandInput,
|
|
64
|
+
GetServiceGraphCommandOutput,
|
|
65
|
+
} from "./commands/GetServiceGraphCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetTimeSeriesServiceStatisticsCommandInput,
|
|
68
|
+
GetTimeSeriesServiceStatisticsCommandOutput,
|
|
69
|
+
} from "./commands/GetTimeSeriesServiceStatisticsCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetTraceGraphCommandInput,
|
|
72
|
+
GetTraceGraphCommandOutput,
|
|
73
|
+
} from "./commands/GetTraceGraphCommand";
|
|
74
|
+
import {
|
|
75
|
+
GetTraceSummariesCommandInput,
|
|
76
|
+
GetTraceSummariesCommandOutput,
|
|
77
|
+
} from "./commands/GetTraceSummariesCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListTagsForResourceCommandInput,
|
|
80
|
+
ListTagsForResourceCommandOutput,
|
|
81
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
82
|
+
import {
|
|
83
|
+
PutEncryptionConfigCommandInput,
|
|
84
|
+
PutEncryptionConfigCommandOutput,
|
|
85
|
+
} from "./commands/PutEncryptionConfigCommand";
|
|
86
|
+
import {
|
|
87
|
+
PutTelemetryRecordsCommandInput,
|
|
88
|
+
PutTelemetryRecordsCommandOutput,
|
|
89
|
+
} from "./commands/PutTelemetryRecordsCommand";
|
|
90
|
+
import {
|
|
91
|
+
PutTraceSegmentsCommandInput,
|
|
92
|
+
PutTraceSegmentsCommandOutput,
|
|
93
|
+
} from "./commands/PutTraceSegmentsCommand";
|
|
94
|
+
import {
|
|
95
|
+
TagResourceCommandInput,
|
|
96
|
+
TagResourceCommandOutput,
|
|
97
|
+
} from "./commands/TagResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
UntagResourceCommandInput,
|
|
100
|
+
UntagResourceCommandOutput,
|
|
101
|
+
} from "./commands/UntagResourceCommand";
|
|
102
|
+
import {
|
|
103
|
+
UpdateGroupCommandInput,
|
|
104
|
+
UpdateGroupCommandOutput,
|
|
105
|
+
} from "./commands/UpdateGroupCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdateSamplingRuleCommandInput,
|
|
108
|
+
UpdateSamplingRuleCommandOutput,
|
|
109
|
+
} from "./commands/UpdateSamplingRuleCommand";
|
|
110
|
+
import { XRayClient } from "./XRayClient";
|
|
111
|
+
|
|
112
|
+
export declare class XRay extends XRayClient {
|
|
113
|
+
batchGetTraces(
|
|
114
|
+
args: BatchGetTracesCommandInput,
|
|
115
|
+
options?: __HttpHandlerOptions
|
|
116
|
+
): Promise<BatchGetTracesCommandOutput>;
|
|
117
|
+
batchGetTraces(
|
|
118
|
+
args: BatchGetTracesCommandInput,
|
|
119
|
+
cb: (err: any, data?: BatchGetTracesCommandOutput) => void
|
|
120
|
+
): void;
|
|
121
|
+
batchGetTraces(
|
|
122
|
+
args: BatchGetTracesCommandInput,
|
|
123
|
+
options: __HttpHandlerOptions,
|
|
124
|
+
cb: (err: any, data?: BatchGetTracesCommandOutput) => void
|
|
125
|
+
): void;
|
|
126
|
+
|
|
127
|
+
createGroup(
|
|
128
|
+
args: CreateGroupCommandInput,
|
|
129
|
+
options?: __HttpHandlerOptions
|
|
130
|
+
): Promise<CreateGroupCommandOutput>;
|
|
131
|
+
createGroup(
|
|
132
|
+
args: CreateGroupCommandInput,
|
|
133
|
+
cb: (err: any, data?: CreateGroupCommandOutput) => void
|
|
134
|
+
): void;
|
|
135
|
+
createGroup(
|
|
136
|
+
args: CreateGroupCommandInput,
|
|
137
|
+
options: __HttpHandlerOptions,
|
|
138
|
+
cb: (err: any, data?: CreateGroupCommandOutput) => void
|
|
139
|
+
): void;
|
|
140
|
+
|
|
141
|
+
createSamplingRule(
|
|
142
|
+
args: CreateSamplingRuleCommandInput,
|
|
143
|
+
options?: __HttpHandlerOptions
|
|
144
|
+
): Promise<CreateSamplingRuleCommandOutput>;
|
|
145
|
+
createSamplingRule(
|
|
146
|
+
args: CreateSamplingRuleCommandInput,
|
|
147
|
+
cb: (err: any, data?: CreateSamplingRuleCommandOutput) => void
|
|
148
|
+
): void;
|
|
149
|
+
createSamplingRule(
|
|
150
|
+
args: CreateSamplingRuleCommandInput,
|
|
151
|
+
options: __HttpHandlerOptions,
|
|
152
|
+
cb: (err: any, data?: CreateSamplingRuleCommandOutput) => void
|
|
153
|
+
): void;
|
|
154
|
+
|
|
155
|
+
deleteGroup(
|
|
156
|
+
args: DeleteGroupCommandInput,
|
|
157
|
+
options?: __HttpHandlerOptions
|
|
158
|
+
): Promise<DeleteGroupCommandOutput>;
|
|
159
|
+
deleteGroup(
|
|
160
|
+
args: DeleteGroupCommandInput,
|
|
161
|
+
cb: (err: any, data?: DeleteGroupCommandOutput) => void
|
|
162
|
+
): void;
|
|
163
|
+
deleteGroup(
|
|
164
|
+
args: DeleteGroupCommandInput,
|
|
165
|
+
options: __HttpHandlerOptions,
|
|
166
|
+
cb: (err: any, data?: DeleteGroupCommandOutput) => void
|
|
167
|
+
): void;
|
|
168
|
+
|
|
169
|
+
deleteSamplingRule(
|
|
170
|
+
args: DeleteSamplingRuleCommandInput,
|
|
171
|
+
options?: __HttpHandlerOptions
|
|
172
|
+
): Promise<DeleteSamplingRuleCommandOutput>;
|
|
173
|
+
deleteSamplingRule(
|
|
174
|
+
args: DeleteSamplingRuleCommandInput,
|
|
175
|
+
cb: (err: any, data?: DeleteSamplingRuleCommandOutput) => void
|
|
176
|
+
): void;
|
|
177
|
+
deleteSamplingRule(
|
|
178
|
+
args: DeleteSamplingRuleCommandInput,
|
|
179
|
+
options: __HttpHandlerOptions,
|
|
180
|
+
cb: (err: any, data?: DeleteSamplingRuleCommandOutput) => void
|
|
181
|
+
): void;
|
|
182
|
+
|
|
183
|
+
getEncryptionConfig(
|
|
184
|
+
args: GetEncryptionConfigCommandInput,
|
|
185
|
+
options?: __HttpHandlerOptions
|
|
186
|
+
): Promise<GetEncryptionConfigCommandOutput>;
|
|
187
|
+
getEncryptionConfig(
|
|
188
|
+
args: GetEncryptionConfigCommandInput,
|
|
189
|
+
cb: (err: any, data?: GetEncryptionConfigCommandOutput) => void
|
|
190
|
+
): void;
|
|
191
|
+
getEncryptionConfig(
|
|
192
|
+
args: GetEncryptionConfigCommandInput,
|
|
193
|
+
options: __HttpHandlerOptions,
|
|
194
|
+
cb: (err: any, data?: GetEncryptionConfigCommandOutput) => void
|
|
195
|
+
): void;
|
|
196
|
+
|
|
197
|
+
getGroup(
|
|
198
|
+
args: GetGroupCommandInput,
|
|
199
|
+
options?: __HttpHandlerOptions
|
|
200
|
+
): Promise<GetGroupCommandOutput>;
|
|
201
|
+
getGroup(
|
|
202
|
+
args: GetGroupCommandInput,
|
|
203
|
+
cb: (err: any, data?: GetGroupCommandOutput) => void
|
|
204
|
+
): void;
|
|
205
|
+
getGroup(
|
|
206
|
+
args: GetGroupCommandInput,
|
|
207
|
+
options: __HttpHandlerOptions,
|
|
208
|
+
cb: (err: any, data?: GetGroupCommandOutput) => void
|
|
209
|
+
): void;
|
|
210
|
+
|
|
211
|
+
getGroups(
|
|
212
|
+
args: GetGroupsCommandInput,
|
|
213
|
+
options?: __HttpHandlerOptions
|
|
214
|
+
): Promise<GetGroupsCommandOutput>;
|
|
215
|
+
getGroups(
|
|
216
|
+
args: GetGroupsCommandInput,
|
|
217
|
+
cb: (err: any, data?: GetGroupsCommandOutput) => void
|
|
218
|
+
): void;
|
|
219
|
+
getGroups(
|
|
220
|
+
args: GetGroupsCommandInput,
|
|
221
|
+
options: __HttpHandlerOptions,
|
|
222
|
+
cb: (err: any, data?: GetGroupsCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
|
|
225
|
+
getInsight(
|
|
226
|
+
args: GetInsightCommandInput,
|
|
227
|
+
options?: __HttpHandlerOptions
|
|
228
|
+
): Promise<GetInsightCommandOutput>;
|
|
229
|
+
getInsight(
|
|
230
|
+
args: GetInsightCommandInput,
|
|
231
|
+
cb: (err: any, data?: GetInsightCommandOutput) => void
|
|
232
|
+
): void;
|
|
233
|
+
getInsight(
|
|
234
|
+
args: GetInsightCommandInput,
|
|
235
|
+
options: __HttpHandlerOptions,
|
|
236
|
+
cb: (err: any, data?: GetInsightCommandOutput) => void
|
|
237
|
+
): void;
|
|
238
|
+
|
|
239
|
+
getInsightEvents(
|
|
240
|
+
args: GetInsightEventsCommandInput,
|
|
241
|
+
options?: __HttpHandlerOptions
|
|
242
|
+
): Promise<GetInsightEventsCommandOutput>;
|
|
243
|
+
getInsightEvents(
|
|
244
|
+
args: GetInsightEventsCommandInput,
|
|
245
|
+
cb: (err: any, data?: GetInsightEventsCommandOutput) => void
|
|
246
|
+
): void;
|
|
247
|
+
getInsightEvents(
|
|
248
|
+
args: GetInsightEventsCommandInput,
|
|
249
|
+
options: __HttpHandlerOptions,
|
|
250
|
+
cb: (err: any, data?: GetInsightEventsCommandOutput) => void
|
|
251
|
+
): void;
|
|
252
|
+
|
|
253
|
+
getInsightImpactGraph(
|
|
254
|
+
args: GetInsightImpactGraphCommandInput,
|
|
255
|
+
options?: __HttpHandlerOptions
|
|
256
|
+
): Promise<GetInsightImpactGraphCommandOutput>;
|
|
257
|
+
getInsightImpactGraph(
|
|
258
|
+
args: GetInsightImpactGraphCommandInput,
|
|
259
|
+
cb: (err: any, data?: GetInsightImpactGraphCommandOutput) => void
|
|
260
|
+
): void;
|
|
261
|
+
getInsightImpactGraph(
|
|
262
|
+
args: GetInsightImpactGraphCommandInput,
|
|
263
|
+
options: __HttpHandlerOptions,
|
|
264
|
+
cb: (err: any, data?: GetInsightImpactGraphCommandOutput) => void
|
|
265
|
+
): void;
|
|
266
|
+
|
|
267
|
+
getInsightSummaries(
|
|
268
|
+
args: GetInsightSummariesCommandInput,
|
|
269
|
+
options?: __HttpHandlerOptions
|
|
270
|
+
): Promise<GetInsightSummariesCommandOutput>;
|
|
271
|
+
getInsightSummaries(
|
|
272
|
+
args: GetInsightSummariesCommandInput,
|
|
273
|
+
cb: (err: any, data?: GetInsightSummariesCommandOutput) => void
|
|
274
|
+
): void;
|
|
275
|
+
getInsightSummaries(
|
|
276
|
+
args: GetInsightSummariesCommandInput,
|
|
277
|
+
options: __HttpHandlerOptions,
|
|
278
|
+
cb: (err: any, data?: GetInsightSummariesCommandOutput) => void
|
|
279
|
+
): void;
|
|
280
|
+
|
|
281
|
+
getSamplingRules(
|
|
282
|
+
args: GetSamplingRulesCommandInput,
|
|
283
|
+
options?: __HttpHandlerOptions
|
|
284
|
+
): Promise<GetSamplingRulesCommandOutput>;
|
|
285
|
+
getSamplingRules(
|
|
286
|
+
args: GetSamplingRulesCommandInput,
|
|
287
|
+
cb: (err: any, data?: GetSamplingRulesCommandOutput) => void
|
|
288
|
+
): void;
|
|
289
|
+
getSamplingRules(
|
|
290
|
+
args: GetSamplingRulesCommandInput,
|
|
291
|
+
options: __HttpHandlerOptions,
|
|
292
|
+
cb: (err: any, data?: GetSamplingRulesCommandOutput) => void
|
|
293
|
+
): void;
|
|
294
|
+
|
|
295
|
+
getSamplingStatisticSummaries(
|
|
296
|
+
args: GetSamplingStatisticSummariesCommandInput,
|
|
297
|
+
options?: __HttpHandlerOptions
|
|
298
|
+
): Promise<GetSamplingStatisticSummariesCommandOutput>;
|
|
299
|
+
getSamplingStatisticSummaries(
|
|
300
|
+
args: GetSamplingStatisticSummariesCommandInput,
|
|
301
|
+
cb: (err: any, data?: GetSamplingStatisticSummariesCommandOutput) => void
|
|
302
|
+
): void;
|
|
303
|
+
getSamplingStatisticSummaries(
|
|
304
|
+
args: GetSamplingStatisticSummariesCommandInput,
|
|
305
|
+
options: __HttpHandlerOptions,
|
|
306
|
+
cb: (err: any, data?: GetSamplingStatisticSummariesCommandOutput) => void
|
|
307
|
+
): void;
|
|
308
|
+
|
|
309
|
+
getSamplingTargets(
|
|
310
|
+
args: GetSamplingTargetsCommandInput,
|
|
311
|
+
options?: __HttpHandlerOptions
|
|
312
|
+
): Promise<GetSamplingTargetsCommandOutput>;
|
|
313
|
+
getSamplingTargets(
|
|
314
|
+
args: GetSamplingTargetsCommandInput,
|
|
315
|
+
cb: (err: any, data?: GetSamplingTargetsCommandOutput) => void
|
|
316
|
+
): void;
|
|
317
|
+
getSamplingTargets(
|
|
318
|
+
args: GetSamplingTargetsCommandInput,
|
|
319
|
+
options: __HttpHandlerOptions,
|
|
320
|
+
cb: (err: any, data?: GetSamplingTargetsCommandOutput) => void
|
|
321
|
+
): void;
|
|
322
|
+
|
|
323
|
+
getServiceGraph(
|
|
324
|
+
args: GetServiceGraphCommandInput,
|
|
325
|
+
options?: __HttpHandlerOptions
|
|
326
|
+
): Promise<GetServiceGraphCommandOutput>;
|
|
327
|
+
getServiceGraph(
|
|
328
|
+
args: GetServiceGraphCommandInput,
|
|
329
|
+
cb: (err: any, data?: GetServiceGraphCommandOutput) => void
|
|
330
|
+
): void;
|
|
331
|
+
getServiceGraph(
|
|
332
|
+
args: GetServiceGraphCommandInput,
|
|
333
|
+
options: __HttpHandlerOptions,
|
|
334
|
+
cb: (err: any, data?: GetServiceGraphCommandOutput) => void
|
|
335
|
+
): void;
|
|
336
|
+
|
|
337
|
+
getTimeSeriesServiceStatistics(
|
|
338
|
+
args: GetTimeSeriesServiceStatisticsCommandInput,
|
|
339
|
+
options?: __HttpHandlerOptions
|
|
340
|
+
): Promise<GetTimeSeriesServiceStatisticsCommandOutput>;
|
|
341
|
+
getTimeSeriesServiceStatistics(
|
|
342
|
+
args: GetTimeSeriesServiceStatisticsCommandInput,
|
|
343
|
+
cb: (err: any, data?: GetTimeSeriesServiceStatisticsCommandOutput) => void
|
|
344
|
+
): void;
|
|
345
|
+
getTimeSeriesServiceStatistics(
|
|
346
|
+
args: GetTimeSeriesServiceStatisticsCommandInput,
|
|
347
|
+
options: __HttpHandlerOptions,
|
|
348
|
+
cb: (err: any, data?: GetTimeSeriesServiceStatisticsCommandOutput) => void
|
|
349
|
+
): void;
|
|
350
|
+
|
|
351
|
+
getTraceGraph(
|
|
352
|
+
args: GetTraceGraphCommandInput,
|
|
353
|
+
options?: __HttpHandlerOptions
|
|
354
|
+
): Promise<GetTraceGraphCommandOutput>;
|
|
355
|
+
getTraceGraph(
|
|
356
|
+
args: GetTraceGraphCommandInput,
|
|
357
|
+
cb: (err: any, data?: GetTraceGraphCommandOutput) => void
|
|
358
|
+
): void;
|
|
359
|
+
getTraceGraph(
|
|
360
|
+
args: GetTraceGraphCommandInput,
|
|
361
|
+
options: __HttpHandlerOptions,
|
|
362
|
+
cb: (err: any, data?: GetTraceGraphCommandOutput) => void
|
|
363
|
+
): void;
|
|
364
|
+
|
|
365
|
+
getTraceSummaries(
|
|
366
|
+
args: GetTraceSummariesCommandInput,
|
|
367
|
+
options?: __HttpHandlerOptions
|
|
368
|
+
): Promise<GetTraceSummariesCommandOutput>;
|
|
369
|
+
getTraceSummaries(
|
|
370
|
+
args: GetTraceSummariesCommandInput,
|
|
371
|
+
cb: (err: any, data?: GetTraceSummariesCommandOutput) => void
|
|
372
|
+
): void;
|
|
373
|
+
getTraceSummaries(
|
|
374
|
+
args: GetTraceSummariesCommandInput,
|
|
375
|
+
options: __HttpHandlerOptions,
|
|
376
|
+
cb: (err: any, data?: GetTraceSummariesCommandOutput) => void
|
|
377
|
+
): void;
|
|
378
|
+
|
|
379
|
+
listTagsForResource(
|
|
380
|
+
args: ListTagsForResourceCommandInput,
|
|
381
|
+
options?: __HttpHandlerOptions
|
|
382
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
383
|
+
listTagsForResource(
|
|
384
|
+
args: ListTagsForResourceCommandInput,
|
|
385
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
386
|
+
): void;
|
|
387
|
+
listTagsForResource(
|
|
388
|
+
args: ListTagsForResourceCommandInput,
|
|
389
|
+
options: __HttpHandlerOptions,
|
|
390
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
391
|
+
): void;
|
|
392
|
+
|
|
393
|
+
putEncryptionConfig(
|
|
394
|
+
args: PutEncryptionConfigCommandInput,
|
|
395
|
+
options?: __HttpHandlerOptions
|
|
396
|
+
): Promise<PutEncryptionConfigCommandOutput>;
|
|
397
|
+
putEncryptionConfig(
|
|
398
|
+
args: PutEncryptionConfigCommandInput,
|
|
399
|
+
cb: (err: any, data?: PutEncryptionConfigCommandOutput) => void
|
|
400
|
+
): void;
|
|
401
|
+
putEncryptionConfig(
|
|
402
|
+
args: PutEncryptionConfigCommandInput,
|
|
403
|
+
options: __HttpHandlerOptions,
|
|
404
|
+
cb: (err: any, data?: PutEncryptionConfigCommandOutput) => void
|
|
405
|
+
): void;
|
|
406
|
+
|
|
407
|
+
putTelemetryRecords(
|
|
408
|
+
args: PutTelemetryRecordsCommandInput,
|
|
409
|
+
options?: __HttpHandlerOptions
|
|
410
|
+
): Promise<PutTelemetryRecordsCommandOutput>;
|
|
411
|
+
putTelemetryRecords(
|
|
412
|
+
args: PutTelemetryRecordsCommandInput,
|
|
413
|
+
cb: (err: any, data?: PutTelemetryRecordsCommandOutput) => void
|
|
414
|
+
): void;
|
|
415
|
+
putTelemetryRecords(
|
|
416
|
+
args: PutTelemetryRecordsCommandInput,
|
|
417
|
+
options: __HttpHandlerOptions,
|
|
418
|
+
cb: (err: any, data?: PutTelemetryRecordsCommandOutput) => void
|
|
419
|
+
): void;
|
|
420
|
+
|
|
421
|
+
putTraceSegments(
|
|
422
|
+
args: PutTraceSegmentsCommandInput,
|
|
423
|
+
options?: __HttpHandlerOptions
|
|
424
|
+
): Promise<PutTraceSegmentsCommandOutput>;
|
|
425
|
+
putTraceSegments(
|
|
426
|
+
args: PutTraceSegmentsCommandInput,
|
|
427
|
+
cb: (err: any, data?: PutTraceSegmentsCommandOutput) => void
|
|
428
|
+
): void;
|
|
429
|
+
putTraceSegments(
|
|
430
|
+
args: PutTraceSegmentsCommandInput,
|
|
431
|
+
options: __HttpHandlerOptions,
|
|
432
|
+
cb: (err: any, data?: PutTraceSegmentsCommandOutput) => void
|
|
433
|
+
): void;
|
|
434
|
+
|
|
435
|
+
tagResource(
|
|
436
|
+
args: TagResourceCommandInput,
|
|
437
|
+
options?: __HttpHandlerOptions
|
|
438
|
+
): Promise<TagResourceCommandOutput>;
|
|
439
|
+
tagResource(
|
|
440
|
+
args: TagResourceCommandInput,
|
|
441
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
442
|
+
): void;
|
|
443
|
+
tagResource(
|
|
444
|
+
args: TagResourceCommandInput,
|
|
445
|
+
options: __HttpHandlerOptions,
|
|
446
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
447
|
+
): void;
|
|
448
|
+
|
|
449
|
+
untagResource(
|
|
450
|
+
args: UntagResourceCommandInput,
|
|
451
|
+
options?: __HttpHandlerOptions
|
|
452
|
+
): Promise<UntagResourceCommandOutput>;
|
|
453
|
+
untagResource(
|
|
454
|
+
args: UntagResourceCommandInput,
|
|
455
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
456
|
+
): void;
|
|
457
|
+
untagResource(
|
|
458
|
+
args: UntagResourceCommandInput,
|
|
459
|
+
options: __HttpHandlerOptions,
|
|
460
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
461
|
+
): void;
|
|
462
|
+
|
|
463
|
+
updateGroup(
|
|
464
|
+
args: UpdateGroupCommandInput,
|
|
465
|
+
options?: __HttpHandlerOptions
|
|
466
|
+
): Promise<UpdateGroupCommandOutput>;
|
|
467
|
+
updateGroup(
|
|
468
|
+
args: UpdateGroupCommandInput,
|
|
469
|
+
cb: (err: any, data?: UpdateGroupCommandOutput) => void
|
|
470
|
+
): void;
|
|
471
|
+
updateGroup(
|
|
472
|
+
args: UpdateGroupCommandInput,
|
|
473
|
+
options: __HttpHandlerOptions,
|
|
474
|
+
cb: (err: any, data?: UpdateGroupCommandOutput) => void
|
|
475
|
+
): void;
|
|
476
|
+
|
|
477
|
+
updateSamplingRule(
|
|
478
|
+
args: UpdateSamplingRuleCommandInput,
|
|
479
|
+
options?: __HttpHandlerOptions
|
|
480
|
+
): Promise<UpdateSamplingRuleCommandOutput>;
|
|
481
|
+
updateSamplingRule(
|
|
482
|
+
args: UpdateSamplingRuleCommandInput,
|
|
483
|
+
cb: (err: any, data?: UpdateSamplingRuleCommandOutput) => void
|
|
484
|
+
): void;
|
|
485
|
+
updateSamplingRule(
|
|
486
|
+
args: UpdateSamplingRuleCommandInput,
|
|
487
|
+
options: __HttpHandlerOptions,
|
|
488
|
+
cb: (err: any, data?: UpdateSamplingRuleCommandOutput) => void
|
|
489
|
+
): void;
|
|
490
|
+
}
|