@aws-sdk/client-bcm-dashboards 3.1086.0 → 3.1088.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/BCMDashboards.d.ts +49 -54
- package/dist-types/ts3.4/BCMDashboardsClient.d.ts +7 -20
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateDashboardCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateScheduledReportCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDashboardCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteScheduledReportCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ExecuteScheduledReportCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetDashboardCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetScheduledReportCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListScheduledReportsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDashboardCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateScheduledReportCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -48,10 +48,7 @@ import {
|
|
|
48
48
|
ListTagsForResourceCommandInput,
|
|
49
49
|
ListTagsForResourceCommandOutput,
|
|
50
50
|
} from "./commands/ListTagsForResourceCommand";
|
|
51
|
-
import {
|
|
52
|
-
TagResourceCommandInput,
|
|
53
|
-
TagResourceCommandOutput,
|
|
54
|
-
} from "./commands/TagResourceCommand";
|
|
51
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
55
52
|
import {
|
|
56
53
|
UntagResourceCommandInput,
|
|
57
54
|
UntagResourceCommandOutput,
|
|
@@ -67,216 +64,214 @@ import {
|
|
|
67
64
|
export interface BCMDashboards {
|
|
68
65
|
createDashboard(
|
|
69
66
|
args: CreateDashboardCommandInput,
|
|
70
|
-
options?: __HttpHandlerOptions
|
|
67
|
+
options?: __HttpHandlerOptions,
|
|
71
68
|
): Promise<CreateDashboardCommandOutput>;
|
|
72
69
|
createDashboard(
|
|
73
70
|
args: CreateDashboardCommandInput,
|
|
74
|
-
cb: (err: any, data?: CreateDashboardCommandOutput) => void
|
|
71
|
+
cb: (err: any, data?: CreateDashboardCommandOutput) => void,
|
|
75
72
|
): void;
|
|
76
73
|
createDashboard(
|
|
77
74
|
args: CreateDashboardCommandInput,
|
|
78
75
|
options: __HttpHandlerOptions,
|
|
79
|
-
cb: (err: any, data?: CreateDashboardCommandOutput) => void
|
|
76
|
+
cb: (err: any, data?: CreateDashboardCommandOutput) => void,
|
|
80
77
|
): void;
|
|
81
78
|
createScheduledReport(
|
|
82
79
|
args: CreateScheduledReportCommandInput,
|
|
83
|
-
options?: __HttpHandlerOptions
|
|
80
|
+
options?: __HttpHandlerOptions,
|
|
84
81
|
): Promise<CreateScheduledReportCommandOutput>;
|
|
85
82
|
createScheduledReport(
|
|
86
83
|
args: CreateScheduledReportCommandInput,
|
|
87
|
-
cb: (err: any, data?: CreateScheduledReportCommandOutput) => void
|
|
84
|
+
cb: (err: any, data?: CreateScheduledReportCommandOutput) => void,
|
|
88
85
|
): void;
|
|
89
86
|
createScheduledReport(
|
|
90
87
|
args: CreateScheduledReportCommandInput,
|
|
91
88
|
options: __HttpHandlerOptions,
|
|
92
|
-
cb: (err: any, data?: CreateScheduledReportCommandOutput) => void
|
|
89
|
+
cb: (err: any, data?: CreateScheduledReportCommandOutput) => void,
|
|
93
90
|
): void;
|
|
94
91
|
deleteDashboard(
|
|
95
92
|
args: DeleteDashboardCommandInput,
|
|
96
|
-
options?: __HttpHandlerOptions
|
|
93
|
+
options?: __HttpHandlerOptions,
|
|
97
94
|
): Promise<DeleteDashboardCommandOutput>;
|
|
98
95
|
deleteDashboard(
|
|
99
96
|
args: DeleteDashboardCommandInput,
|
|
100
|
-
cb: (err: any, data?: DeleteDashboardCommandOutput) => void
|
|
97
|
+
cb: (err: any, data?: DeleteDashboardCommandOutput) => void,
|
|
101
98
|
): void;
|
|
102
99
|
deleteDashboard(
|
|
103
100
|
args: DeleteDashboardCommandInput,
|
|
104
101
|
options: __HttpHandlerOptions,
|
|
105
|
-
cb: (err: any, data?: DeleteDashboardCommandOutput) => void
|
|
102
|
+
cb: (err: any, data?: DeleteDashboardCommandOutput) => void,
|
|
106
103
|
): void;
|
|
107
104
|
deleteScheduledReport(
|
|
108
105
|
args: DeleteScheduledReportCommandInput,
|
|
109
|
-
options?: __HttpHandlerOptions
|
|
106
|
+
options?: __HttpHandlerOptions,
|
|
110
107
|
): Promise<DeleteScheduledReportCommandOutput>;
|
|
111
108
|
deleteScheduledReport(
|
|
112
109
|
args: DeleteScheduledReportCommandInput,
|
|
113
|
-
cb: (err: any, data?: DeleteScheduledReportCommandOutput) => void
|
|
110
|
+
cb: (err: any, data?: DeleteScheduledReportCommandOutput) => void,
|
|
114
111
|
): void;
|
|
115
112
|
deleteScheduledReport(
|
|
116
113
|
args: DeleteScheduledReportCommandInput,
|
|
117
114
|
options: __HttpHandlerOptions,
|
|
118
|
-
cb: (err: any, data?: DeleteScheduledReportCommandOutput) => void
|
|
115
|
+
cb: (err: any, data?: DeleteScheduledReportCommandOutput) => void,
|
|
119
116
|
): void;
|
|
120
117
|
executeScheduledReport(
|
|
121
118
|
args: ExecuteScheduledReportCommandInput,
|
|
122
|
-
options?: __HttpHandlerOptions
|
|
119
|
+
options?: __HttpHandlerOptions,
|
|
123
120
|
): Promise<ExecuteScheduledReportCommandOutput>;
|
|
124
121
|
executeScheduledReport(
|
|
125
122
|
args: ExecuteScheduledReportCommandInput,
|
|
126
|
-
cb: (err: any, data?: ExecuteScheduledReportCommandOutput) => void
|
|
123
|
+
cb: (err: any, data?: ExecuteScheduledReportCommandOutput) => void,
|
|
127
124
|
): void;
|
|
128
125
|
executeScheduledReport(
|
|
129
126
|
args: ExecuteScheduledReportCommandInput,
|
|
130
127
|
options: __HttpHandlerOptions,
|
|
131
|
-
cb: (err: any, data?: ExecuteScheduledReportCommandOutput) => void
|
|
128
|
+
cb: (err: any, data?: ExecuteScheduledReportCommandOutput) => void,
|
|
132
129
|
): void;
|
|
133
130
|
getDashboard(
|
|
134
131
|
args: GetDashboardCommandInput,
|
|
135
|
-
options?: __HttpHandlerOptions
|
|
132
|
+
options?: __HttpHandlerOptions,
|
|
136
133
|
): Promise<GetDashboardCommandOutput>;
|
|
137
134
|
getDashboard(
|
|
138
135
|
args: GetDashboardCommandInput,
|
|
139
|
-
cb: (err: any, data?: GetDashboardCommandOutput) => void
|
|
136
|
+
cb: (err: any, data?: GetDashboardCommandOutput) => void,
|
|
140
137
|
): void;
|
|
141
138
|
getDashboard(
|
|
142
139
|
args: GetDashboardCommandInput,
|
|
143
140
|
options: __HttpHandlerOptions,
|
|
144
|
-
cb: (err: any, data?: GetDashboardCommandOutput) => void
|
|
141
|
+
cb: (err: any, data?: GetDashboardCommandOutput) => void,
|
|
145
142
|
): void;
|
|
146
143
|
getResourcePolicy(
|
|
147
144
|
args: GetResourcePolicyCommandInput,
|
|
148
|
-
options?: __HttpHandlerOptions
|
|
145
|
+
options?: __HttpHandlerOptions,
|
|
149
146
|
): Promise<GetResourcePolicyCommandOutput>;
|
|
150
147
|
getResourcePolicy(
|
|
151
148
|
args: GetResourcePolicyCommandInput,
|
|
152
|
-
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
149
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void,
|
|
153
150
|
): void;
|
|
154
151
|
getResourcePolicy(
|
|
155
152
|
args: GetResourcePolicyCommandInput,
|
|
156
153
|
options: __HttpHandlerOptions,
|
|
157
|
-
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
154
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void,
|
|
158
155
|
): void;
|
|
159
156
|
getScheduledReport(
|
|
160
157
|
args: GetScheduledReportCommandInput,
|
|
161
|
-
options?: __HttpHandlerOptions
|
|
158
|
+
options?: __HttpHandlerOptions,
|
|
162
159
|
): Promise<GetScheduledReportCommandOutput>;
|
|
163
160
|
getScheduledReport(
|
|
164
161
|
args: GetScheduledReportCommandInput,
|
|
165
|
-
cb: (err: any, data?: GetScheduledReportCommandOutput) => void
|
|
162
|
+
cb: (err: any, data?: GetScheduledReportCommandOutput) => void,
|
|
166
163
|
): void;
|
|
167
164
|
getScheduledReport(
|
|
168
165
|
args: GetScheduledReportCommandInput,
|
|
169
166
|
options: __HttpHandlerOptions,
|
|
170
|
-
cb: (err: any, data?: GetScheduledReportCommandOutput) => void
|
|
167
|
+
cb: (err: any, data?: GetScheduledReportCommandOutput) => void,
|
|
171
168
|
): void;
|
|
172
169
|
listDashboards(): Promise<ListDashboardsCommandOutput>;
|
|
173
170
|
listDashboards(
|
|
174
171
|
args: ListDashboardsCommandInput,
|
|
175
|
-
options?: __HttpHandlerOptions
|
|
172
|
+
options?: __HttpHandlerOptions,
|
|
176
173
|
): Promise<ListDashboardsCommandOutput>;
|
|
177
174
|
listDashboards(
|
|
178
175
|
args: ListDashboardsCommandInput,
|
|
179
|
-
cb: (err: any, data?: ListDashboardsCommandOutput) => void
|
|
176
|
+
cb: (err: any, data?: ListDashboardsCommandOutput) => void,
|
|
180
177
|
): void;
|
|
181
178
|
listDashboards(
|
|
182
179
|
args: ListDashboardsCommandInput,
|
|
183
180
|
options: __HttpHandlerOptions,
|
|
184
|
-
cb: (err: any, data?: ListDashboardsCommandOutput) => void
|
|
181
|
+
cb: (err: any, data?: ListDashboardsCommandOutput) => void,
|
|
185
182
|
): void;
|
|
186
183
|
listScheduledReports(): Promise<ListScheduledReportsCommandOutput>;
|
|
187
184
|
listScheduledReports(
|
|
188
185
|
args: ListScheduledReportsCommandInput,
|
|
189
|
-
options?: __HttpHandlerOptions
|
|
186
|
+
options?: __HttpHandlerOptions,
|
|
190
187
|
): Promise<ListScheduledReportsCommandOutput>;
|
|
191
188
|
listScheduledReports(
|
|
192
189
|
args: ListScheduledReportsCommandInput,
|
|
193
|
-
cb: (err: any, data?: ListScheduledReportsCommandOutput) => void
|
|
190
|
+
cb: (err: any, data?: ListScheduledReportsCommandOutput) => void,
|
|
194
191
|
): void;
|
|
195
192
|
listScheduledReports(
|
|
196
193
|
args: ListScheduledReportsCommandInput,
|
|
197
194
|
options: __HttpHandlerOptions,
|
|
198
|
-
cb: (err: any, data?: ListScheduledReportsCommandOutput) => void
|
|
195
|
+
cb: (err: any, data?: ListScheduledReportsCommandOutput) => void,
|
|
199
196
|
): void;
|
|
200
197
|
listTagsForResource(
|
|
201
198
|
args: ListTagsForResourceCommandInput,
|
|
202
|
-
options?: __HttpHandlerOptions
|
|
199
|
+
options?: __HttpHandlerOptions,
|
|
203
200
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
204
201
|
listTagsForResource(
|
|
205
202
|
args: ListTagsForResourceCommandInput,
|
|
206
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
203
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
207
204
|
): void;
|
|
208
205
|
listTagsForResource(
|
|
209
206
|
args: ListTagsForResourceCommandInput,
|
|
210
207
|
options: __HttpHandlerOptions,
|
|
211
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
208
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
212
209
|
): void;
|
|
213
210
|
tagResource(
|
|
214
211
|
args: TagResourceCommandInput,
|
|
215
|
-
options?: __HttpHandlerOptions
|
|
212
|
+
options?: __HttpHandlerOptions,
|
|
216
213
|
): Promise<TagResourceCommandOutput>;
|
|
217
214
|
tagResource(
|
|
218
215
|
args: TagResourceCommandInput,
|
|
219
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
216
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
220
217
|
): void;
|
|
221
218
|
tagResource(
|
|
222
219
|
args: TagResourceCommandInput,
|
|
223
220
|
options: __HttpHandlerOptions,
|
|
224
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
221
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
225
222
|
): void;
|
|
226
223
|
untagResource(
|
|
227
224
|
args: UntagResourceCommandInput,
|
|
228
|
-
options?: __HttpHandlerOptions
|
|
225
|
+
options?: __HttpHandlerOptions,
|
|
229
226
|
): Promise<UntagResourceCommandOutput>;
|
|
230
227
|
untagResource(
|
|
231
228
|
args: UntagResourceCommandInput,
|
|
232
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
229
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
233
230
|
): void;
|
|
234
231
|
untagResource(
|
|
235
232
|
args: UntagResourceCommandInput,
|
|
236
233
|
options: __HttpHandlerOptions,
|
|
237
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
234
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
238
235
|
): void;
|
|
239
236
|
updateDashboard(
|
|
240
237
|
args: UpdateDashboardCommandInput,
|
|
241
|
-
options?: __HttpHandlerOptions
|
|
238
|
+
options?: __HttpHandlerOptions,
|
|
242
239
|
): Promise<UpdateDashboardCommandOutput>;
|
|
243
240
|
updateDashboard(
|
|
244
241
|
args: UpdateDashboardCommandInput,
|
|
245
|
-
cb: (err: any, data?: UpdateDashboardCommandOutput) => void
|
|
242
|
+
cb: (err: any, data?: UpdateDashboardCommandOutput) => void,
|
|
246
243
|
): void;
|
|
247
244
|
updateDashboard(
|
|
248
245
|
args: UpdateDashboardCommandInput,
|
|
249
246
|
options: __HttpHandlerOptions,
|
|
250
|
-
cb: (err: any, data?: UpdateDashboardCommandOutput) => void
|
|
247
|
+
cb: (err: any, data?: UpdateDashboardCommandOutput) => void,
|
|
251
248
|
): void;
|
|
252
249
|
updateScheduledReport(
|
|
253
250
|
args: UpdateScheduledReportCommandInput,
|
|
254
|
-
options?: __HttpHandlerOptions
|
|
251
|
+
options?: __HttpHandlerOptions,
|
|
255
252
|
): Promise<UpdateScheduledReportCommandOutput>;
|
|
256
253
|
updateScheduledReport(
|
|
257
254
|
args: UpdateScheduledReportCommandInput,
|
|
258
|
-
cb: (err: any, data?: UpdateScheduledReportCommandOutput) => void
|
|
255
|
+
cb: (err: any, data?: UpdateScheduledReportCommandOutput) => void,
|
|
259
256
|
): void;
|
|
260
257
|
updateScheduledReport(
|
|
261
258
|
args: UpdateScheduledReportCommandInput,
|
|
262
259
|
options: __HttpHandlerOptions,
|
|
263
|
-
cb: (err: any, data?: UpdateScheduledReportCommandOutput) => void
|
|
260
|
+
cb: (err: any, data?: UpdateScheduledReportCommandOutput) => void,
|
|
264
261
|
): void;
|
|
265
262
|
paginateListDashboards(
|
|
266
263
|
args?: ListDashboardsCommandInput,
|
|
267
264
|
paginationConfig?: Pick<
|
|
268
265
|
PaginationConfiguration,
|
|
269
266
|
Exclude<keyof PaginationConfiguration, "client">
|
|
270
|
-
|
|
267
|
+
>,
|
|
271
268
|
): Paginator<ListDashboardsCommandOutput>;
|
|
272
269
|
paginateListScheduledReports(
|
|
273
270
|
args?: ListScheduledReportsCommandInput,
|
|
274
271
|
paginationConfig?: Pick<
|
|
275
272
|
PaginationConfiguration,
|
|
276
273
|
Exclude<keyof PaginationConfiguration, "client">
|
|
277
|
-
|
|
274
|
+
>,
|
|
278
275
|
): Paginator<ListScheduledReportsCommandOutput>;
|
|
279
276
|
}
|
|
280
|
-
export declare class BCMDashboards
|
|
281
|
-
extends BCMDashboardsClient
|
|
282
|
-
implements BCMDashboards {}
|
|
277
|
+
export declare class BCMDashboards extends BCMDashboardsClient implements BCMDashboards {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -80,10 +77,7 @@ import {
|
|
|
80
77
|
ListTagsForResourceCommandInput,
|
|
81
78
|
ListTagsForResourceCommandOutput,
|
|
82
79
|
} from "./commands/ListTagsForResourceCommand";
|
|
83
|
-
import {
|
|
84
|
-
TagResourceCommandInput,
|
|
85
|
-
TagResourceCommandOutput,
|
|
86
|
-
} from "./commands/TagResourceCommand";
|
|
80
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
87
81
|
import {
|
|
88
82
|
UntagResourceCommandInput,
|
|
89
83
|
UntagResourceCommandOutput,
|
|
@@ -135,8 +129,7 @@ export type ServiceOutputTypes =
|
|
|
135
129
|
| UntagResourceCommandOutput
|
|
136
130
|
| UpdateDashboardCommandOutput
|
|
137
131
|
| UpdateScheduledReportCommandOutput;
|
|
138
|
-
export interface ClientDefaults
|
|
139
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
132
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
140
133
|
requestHandler?: __HttpHandlerUserInput;
|
|
141
134
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
142
135
|
urlParser?: __UrlParser;
|
|
@@ -161,9 +154,7 @@ export interface ClientDefaults
|
|
|
161
154
|
extensions?: RuntimeExtension[];
|
|
162
155
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
163
156
|
}
|
|
164
|
-
export type BCMDashboardsClientConfigType = Partial<
|
|
165
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
166
|
-
> &
|
|
157
|
+
export type BCMDashboardsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
167
158
|
ClientDefaults &
|
|
168
159
|
UserAgentInputConfig &
|
|
169
160
|
RetryInputConfig &
|
|
@@ -172,8 +163,7 @@ export type BCMDashboardsClientConfigType = Partial<
|
|
|
172
163
|
EndpointInputConfig<EndpointParameters> &
|
|
173
164
|
HttpAuthSchemeInputConfig &
|
|
174
165
|
ClientInputEndpointParameters;
|
|
175
|
-
export interface BCMDashboardsClientConfig
|
|
176
|
-
extends BCMDashboardsClientConfigType {}
|
|
166
|
+
export interface BCMDashboardsClientConfig extends BCMDashboardsClientConfigType {}
|
|
177
167
|
export type BCMDashboardsClientResolvedConfigType =
|
|
178
168
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
179
169
|
Required<ClientDefaults> &
|
|
@@ -185,8 +175,7 @@ export type BCMDashboardsClientResolvedConfigType =
|
|
|
185
175
|
EndpointResolvedConfig<EndpointParameters> &
|
|
186
176
|
HttpAuthSchemeResolvedConfig &
|
|
187
177
|
ClientResolvedEndpointParameters;
|
|
188
|
-
export interface BCMDashboardsClientResolvedConfig
|
|
189
|
-
extends BCMDashboardsClientResolvedConfigType {}
|
|
178
|
+
export interface BCMDashboardsClientResolvedConfig extends BCMDashboardsClientResolvedConfigType {}
|
|
190
179
|
export declare class BCMDashboardsClient extends __Client<
|
|
191
180
|
__HttpHandlerOptions,
|
|
192
181
|
ServiceInputTypes,
|
|
@@ -194,8 +183,6 @@ export declare class BCMDashboardsClient extends __Client<
|
|
|
194
183
|
BCMDashboardsClientResolvedConfig
|
|
195
184
|
> {
|
|
196
185
|
readonly config: BCMDashboardsClientResolvedConfig;
|
|
197
|
-
constructor(
|
|
198
|
-
...[configuration]: __CheckOptionalClientConfig<BCMDashboardsClientConfig>
|
|
199
|
-
);
|
|
186
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<BCMDashboardsClientConfig>);
|
|
200
187
|
destroy(): void;
|
|
201
188
|
}
|
|
@@ -7,17 +7,10 @@ import { BCMDashboardsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: BCMDashboardsHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: BCMDashboardsHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): BCMDashboardsHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { BCMDashboardsClientResolvedConfig } from "../BCMDashboardsClient";
|
|
15
|
-
export interface BCMDashboardsHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface BCMDashboardsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface BCMDashboardsHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface BCMDashboardsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
BCMDashboardsClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
BCMDashboardsHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultBCMDashboardsHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: BCMDashboardsClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<BCMDashboardsHttpAuthSchemeParameters>;
|
|
31
|
-
export interface BCMDashboardsHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<BCMDashboardsHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface BCMDashboardsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<BCMDashboardsHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultBCMDashboardsHttpAuthSchemeProvider: BCMDashboardsHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: BCMDashboardsHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: BCMDashboardsHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./BCMDashboardsClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
BCMDashboardsClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateDashboardRequest,
|
|
4
|
-
CreateDashboardResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateDashboardRequest, CreateDashboardResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateDashboardCommandInput extends CreateDashboardRequest {}
|
|
8
|
-
export interface CreateDashboardCommandOutput
|
|
9
|
-
extends CreateDashboardResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateDashboardCommandOutput extends CreateDashboardResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateDashboardCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateDashboardCommandInput
|
|
8
|
+
input: CreateDashboardCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateDashboardCommandInput,
|
|
16
11
|
CreateDashboardCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateDashboardCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateDashboardCommandInput
|
|
17
|
+
input: CreateDashboardCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateDashboardCommandInput,
|
|
25
20
|
CreateDashboardCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateScheduledReportRequest,
|
|
4
|
-
CreateScheduledReportResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateScheduledReportRequest, CreateScheduledReportResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateScheduledReportCommandInput
|
|
8
|
-
extends CreateScheduledReportRequest {}
|
|
4
|
+
export interface CreateScheduledReportCommandInput extends CreateScheduledReportRequest {}
|
|
9
5
|
export interface CreateScheduledReportCommandOutput
|
|
10
|
-
extends CreateScheduledReportResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateScheduledReportResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateScheduledReportCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateScheduledReportCommandInput
|
|
9
|
+
input: CreateScheduledReportCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateScheduledReportCommandInput,
|
|
17
12
|
CreateScheduledReportCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateScheduledReportCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateScheduledReportCommandInput
|
|
18
|
+
input: CreateScheduledReportCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateScheduledReportCommandInput,
|
|
26
21
|
CreateScheduledReportCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteDashboardRequest,
|
|
4
|
-
DeleteDashboardResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteDashboardRequest, DeleteDashboardResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteDashboardCommandInput extends DeleteDashboardRequest {}
|
|
8
|
-
export interface DeleteDashboardCommandOutput
|
|
9
|
-
extends DeleteDashboardResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteDashboardCommandOutput extends DeleteDashboardResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteDashboardCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteDashboardCommandInput
|
|
8
|
+
input: DeleteDashboardCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteDashboardCommandInput,
|
|
16
11
|
DeleteDashboardCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteDashboardCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteDashboardCommandInput
|
|
17
|
+
input: DeleteDashboardCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteDashboardCommandInput,
|
|
25
20
|
DeleteDashboardCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteScheduledReportRequest,
|
|
4
|
-
DeleteScheduledReportResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteScheduledReportRequest, DeleteScheduledReportResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteScheduledReportCommandInput
|
|
8
|
-
extends DeleteScheduledReportRequest {}
|
|
4
|
+
export interface DeleteScheduledReportCommandInput extends DeleteScheduledReportRequest {}
|
|
9
5
|
export interface DeleteScheduledReportCommandOutput
|
|
10
|
-
extends DeleteScheduledReportResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteScheduledReportResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteScheduledReportCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteScheduledReportCommandInput
|
|
9
|
+
input: DeleteScheduledReportCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteScheduledReportCommandInput,
|
|
17
12
|
DeleteScheduledReportCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteScheduledReportCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteScheduledReportCommandInput
|
|
18
|
+
input: DeleteScheduledReportCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteScheduledReportCommandInput,
|
|
26
21
|
DeleteScheduledReportCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ExecuteScheduledReportRequest,
|
|
4
|
-
ExecuteScheduledReportResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ExecuteScheduledReportRequest, ExecuteScheduledReportResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ExecuteScheduledReportCommandInput
|
|
8
|
-
extends ExecuteScheduledReportRequest {}
|
|
4
|
+
export interface ExecuteScheduledReportCommandInput extends ExecuteScheduledReportRequest {}
|
|
9
5
|
export interface ExecuteScheduledReportCommandOutput
|
|
10
|
-
extends ExecuteScheduledReportResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ExecuteScheduledReportResponse, __MetadataBearer {}
|
|
12
7
|
declare const ExecuteScheduledReportCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ExecuteScheduledReportCommandInput
|
|
9
|
+
input: ExecuteScheduledReportCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ExecuteScheduledReportCommandInput,
|
|
17
12
|
ExecuteScheduledReportCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ExecuteScheduledReportCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ExecuteScheduledReportCommandInput
|
|
18
|
+
input: ExecuteScheduledReportCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ExecuteScheduledReportCommandInput,
|
|
26
21
|
ExecuteScheduledReportCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetDashboardRequest, GetDashboardResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetDashboardCommandInput extends GetDashboardRequest {}
|
|
5
|
-
export interface GetDashboardCommandOutput
|
|
6
|
-
extends GetDashboardResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetDashboardCommandOutput extends GetDashboardResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetDashboardCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetDashboardCommandInput
|
|
8
|
+
input: GetDashboardCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetDashboardCommandInput,
|
|
13
11
|
GetDashboardCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetDashboardCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetDashboardCommandInput
|
|
17
|
+
input: GetDashboardCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetDashboardCommandInput,
|
|
22
20
|
GetDashboardCommandOutput,
|