@aws-sdk/client-xray 3.295.0 → 3.297.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/dist-types/XRay.d.ts +31 -0
- package/dist-types/XRayClient.d.ts +24 -4
- package/dist-types/commands/BatchGetTracesCommand.d.ts +16 -0
- package/dist-types/commands/CreateGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateSamplingRuleCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSamplingRuleCommand.d.ts +16 -0
- package/dist-types/commands/GetEncryptionConfigCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetGroupsCommand.d.ts +16 -0
- package/dist-types/commands/GetInsightCommand.d.ts +16 -0
- package/dist-types/commands/GetInsightEventsCommand.d.ts +16 -0
- package/dist-types/commands/GetInsightImpactGraphCommand.d.ts +16 -0
- package/dist-types/commands/GetInsightSummariesCommand.d.ts +16 -0
- package/dist-types/commands/GetSamplingRulesCommand.d.ts +16 -0
- package/dist-types/commands/GetSamplingStatisticSummariesCommand.d.ts +16 -0
- package/dist-types/commands/GetSamplingTargetsCommand.d.ts +16 -0
- package/dist-types/commands/GetServiceGraphCommand.d.ts +16 -0
- package/dist-types/commands/GetTimeSeriesServiceStatisticsCommand.d.ts +16 -0
- package/dist-types/commands/GetTraceGraphCommand.d.ts +16 -0
- package/dist-types/commands/GetTraceSummariesCommand.d.ts +16 -0
- package/dist-types/commands/ListResourcePoliciesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutEncryptionConfigCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutTelemetryRecordsCommand.d.ts +16 -0
- package/dist-types/commands/PutTraceSegmentsCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSamplingRuleCommand.d.ts +16 -0
- package/dist-types/models/XRayServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +266 -0
- package/dist-types/pagination/BatchGetTracesPaginator.d.ts +3 -0
- package/dist-types/pagination/GetGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/GetInsightEventsPaginator.d.ts +3 -0
- package/dist-types/pagination/GetInsightSummariesPaginator.d.ts +3 -0
- package/dist-types/pagination/GetSamplingRulesPaginator.d.ts +3 -0
- package/dist-types/pagination/GetSamplingStatisticSummariesPaginator.d.ts +3 -0
- package/dist-types/pagination/GetServiceGraphPaginator.d.ts +3 -0
- package/dist-types/pagination/GetTimeSeriesServiceStatisticsPaginator.d.ts +3 -0
- package/dist-types/pagination/GetTraceGraphPaginator.d.ts +3 -0
- package/dist-types/pagination/GetTraceSummariesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListResourcePoliciesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/package.json +29 -29
package/dist-types/XRay.d.ts
CHANGED
|
@@ -31,11 +31,13 @@ import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/Up
|
|
|
31
31
|
import { UpdateSamplingRuleCommandInput, UpdateSamplingRuleCommandOutput } from "./commands/UpdateSamplingRuleCommand";
|
|
32
32
|
import { XRayClient } from "./XRayClient";
|
|
33
33
|
/**
|
|
34
|
+
* @public
|
|
34
35
|
* <p>Amazon Web Services X-Ray provides APIs for managing debug traces and retrieving service maps
|
|
35
36
|
* and other data created by processing those traces.</p>
|
|
36
37
|
*/
|
|
37
38
|
export declare class XRay extends XRayClient {
|
|
38
39
|
/**
|
|
40
|
+
* @public
|
|
39
41
|
* <p>Retrieves a list of traces specified by ID. Each trace is a collection of segment
|
|
40
42
|
* documents that originates from a single request. Use <code>GetTraceSummaries</code> to get a
|
|
41
43
|
* list of trace IDs.</p>
|
|
@@ -44,12 +46,14 @@ export declare class XRay extends XRayClient {
|
|
|
44
46
|
batchGetTraces(args: BatchGetTracesCommandInput, cb: (err: any, data?: BatchGetTracesCommandOutput) => void): void;
|
|
45
47
|
batchGetTraces(args: BatchGetTracesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetTracesCommandOutput) => void): void;
|
|
46
48
|
/**
|
|
49
|
+
* @public
|
|
47
50
|
* <p>Creates a group resource with a name and a filter expression. </p>
|
|
48
51
|
*/
|
|
49
52
|
createGroup(args: CreateGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupCommandOutput>;
|
|
50
53
|
createGroup(args: CreateGroupCommandInput, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
51
54
|
createGroup(args: CreateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
52
55
|
/**
|
|
56
|
+
* @public
|
|
53
57
|
* <p>Creates a rule to control sampling behavior for instrumented applications. Services
|
|
54
58
|
* retrieve rules with <a href="https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingRules.html">GetSamplingRules</a>, and evaluate each rule in ascending
|
|
55
59
|
* order of <i>priority</i> for each request. If a rule matches, the service
|
|
@@ -62,42 +66,49 @@ export declare class XRay extends XRayClient {
|
|
|
62
66
|
createSamplingRule(args: CreateSamplingRuleCommandInput, cb: (err: any, data?: CreateSamplingRuleCommandOutput) => void): void;
|
|
63
67
|
createSamplingRule(args: CreateSamplingRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSamplingRuleCommandOutput) => void): void;
|
|
64
68
|
/**
|
|
69
|
+
* @public
|
|
65
70
|
* <p>Deletes a group resource.</p>
|
|
66
71
|
*/
|
|
67
72
|
deleteGroup(args: DeleteGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupCommandOutput>;
|
|
68
73
|
deleteGroup(args: DeleteGroupCommandInput, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
69
74
|
deleteGroup(args: DeleteGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
70
75
|
/**
|
|
76
|
+
* @public
|
|
71
77
|
* <p>Deletes a resource policy from the target Amazon Web Services account.</p>
|
|
72
78
|
*/
|
|
73
79
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePolicyCommandOutput>;
|
|
74
80
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
75
81
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
76
82
|
/**
|
|
83
|
+
* @public
|
|
77
84
|
* <p>Deletes a sampling rule.</p>
|
|
78
85
|
*/
|
|
79
86
|
deleteSamplingRule(args: DeleteSamplingRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSamplingRuleCommandOutput>;
|
|
80
87
|
deleteSamplingRule(args: DeleteSamplingRuleCommandInput, cb: (err: any, data?: DeleteSamplingRuleCommandOutput) => void): void;
|
|
81
88
|
deleteSamplingRule(args: DeleteSamplingRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSamplingRuleCommandOutput) => void): void;
|
|
82
89
|
/**
|
|
90
|
+
* @public
|
|
83
91
|
* <p>Retrieves the current encryption configuration for X-Ray data.</p>
|
|
84
92
|
*/
|
|
85
93
|
getEncryptionConfig(args: GetEncryptionConfigCommandInput, options?: __HttpHandlerOptions): Promise<GetEncryptionConfigCommandOutput>;
|
|
86
94
|
getEncryptionConfig(args: GetEncryptionConfigCommandInput, cb: (err: any, data?: GetEncryptionConfigCommandOutput) => void): void;
|
|
87
95
|
getEncryptionConfig(args: GetEncryptionConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEncryptionConfigCommandOutput) => void): void;
|
|
88
96
|
/**
|
|
97
|
+
* @public
|
|
89
98
|
* <p>Retrieves group resource details.</p>
|
|
90
99
|
*/
|
|
91
100
|
getGroup(args: GetGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupCommandOutput>;
|
|
92
101
|
getGroup(args: GetGroupCommandInput, cb: (err: any, data?: GetGroupCommandOutput) => void): void;
|
|
93
102
|
getGroup(args: GetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupCommandOutput) => void): void;
|
|
94
103
|
/**
|
|
104
|
+
* @public
|
|
95
105
|
* <p>Retrieves all active group details.</p>
|
|
96
106
|
*/
|
|
97
107
|
getGroups(args: GetGroupsCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupsCommandOutput>;
|
|
98
108
|
getGroups(args: GetGroupsCommandInput, cb: (err: any, data?: GetGroupsCommandOutput) => void): void;
|
|
99
109
|
getGroups(args: GetGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupsCommandOutput) => void): void;
|
|
100
110
|
/**
|
|
111
|
+
* @public
|
|
101
112
|
* <p>Retrieves the summary information of an insight. This includes impact to clients and
|
|
102
113
|
* root cause services, the top anomalous services, the category, the state of the insight,
|
|
103
114
|
* and the start and end time of the insight.</p>
|
|
@@ -106,6 +117,7 @@ export declare class XRay extends XRayClient {
|
|
|
106
117
|
getInsight(args: GetInsightCommandInput, cb: (err: any, data?: GetInsightCommandOutput) => void): void;
|
|
107
118
|
getInsight(args: GetInsightCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInsightCommandOutput) => void): void;
|
|
108
119
|
/**
|
|
120
|
+
* @public
|
|
109
121
|
* <p>X-Ray reevaluates insights periodically until they're resolved, and records each intermediate state as an
|
|
110
122
|
* event. You can review an insight's events in the Impact Timeline on the Inspect page in the X-Ray
|
|
111
123
|
* console.</p>
|
|
@@ -114,6 +126,7 @@ export declare class XRay extends XRayClient {
|
|
|
114
126
|
getInsightEvents(args: GetInsightEventsCommandInput, cb: (err: any, data?: GetInsightEventsCommandOutput) => void): void;
|
|
115
127
|
getInsightEvents(args: GetInsightEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInsightEventsCommandOutput) => void): void;
|
|
116
128
|
/**
|
|
129
|
+
* @public
|
|
117
130
|
* <p>Retrieves a service graph structure filtered by the specified insight. The service graph is limited to only
|
|
118
131
|
* structural information. For a complete service graph, use this API with the GetServiceGraph API.</p>
|
|
119
132
|
*/
|
|
@@ -121,24 +134,28 @@ export declare class XRay extends XRayClient {
|
|
|
121
134
|
getInsightImpactGraph(args: GetInsightImpactGraphCommandInput, cb: (err: any, data?: GetInsightImpactGraphCommandOutput) => void): void;
|
|
122
135
|
getInsightImpactGraph(args: GetInsightImpactGraphCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInsightImpactGraphCommandOutput) => void): void;
|
|
123
136
|
/**
|
|
137
|
+
* @public
|
|
124
138
|
* <p>Retrieves the summaries of all insights in the specified group matching the provided filter values.</p>
|
|
125
139
|
*/
|
|
126
140
|
getInsightSummaries(args: GetInsightSummariesCommandInput, options?: __HttpHandlerOptions): Promise<GetInsightSummariesCommandOutput>;
|
|
127
141
|
getInsightSummaries(args: GetInsightSummariesCommandInput, cb: (err: any, data?: GetInsightSummariesCommandOutput) => void): void;
|
|
128
142
|
getInsightSummaries(args: GetInsightSummariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInsightSummariesCommandOutput) => void): void;
|
|
129
143
|
/**
|
|
144
|
+
* @public
|
|
130
145
|
* <p>Retrieves all sampling rules.</p>
|
|
131
146
|
*/
|
|
132
147
|
getSamplingRules(args: GetSamplingRulesCommandInput, options?: __HttpHandlerOptions): Promise<GetSamplingRulesCommandOutput>;
|
|
133
148
|
getSamplingRules(args: GetSamplingRulesCommandInput, cb: (err: any, data?: GetSamplingRulesCommandOutput) => void): void;
|
|
134
149
|
getSamplingRules(args: GetSamplingRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSamplingRulesCommandOutput) => void): void;
|
|
135
150
|
/**
|
|
151
|
+
* @public
|
|
136
152
|
* <p>Retrieves information about recent sampling results for all sampling rules.</p>
|
|
137
153
|
*/
|
|
138
154
|
getSamplingStatisticSummaries(args: GetSamplingStatisticSummariesCommandInput, options?: __HttpHandlerOptions): Promise<GetSamplingStatisticSummariesCommandOutput>;
|
|
139
155
|
getSamplingStatisticSummaries(args: GetSamplingStatisticSummariesCommandInput, cb: (err: any, data?: GetSamplingStatisticSummariesCommandOutput) => void): void;
|
|
140
156
|
getSamplingStatisticSummaries(args: GetSamplingStatisticSummariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSamplingStatisticSummariesCommandOutput) => void): void;
|
|
141
157
|
/**
|
|
158
|
+
* @public
|
|
142
159
|
* <p>Requests a sampling quota for rules that the service is using to sample requests.
|
|
143
160
|
* </p>
|
|
144
161
|
*/
|
|
@@ -146,6 +163,7 @@ export declare class XRay extends XRayClient {
|
|
|
146
163
|
getSamplingTargets(args: GetSamplingTargetsCommandInput, cb: (err: any, data?: GetSamplingTargetsCommandOutput) => void): void;
|
|
147
164
|
getSamplingTargets(args: GetSamplingTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSamplingTargetsCommandOutput) => void): void;
|
|
148
165
|
/**
|
|
166
|
+
* @public
|
|
149
167
|
* <p>Retrieves a document that describes services that process incoming requests, and
|
|
150
168
|
* downstream services that they call as a result. Root services process incoming requests and
|
|
151
169
|
* make calls to downstream services. Root services are applications that use the <a href="https://docs.aws.amazon.com/xray/index.html">Amazon Web Services X-Ray SDK</a>.
|
|
@@ -156,6 +174,7 @@ export declare class XRay extends XRayClient {
|
|
|
156
174
|
getServiceGraph(args: GetServiceGraphCommandInput, cb: (err: any, data?: GetServiceGraphCommandOutput) => void): void;
|
|
157
175
|
getServiceGraph(args: GetServiceGraphCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceGraphCommandOutput) => void): void;
|
|
158
176
|
/**
|
|
177
|
+
* @public
|
|
159
178
|
* <p>Get an aggregation of service statistics defined by a specific time
|
|
160
179
|
* range.</p>
|
|
161
180
|
*/
|
|
@@ -163,12 +182,14 @@ export declare class XRay extends XRayClient {
|
|
|
163
182
|
getTimeSeriesServiceStatistics(args: GetTimeSeriesServiceStatisticsCommandInput, cb: (err: any, data?: GetTimeSeriesServiceStatisticsCommandOutput) => void): void;
|
|
164
183
|
getTimeSeriesServiceStatistics(args: GetTimeSeriesServiceStatisticsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTimeSeriesServiceStatisticsCommandOutput) => void): void;
|
|
165
184
|
/**
|
|
185
|
+
* @public
|
|
166
186
|
* <p>Retrieves a service graph for one or more specific trace IDs.</p>
|
|
167
187
|
*/
|
|
168
188
|
getTraceGraph(args: GetTraceGraphCommandInput, options?: __HttpHandlerOptions): Promise<GetTraceGraphCommandOutput>;
|
|
169
189
|
getTraceGraph(args: GetTraceGraphCommandInput, cb: (err: any, data?: GetTraceGraphCommandOutput) => void): void;
|
|
170
190
|
getTraceGraph(args: GetTraceGraphCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTraceGraphCommandOutput) => void): void;
|
|
171
191
|
/**
|
|
192
|
+
* @public
|
|
172
193
|
* <p>Retrieves IDs and annotations for traces available for a specified time frame using an
|
|
173
194
|
* optional filter. To get the full traces, pass the trace IDs to
|
|
174
195
|
* <code>BatchGetTraces</code>.</p>
|
|
@@ -191,24 +212,28 @@ export declare class XRay extends XRayClient {
|
|
|
191
212
|
getTraceSummaries(args: GetTraceSummariesCommandInput, cb: (err: any, data?: GetTraceSummariesCommandOutput) => void): void;
|
|
192
213
|
getTraceSummaries(args: GetTraceSummariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTraceSummariesCommandOutput) => void): void;
|
|
193
214
|
/**
|
|
215
|
+
* @public
|
|
194
216
|
* <p>Returns the list of resource policies in the target Amazon Web Services account.</p>
|
|
195
217
|
*/
|
|
196
218
|
listResourcePolicies(args: ListResourcePoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListResourcePoliciesCommandOutput>;
|
|
197
219
|
listResourcePolicies(args: ListResourcePoliciesCommandInput, cb: (err: any, data?: ListResourcePoliciesCommandOutput) => void): void;
|
|
198
220
|
listResourcePolicies(args: ListResourcePoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourcePoliciesCommandOutput) => void): void;
|
|
199
221
|
/**
|
|
222
|
+
* @public
|
|
200
223
|
* <p>Returns a list of tags that are applied to the specified Amazon Web Services X-Ray group or sampling rule.</p>
|
|
201
224
|
*/
|
|
202
225
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
203
226
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
204
227
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
205
228
|
/**
|
|
229
|
+
* @public
|
|
206
230
|
* <p>Updates the encryption configuration for X-Ray data.</p>
|
|
207
231
|
*/
|
|
208
232
|
putEncryptionConfig(args: PutEncryptionConfigCommandInput, options?: __HttpHandlerOptions): Promise<PutEncryptionConfigCommandOutput>;
|
|
209
233
|
putEncryptionConfig(args: PutEncryptionConfigCommandInput, cb: (err: any, data?: PutEncryptionConfigCommandOutput) => void): void;
|
|
210
234
|
putEncryptionConfig(args: PutEncryptionConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutEncryptionConfigCommandOutput) => void): void;
|
|
211
235
|
/**
|
|
236
|
+
* @public
|
|
212
237
|
* <p>
|
|
213
238
|
* Sets the resource policy to grant one or more Amazon Web Services services and accounts permissions to
|
|
214
239
|
* access X-Ray. Each resource policy will be associated with a specific Amazon Web Services account.
|
|
@@ -220,12 +245,14 @@ export declare class XRay extends XRayClient {
|
|
|
220
245
|
putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
221
246
|
putResourcePolicy(args: PutResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
222
247
|
/**
|
|
248
|
+
* @public
|
|
223
249
|
* <p>Used by the Amazon Web Services X-Ray daemon to upload telemetry.</p>
|
|
224
250
|
*/
|
|
225
251
|
putTelemetryRecords(args: PutTelemetryRecordsCommandInput, options?: __HttpHandlerOptions): Promise<PutTelemetryRecordsCommandOutput>;
|
|
226
252
|
putTelemetryRecords(args: PutTelemetryRecordsCommandInput, cb: (err: any, data?: PutTelemetryRecordsCommandOutput) => void): void;
|
|
227
253
|
putTelemetryRecords(args: PutTelemetryRecordsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutTelemetryRecordsCommandOutput) => void): void;
|
|
228
254
|
/**
|
|
255
|
+
* @public
|
|
229
256
|
* <p>Uploads segment documents to Amazon Web Services X-Ray. The <a href="https://docs.aws.amazon.com/xray/index.html">X-Ray SDK</a> generates segment documents and sends them to the X-Ray daemon, which uploads them in
|
|
230
257
|
* batches. A segment document can be a completed segment, an in-progress segment, or an array of
|
|
231
258
|
* subsegments.</p>
|
|
@@ -294,12 +321,14 @@ export declare class XRay extends XRayClient {
|
|
|
294
321
|
putTraceSegments(args: PutTraceSegmentsCommandInput, cb: (err: any, data?: PutTraceSegmentsCommandOutput) => void): void;
|
|
295
322
|
putTraceSegments(args: PutTraceSegmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutTraceSegmentsCommandOutput) => void): void;
|
|
296
323
|
/**
|
|
324
|
+
* @public
|
|
297
325
|
* <p>Applies tags to an existing Amazon Web Services X-Ray group or sampling rule.</p>
|
|
298
326
|
*/
|
|
299
327
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
300
328
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
301
329
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
302
330
|
/**
|
|
331
|
+
* @public
|
|
303
332
|
* <p>Removes tags from an Amazon Web Services X-Ray group or sampling rule. You cannot edit or delete system
|
|
304
333
|
* tags (those with an <code>aws:</code> prefix).</p>
|
|
305
334
|
*/
|
|
@@ -307,12 +336,14 @@ export declare class XRay extends XRayClient {
|
|
|
307
336
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
308
337
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
309
338
|
/**
|
|
339
|
+
* @public
|
|
310
340
|
* <p>Updates a group resource.</p>
|
|
311
341
|
*/
|
|
312
342
|
updateGroup(args: UpdateGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGroupCommandOutput>;
|
|
313
343
|
updateGroup(args: UpdateGroupCommandInput, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
314
344
|
updateGroup(args: UpdateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
315
345
|
/**
|
|
346
|
+
* @public
|
|
316
347
|
* <p>Modifies a sampling rule's configuration.</p>
|
|
317
348
|
*/
|
|
318
349
|
updateSamplingRule(args: UpdateSamplingRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSamplingRuleCommandOutput>;
|
|
@@ -38,15 +38,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
38
38
|
import { UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand";
|
|
39
39
|
import { UpdateSamplingRuleCommandInput, UpdateSamplingRuleCommandOutput } from "./commands/UpdateSamplingRuleCommand";
|
|
40
40
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
41
44
|
export type ServiceInputTypes = BatchGetTracesCommandInput | CreateGroupCommandInput | CreateSamplingRuleCommandInput | DeleteGroupCommandInput | DeleteResourcePolicyCommandInput | DeleteSamplingRuleCommandInput | GetEncryptionConfigCommandInput | GetGroupCommandInput | GetGroupsCommandInput | GetInsightCommandInput | GetInsightEventsCommandInput | GetInsightImpactGraphCommandInput | GetInsightSummariesCommandInput | GetSamplingRulesCommandInput | GetSamplingStatisticSummariesCommandInput | GetSamplingTargetsCommandInput | GetServiceGraphCommandInput | GetTimeSeriesServiceStatisticsCommandInput | GetTraceGraphCommandInput | GetTraceSummariesCommandInput | ListResourcePoliciesCommandInput | ListTagsForResourceCommandInput | PutEncryptionConfigCommandInput | PutResourcePolicyCommandInput | PutTelemetryRecordsCommandInput | PutTraceSegmentsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateGroupCommandInput | UpdateSamplingRuleCommandInput;
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
42
48
|
export type ServiceOutputTypes = BatchGetTracesCommandOutput | CreateGroupCommandOutput | CreateSamplingRuleCommandOutput | DeleteGroupCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSamplingRuleCommandOutput | GetEncryptionConfigCommandOutput | GetGroupCommandOutput | GetGroupsCommandOutput | GetInsightCommandOutput | GetInsightEventsCommandOutput | GetInsightImpactGraphCommandOutput | GetInsightSummariesCommandOutput | GetSamplingRulesCommandOutput | GetSamplingStatisticSummariesCommandOutput | GetSamplingTargetsCommandOutput | GetServiceGraphCommandOutput | GetTimeSeriesServiceStatisticsCommandOutput | GetTraceGraphCommandOutput | GetTraceSummariesCommandOutput | ListResourcePoliciesCommandOutput | ListTagsForResourceCommandOutput | PutEncryptionConfigCommandOutput | PutResourcePolicyCommandOutput | PutTelemetryRecordsCommandOutput | PutTraceSegmentsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateGroupCommandOutput | UpdateSamplingRuleCommandOutput;
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
43
52
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
44
53
|
/**
|
|
45
54
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
46
55
|
*/
|
|
47
56
|
requestHandler?: __HttpHandler;
|
|
48
57
|
/**
|
|
49
|
-
* A constructor for a class implementing the {@link
|
|
58
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
50
59
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
51
60
|
* @internal
|
|
52
61
|
*/
|
|
@@ -136,23 +145,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
136
145
|
*/
|
|
137
146
|
logger?: __Logger;
|
|
138
147
|
/**
|
|
139
|
-
* The {@link
|
|
148
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
140
149
|
*/
|
|
141
150
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
142
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
143
155
|
type XRayClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
144
156
|
/**
|
|
145
|
-
*
|
|
157
|
+
* @public
|
|
158
|
+
*
|
|
159
|
+
* The configuration interface of XRayClient class constructor that set the region, credentials and other options.
|
|
146
160
|
*/
|
|
147
161
|
export interface XRayClientConfig extends XRayClientConfigType {
|
|
148
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
149
166
|
type XRayClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
150
167
|
/**
|
|
151
|
-
*
|
|
168
|
+
* @public
|
|
169
|
+
*
|
|
170
|
+
* The resolved configuration interface of XRayClient class. This is resolved and normalized from the {@link XRayClientConfig | constructor configuration interface}.
|
|
152
171
|
*/
|
|
153
172
|
export interface XRayClientResolvedConfig extends XRayClientResolvedConfigType {
|
|
154
173
|
}
|
|
155
174
|
/**
|
|
175
|
+
* @public
|
|
156
176
|
* <p>Amazon Web Services X-Ray provides APIs for managing debug traces and retrieving service maps
|
|
157
177
|
* and other data created by processing those traces.</p>
|
|
158
178
|
*/
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { BatchGetTracesRequest, BatchGetTracesResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link BatchGetTracesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface BatchGetTracesCommandInput extends BatchGetTracesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link BatchGetTracesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface BatchGetTracesCommandOutput extends BatchGetTracesResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of traces specified by ID. Each trace is a collection of segment
|
|
18
23
|
* documents that originates from a single request. Use <code>GetTraceSummaries</code> to get a
|
|
19
24
|
* list of trace IDs.</p>
|
|
@@ -27,6 +32,8 @@ export interface BatchGetTracesCommandOutput extends BatchGetTracesResult, __Met
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param BatchGetTracesCommandInput - {@link BatchGetTracesCommandInput}
|
|
36
|
+
* @returns {@link BatchGetTracesCommandOutput}
|
|
30
37
|
* @see {@link BatchGetTracesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link BatchGetTracesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link XRayClientResolvedConfig | config} for XRayClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface BatchGetTracesCommandOutput extends BatchGetTracesResult, __Met
|
|
|
42
49
|
export declare class BatchGetTracesCommand extends $Command<BatchGetTracesCommandInput, BatchGetTracesCommandOutput, XRayClientResolvedConfig> {
|
|
43
50
|
readonly input: BatchGetTracesCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: BatchGetTracesCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetTracesCommandInput, BatchGetTracesCommandOutput>;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
50
63
|
private serialize;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
51
67
|
private deserialize;
|
|
52
68
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateGroupRequest, CreateGroupResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateGroupCommandInput extends CreateGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateGroupCommandOutput extends CreateGroupResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a group resource with a name and a filter expression. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateGroupCommandOutput extends CreateGroupResult, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateGroupCommandInput - {@link CreateGroupCommandInput}
|
|
34
|
+
* @returns {@link CreateGroupCommandOutput}
|
|
28
35
|
* @see {@link CreateGroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateGroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link XRayClientResolvedConfig | config} for XRayClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface CreateGroupCommandOutput extends CreateGroupResult, __MetadataB
|
|
|
40
47
|
export declare class CreateGroupCommand extends $Command<CreateGroupCommandInput, CreateGroupCommandOutput, XRayClientResolvedConfig> {
|
|
41
48
|
readonly input: CreateGroupCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: CreateGroupCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGroupCommandInput, CreateGroupCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateSamplingRuleRequest, CreateSamplingRuleResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSamplingRuleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSamplingRuleCommandInput extends CreateSamplingRuleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSamplingRuleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSamplingRuleCommandOutput extends CreateSamplingRuleResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a rule to control sampling behavior for instrumented applications. Services
|
|
18
23
|
* retrieve rules with <a href="https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingRules.html">GetSamplingRules</a>, and evaluate each rule in ascending
|
|
19
24
|
* order of <i>priority</i> for each request. If a rule matches, the service
|
|
@@ -31,6 +36,8 @@ export interface CreateSamplingRuleCommandOutput extends CreateSamplingRuleResul
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param CreateSamplingRuleCommandInput - {@link CreateSamplingRuleCommandInput}
|
|
40
|
+
* @returns {@link CreateSamplingRuleCommandOutput}
|
|
34
41
|
* @see {@link CreateSamplingRuleCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link CreateSamplingRuleCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link XRayClientResolvedConfig | config} for XRayClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface CreateSamplingRuleCommandOutput extends CreateSamplingRuleResul
|
|
|
49
56
|
export declare class CreateSamplingRuleCommand extends $Command<CreateSamplingRuleCommandInput, CreateSamplingRuleCommandOutput, XRayClientResolvedConfig> {
|
|
50
57
|
readonly input: CreateSamplingRuleCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: CreateSamplingRuleCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSamplingRuleCommandInput, CreateSamplingRuleCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteGroupRequest, DeleteGroupResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteGroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteGroupCommandInput extends DeleteGroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteGroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteGroupCommandOutput extends DeleteGroupResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a group resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResult, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteGroupCommandInput - {@link DeleteGroupCommandInput}
|
|
34
|
+
* @returns {@link DeleteGroupCommandOutput}
|
|
28
35
|
* @see {@link DeleteGroupCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteGroupCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link XRayClientResolvedConfig | config} for XRayClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResult, __MetadataB
|
|
|
40
47
|
export declare class DeleteGroupCommand extends $Command<DeleteGroupCommandInput, DeleteGroupCommandOutput, XRayClientResolvedConfig> {
|
|
41
48
|
readonly input: DeleteGroupCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DeleteGroupCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGroupCommandInput, DeleteGroupCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteResourcePolicyRequest, DeleteResourcePolicyResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteResourcePolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteResourcePolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a resource policy from the target Amazon Web Services account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteResourcePolicyCommandInput - {@link DeleteResourcePolicyCommandInput}
|
|
34
|
+
* @returns {@link DeleteResourcePolicyCommandOutput}
|
|
28
35
|
* @see {@link DeleteResourcePolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteResourcePolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link XRayClientResolvedConfig | config} for XRayClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyR
|
|
|
44
51
|
export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, XRayClientResolvedConfig> {
|
|
45
52
|
readonly input: DeleteResourcePolicyCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DeleteResourcePolicyCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteSamplingRuleRequest, DeleteSamplingRuleResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSamplingRuleCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSamplingRuleCommandInput extends DeleteSamplingRuleRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSamplingRuleCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSamplingRuleCommandOutput extends DeleteSamplingRuleResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a sampling rule.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteSamplingRuleCommandOutput extends DeleteSamplingRuleResul
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteSamplingRuleCommandInput - {@link DeleteSamplingRuleCommandInput}
|
|
34
|
+
* @returns {@link DeleteSamplingRuleCommandOutput}
|
|
28
35
|
* @see {@link DeleteSamplingRuleCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteSamplingRuleCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link XRayClientResolvedConfig | config} for XRayClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DeleteSamplingRuleCommandOutput extends DeleteSamplingRuleResul
|
|
|
40
47
|
export declare class DeleteSamplingRuleCommand extends $Command<DeleteSamplingRuleCommandInput, DeleteSamplingRuleCommandOutput, XRayClientResolvedConfig> {
|
|
41
48
|
readonly input: DeleteSamplingRuleCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DeleteSamplingRuleCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSamplingRuleCommandInput, DeleteSamplingRuleCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetEncryptionConfigRequest, GetEncryptionConfigResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetEncryptionConfigCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetEncryptionConfigCommandInput extends GetEncryptionConfigRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetEncryptionConfigCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetEncryptionConfigCommandOutput extends GetEncryptionConfigResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the current encryption configuration for X-Ray data.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetEncryptionConfigCommandOutput extends GetEncryptionConfigRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetEncryptionConfigCommandInput - {@link GetEncryptionConfigCommandInput}
|
|
34
|
+
* @returns {@link GetEncryptionConfigCommandOutput}
|
|
28
35
|
* @see {@link GetEncryptionConfigCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetEncryptionConfigCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link XRayClientResolvedConfig | config} for XRayClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface GetEncryptionConfigCommandOutput extends GetEncryptionConfigRes
|
|
|
40
47
|
export declare class GetEncryptionConfigCommand extends $Command<GetEncryptionConfigCommandInput, GetEncryptionConfigCommandOutput, XRayClientResolvedConfig> {
|
|
41
48
|
readonly input: GetEncryptionConfigCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: GetEncryptionConfigCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEncryptionConfigCommandInput, GetEncryptionConfigCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|