@aws-sdk/client-bcm-dashboards 3.987.0 → 3.989.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 +28 -540
- package/dist-cjs/models/BCMDashboardsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +82 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +406 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +41 -35
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var BCMDashboardsServiceException = require('./models/BCMDashboardsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -108,476 +111,6 @@ class BCMDashboardsClient extends smithyClient.Client {
|
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class BCMDashboardsServiceException extends smithyClient.ServiceException {
|
|
112
|
-
constructor(options) {
|
|
113
|
-
super(options);
|
|
114
|
-
Object.setPrototypeOf(this, BCMDashboardsServiceException.prototype);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
class AccessDeniedException extends BCMDashboardsServiceException {
|
|
119
|
-
name = "AccessDeniedException";
|
|
120
|
-
$fault = "client";
|
|
121
|
-
constructor(opts) {
|
|
122
|
-
super({
|
|
123
|
-
name: "AccessDeniedException",
|
|
124
|
-
$fault: "client",
|
|
125
|
-
...opts,
|
|
126
|
-
});
|
|
127
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
class InternalServerException extends BCMDashboardsServiceException {
|
|
131
|
-
name = "InternalServerException";
|
|
132
|
-
$fault = "server";
|
|
133
|
-
constructor(opts) {
|
|
134
|
-
super({
|
|
135
|
-
name: "InternalServerException",
|
|
136
|
-
$fault: "server",
|
|
137
|
-
...opts,
|
|
138
|
-
});
|
|
139
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
class ServiceQuotaExceededException extends BCMDashboardsServiceException {
|
|
143
|
-
name = "ServiceQuotaExceededException";
|
|
144
|
-
$fault = "client";
|
|
145
|
-
constructor(opts) {
|
|
146
|
-
super({
|
|
147
|
-
name: "ServiceQuotaExceededException",
|
|
148
|
-
$fault: "client",
|
|
149
|
-
...opts,
|
|
150
|
-
});
|
|
151
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
class ThrottlingException extends BCMDashboardsServiceException {
|
|
155
|
-
name = "ThrottlingException";
|
|
156
|
-
$fault = "client";
|
|
157
|
-
constructor(opts) {
|
|
158
|
-
super({
|
|
159
|
-
name: "ThrottlingException",
|
|
160
|
-
$fault: "client",
|
|
161
|
-
...opts,
|
|
162
|
-
});
|
|
163
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
class ValidationException extends BCMDashboardsServiceException {
|
|
167
|
-
name = "ValidationException";
|
|
168
|
-
$fault = "client";
|
|
169
|
-
constructor(opts) {
|
|
170
|
-
super({
|
|
171
|
-
name: "ValidationException",
|
|
172
|
-
$fault: "client",
|
|
173
|
-
...opts,
|
|
174
|
-
});
|
|
175
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
class ResourceNotFoundException extends BCMDashboardsServiceException {
|
|
179
|
-
name = "ResourceNotFoundException";
|
|
180
|
-
$fault = "client";
|
|
181
|
-
constructor(opts) {
|
|
182
|
-
super({
|
|
183
|
-
name: "ResourceNotFoundException",
|
|
184
|
-
$fault: "client",
|
|
185
|
-
...opts,
|
|
186
|
-
});
|
|
187
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
const _ADE = "AccessDeniedException";
|
|
192
|
-
const _CAUQ = "CostAndUsageQuery";
|
|
193
|
-
const _CCV = "CostCategoryValues";
|
|
194
|
-
const _CD = "CreateDashboard";
|
|
195
|
-
const _CDR = "CreateDashboardRequest";
|
|
196
|
-
const _CDRr = "CreateDashboardResponse";
|
|
197
|
-
const _DC = "DisplayConfig";
|
|
198
|
-
const _DD = "DeleteDashboard";
|
|
199
|
-
const _DDR = "DeleteDashboardRequest";
|
|
200
|
-
const _DDRe = "DeleteDashboardResponse";
|
|
201
|
-
const _DR = "DashboardReference";
|
|
202
|
-
const _DRL = "DashboardReferenceList";
|
|
203
|
-
const _DTR = "DateTimeRange";
|
|
204
|
-
const _DTV = "DateTimeValue";
|
|
205
|
-
const _DV = "DimensionValues";
|
|
206
|
-
const _E = "Expression";
|
|
207
|
-
const _Ex = "Expressions";
|
|
208
|
-
const _GD = "GroupDefinition";
|
|
209
|
-
const _GDC = "GraphDisplayConfig";
|
|
210
|
-
const _GDCM = "GraphDisplayConfigMap";
|
|
211
|
-
const _GDR = "GetDashboardRequest";
|
|
212
|
-
const _GDRe = "GetDashboardResponse";
|
|
213
|
-
const _GDe = "GetDashboard";
|
|
214
|
-
const _GDr = "GroupDefinitions";
|
|
215
|
-
const _GRP = "GetResourcePolicy";
|
|
216
|
-
const _GRPR = "GetResourcePolicyRequest";
|
|
217
|
-
const _GRPRe = "GetResourcePolicyResponse";
|
|
218
|
-
const _ISE = "InternalServerException";
|
|
219
|
-
const _LD = "ListDashboards";
|
|
220
|
-
const _LDR = "ListDashboardsRequest";
|
|
221
|
-
const _LDRi = "ListDashboardsResponse";
|
|
222
|
-
const _LTFR = "ListTagsForResource";
|
|
223
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
224
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
225
|
-
const _QP = "QueryParameters";
|
|
226
|
-
const _RCQ = "ReservationCoverageQuery";
|
|
227
|
-
const _RNFE = "ResourceNotFoundException";
|
|
228
|
-
const _RT = "ResourceTag";
|
|
229
|
-
const _RTL = "ResourceTagList";
|
|
230
|
-
const _RUQ = "ReservationUtilizationQuery";
|
|
231
|
-
const _SPCQ = "SavingsPlansCoverageQuery";
|
|
232
|
-
const _SPUQ = "SavingsPlansUtilizationQuery";
|
|
233
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
234
|
-
const _TDCS = "TableDisplayConfigStruct";
|
|
235
|
-
const _TE = "ThrottlingException";
|
|
236
|
-
const _TR = "TagResource";
|
|
237
|
-
const _TRR = "TagResourceRequest";
|
|
238
|
-
const _TRRa = "TagResourceResponse";
|
|
239
|
-
const _TV = "TagValues";
|
|
240
|
-
const _UD = "UpdateDashboard";
|
|
241
|
-
const _UDR = "UpdateDashboardRequest";
|
|
242
|
-
const _UDRp = "UpdateDashboardResponse";
|
|
243
|
-
const _UR = "UntagResource";
|
|
244
|
-
const _URR = "UntagResourceRequest";
|
|
245
|
-
const _URRn = "UntagResourceResponse";
|
|
246
|
-
const _VE = "ValidationException";
|
|
247
|
-
const _W = "Widget";
|
|
248
|
-
const _WC = "WidgetConfig";
|
|
249
|
-
const _WCL = "WidgetConfigList";
|
|
250
|
-
const _WL = "WidgetList";
|
|
251
|
-
const _a = "arn";
|
|
252
|
-
const _an = "and";
|
|
253
|
-
const _c = "client";
|
|
254
|
-
const _cA = "createdAt";
|
|
255
|
-
const _cAU = "costAndUsage";
|
|
256
|
-
const _cC = "costCategories";
|
|
257
|
-
const _co = "configs";
|
|
258
|
-
const _d = "description";
|
|
259
|
-
const _dC = "displayConfig";
|
|
260
|
-
const _da = "dashboards";
|
|
261
|
-
const _di = "dimensions";
|
|
262
|
-
const _e = "error";
|
|
263
|
-
const _eT = "endTime";
|
|
264
|
-
const _f = "filter";
|
|
265
|
-
const _g = "granularity";
|
|
266
|
-
const _gB = "groupBy";
|
|
267
|
-
const _gr = "graph";
|
|
268
|
-
const _h = "height";
|
|
269
|
-
const _hE = "httpError";
|
|
270
|
-
const _hO = "horizontalOffset";
|
|
271
|
-
const _k = "key";
|
|
272
|
-
const _m = "message";
|
|
273
|
-
const _mO = "matchOptions";
|
|
274
|
-
const _mR = "maxResults";
|
|
275
|
-
const _me = "metrics";
|
|
276
|
-
const _n = "name";
|
|
277
|
-
const _nT = "nextToken";
|
|
278
|
-
const _no = "not";
|
|
279
|
-
const _o = "or";
|
|
280
|
-
const _pD = "policyDocument";
|
|
281
|
-
const _qP = "queryParameters";
|
|
282
|
-
const _rA = "resourceArn";
|
|
283
|
-
const _rC = "reservationCoverage";
|
|
284
|
-
const _rT = "resourceTags";
|
|
285
|
-
const _rTK = "resourceTagKeys";
|
|
286
|
-
const _rU = "reservationUtilization";
|
|
287
|
-
const _s = "server";
|
|
288
|
-
const _sPC = "savingsPlansCoverage";
|
|
289
|
-
const _sPU = "savingsPlansUtilization";
|
|
290
|
-
const _sT = "startTime";
|
|
291
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.bcmdashboards";
|
|
292
|
-
const _t = "type";
|
|
293
|
-
const _tR = "timeRange";
|
|
294
|
-
const _ta = "tags";
|
|
295
|
-
const _tab = "table";
|
|
296
|
-
const _ti = "title";
|
|
297
|
-
const _uA = "updatedAt";
|
|
298
|
-
const _v = "values";
|
|
299
|
-
const _vT = "visualType";
|
|
300
|
-
const _va = "value";
|
|
301
|
-
const _w = "widgets";
|
|
302
|
-
const _wi = "width";
|
|
303
|
-
const n0 = "com.amazonaws.bcmdashboards";
|
|
304
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
305
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
306
|
-
[_m],
|
|
307
|
-
[0], 1
|
|
308
|
-
];
|
|
309
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
310
|
-
var CostAndUsageQuery$ = [3, n0, _CAUQ,
|
|
311
|
-
0,
|
|
312
|
-
[_me, _tR, _g, _gB, _f],
|
|
313
|
-
[64 | 0, () => DateTimeRange$, 0, () => GroupDefinitions, () => Expression$], 3
|
|
314
|
-
];
|
|
315
|
-
var CostCategoryValues$ = [3, n0, _CCV,
|
|
316
|
-
0,
|
|
317
|
-
[_k, _v, _mO],
|
|
318
|
-
[0, 64 | 0, 64 | 0]
|
|
319
|
-
];
|
|
320
|
-
var CreateDashboardRequest$ = [3, n0, _CDR,
|
|
321
|
-
0,
|
|
322
|
-
[_n, _w, _d, _rT],
|
|
323
|
-
[0, () => WidgetList, 0, () => ResourceTagList], 2
|
|
324
|
-
];
|
|
325
|
-
var CreateDashboardResponse$ = [3, n0, _CDRr,
|
|
326
|
-
0,
|
|
327
|
-
[_a],
|
|
328
|
-
[0], 1
|
|
329
|
-
];
|
|
330
|
-
var DashboardReference$ = [3, n0, _DR,
|
|
331
|
-
0,
|
|
332
|
-
[_a, _n, _t, _cA, _uA, _d],
|
|
333
|
-
[0, 0, 0, 4, 4, 0], 5
|
|
334
|
-
];
|
|
335
|
-
var DateTimeRange$ = [3, n0, _DTR,
|
|
336
|
-
0,
|
|
337
|
-
[_sT, _eT],
|
|
338
|
-
[() => DateTimeValue$, () => DateTimeValue$], 2
|
|
339
|
-
];
|
|
340
|
-
var DateTimeValue$ = [3, n0, _DTV,
|
|
341
|
-
0,
|
|
342
|
-
[_t, _va],
|
|
343
|
-
[0, 0], 2
|
|
344
|
-
];
|
|
345
|
-
var DeleteDashboardRequest$ = [3, n0, _DDR,
|
|
346
|
-
0,
|
|
347
|
-
[_a],
|
|
348
|
-
[0], 1
|
|
349
|
-
];
|
|
350
|
-
var DeleteDashboardResponse$ = [3, n0, _DDRe,
|
|
351
|
-
0,
|
|
352
|
-
[_a],
|
|
353
|
-
[0], 1
|
|
354
|
-
];
|
|
355
|
-
var DimensionValues$ = [3, n0, _DV,
|
|
356
|
-
0,
|
|
357
|
-
[_k, _v, _mO],
|
|
358
|
-
[0, 64 | 0, 64 | 0], 2
|
|
359
|
-
];
|
|
360
|
-
var Expression$ = [3, n0, _E,
|
|
361
|
-
0,
|
|
362
|
-
[_o, _an, _no, _di, _ta, _cC],
|
|
363
|
-
[() => Expressions, () => Expressions, () => Expression$, () => DimensionValues$, () => TagValues$, () => CostCategoryValues$]
|
|
364
|
-
];
|
|
365
|
-
var GetDashboardRequest$ = [3, n0, _GDR,
|
|
366
|
-
0,
|
|
367
|
-
[_a],
|
|
368
|
-
[0], 1
|
|
369
|
-
];
|
|
370
|
-
var GetDashboardResponse$ = [3, n0, _GDRe,
|
|
371
|
-
0,
|
|
372
|
-
[_a, _n, _t, _w, _cA, _uA, _d],
|
|
373
|
-
[0, 0, 0, () => WidgetList, 4, 4, 0], 6
|
|
374
|
-
];
|
|
375
|
-
var GetResourcePolicyRequest$ = [3, n0, _GRPR,
|
|
376
|
-
0,
|
|
377
|
-
[_rA],
|
|
378
|
-
[0], 1
|
|
379
|
-
];
|
|
380
|
-
var GetResourcePolicyResponse$ = [3, n0, _GRPRe,
|
|
381
|
-
0,
|
|
382
|
-
[_rA, _pD],
|
|
383
|
-
[0, 0], 2
|
|
384
|
-
];
|
|
385
|
-
var GraphDisplayConfig$ = [3, n0, _GDC,
|
|
386
|
-
0,
|
|
387
|
-
[_vT],
|
|
388
|
-
[0], 1
|
|
389
|
-
];
|
|
390
|
-
var GroupDefinition$ = [3, n0, _GD,
|
|
391
|
-
0,
|
|
392
|
-
[_k, _t],
|
|
393
|
-
[0, 0], 1
|
|
394
|
-
];
|
|
395
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
396
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
397
|
-
[_m],
|
|
398
|
-
[0], 1
|
|
399
|
-
];
|
|
400
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
401
|
-
var ListDashboardsRequest$ = [3, n0, _LDR,
|
|
402
|
-
0,
|
|
403
|
-
[_mR, _nT],
|
|
404
|
-
[1, 0]
|
|
405
|
-
];
|
|
406
|
-
var ListDashboardsResponse$ = [3, n0, _LDRi,
|
|
407
|
-
0,
|
|
408
|
-
[_da, _nT],
|
|
409
|
-
[() => DashboardReferenceList, 0], 1
|
|
410
|
-
];
|
|
411
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
412
|
-
0,
|
|
413
|
-
[_rA],
|
|
414
|
-
[0], 1
|
|
415
|
-
];
|
|
416
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
417
|
-
0,
|
|
418
|
-
[_rT],
|
|
419
|
-
[() => ResourceTagList]
|
|
420
|
-
];
|
|
421
|
-
var ReservationCoverageQuery$ = [3, n0, _RCQ,
|
|
422
|
-
0,
|
|
423
|
-
[_tR, _gB, _g, _f, _me],
|
|
424
|
-
[() => DateTimeRange$, () => GroupDefinitions, 0, () => Expression$, 64 | 0], 1
|
|
425
|
-
];
|
|
426
|
-
var ReservationUtilizationQuery$ = [3, n0, _RUQ,
|
|
427
|
-
0,
|
|
428
|
-
[_tR, _gB, _g, _f],
|
|
429
|
-
[() => DateTimeRange$, () => GroupDefinitions, 0, () => Expression$], 1
|
|
430
|
-
];
|
|
431
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
432
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
433
|
-
[_m],
|
|
434
|
-
[0], 1
|
|
435
|
-
];
|
|
436
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
437
|
-
var ResourceTag$ = [3, n0, _RT,
|
|
438
|
-
0,
|
|
439
|
-
[_k, _va],
|
|
440
|
-
[0, 0], 2
|
|
441
|
-
];
|
|
442
|
-
var SavingsPlansCoverageQuery$ = [3, n0, _SPCQ,
|
|
443
|
-
0,
|
|
444
|
-
[_tR, _me, _g, _gB, _f],
|
|
445
|
-
[() => DateTimeRange$, 64 | 0, 0, () => GroupDefinitions, () => Expression$], 1
|
|
446
|
-
];
|
|
447
|
-
var SavingsPlansUtilizationQuery$ = [3, n0, _SPUQ,
|
|
448
|
-
0,
|
|
449
|
-
[_tR, _g, _f],
|
|
450
|
-
[() => DateTimeRange$, 0, () => Expression$], 1
|
|
451
|
-
];
|
|
452
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
453
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
454
|
-
[_m],
|
|
455
|
-
[0], 1
|
|
456
|
-
];
|
|
457
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
458
|
-
var TableDisplayConfigStruct$ = [3, n0, _TDCS,
|
|
459
|
-
0,
|
|
460
|
-
[],
|
|
461
|
-
[]
|
|
462
|
-
];
|
|
463
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
464
|
-
0,
|
|
465
|
-
[_rA, _rT],
|
|
466
|
-
[0, () => ResourceTagList], 2
|
|
467
|
-
];
|
|
468
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
469
|
-
0,
|
|
470
|
-
[],
|
|
471
|
-
[]
|
|
472
|
-
];
|
|
473
|
-
var TagValues$ = [3, n0, _TV,
|
|
474
|
-
0,
|
|
475
|
-
[_k, _v, _mO],
|
|
476
|
-
[0, 64 | 0, 64 | 0]
|
|
477
|
-
];
|
|
478
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
479
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
480
|
-
[_m],
|
|
481
|
-
[0], 1
|
|
482
|
-
];
|
|
483
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
484
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
485
|
-
0,
|
|
486
|
-
[_rA, _rTK],
|
|
487
|
-
[0, 64 | 0], 2
|
|
488
|
-
];
|
|
489
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
490
|
-
0,
|
|
491
|
-
[],
|
|
492
|
-
[]
|
|
493
|
-
];
|
|
494
|
-
var UpdateDashboardRequest$ = [3, n0, _UDR,
|
|
495
|
-
0,
|
|
496
|
-
[_a, _n, _d, _w],
|
|
497
|
-
[0, 0, 0, () => WidgetList], 1
|
|
498
|
-
];
|
|
499
|
-
var UpdateDashboardResponse$ = [3, n0, _UDRp,
|
|
500
|
-
0,
|
|
501
|
-
[_a],
|
|
502
|
-
[0], 1
|
|
503
|
-
];
|
|
504
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
505
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
506
|
-
[_m],
|
|
507
|
-
[0], 1
|
|
508
|
-
];
|
|
509
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
510
|
-
var Widget$ = [3, n0, _W,
|
|
511
|
-
0,
|
|
512
|
-
[_ti, _co, _d, _wi, _h, _hO],
|
|
513
|
-
[0, () => WidgetConfigList, 0, 1, 1, 1], 2
|
|
514
|
-
];
|
|
515
|
-
var WidgetConfig$ = [3, n0, _WC,
|
|
516
|
-
0,
|
|
517
|
-
[_qP, _dC],
|
|
518
|
-
[() => QueryParameters$, () => DisplayConfig$], 2
|
|
519
|
-
];
|
|
520
|
-
var BCMDashboardsServiceException$ = [-3, _sm, "BCMDashboardsServiceException", 0, [], []];
|
|
521
|
-
schema.TypeRegistry.for(_sm).registerError(BCMDashboardsServiceException$, BCMDashboardsServiceException);
|
|
522
|
-
var DashboardReferenceList = [1, n0, _DRL,
|
|
523
|
-
0, () => DashboardReference$
|
|
524
|
-
];
|
|
525
|
-
var Expressions = [1, n0, _Ex,
|
|
526
|
-
0, () => Expression$
|
|
527
|
-
];
|
|
528
|
-
var GroupDefinitions = [1, n0, _GDr,
|
|
529
|
-
0, () => GroupDefinition$
|
|
530
|
-
];
|
|
531
|
-
var ResourceTagList = [1, n0, _RTL,
|
|
532
|
-
0, () => ResourceTag$
|
|
533
|
-
];
|
|
534
|
-
var WidgetConfigList = [1, n0, _WCL,
|
|
535
|
-
0, () => WidgetConfig$
|
|
536
|
-
];
|
|
537
|
-
var WidgetList = [1, n0, _WL,
|
|
538
|
-
0, () => Widget$
|
|
539
|
-
];
|
|
540
|
-
var GraphDisplayConfigMap = [2, n0, _GDCM,
|
|
541
|
-
0, 0, () => GraphDisplayConfig$
|
|
542
|
-
];
|
|
543
|
-
var DisplayConfig$ = [4, n0, _DC,
|
|
544
|
-
0,
|
|
545
|
-
[_gr, _tab],
|
|
546
|
-
[() => GraphDisplayConfigMap, () => TableDisplayConfigStruct$]
|
|
547
|
-
];
|
|
548
|
-
var QueryParameters$ = [4, n0, _QP,
|
|
549
|
-
0,
|
|
550
|
-
[_cAU, _sPC, _sPU, _rC, _rU],
|
|
551
|
-
[() => CostAndUsageQuery$, () => SavingsPlansCoverageQuery$, () => SavingsPlansUtilizationQuery$, () => ReservationCoverageQuery$, () => ReservationUtilizationQuery$]
|
|
552
|
-
];
|
|
553
|
-
var CreateDashboard$ = [9, n0, _CD,
|
|
554
|
-
0, () => CreateDashboardRequest$, () => CreateDashboardResponse$
|
|
555
|
-
];
|
|
556
|
-
var DeleteDashboard$ = [9, n0, _DD,
|
|
557
|
-
0, () => DeleteDashboardRequest$, () => DeleteDashboardResponse$
|
|
558
|
-
];
|
|
559
|
-
var GetDashboard$ = [9, n0, _GDe,
|
|
560
|
-
0, () => GetDashboardRequest$, () => GetDashboardResponse$
|
|
561
|
-
];
|
|
562
|
-
var GetResourcePolicy$ = [9, n0, _GRP,
|
|
563
|
-
0, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
|
|
564
|
-
];
|
|
565
|
-
var ListDashboards$ = [9, n0, _LD,
|
|
566
|
-
0, () => ListDashboardsRequest$, () => ListDashboardsResponse$
|
|
567
|
-
];
|
|
568
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
569
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
570
|
-
];
|
|
571
|
-
var TagResource$ = [9, n0, _TR,
|
|
572
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
573
|
-
];
|
|
574
|
-
var UntagResource$ = [9, n0, _UR,
|
|
575
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
576
|
-
];
|
|
577
|
-
var UpdateDashboard$ = [9, n0, _UD,
|
|
578
|
-
0, () => UpdateDashboardRequest$, () => UpdateDashboardResponse$
|
|
579
|
-
];
|
|
580
|
-
|
|
581
114
|
class CreateDashboardCommand extends smithyClient.Command
|
|
582
115
|
.classBuilder()
|
|
583
116
|
.ep(commonParams)
|
|
@@ -586,7 +119,7 @@ class CreateDashboardCommand extends smithyClient.Command
|
|
|
586
119
|
})
|
|
587
120
|
.s("AWSBCMDashboardsService", "CreateDashboard", {})
|
|
588
121
|
.n("BCMDashboardsClient", "CreateDashboardCommand")
|
|
589
|
-
.sc(CreateDashboard$)
|
|
122
|
+
.sc(schemas_0.CreateDashboard$)
|
|
590
123
|
.build() {
|
|
591
124
|
}
|
|
592
125
|
|
|
@@ -598,7 +131,7 @@ class DeleteDashboardCommand extends smithyClient.Command
|
|
|
598
131
|
})
|
|
599
132
|
.s("AWSBCMDashboardsService", "DeleteDashboard", {})
|
|
600
133
|
.n("BCMDashboardsClient", "DeleteDashboardCommand")
|
|
601
|
-
.sc(DeleteDashboard$)
|
|
134
|
+
.sc(schemas_0.DeleteDashboard$)
|
|
602
135
|
.build() {
|
|
603
136
|
}
|
|
604
137
|
|
|
@@ -610,7 +143,7 @@ class GetDashboardCommand extends smithyClient.Command
|
|
|
610
143
|
})
|
|
611
144
|
.s("AWSBCMDashboardsService", "GetDashboard", {})
|
|
612
145
|
.n("BCMDashboardsClient", "GetDashboardCommand")
|
|
613
|
-
.sc(GetDashboard$)
|
|
146
|
+
.sc(schemas_0.GetDashboard$)
|
|
614
147
|
.build() {
|
|
615
148
|
}
|
|
616
149
|
|
|
@@ -622,7 +155,7 @@ class GetResourcePolicyCommand extends smithyClient.Command
|
|
|
622
155
|
})
|
|
623
156
|
.s("AWSBCMDashboardsService", "GetResourcePolicy", {})
|
|
624
157
|
.n("BCMDashboardsClient", "GetResourcePolicyCommand")
|
|
625
|
-
.sc(GetResourcePolicy$)
|
|
158
|
+
.sc(schemas_0.GetResourcePolicy$)
|
|
626
159
|
.build() {
|
|
627
160
|
}
|
|
628
161
|
|
|
@@ -634,7 +167,7 @@ class ListDashboardsCommand extends smithyClient.Command
|
|
|
634
167
|
})
|
|
635
168
|
.s("AWSBCMDashboardsService", "ListDashboards", {})
|
|
636
169
|
.n("BCMDashboardsClient", "ListDashboardsCommand")
|
|
637
|
-
.sc(ListDashboards$)
|
|
170
|
+
.sc(schemas_0.ListDashboards$)
|
|
638
171
|
.build() {
|
|
639
172
|
}
|
|
640
173
|
|
|
@@ -646,7 +179,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
646
179
|
})
|
|
647
180
|
.s("AWSBCMDashboardsService", "ListTagsForResource", {})
|
|
648
181
|
.n("BCMDashboardsClient", "ListTagsForResourceCommand")
|
|
649
|
-
.sc(ListTagsForResource$)
|
|
182
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
650
183
|
.build() {
|
|
651
184
|
}
|
|
652
185
|
|
|
@@ -658,7 +191,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
658
191
|
})
|
|
659
192
|
.s("AWSBCMDashboardsService", "TagResource", {})
|
|
660
193
|
.n("BCMDashboardsClient", "TagResourceCommand")
|
|
661
|
-
.sc(TagResource$)
|
|
194
|
+
.sc(schemas_0.TagResource$)
|
|
662
195
|
.build() {
|
|
663
196
|
}
|
|
664
197
|
|
|
@@ -670,7 +203,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
670
203
|
})
|
|
671
204
|
.s("AWSBCMDashboardsService", "UntagResource", {})
|
|
672
205
|
.n("BCMDashboardsClient", "UntagResourceCommand")
|
|
673
|
-
.sc(UntagResource$)
|
|
206
|
+
.sc(schemas_0.UntagResource$)
|
|
674
207
|
.build() {
|
|
675
208
|
}
|
|
676
209
|
|
|
@@ -682,7 +215,7 @@ class UpdateDashboardCommand extends smithyClient.Command
|
|
|
682
215
|
})
|
|
683
216
|
.s("AWSBCMDashboardsService", "UpdateDashboard", {})
|
|
684
217
|
.n("BCMDashboardsClient", "UpdateDashboardCommand")
|
|
685
|
-
.sc(UpdateDashboard$)
|
|
218
|
+
.sc(schemas_0.UpdateDashboard$)
|
|
686
219
|
.build() {
|
|
687
220
|
}
|
|
688
221
|
|
|
@@ -788,84 +321,39 @@ Object.defineProperty(exports, "__Client", {
|
|
|
788
321
|
enumerable: true,
|
|
789
322
|
get: function () { return smithyClient.Client; }
|
|
790
323
|
});
|
|
791
|
-
exports
|
|
792
|
-
|
|
324
|
+
Object.defineProperty(exports, "BCMDashboardsServiceException", {
|
|
325
|
+
enumerable: true,
|
|
326
|
+
get: function () { return BCMDashboardsServiceException.BCMDashboardsServiceException; }
|
|
327
|
+
});
|
|
793
328
|
exports.BCMDashboards = BCMDashboards;
|
|
794
329
|
exports.BCMDashboardsClient = BCMDashboardsClient;
|
|
795
|
-
exports.BCMDashboardsServiceException = BCMDashboardsServiceException;
|
|
796
|
-
exports.BCMDashboardsServiceException$ = BCMDashboardsServiceException$;
|
|
797
|
-
exports.CostAndUsageQuery$ = CostAndUsageQuery$;
|
|
798
|
-
exports.CostCategoryValues$ = CostCategoryValues$;
|
|
799
|
-
exports.CreateDashboard$ = CreateDashboard$;
|
|
800
330
|
exports.CreateDashboardCommand = CreateDashboardCommand;
|
|
801
|
-
exports.CreateDashboardRequest$ = CreateDashboardRequest$;
|
|
802
|
-
exports.CreateDashboardResponse$ = CreateDashboardResponse$;
|
|
803
|
-
exports.DashboardReference$ = DashboardReference$;
|
|
804
331
|
exports.DashboardType = DashboardType;
|
|
805
|
-
exports.DateTimeRange$ = DateTimeRange$;
|
|
806
332
|
exports.DateTimeType = DateTimeType;
|
|
807
|
-
exports.DateTimeValue$ = DateTimeValue$;
|
|
808
|
-
exports.DeleteDashboard$ = DeleteDashboard$;
|
|
809
333
|
exports.DeleteDashboardCommand = DeleteDashboardCommand;
|
|
810
|
-
exports.DeleteDashboardRequest$ = DeleteDashboardRequest$;
|
|
811
|
-
exports.DeleteDashboardResponse$ = DeleteDashboardResponse$;
|
|
812
334
|
exports.Dimension = Dimension;
|
|
813
|
-
exports.DimensionValues$ = DimensionValues$;
|
|
814
|
-
exports.DisplayConfig$ = DisplayConfig$;
|
|
815
|
-
exports.Expression$ = Expression$;
|
|
816
|
-
exports.GetDashboard$ = GetDashboard$;
|
|
817
335
|
exports.GetDashboardCommand = GetDashboardCommand;
|
|
818
|
-
exports.GetDashboardRequest$ = GetDashboardRequest$;
|
|
819
|
-
exports.GetDashboardResponse$ = GetDashboardResponse$;
|
|
820
|
-
exports.GetResourcePolicy$ = GetResourcePolicy$;
|
|
821
336
|
exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
|
|
822
|
-
exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
|
|
823
|
-
exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
|
|
824
337
|
exports.Granularity = Granularity;
|
|
825
|
-
exports.GraphDisplayConfig$ = GraphDisplayConfig$;
|
|
826
|
-
exports.GroupDefinition$ = GroupDefinition$;
|
|
827
338
|
exports.GroupDefinitionType = GroupDefinitionType;
|
|
828
|
-
exports.InternalServerException = InternalServerException;
|
|
829
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
830
|
-
exports.ListDashboards$ = ListDashboards$;
|
|
831
339
|
exports.ListDashboardsCommand = ListDashboardsCommand;
|
|
832
|
-
exports.ListDashboardsRequest$ = ListDashboardsRequest$;
|
|
833
|
-
exports.ListDashboardsResponse$ = ListDashboardsResponse$;
|
|
834
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
835
340
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
836
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
837
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
838
341
|
exports.MatchOption = MatchOption;
|
|
839
342
|
exports.MetricName = MetricName;
|
|
840
|
-
exports.QueryParameters$ = QueryParameters$;
|
|
841
|
-
exports.ReservationCoverageQuery$ = ReservationCoverageQuery$;
|
|
842
|
-
exports.ReservationUtilizationQuery$ = ReservationUtilizationQuery$;
|
|
843
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
844
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
845
|
-
exports.ResourceTag$ = ResourceTag$;
|
|
846
|
-
exports.SavingsPlansCoverageQuery$ = SavingsPlansCoverageQuery$;
|
|
847
|
-
exports.SavingsPlansUtilizationQuery$ = SavingsPlansUtilizationQuery$;
|
|
848
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
849
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
850
|
-
exports.TableDisplayConfigStruct$ = TableDisplayConfigStruct$;
|
|
851
|
-
exports.TagResource$ = TagResource$;
|
|
852
343
|
exports.TagResourceCommand = TagResourceCommand;
|
|
853
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
854
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
855
|
-
exports.TagValues$ = TagValues$;
|
|
856
|
-
exports.ThrottlingException = ThrottlingException;
|
|
857
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
858
|
-
exports.UntagResource$ = UntagResource$;
|
|
859
344
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
860
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
861
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
862
|
-
exports.UpdateDashboard$ = UpdateDashboard$;
|
|
863
345
|
exports.UpdateDashboardCommand = UpdateDashboardCommand;
|
|
864
|
-
exports.UpdateDashboardRequest$ = UpdateDashboardRequest$;
|
|
865
|
-
exports.UpdateDashboardResponse$ = UpdateDashboardResponse$;
|
|
866
|
-
exports.ValidationException = ValidationException;
|
|
867
|
-
exports.ValidationException$ = ValidationException$;
|
|
868
346
|
exports.VisualType = VisualType;
|
|
869
|
-
exports.Widget$ = Widget$;
|
|
870
|
-
exports.WidgetConfig$ = WidgetConfig$;
|
|
871
347
|
exports.paginateListDashboards = paginateListDashboards;
|
|
348
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
349
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
350
|
+
enumerable: true,
|
|
351
|
+
get: function () { return schemas_0[k]; }
|
|
352
|
+
});
|
|
353
|
+
});
|
|
354
|
+
Object.keys(errors).forEach(function (k) {
|
|
355
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
356
|
+
enumerable: true,
|
|
357
|
+
get: function () { return errors[k]; }
|
|
358
|
+
});
|
|
359
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BCMDashboardsServiceException = exports.__ServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
+
class BCMDashboardsServiceException extends smithy_client_1.ServiceException {
|
|
7
|
+
constructor(options) {
|
|
8
|
+
super(options);
|
|
9
|
+
Object.setPrototypeOf(this, BCMDashboardsServiceException.prototype);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.BCMDashboardsServiceException = BCMDashboardsServiceException;
|