@aws-sdk/client-bcm-dashboards 3.929.0 → 3.931.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
CHANGED
|
@@ -132,16 +132,6 @@ const VisualType = {
|
|
|
132
132
|
LINE: "LINE",
|
|
133
133
|
STACK: "STACK",
|
|
134
134
|
};
|
|
135
|
-
exports.DisplayConfig = void 0;
|
|
136
|
-
(function (DisplayConfig) {
|
|
137
|
-
DisplayConfig.visit = (value, visitor) => {
|
|
138
|
-
if (value.graph !== undefined)
|
|
139
|
-
return visitor.graph(value.graph);
|
|
140
|
-
if (value.table !== undefined)
|
|
141
|
-
return visitor.table(value.table);
|
|
142
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
143
|
-
};
|
|
144
|
-
})(exports.DisplayConfig || (exports.DisplayConfig = {}));
|
|
145
135
|
const MatchOption = {
|
|
146
136
|
ABSENT: "ABSENT",
|
|
147
137
|
CASE_INSENSITIVE: "CASE_INSENSITIVE",
|
|
@@ -270,22 +260,6 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends BCMDas
|
|
|
270
260
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
271
261
|
}
|
|
272
262
|
};
|
|
273
|
-
exports.QueryParameters = void 0;
|
|
274
|
-
(function (QueryParameters) {
|
|
275
|
-
QueryParameters.visit = (value, visitor) => {
|
|
276
|
-
if (value.costAndUsage !== undefined)
|
|
277
|
-
return visitor.costAndUsage(value.costAndUsage);
|
|
278
|
-
if (value.savingsPlansCoverage !== undefined)
|
|
279
|
-
return visitor.savingsPlansCoverage(value.savingsPlansCoverage);
|
|
280
|
-
if (value.savingsPlansUtilization !== undefined)
|
|
281
|
-
return visitor.savingsPlansUtilization(value.savingsPlansUtilization);
|
|
282
|
-
if (value.reservationCoverage !== undefined)
|
|
283
|
-
return visitor.reservationCoverage(value.reservationCoverage);
|
|
284
|
-
if (value.reservationUtilization !== undefined)
|
|
285
|
-
return visitor.reservationUtilization(value.reservationUtilization);
|
|
286
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
287
|
-
};
|
|
288
|
-
})(exports.QueryParameters || (exports.QueryParameters = {}));
|
|
289
263
|
|
|
290
264
|
const _ADE = "AccessDeniedException";
|
|
291
265
|
const _CAUQ = "CostAndUsageQuery";
|
|
@@ -16,16 +16,6 @@ export const VisualType = {
|
|
|
16
16
|
LINE: "LINE",
|
|
17
17
|
STACK: "STACK",
|
|
18
18
|
};
|
|
19
|
-
export var DisplayConfig;
|
|
20
|
-
(function (DisplayConfig) {
|
|
21
|
-
DisplayConfig.visit = (value, visitor) => {
|
|
22
|
-
if (value.graph !== undefined)
|
|
23
|
-
return visitor.graph(value.graph);
|
|
24
|
-
if (value.table !== undefined)
|
|
25
|
-
return visitor.table(value.table);
|
|
26
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
27
|
-
};
|
|
28
|
-
})(DisplayConfig || (DisplayConfig = {}));
|
|
29
19
|
export const MatchOption = {
|
|
30
20
|
ABSENT: "ABSENT",
|
|
31
21
|
CASE_INSENSITIVE: "CASE_INSENSITIVE",
|
|
@@ -154,19 +144,3 @@ export class ResourceNotFoundException extends __BaseException {
|
|
|
154
144
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
155
145
|
}
|
|
156
146
|
}
|
|
157
|
-
export var QueryParameters;
|
|
158
|
-
(function (QueryParameters) {
|
|
159
|
-
QueryParameters.visit = (value, visitor) => {
|
|
160
|
-
if (value.costAndUsage !== undefined)
|
|
161
|
-
return visitor.costAndUsage(value.costAndUsage);
|
|
162
|
-
if (value.savingsPlansCoverage !== undefined)
|
|
163
|
-
return visitor.savingsPlansCoverage(value.savingsPlansCoverage);
|
|
164
|
-
if (value.savingsPlansUtilization !== undefined)
|
|
165
|
-
return visitor.savingsPlansUtilization(value.savingsPlansUtilization);
|
|
166
|
-
if (value.reservationCoverage !== undefined)
|
|
167
|
-
return visitor.reservationCoverage(value.reservationCoverage);
|
|
168
|
-
if (value.reservationUtilization !== undefined)
|
|
169
|
-
return visitor.reservationUtilization(value.reservationUtilization);
|
|
170
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
171
|
-
};
|
|
172
|
-
})(QueryParameters || (QueryParameters = {}));
|
|
@@ -93,12 +93,15 @@ export declare namespace DisplayConfig {
|
|
|
93
93
|
table?: never;
|
|
94
94
|
$unknown: [string, any];
|
|
95
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
* @deprecated unused in schema-serde mode.
|
|
98
|
+
*
|
|
99
|
+
*/
|
|
96
100
|
interface Visitor<T> {
|
|
97
101
|
graph: (value: Record<string, GraphDisplayConfig>) => T;
|
|
98
102
|
table: (value: TableDisplayConfigStruct) => T;
|
|
99
103
|
_: (name: string, value: any) => T;
|
|
100
104
|
}
|
|
101
|
-
const visit: <T>(value: DisplayConfig, visitor: Visitor<T>) => T;
|
|
102
105
|
}
|
|
103
106
|
/**
|
|
104
107
|
* @public
|
|
@@ -852,6 +855,10 @@ export declare namespace QueryParameters {
|
|
|
852
855
|
reservationUtilization?: never;
|
|
853
856
|
$unknown: [string, any];
|
|
854
857
|
}
|
|
858
|
+
/**
|
|
859
|
+
* @deprecated unused in schema-serde mode.
|
|
860
|
+
*
|
|
861
|
+
*/
|
|
855
862
|
interface Visitor<T> {
|
|
856
863
|
costAndUsage: (value: CostAndUsageQuery) => T;
|
|
857
864
|
savingsPlansCoverage: (value: SavingsPlansCoverageQuery) => T;
|
|
@@ -860,7 +867,6 @@ export declare namespace QueryParameters {
|
|
|
860
867
|
reservationUtilization: (value: ReservationUtilizationQuery) => T;
|
|
861
868
|
_: (name: string, value: any) => T;
|
|
862
869
|
}
|
|
863
|
-
const visit: <T>(value: QueryParameters, visitor: Visitor<T>) => T;
|
|
864
870
|
}
|
|
865
871
|
/**
|
|
866
872
|
* <p>Defines the complete configuration for a widget, including data retrieval settings and visualization preferences.</p>
|
|
@@ -46,7 +46,6 @@ export declare namespace DisplayConfig {
|
|
|
46
46
|
table: (value: TableDisplayConfigStruct) => T;
|
|
47
47
|
_: (name: string, value: any) => T;
|
|
48
48
|
}
|
|
49
|
-
const visit: <T>(value: DisplayConfig, visitor: Visitor<T>) => T;
|
|
50
49
|
}
|
|
51
50
|
export declare const MatchOption: {
|
|
52
51
|
readonly ABSENT: "ABSENT";
|
|
@@ -344,7 +343,6 @@ export declare namespace QueryParameters {
|
|
|
344
343
|
reservationUtilization: (value: ReservationUtilizationQuery) => T;
|
|
345
344
|
_: (name: string, value: any) => T;
|
|
346
345
|
}
|
|
347
|
-
const visit: <T>(value: QueryParameters, visitor: Visitor<T>) => T;
|
|
348
346
|
}
|
|
349
347
|
export interface WidgetConfig {
|
|
350
348
|
queryParameters: QueryParameters | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bcm-dashboards",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bcm Dashboards Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.931.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bcm-dashboards",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.931.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.931.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.931.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/types": "3.930.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.931.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.2",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
|
+
"@smithy/hash-node": "^4.2.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
48
|
+
"@smithy/types": "^4.9.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
57
|
+
"@smithy/util-retry": "^4.2.5",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|