@aws-sdk/client-application-signals 3.1073.0 → 3.1074.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/README.md +49 -0
- package/dist-cjs/index.js +154 -1
- package/dist-cjs/schemas/schemas_0.js +377 -64
- package/dist-es/ApplicationSignals.js +18 -0
- package/dist-es/commands/BatchDeleteInstrumentationConfigurationsCommand.js +16 -0
- package/dist-es/commands/CreateInstrumentationConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteInstrumentationConfigurationCommand.js +16 -0
- package/dist-es/commands/GetInstrumentationConfigurationCommand.js +16 -0
- package/dist-es/commands/GetInstrumentationConfigurationStatusCommand.js +16 -0
- package/dist-es/commands/ListInstrumentationConfigurationsCommand.js +16 -0
- package/dist-es/commands/ReportInstrumentationConfigurationStatusCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/enums.js +39 -0
- package/dist-es/pagination/GetInstrumentationConfigurationStatusPaginator.js +4 -0
- package/dist-es/pagination/ListInstrumentationConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +347 -64
- package/dist-types/ApplicationSignals.d.ts +63 -0
- package/dist-types/ApplicationSignalsClient.d.ts +9 -2
- package/dist-types/commands/BatchDeleteInstrumentationConfigurationsCommand.d.ts +111 -0
- package/dist-types/commands/CreateInstrumentationConfigurationCommand.d.ts +181 -0
- package/dist-types/commands/DeleteInstrumentationConfigurationCommand.d.ts +99 -0
- package/dist-types/commands/GetInstrumentationConfigurationCommand.d.ts +146 -0
- package/dist-types/commands/GetInstrumentationConfigurationStatusCommand.d.ts +124 -0
- package/dist-types/commands/ListInstrumentationConfigurationsCommand.d.ts +143 -0
- package/dist-types/commands/ReportInstrumentationConfigurationStatusCommand.d.ts +104 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +118 -0
- package/dist-types/models/models_0.d.ts +1087 -78
- package/dist-types/pagination/GetInstrumentationConfigurationStatusPaginator.d.ts +7 -0
- package/dist-types/pagination/ListInstrumentationConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +37 -0
- package/dist-types/ts3.4/ApplicationSignals.d.ts +169 -0
- package/dist-types/ts3.4/ApplicationSignalsClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDeleteInstrumentationConfigurationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateInstrumentationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteInstrumentationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetInstrumentationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetInstrumentationConfigurationStatusCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListInstrumentationConfigurationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ReportInstrumentationConfigurationStatusCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/enums.d.ts +55 -0
- package/dist-types/ts3.4/models/models_0.d.ts +290 -4
- package/dist-types/ts3.4/pagination/GetInstrumentationConfigurationStatusPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListInstrumentationConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +37 -0
- package/package.json +3 -3
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { GetInstrumentationConfigurationStatusCommandInput, GetInstrumentationConfigurationStatusCommandOutput } from "../commands/GetInstrumentationConfigurationStatusCommand";
|
|
3
|
+
import type { ApplicationSignalsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateGetInstrumentationConfigurationStatus: (config: ApplicationSignalsPaginationConfiguration, input: GetInstrumentationConfigurationStatusCommandInput, ...rest: any[]) => Paginator<GetInstrumentationConfigurationStatusCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListInstrumentationConfigurationsCommandInput, ListInstrumentationConfigurationsCommandOutput } from "../commands/ListInstrumentationConfigurationsCommand";
|
|
3
|
+
import type { ApplicationSignalsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListInstrumentationConfigurations: (config: ApplicationSignalsPaginationConfiguration, input: ListInstrumentationConfigurationsCommandInput, ...rest: any[]) => Paginator<ListInstrumentationConfigurationsCommandOutput>;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./GetInstrumentationConfigurationStatusPaginator";
|
|
2
3
|
export * from "./ListEntityEventsPaginator";
|
|
4
|
+
export * from "./ListInstrumentationConfigurationsPaginator";
|
|
3
5
|
export * from "./ListServiceDependenciesPaginator";
|
|
4
6
|
export * from "./ListServiceDependentsPaginator";
|
|
5
7
|
export * from "./ListServiceLevelObjectiveExclusionWindowsPaginator";
|
|
@@ -17,6 +17,12 @@ export declare var AttributeFilter$: StaticStructureSchema;
|
|
|
17
17
|
export declare var AuditFinding$: StaticStructureSchema;
|
|
18
18
|
export declare var AuditorResult$: StaticStructureSchema;
|
|
19
19
|
export declare var AuditTarget$: StaticStructureSchema;
|
|
20
|
+
export declare var BatchDeleteByResourceArns$: StaticStructureSchema;
|
|
21
|
+
export declare var BatchDeleteError$: StaticStructureSchema;
|
|
22
|
+
export declare var BatchDeleteInstrumentationConfigurationsRequest$: StaticStructureSchema;
|
|
23
|
+
export declare var BatchDeleteInstrumentationConfigurationsResponse$: StaticStructureSchema;
|
|
24
|
+
export declare var BatchDeleteScope$: StaticStructureSchema;
|
|
25
|
+
export declare var BatchDeleteSuccessfulDeletion$: StaticStructureSchema;
|
|
20
26
|
export declare var BatchGetServiceLevelObjectiveBudgetReportInput$: StaticStructureSchema;
|
|
21
27
|
export declare var BatchGetServiceLevelObjectiveBudgetReportOutput$: StaticStructureSchema;
|
|
22
28
|
export declare var BatchUpdateExclusionWindowsError$: StaticStructureSchema;
|
|
@@ -25,11 +31,18 @@ export declare var BatchUpdateExclusionWindowsOutput$: StaticStructureSchema;
|
|
|
25
31
|
export declare var BurnRateConfiguration$: StaticStructureSchema;
|
|
26
32
|
export declare var CalendarInterval$: StaticStructureSchema;
|
|
27
33
|
export declare var CanaryEntity$: StaticStructureSchema;
|
|
34
|
+
export declare var CaptureLimitsConfig$: StaticStructureSchema;
|
|
28
35
|
export declare var ChangeEvent$: StaticStructureSchema;
|
|
36
|
+
export declare var CodeCaptureConfiguration$: StaticStructureSchema;
|
|
37
|
+
export declare var CodeLocation$: StaticStructureSchema;
|
|
29
38
|
export declare var CompositeSliConfig$: StaticStructureSchema;
|
|
39
|
+
export declare var CreateInstrumentationConfigurationRequest$: StaticStructureSchema;
|
|
40
|
+
export declare var CreateInstrumentationConfigurationResponse$: StaticStructureSchema;
|
|
30
41
|
export declare var CreateServiceLevelObjectiveInput$: StaticStructureSchema;
|
|
31
42
|
export declare var CreateServiceLevelObjectiveOutput$: StaticStructureSchema;
|
|
32
43
|
export declare var DeleteGroupingConfigurationOutput$: StaticStructureSchema;
|
|
44
|
+
export declare var DeleteInstrumentationConfigurationRequest$: StaticStructureSchema;
|
|
45
|
+
export declare var DeleteInstrumentationConfigurationResponse$: StaticStructureSchema;
|
|
33
46
|
export declare var DeleteServiceLevelObjectiveInput$: StaticStructureSchema;
|
|
34
47
|
export declare var DeleteServiceLevelObjectiveOutput$: StaticStructureSchema;
|
|
35
48
|
export declare var DependencyConfig$: StaticStructureSchema;
|
|
@@ -37,6 +50,10 @@ export declare var DependencyGraph$: StaticStructureSchema;
|
|
|
37
50
|
export declare var Dimension$: StaticStructureSchema;
|
|
38
51
|
export declare var Edge$: StaticStructureSchema;
|
|
39
52
|
export declare var ExclusionWindow$: StaticStructureSchema;
|
|
53
|
+
export declare var GetInstrumentationConfigurationRequest$: StaticStructureSchema;
|
|
54
|
+
export declare var GetInstrumentationConfigurationResponse$: StaticStructureSchema;
|
|
55
|
+
export declare var GetInstrumentationConfigurationStatusRequest$: StaticStructureSchema;
|
|
56
|
+
export declare var GetInstrumentationConfigurationStatusResponse$: StaticStructureSchema;
|
|
40
57
|
export declare var GetServiceInput$: StaticStructureSchema;
|
|
41
58
|
export declare var GetServiceLevelObjectiveInput$: StaticStructureSchema;
|
|
42
59
|
export declare var GetServiceLevelObjectiveOutput$: StaticStructureSchema;
|
|
@@ -44,12 +61,18 @@ export declare var GetServiceOutput$: StaticStructureSchema;
|
|
|
44
61
|
export declare var Goal$: StaticStructureSchema;
|
|
45
62
|
export declare var GroupingAttributeDefinition$: StaticStructureSchema;
|
|
46
63
|
export declare var GroupingConfiguration$: StaticStructureSchema;
|
|
64
|
+
export declare var InstrumentationConfiguration$: StaticStructureSchema;
|
|
65
|
+
export declare var InstrumentationConfigurationsPage$: StaticStructureSchema;
|
|
66
|
+
export declare var InstrumentationConfigurationStatusReport$: StaticStructureSchema;
|
|
67
|
+
export declare var InstrumentationConfigurationWithoutServiceEnv$: StaticStructureSchema;
|
|
68
|
+
export declare var InstrumentationStatusEvent$: StaticStructureSchema;
|
|
47
69
|
export declare var ListAuditFindingsInput$: StaticStructureSchema;
|
|
48
70
|
export declare var ListAuditFindingsOutput$: StaticStructureSchema;
|
|
49
71
|
export declare var ListEntityEventsInput$: StaticStructureSchema;
|
|
50
72
|
export declare var ListEntityEventsOutput$: StaticStructureSchema;
|
|
51
73
|
export declare var ListGroupingAttributeDefinitionsInput$: StaticStructureSchema;
|
|
52
74
|
export declare var ListGroupingAttributeDefinitionsOutput$: StaticStructureSchema;
|
|
75
|
+
export declare var ListInstrumentationConfigurationsRequest$: StaticStructureSchema;
|
|
53
76
|
export declare var ListServiceDependenciesInput$: StaticStructureSchema;
|
|
54
77
|
export declare var ListServiceDependenciesOutput$: StaticStructureSchema;
|
|
55
78
|
export declare var ListServiceDependentsInput$: StaticStructureSchema;
|
|
@@ -76,6 +99,8 @@ export declare var Node$: StaticStructureSchema;
|
|
|
76
99
|
export declare var PutGroupingConfigurationInput$: StaticStructureSchema;
|
|
77
100
|
export declare var PutGroupingConfigurationOutput$: StaticStructureSchema;
|
|
78
101
|
export declare var RecurrenceRule$: StaticStructureSchema;
|
|
102
|
+
export declare var ReportInstrumentationConfigurationStatusRequest$: StaticStructureSchema;
|
|
103
|
+
export declare var ReportInstrumentationConfigurationStatusResponse$: StaticStructureSchema;
|
|
79
104
|
export declare var RequestBasedServiceLevelIndicator$: StaticStructureSchema;
|
|
80
105
|
export declare var RequestBasedServiceLevelIndicatorConfig$: StaticStructureSchema;
|
|
81
106
|
export declare var RequestBasedServiceLevelIndicatorMetric$: StaticStructureSchema;
|
|
@@ -105,25 +130,36 @@ export declare var StartDiscoveryOutput$: StaticStructureSchema;
|
|
|
105
130
|
export declare var Tag$: StaticStructureSchema;
|
|
106
131
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
107
132
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
133
|
+
export declare var UnprocessedStatusEvent$: StaticStructureSchema;
|
|
108
134
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
109
135
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
110
136
|
export declare var UpdateServiceLevelObjectiveInput$: StaticStructureSchema;
|
|
111
137
|
export declare var UpdateServiceLevelObjectiveOutput$: StaticStructureSchema;
|
|
112
138
|
export declare var Window$: StaticStructureSchema;
|
|
113
139
|
export declare var AuditTargetEntity$: StaticUnionSchema;
|
|
140
|
+
export declare var BatchDeleteDeletionTarget$: StaticUnionSchema;
|
|
141
|
+
export declare var CaptureConfiguration$: StaticUnionSchema;
|
|
114
142
|
export declare var CompositeSliComponent$: StaticUnionSchema;
|
|
115
143
|
export declare var Interval$: StaticUnionSchema;
|
|
144
|
+
export declare var Location$: StaticUnionSchema;
|
|
145
|
+
export declare var LocationIdentifier$: StaticUnionSchema;
|
|
116
146
|
export declare var MonitoredRequestCountMetricDataQueries$: StaticUnionSchema;
|
|
147
|
+
export declare var BatchDeleteInstrumentationConfigurations$: StaticOperationSchema;
|
|
117
148
|
export declare var BatchGetServiceLevelObjectiveBudgetReport$: StaticOperationSchema;
|
|
118
149
|
export declare var BatchUpdateExclusionWindows$: StaticOperationSchema;
|
|
150
|
+
export declare var CreateInstrumentationConfiguration$: StaticOperationSchema;
|
|
119
151
|
export declare var CreateServiceLevelObjective$: StaticOperationSchema;
|
|
120
152
|
export declare var DeleteGroupingConfiguration$: StaticOperationSchema;
|
|
153
|
+
export declare var DeleteInstrumentationConfiguration$: StaticOperationSchema;
|
|
121
154
|
export declare var DeleteServiceLevelObjective$: StaticOperationSchema;
|
|
155
|
+
export declare var GetInstrumentationConfiguration$: StaticOperationSchema;
|
|
156
|
+
export declare var GetInstrumentationConfigurationStatus$: StaticOperationSchema;
|
|
122
157
|
export declare var GetService$: StaticOperationSchema;
|
|
123
158
|
export declare var GetServiceLevelObjective$: StaticOperationSchema;
|
|
124
159
|
export declare var ListAuditFindings$: StaticOperationSchema;
|
|
125
160
|
export declare var ListEntityEvents$: StaticOperationSchema;
|
|
126
161
|
export declare var ListGroupingAttributeDefinitions$: StaticOperationSchema;
|
|
162
|
+
export declare var ListInstrumentationConfigurations$: StaticOperationSchema;
|
|
127
163
|
export declare var ListServiceDependencies$: StaticOperationSchema;
|
|
128
164
|
export declare var ListServiceDependents$: StaticOperationSchema;
|
|
129
165
|
export declare var ListServiceLevelObjectiveExclusionWindows$: StaticOperationSchema;
|
|
@@ -133,6 +169,7 @@ export declare var ListServices$: StaticOperationSchema;
|
|
|
133
169
|
export declare var ListServiceStates$: StaticOperationSchema;
|
|
134
170
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
135
171
|
export declare var PutGroupingConfiguration$: StaticOperationSchema;
|
|
172
|
+
export declare var ReportInstrumentationConfigurationStatus$: StaticOperationSchema;
|
|
136
173
|
export declare var StartDiscovery$: StaticOperationSchema;
|
|
137
174
|
export declare var TagResource$: StaticOperationSchema;
|
|
138
175
|
export declare var UntagResource$: StaticOperationSchema;
|
|
@@ -4,6 +4,10 @@ import {
|
|
|
4
4
|
Paginator,
|
|
5
5
|
} from "@smithy/types";
|
|
6
6
|
import { ApplicationSignalsClient } from "./ApplicationSignalsClient";
|
|
7
|
+
import {
|
|
8
|
+
BatchDeleteInstrumentationConfigurationsCommandInput,
|
|
9
|
+
BatchDeleteInstrumentationConfigurationsCommandOutput,
|
|
10
|
+
} from "./commands/BatchDeleteInstrumentationConfigurationsCommand";
|
|
7
11
|
import {
|
|
8
12
|
BatchGetServiceLevelObjectiveBudgetReportCommandInput,
|
|
9
13
|
BatchGetServiceLevelObjectiveBudgetReportCommandOutput,
|
|
@@ -12,6 +16,10 @@ import {
|
|
|
12
16
|
BatchUpdateExclusionWindowsCommandInput,
|
|
13
17
|
BatchUpdateExclusionWindowsCommandOutput,
|
|
14
18
|
} from "./commands/BatchUpdateExclusionWindowsCommand";
|
|
19
|
+
import {
|
|
20
|
+
CreateInstrumentationConfigurationCommandInput,
|
|
21
|
+
CreateInstrumentationConfigurationCommandOutput,
|
|
22
|
+
} from "./commands/CreateInstrumentationConfigurationCommand";
|
|
15
23
|
import {
|
|
16
24
|
CreateServiceLevelObjectiveCommandInput,
|
|
17
25
|
CreateServiceLevelObjectiveCommandOutput,
|
|
@@ -20,10 +28,22 @@ import {
|
|
|
20
28
|
DeleteGroupingConfigurationCommandInput,
|
|
21
29
|
DeleteGroupingConfigurationCommandOutput,
|
|
22
30
|
} from "./commands/DeleteGroupingConfigurationCommand";
|
|
31
|
+
import {
|
|
32
|
+
DeleteInstrumentationConfigurationCommandInput,
|
|
33
|
+
DeleteInstrumentationConfigurationCommandOutput,
|
|
34
|
+
} from "./commands/DeleteInstrumentationConfigurationCommand";
|
|
23
35
|
import {
|
|
24
36
|
DeleteServiceLevelObjectiveCommandInput,
|
|
25
37
|
DeleteServiceLevelObjectiveCommandOutput,
|
|
26
38
|
} from "./commands/DeleteServiceLevelObjectiveCommand";
|
|
39
|
+
import {
|
|
40
|
+
GetInstrumentationConfigurationCommandInput,
|
|
41
|
+
GetInstrumentationConfigurationCommandOutput,
|
|
42
|
+
} from "./commands/GetInstrumentationConfigurationCommand";
|
|
43
|
+
import {
|
|
44
|
+
GetInstrumentationConfigurationStatusCommandInput,
|
|
45
|
+
GetInstrumentationConfigurationStatusCommandOutput,
|
|
46
|
+
} from "./commands/GetInstrumentationConfigurationStatusCommand";
|
|
27
47
|
import {
|
|
28
48
|
GetServiceCommandInput,
|
|
29
49
|
GetServiceCommandOutput,
|
|
@@ -44,6 +64,10 @@ import {
|
|
|
44
64
|
ListGroupingAttributeDefinitionsCommandInput,
|
|
45
65
|
ListGroupingAttributeDefinitionsCommandOutput,
|
|
46
66
|
} from "./commands/ListGroupingAttributeDefinitionsCommand";
|
|
67
|
+
import {
|
|
68
|
+
ListInstrumentationConfigurationsCommandInput,
|
|
69
|
+
ListInstrumentationConfigurationsCommandOutput,
|
|
70
|
+
} from "./commands/ListInstrumentationConfigurationsCommand";
|
|
47
71
|
import {
|
|
48
72
|
ListServiceDependenciesCommandInput,
|
|
49
73
|
ListServiceDependenciesCommandOutput,
|
|
@@ -80,6 +104,10 @@ import {
|
|
|
80
104
|
PutGroupingConfigurationCommandInput,
|
|
81
105
|
PutGroupingConfigurationCommandOutput,
|
|
82
106
|
} from "./commands/PutGroupingConfigurationCommand";
|
|
107
|
+
import {
|
|
108
|
+
ReportInstrumentationConfigurationStatusCommandInput,
|
|
109
|
+
ReportInstrumentationConfigurationStatusCommandOutput,
|
|
110
|
+
} from "./commands/ReportInstrumentationConfigurationStatusCommand";
|
|
83
111
|
import {
|
|
84
112
|
StartDiscoveryCommandInput,
|
|
85
113
|
StartDiscoveryCommandOutput,
|
|
@@ -97,6 +125,25 @@ import {
|
|
|
97
125
|
UpdateServiceLevelObjectiveCommandOutput,
|
|
98
126
|
} from "./commands/UpdateServiceLevelObjectiveCommand";
|
|
99
127
|
export interface ApplicationSignals {
|
|
128
|
+
batchDeleteInstrumentationConfigurations(
|
|
129
|
+
args: BatchDeleteInstrumentationConfigurationsCommandInput,
|
|
130
|
+
options?: __HttpHandlerOptions
|
|
131
|
+
): Promise<BatchDeleteInstrumentationConfigurationsCommandOutput>;
|
|
132
|
+
batchDeleteInstrumentationConfigurations(
|
|
133
|
+
args: BatchDeleteInstrumentationConfigurationsCommandInput,
|
|
134
|
+
cb: (
|
|
135
|
+
err: any,
|
|
136
|
+
data?: BatchDeleteInstrumentationConfigurationsCommandOutput
|
|
137
|
+
) => void
|
|
138
|
+
): void;
|
|
139
|
+
batchDeleteInstrumentationConfigurations(
|
|
140
|
+
args: BatchDeleteInstrumentationConfigurationsCommandInput,
|
|
141
|
+
options: __HttpHandlerOptions,
|
|
142
|
+
cb: (
|
|
143
|
+
err: any,
|
|
144
|
+
data?: BatchDeleteInstrumentationConfigurationsCommandOutput
|
|
145
|
+
) => void
|
|
146
|
+
): void;
|
|
100
147
|
batchGetServiceLevelObjectiveBudgetReport(
|
|
101
148
|
args: BatchGetServiceLevelObjectiveBudgetReportCommandInput,
|
|
102
149
|
options?: __HttpHandlerOptions
|
|
@@ -129,6 +176,25 @@ export interface ApplicationSignals {
|
|
|
129
176
|
options: __HttpHandlerOptions,
|
|
130
177
|
cb: (err: any, data?: BatchUpdateExclusionWindowsCommandOutput) => void
|
|
131
178
|
): void;
|
|
179
|
+
createInstrumentationConfiguration(
|
|
180
|
+
args: CreateInstrumentationConfigurationCommandInput,
|
|
181
|
+
options?: __HttpHandlerOptions
|
|
182
|
+
): Promise<CreateInstrumentationConfigurationCommandOutput>;
|
|
183
|
+
createInstrumentationConfiguration(
|
|
184
|
+
args: CreateInstrumentationConfigurationCommandInput,
|
|
185
|
+
cb: (
|
|
186
|
+
err: any,
|
|
187
|
+
data?: CreateInstrumentationConfigurationCommandOutput
|
|
188
|
+
) => void
|
|
189
|
+
): void;
|
|
190
|
+
createInstrumentationConfiguration(
|
|
191
|
+
args: CreateInstrumentationConfigurationCommandInput,
|
|
192
|
+
options: __HttpHandlerOptions,
|
|
193
|
+
cb: (
|
|
194
|
+
err: any,
|
|
195
|
+
data?: CreateInstrumentationConfigurationCommandOutput
|
|
196
|
+
) => void
|
|
197
|
+
): void;
|
|
132
198
|
createServiceLevelObjective(
|
|
133
199
|
args: CreateServiceLevelObjectiveCommandInput,
|
|
134
200
|
options?: __HttpHandlerOptions
|
|
@@ -156,6 +222,25 @@ export interface ApplicationSignals {
|
|
|
156
222
|
options: __HttpHandlerOptions,
|
|
157
223
|
cb: (err: any, data?: DeleteGroupingConfigurationCommandOutput) => void
|
|
158
224
|
): void;
|
|
225
|
+
deleteInstrumentationConfiguration(
|
|
226
|
+
args: DeleteInstrumentationConfigurationCommandInput,
|
|
227
|
+
options?: __HttpHandlerOptions
|
|
228
|
+
): Promise<DeleteInstrumentationConfigurationCommandOutput>;
|
|
229
|
+
deleteInstrumentationConfiguration(
|
|
230
|
+
args: DeleteInstrumentationConfigurationCommandInput,
|
|
231
|
+
cb: (
|
|
232
|
+
err: any,
|
|
233
|
+
data?: DeleteInstrumentationConfigurationCommandOutput
|
|
234
|
+
) => void
|
|
235
|
+
): void;
|
|
236
|
+
deleteInstrumentationConfiguration(
|
|
237
|
+
args: DeleteInstrumentationConfigurationCommandInput,
|
|
238
|
+
options: __HttpHandlerOptions,
|
|
239
|
+
cb: (
|
|
240
|
+
err: any,
|
|
241
|
+
data?: DeleteInstrumentationConfigurationCommandOutput
|
|
242
|
+
) => void
|
|
243
|
+
): void;
|
|
159
244
|
deleteServiceLevelObjective(
|
|
160
245
|
args: DeleteServiceLevelObjectiveCommandInput,
|
|
161
246
|
options?: __HttpHandlerOptions
|
|
@@ -169,6 +254,38 @@ export interface ApplicationSignals {
|
|
|
169
254
|
options: __HttpHandlerOptions,
|
|
170
255
|
cb: (err: any, data?: DeleteServiceLevelObjectiveCommandOutput) => void
|
|
171
256
|
): void;
|
|
257
|
+
getInstrumentationConfiguration(
|
|
258
|
+
args: GetInstrumentationConfigurationCommandInput,
|
|
259
|
+
options?: __HttpHandlerOptions
|
|
260
|
+
): Promise<GetInstrumentationConfigurationCommandOutput>;
|
|
261
|
+
getInstrumentationConfiguration(
|
|
262
|
+
args: GetInstrumentationConfigurationCommandInput,
|
|
263
|
+
cb: (err: any, data?: GetInstrumentationConfigurationCommandOutput) => void
|
|
264
|
+
): void;
|
|
265
|
+
getInstrumentationConfiguration(
|
|
266
|
+
args: GetInstrumentationConfigurationCommandInput,
|
|
267
|
+
options: __HttpHandlerOptions,
|
|
268
|
+
cb: (err: any, data?: GetInstrumentationConfigurationCommandOutput) => void
|
|
269
|
+
): void;
|
|
270
|
+
getInstrumentationConfigurationStatus(
|
|
271
|
+
args: GetInstrumentationConfigurationStatusCommandInput,
|
|
272
|
+
options?: __HttpHandlerOptions
|
|
273
|
+
): Promise<GetInstrumentationConfigurationStatusCommandOutput>;
|
|
274
|
+
getInstrumentationConfigurationStatus(
|
|
275
|
+
args: GetInstrumentationConfigurationStatusCommandInput,
|
|
276
|
+
cb: (
|
|
277
|
+
err: any,
|
|
278
|
+
data?: GetInstrumentationConfigurationStatusCommandOutput
|
|
279
|
+
) => void
|
|
280
|
+
): void;
|
|
281
|
+
getInstrumentationConfigurationStatus(
|
|
282
|
+
args: GetInstrumentationConfigurationStatusCommandInput,
|
|
283
|
+
options: __HttpHandlerOptions,
|
|
284
|
+
cb: (
|
|
285
|
+
err: any,
|
|
286
|
+
data?: GetInstrumentationConfigurationStatusCommandOutput
|
|
287
|
+
) => void
|
|
288
|
+
): void;
|
|
172
289
|
getService(
|
|
173
290
|
args: GetServiceCommandInput,
|
|
174
291
|
options?: __HttpHandlerOptions
|
|
@@ -235,6 +352,25 @@ export interface ApplicationSignals {
|
|
|
235
352
|
options: __HttpHandlerOptions,
|
|
236
353
|
cb: (err: any, data?: ListGroupingAttributeDefinitionsCommandOutput) => void
|
|
237
354
|
): void;
|
|
355
|
+
listInstrumentationConfigurations(
|
|
356
|
+
args: ListInstrumentationConfigurationsCommandInput,
|
|
357
|
+
options?: __HttpHandlerOptions
|
|
358
|
+
): Promise<ListInstrumentationConfigurationsCommandOutput>;
|
|
359
|
+
listInstrumentationConfigurations(
|
|
360
|
+
args: ListInstrumentationConfigurationsCommandInput,
|
|
361
|
+
cb: (
|
|
362
|
+
err: any,
|
|
363
|
+
data?: ListInstrumentationConfigurationsCommandOutput
|
|
364
|
+
) => void
|
|
365
|
+
): void;
|
|
366
|
+
listInstrumentationConfigurations(
|
|
367
|
+
args: ListInstrumentationConfigurationsCommandInput,
|
|
368
|
+
options: __HttpHandlerOptions,
|
|
369
|
+
cb: (
|
|
370
|
+
err: any,
|
|
371
|
+
data?: ListInstrumentationConfigurationsCommandOutput
|
|
372
|
+
) => void
|
|
373
|
+
): void;
|
|
238
374
|
listServiceDependencies(
|
|
239
375
|
args: ListServiceDependenciesCommandInput,
|
|
240
376
|
options?: __HttpHandlerOptions
|
|
@@ -359,6 +495,25 @@ export interface ApplicationSignals {
|
|
|
359
495
|
options: __HttpHandlerOptions,
|
|
360
496
|
cb: (err: any, data?: PutGroupingConfigurationCommandOutput) => void
|
|
361
497
|
): void;
|
|
498
|
+
reportInstrumentationConfigurationStatus(
|
|
499
|
+
args: ReportInstrumentationConfigurationStatusCommandInput,
|
|
500
|
+
options?: __HttpHandlerOptions
|
|
501
|
+
): Promise<ReportInstrumentationConfigurationStatusCommandOutput>;
|
|
502
|
+
reportInstrumentationConfigurationStatus(
|
|
503
|
+
args: ReportInstrumentationConfigurationStatusCommandInput,
|
|
504
|
+
cb: (
|
|
505
|
+
err: any,
|
|
506
|
+
data?: ReportInstrumentationConfigurationStatusCommandOutput
|
|
507
|
+
) => void
|
|
508
|
+
): void;
|
|
509
|
+
reportInstrumentationConfigurationStatus(
|
|
510
|
+
args: ReportInstrumentationConfigurationStatusCommandInput,
|
|
511
|
+
options: __HttpHandlerOptions,
|
|
512
|
+
cb: (
|
|
513
|
+
err: any,
|
|
514
|
+
data?: ReportInstrumentationConfigurationStatusCommandOutput
|
|
515
|
+
) => void
|
|
516
|
+
): void;
|
|
362
517
|
startDiscovery(): Promise<StartDiscoveryCommandOutput>;
|
|
363
518
|
startDiscovery(
|
|
364
519
|
args: StartDiscoveryCommandInput,
|
|
@@ -412,6 +567,13 @@ export interface ApplicationSignals {
|
|
|
412
567
|
options: __HttpHandlerOptions,
|
|
413
568
|
cb: (err: any, data?: UpdateServiceLevelObjectiveCommandOutput) => void
|
|
414
569
|
): void;
|
|
570
|
+
paginateGetInstrumentationConfigurationStatus(
|
|
571
|
+
args: GetInstrumentationConfigurationStatusCommandInput,
|
|
572
|
+
paginationConfig?: Pick<
|
|
573
|
+
PaginationConfiguration,
|
|
574
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
575
|
+
>
|
|
576
|
+
): Paginator<GetInstrumentationConfigurationStatusCommandOutput>;
|
|
415
577
|
paginateListEntityEvents(
|
|
416
578
|
args: ListEntityEventsCommandInput,
|
|
417
579
|
paginationConfig?: Pick<
|
|
@@ -419,6 +581,13 @@ export interface ApplicationSignals {
|
|
|
419
581
|
Exclude<keyof PaginationConfiguration, "client">
|
|
420
582
|
>
|
|
421
583
|
): Paginator<ListEntityEventsCommandOutput>;
|
|
584
|
+
paginateListInstrumentationConfigurations(
|
|
585
|
+
args: ListInstrumentationConfigurationsCommandInput,
|
|
586
|
+
paginationConfig?: Pick<
|
|
587
|
+
PaginationConfiguration,
|
|
588
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
589
|
+
>
|
|
590
|
+
): Paginator<ListInstrumentationConfigurationsCommandOutput>;
|
|
422
591
|
paginateListServiceDependencies(
|
|
423
592
|
args: ListServiceDependenciesCommandInput,
|
|
424
593
|
paginationConfig?: Pick<
|
|
@@ -36,6 +36,10 @@ import {
|
|
|
36
36
|
HttpAuthSchemeInputConfig,
|
|
37
37
|
HttpAuthSchemeResolvedConfig,
|
|
38
38
|
} from "./auth/httpAuthSchemeProvider";
|
|
39
|
+
import {
|
|
40
|
+
BatchDeleteInstrumentationConfigurationsCommandInput,
|
|
41
|
+
BatchDeleteInstrumentationConfigurationsCommandOutput,
|
|
42
|
+
} from "./commands/BatchDeleteInstrumentationConfigurationsCommand";
|
|
39
43
|
import {
|
|
40
44
|
BatchGetServiceLevelObjectiveBudgetReportCommandInput,
|
|
41
45
|
BatchGetServiceLevelObjectiveBudgetReportCommandOutput,
|
|
@@ -44,6 +48,10 @@ import {
|
|
|
44
48
|
BatchUpdateExclusionWindowsCommandInput,
|
|
45
49
|
BatchUpdateExclusionWindowsCommandOutput,
|
|
46
50
|
} from "./commands/BatchUpdateExclusionWindowsCommand";
|
|
51
|
+
import {
|
|
52
|
+
CreateInstrumentationConfigurationCommandInput,
|
|
53
|
+
CreateInstrumentationConfigurationCommandOutput,
|
|
54
|
+
} from "./commands/CreateInstrumentationConfigurationCommand";
|
|
47
55
|
import {
|
|
48
56
|
CreateServiceLevelObjectiveCommandInput,
|
|
49
57
|
CreateServiceLevelObjectiveCommandOutput,
|
|
@@ -52,10 +60,22 @@ import {
|
|
|
52
60
|
DeleteGroupingConfigurationCommandInput,
|
|
53
61
|
DeleteGroupingConfigurationCommandOutput,
|
|
54
62
|
} from "./commands/DeleteGroupingConfigurationCommand";
|
|
63
|
+
import {
|
|
64
|
+
DeleteInstrumentationConfigurationCommandInput,
|
|
65
|
+
DeleteInstrumentationConfigurationCommandOutput,
|
|
66
|
+
} from "./commands/DeleteInstrumentationConfigurationCommand";
|
|
55
67
|
import {
|
|
56
68
|
DeleteServiceLevelObjectiveCommandInput,
|
|
57
69
|
DeleteServiceLevelObjectiveCommandOutput,
|
|
58
70
|
} from "./commands/DeleteServiceLevelObjectiveCommand";
|
|
71
|
+
import {
|
|
72
|
+
GetInstrumentationConfigurationCommandInput,
|
|
73
|
+
GetInstrumentationConfigurationCommandOutput,
|
|
74
|
+
} from "./commands/GetInstrumentationConfigurationCommand";
|
|
75
|
+
import {
|
|
76
|
+
GetInstrumentationConfigurationStatusCommandInput,
|
|
77
|
+
GetInstrumentationConfigurationStatusCommandOutput,
|
|
78
|
+
} from "./commands/GetInstrumentationConfigurationStatusCommand";
|
|
59
79
|
import {
|
|
60
80
|
GetServiceCommandInput,
|
|
61
81
|
GetServiceCommandOutput,
|
|
@@ -76,6 +96,10 @@ import {
|
|
|
76
96
|
ListGroupingAttributeDefinitionsCommandInput,
|
|
77
97
|
ListGroupingAttributeDefinitionsCommandOutput,
|
|
78
98
|
} from "./commands/ListGroupingAttributeDefinitionsCommand";
|
|
99
|
+
import {
|
|
100
|
+
ListInstrumentationConfigurationsCommandInput,
|
|
101
|
+
ListInstrumentationConfigurationsCommandOutput,
|
|
102
|
+
} from "./commands/ListInstrumentationConfigurationsCommand";
|
|
79
103
|
import {
|
|
80
104
|
ListServiceDependenciesCommandInput,
|
|
81
105
|
ListServiceDependenciesCommandOutput,
|
|
@@ -112,6 +136,10 @@ import {
|
|
|
112
136
|
PutGroupingConfigurationCommandInput,
|
|
113
137
|
PutGroupingConfigurationCommandOutput,
|
|
114
138
|
} from "./commands/PutGroupingConfigurationCommand";
|
|
139
|
+
import {
|
|
140
|
+
ReportInstrumentationConfigurationStatusCommandInput,
|
|
141
|
+
ReportInstrumentationConfigurationStatusCommandOutput,
|
|
142
|
+
} from "./commands/ReportInstrumentationConfigurationStatusCommand";
|
|
115
143
|
import {
|
|
116
144
|
StartDiscoveryCommandInput,
|
|
117
145
|
StartDiscoveryCommandOutput,
|
|
@@ -136,16 +164,22 @@ import {
|
|
|
136
164
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
137
165
|
export { __Client };
|
|
138
166
|
export type ServiceInputTypes =
|
|
167
|
+
| BatchDeleteInstrumentationConfigurationsCommandInput
|
|
139
168
|
| BatchGetServiceLevelObjectiveBudgetReportCommandInput
|
|
140
169
|
| BatchUpdateExclusionWindowsCommandInput
|
|
170
|
+
| CreateInstrumentationConfigurationCommandInput
|
|
141
171
|
| CreateServiceLevelObjectiveCommandInput
|
|
142
172
|
| DeleteGroupingConfigurationCommandInput
|
|
173
|
+
| DeleteInstrumentationConfigurationCommandInput
|
|
143
174
|
| DeleteServiceLevelObjectiveCommandInput
|
|
175
|
+
| GetInstrumentationConfigurationCommandInput
|
|
176
|
+
| GetInstrumentationConfigurationStatusCommandInput
|
|
144
177
|
| GetServiceCommandInput
|
|
145
178
|
| GetServiceLevelObjectiveCommandInput
|
|
146
179
|
| ListAuditFindingsCommandInput
|
|
147
180
|
| ListEntityEventsCommandInput
|
|
148
181
|
| ListGroupingAttributeDefinitionsCommandInput
|
|
182
|
+
| ListInstrumentationConfigurationsCommandInput
|
|
149
183
|
| ListServiceDependenciesCommandInput
|
|
150
184
|
| ListServiceDependentsCommandInput
|
|
151
185
|
| ListServiceLevelObjectiveExclusionWindowsCommandInput
|
|
@@ -155,21 +189,28 @@ export type ServiceInputTypes =
|
|
|
155
189
|
| ListServicesCommandInput
|
|
156
190
|
| ListTagsForResourceCommandInput
|
|
157
191
|
| PutGroupingConfigurationCommandInput
|
|
192
|
+
| ReportInstrumentationConfigurationStatusCommandInput
|
|
158
193
|
| StartDiscoveryCommandInput
|
|
159
194
|
| TagResourceCommandInput
|
|
160
195
|
| UntagResourceCommandInput
|
|
161
196
|
| UpdateServiceLevelObjectiveCommandInput;
|
|
162
197
|
export type ServiceOutputTypes =
|
|
198
|
+
| BatchDeleteInstrumentationConfigurationsCommandOutput
|
|
163
199
|
| BatchGetServiceLevelObjectiveBudgetReportCommandOutput
|
|
164
200
|
| BatchUpdateExclusionWindowsCommandOutput
|
|
201
|
+
| CreateInstrumentationConfigurationCommandOutput
|
|
165
202
|
| CreateServiceLevelObjectiveCommandOutput
|
|
166
203
|
| DeleteGroupingConfigurationCommandOutput
|
|
204
|
+
| DeleteInstrumentationConfigurationCommandOutput
|
|
167
205
|
| DeleteServiceLevelObjectiveCommandOutput
|
|
206
|
+
| GetInstrumentationConfigurationCommandOutput
|
|
207
|
+
| GetInstrumentationConfigurationStatusCommandOutput
|
|
168
208
|
| GetServiceCommandOutput
|
|
169
209
|
| GetServiceLevelObjectiveCommandOutput
|
|
170
210
|
| ListAuditFindingsCommandOutput
|
|
171
211
|
| ListEntityEventsCommandOutput
|
|
172
212
|
| ListGroupingAttributeDefinitionsCommandOutput
|
|
213
|
+
| ListInstrumentationConfigurationsCommandOutput
|
|
173
214
|
| ListServiceDependenciesCommandOutput
|
|
174
215
|
| ListServiceDependentsCommandOutput
|
|
175
216
|
| ListServiceLevelObjectiveExclusionWindowsCommandOutput
|
|
@@ -179,6 +220,7 @@ export type ServiceOutputTypes =
|
|
|
179
220
|
| ListServicesCommandOutput
|
|
180
221
|
| ListTagsForResourceCommandOutput
|
|
181
222
|
| PutGroupingConfigurationCommandOutput
|
|
223
|
+
| ReportInstrumentationConfigurationStatusCommandOutput
|
|
182
224
|
| StartDiscoveryCommandOutput
|
|
183
225
|
| TagResourceCommandOutput
|
|
184
226
|
| UntagResourceCommandOutput
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApplicationSignalsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApplicationSignalsClient";
|
|
8
|
+
import {
|
|
9
|
+
BatchDeleteInstrumentationConfigurationsRequest,
|
|
10
|
+
BatchDeleteInstrumentationConfigurationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface BatchDeleteInstrumentationConfigurationsCommandInput
|
|
15
|
+
extends BatchDeleteInstrumentationConfigurationsRequest {}
|
|
16
|
+
export interface BatchDeleteInstrumentationConfigurationsCommandOutput
|
|
17
|
+
extends BatchDeleteInstrumentationConfigurationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const BatchDeleteInstrumentationConfigurationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: BatchDeleteInstrumentationConfigurationsCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
BatchDeleteInstrumentationConfigurationsCommandInput,
|
|
24
|
+
BatchDeleteInstrumentationConfigurationsCommandOutput,
|
|
25
|
+
ApplicationSignalsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: BatchDeleteInstrumentationConfigurationsCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
BatchDeleteInstrumentationConfigurationsCommandInput,
|
|
33
|
+
BatchDeleteInstrumentationConfigurationsCommandOutput,
|
|
34
|
+
ApplicationSignalsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class BatchDeleteInstrumentationConfigurationsCommand extends BatchDeleteInstrumentationConfigurationsCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: BatchDeleteInstrumentationConfigurationsRequest;
|
|
46
|
+
output: BatchDeleteInstrumentationConfigurationsResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: BatchDeleteInstrumentationConfigurationsCommandInput;
|
|
50
|
+
output: BatchDeleteInstrumentationConfigurationsCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApplicationSignalsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApplicationSignalsClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateInstrumentationConfigurationRequest,
|
|
10
|
+
CreateInstrumentationConfigurationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateInstrumentationConfigurationCommandInput
|
|
15
|
+
extends CreateInstrumentationConfigurationRequest {}
|
|
16
|
+
export interface CreateInstrumentationConfigurationCommandOutput
|
|
17
|
+
extends CreateInstrumentationConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateInstrumentationConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateInstrumentationConfigurationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
CreateInstrumentationConfigurationCommandInput,
|
|
24
|
+
CreateInstrumentationConfigurationCommandOutput,
|
|
25
|
+
ApplicationSignalsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateInstrumentationConfigurationCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
CreateInstrumentationConfigurationCommandInput,
|
|
33
|
+
CreateInstrumentationConfigurationCommandOutput,
|
|
34
|
+
ApplicationSignalsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class CreateInstrumentationConfigurationCommand extends CreateInstrumentationConfigurationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: CreateInstrumentationConfigurationRequest;
|
|
46
|
+
output: CreateInstrumentationConfigurationResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: CreateInstrumentationConfigurationCommandInput;
|
|
50
|
+
output: CreateInstrumentationConfigurationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|