@aws-sdk/client-billing 3.952.0 → 3.953.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 +200 -137
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AssociateSourceViewsCommand.js +2 -2
- package/dist-es/commands/CreateBillingViewCommand.js +2 -2
- package/dist-es/commands/DeleteBillingViewCommand.js +2 -2
- package/dist-es/commands/DisassociateSourceViewsCommand.js +2 -2
- package/dist-es/commands/GetBillingViewCommand.js +2 -2
- package/dist-es/commands/GetResourcePolicyCommand.js +2 -2
- package/dist-es/commands/ListBillingViewsCommand.js +2 -2
- package/dist-es/commands/ListSourceViewsForBillingViewCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateBillingViewCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +115 -108
- package/dist-types/BillingClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +57 -69
- package/dist-types/ts3.4/BillingClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +56 -70
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.billing",
|
|
32
|
+
version: "2023-09-07",
|
|
33
|
+
serviceTarget: "AWSBilling",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "Billing",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateSourceViews } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateSourceViews$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateSourceViewsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateSourceViewsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "AssociateSourceViews", {})
|
|
13
13
|
.n("BillingClient", "AssociateSourceViewsCommand")
|
|
14
|
-
.sc(AssociateSourceViews)
|
|
14
|
+
.sc(AssociateSourceViews$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateBillingView } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateBillingView$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateBillingViewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateBillingViewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "CreateBillingView", {})
|
|
13
13
|
.n("BillingClient", "CreateBillingViewCommand")
|
|
14
|
-
.sc(CreateBillingView)
|
|
14
|
+
.sc(CreateBillingView$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteBillingView } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteBillingView$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteBillingViewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteBillingViewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "DeleteBillingView", {})
|
|
13
13
|
.n("BillingClient", "DeleteBillingViewCommand")
|
|
14
|
-
.sc(DeleteBillingView)
|
|
14
|
+
.sc(DeleteBillingView$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateSourceViews } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateSourceViews$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateSourceViewsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateSourceViewsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "DisassociateSourceViews", {})
|
|
13
13
|
.n("BillingClient", "DisassociateSourceViewsCommand")
|
|
14
|
-
.sc(DisassociateSourceViews)
|
|
14
|
+
.sc(DisassociateSourceViews$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetBillingView } from "../schemas/schemas_0";
|
|
4
|
+
import { GetBillingView$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetBillingViewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetBillingViewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "GetBillingView", {})
|
|
13
13
|
.n("BillingClient", "GetBillingViewCommand")
|
|
14
|
-
.sc(GetBillingView)
|
|
14
|
+
.sc(GetBillingView$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetResourcePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetResourcePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetResourcePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetResourcePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "GetResourcePolicy", {})
|
|
13
13
|
.n("BillingClient", "GetResourcePolicyCommand")
|
|
14
|
-
.sc(GetResourcePolicy)
|
|
14
|
+
.sc(GetResourcePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListBillingViews } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBillingViews$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBillingViewsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListBillingViewsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "ListBillingViews", {})
|
|
13
13
|
.n("BillingClient", "ListBillingViewsCommand")
|
|
14
|
-
.sc(ListBillingViews)
|
|
14
|
+
.sc(ListBillingViews$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSourceViewsForBillingView } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSourceViewsForBillingView$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSourceViewsForBillingViewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSourceViewsForBillingViewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "ListSourceViewsForBillingView", {})
|
|
13
13
|
.n("BillingClient", "ListSourceViewsForBillingViewCommand")
|
|
14
|
-
.sc(ListSourceViewsForBillingView)
|
|
14
|
+
.sc(ListSourceViewsForBillingView$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "ListTagsForResource", {})
|
|
13
13
|
.n("BillingClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "TagResource", {})
|
|
13
13
|
.n("BillingClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "UntagResource", {})
|
|
13
13
|
.n("BillingClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateBillingView } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateBillingView$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateBillingViewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateBillingViewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSBilling", "UpdateBillingView", {})
|
|
13
13
|
.n("BillingClient", "UpdateBillingViewCommand")
|
|
14
|
-
.sc(UpdateBillingView)
|
|
14
|
+
.sc(UpdateBillingView$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.billing",
|
|
29
|
+
version: "2023-09-07",
|
|
30
|
+
serviceTarget: "AWSBilling",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "Billing",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
@@ -120,11 +120,11 @@ const _vDLUA = "viewDefinitionLastUpdatedAt";
|
|
|
120
120
|
const _va = "value";
|
|
121
121
|
const n0 = "com.amazonaws.billing";
|
|
122
122
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
123
|
-
import { BillingServiceException
|
|
124
|
-
import { AccessDeniedException
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
export var AccessDeniedException = [
|
|
123
|
+
import { BillingServiceException } from "../models/BillingServiceException";
|
|
124
|
+
import { AccessDeniedException, BillingViewHealthStatusException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
125
|
+
var BillingViewDescription = [0, n0, _BVD, 8, 0];
|
|
126
|
+
var BillingViewName = [0, n0, _BVN, 8, 0];
|
|
127
|
+
export var AccessDeniedException$ = [
|
|
128
128
|
-3,
|
|
129
129
|
n0,
|
|
130
130
|
_ADE,
|
|
@@ -132,11 +132,11 @@ export var AccessDeniedException = [
|
|
|
132
132
|
[_m],
|
|
133
133
|
[0],
|
|
134
134
|
];
|
|
135
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
136
|
-
export var ActiveTimeRange = [3, n0, _ATR, 0, [_aAI, _aBI], [4, 4]];
|
|
137
|
-
export var AssociateSourceViewsRequest = [3, n0, _ASVR, 0, [_a, _sV], [0, 64 | 0]];
|
|
138
|
-
export var AssociateSourceViewsResponse = [3, n0, _ASVRs, 0, [_a], [0]];
|
|
139
|
-
export var BillingViewElement = [
|
|
135
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
136
|
+
export var ActiveTimeRange$ = [3, n0, _ATR, 0, [_aAI, _aBI], [4, 4]];
|
|
137
|
+
export var AssociateSourceViewsRequest$ = [3, n0, _ASVR, 0, [_a, _sV], [0, 64 | 0]];
|
|
138
|
+
export var AssociateSourceViewsResponse$ = [3, n0, _ASVRs, 0, [_a], [0]];
|
|
139
|
+
export var BillingViewElement$ = [
|
|
140
140
|
3,
|
|
141
141
|
n0,
|
|
142
142
|
_BVE,
|
|
@@ -149,27 +149,27 @@ export var BillingViewElement = [
|
|
|
149
149
|
0,
|
|
150
150
|
0,
|
|
151
151
|
0,
|
|
152
|
-
() => Expression
|
|
152
|
+
() => Expression$,
|
|
153
153
|
4,
|
|
154
154
|
4,
|
|
155
155
|
1,
|
|
156
156
|
1,
|
|
157
157
|
4,
|
|
158
|
-
() => BillingViewHealthStatus
|
|
158
|
+
() => BillingViewHealthStatus$,
|
|
159
159
|
],
|
|
160
160
|
];
|
|
161
|
-
export var BillingViewHealthStatus = [3, n0, _BVHS, 0, [_sC, _sR], [0, 64 | 0]];
|
|
162
|
-
export var BillingViewHealthStatusException = [-3, n0, _BVHSE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
163
|
-
TypeRegistry.for(n0).registerError(BillingViewHealthStatusException
|
|
164
|
-
export var BillingViewListElement = [
|
|
161
|
+
export var BillingViewHealthStatus$ = [3, n0, _BVHS, 0, [_sC, _sR], [0, 64 | 0]];
|
|
162
|
+
export var BillingViewHealthStatusException$ = [-3, n0, _BVHSE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
163
|
+
TypeRegistry.for(n0).registerError(BillingViewHealthStatusException$, BillingViewHealthStatusException);
|
|
164
|
+
export var BillingViewListElement$ = [
|
|
165
165
|
3,
|
|
166
166
|
n0,
|
|
167
167
|
_BVLE,
|
|
168
168
|
0,
|
|
169
169
|
[_a, _n, _d, _oAI, _sAI, _bVT, _hS],
|
|
170
|
-
[0, [() => BillingViewName, 0], [() => BillingViewDescription, 0], 0, 0, 0, () => BillingViewHealthStatus],
|
|
170
|
+
[0, [() => BillingViewName, 0], [() => BillingViewDescription, 0], 0, 0, 0, () => BillingViewHealthStatus$],
|
|
171
171
|
];
|
|
172
|
-
export var ConflictException = [
|
|
172
|
+
export var ConflictException$ = [
|
|
173
173
|
-3,
|
|
174
174
|
n0,
|
|
175
175
|
_CE,
|
|
@@ -177,8 +177,8 @@ export var ConflictException = [
|
|
|
177
177
|
[_m, _rI, _rT],
|
|
178
178
|
[0, 0, 0],
|
|
179
179
|
];
|
|
180
|
-
TypeRegistry.for(n0).registerError(ConflictException
|
|
181
|
-
export var CreateBillingViewRequest = [
|
|
180
|
+
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
181
|
+
export var CreateBillingViewRequest$ = [
|
|
182
182
|
3,
|
|
183
183
|
n0,
|
|
184
184
|
_CBVR,
|
|
@@ -188,30 +188,30 @@ export var CreateBillingViewRequest = [
|
|
|
188
188
|
[() => BillingViewName, 0],
|
|
189
189
|
[() => BillingViewDescription, 0],
|
|
190
190
|
64 | 0,
|
|
191
|
-
() => Expression
|
|
191
|
+
() => Expression$,
|
|
192
192
|
[0, { [_hH]: _XACT, [_iT]: 1 }],
|
|
193
193
|
() => ResourceTagList,
|
|
194
194
|
],
|
|
195
195
|
];
|
|
196
|
-
export var CreateBillingViewResponse = [3, n0, _CBVRr, 0, [_a, _cA], [0, 4]];
|
|
197
|
-
export var DeleteBillingViewRequest = [3, n0, _DBVR, 0, [_a, _f], [0, 2]];
|
|
198
|
-
export var DeleteBillingViewResponse = [3, n0, _DBVRe, 0, [_a], [0]];
|
|
199
|
-
export var DimensionValues = [3, n0, _DV, 0, [_k, _v], [0, 64 | 0]];
|
|
200
|
-
export var DisassociateSourceViewsRequest = [3, n0, _DSVR, 0, [_a, _sV], [0, 64 | 0]];
|
|
201
|
-
export var DisassociateSourceViewsResponse = [3, n0, _DSVRi, 0, [_a], [0]];
|
|
202
|
-
export var Expression = [
|
|
196
|
+
export var CreateBillingViewResponse$ = [3, n0, _CBVRr, 0, [_a, _cA], [0, 4]];
|
|
197
|
+
export var DeleteBillingViewRequest$ = [3, n0, _DBVR, 0, [_a, _f], [0, 2]];
|
|
198
|
+
export var DeleteBillingViewResponse$ = [3, n0, _DBVRe, 0, [_a], [0]];
|
|
199
|
+
export var DimensionValues$ = [3, n0, _DV, 0, [_k, _v], [0, 64 | 0]];
|
|
200
|
+
export var DisassociateSourceViewsRequest$ = [3, n0, _DSVR, 0, [_a, _sV], [0, 64 | 0]];
|
|
201
|
+
export var DisassociateSourceViewsResponse$ = [3, n0, _DSVRi, 0, [_a], [0]];
|
|
202
|
+
export var Expression$ = [
|
|
203
203
|
3,
|
|
204
204
|
n0,
|
|
205
205
|
_E,
|
|
206
206
|
0,
|
|
207
207
|
[_di, _t, _tR],
|
|
208
|
-
[() => DimensionValues
|
|
208
|
+
[() => DimensionValues$, () => TagValues$, () => TimeRange$],
|
|
209
209
|
];
|
|
210
|
-
export var GetBillingViewRequest = [3, n0, _GBVR, 0, [_a], [0]];
|
|
211
|
-
export var GetBillingViewResponse = [3, n0, _GBVRe, 0, [_bV], [[() => BillingViewElement
|
|
212
|
-
export var GetResourcePolicyRequest = [3, n0, _GRPR, 0, [_rA], [0]];
|
|
213
|
-
export var GetResourcePolicyResponse = [3, n0, _GRPRe, 0, [_rA, _p], [0, 0]];
|
|
214
|
-
export var InternalServerException = [
|
|
210
|
+
export var GetBillingViewRequest$ = [3, n0, _GBVR, 0, [_a], [0]];
|
|
211
|
+
export var GetBillingViewResponse$ = [3, n0, _GBVRe, 0, [_bV], [[() => BillingViewElement$, 0]]];
|
|
212
|
+
export var GetResourcePolicyRequest$ = [3, n0, _GRPR, 0, [_rA], [0]];
|
|
213
|
+
export var GetResourcePolicyResponse$ = [3, n0, _GRPRe, 0, [_rA, _p], [0, 0]];
|
|
214
|
+
export var InternalServerException$ = [
|
|
215
215
|
-3,
|
|
216
216
|
n0,
|
|
217
217
|
_ISE,
|
|
@@ -219,16 +219,16 @@ export var InternalServerException = [
|
|
|
219
219
|
[_m],
|
|
220
220
|
[0],
|
|
221
221
|
];
|
|
222
|
-
TypeRegistry.for(n0).registerError(InternalServerException
|
|
223
|
-
export var ListBillingViewsRequest = [
|
|
222
|
+
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
223
|
+
export var ListBillingViewsRequest$ = [
|
|
224
224
|
3,
|
|
225
225
|
n0,
|
|
226
226
|
_LBVR,
|
|
227
227
|
0,
|
|
228
228
|
[_aTR, _ar, _bVTi, _na, _oAI, _sAI, _mR, _nT],
|
|
229
|
-
[() => ActiveTimeRange
|
|
229
|
+
[() => ActiveTimeRange$, 64 | 0, 64 | 0, () => StringSearches, 0, 0, 1, 0],
|
|
230
230
|
];
|
|
231
|
-
export var ListBillingViewsResponse = [
|
|
231
|
+
export var ListBillingViewsResponse$ = [
|
|
232
232
|
3,
|
|
233
233
|
n0,
|
|
234
234
|
_LBVRi,
|
|
@@ -236,7 +236,7 @@ export var ListBillingViewsResponse = [
|
|
|
236
236
|
[_bVi, _nT],
|
|
237
237
|
[[() => BillingViewList, 0], 0],
|
|
238
238
|
];
|
|
239
|
-
export var ListSourceViewsForBillingViewRequest = [
|
|
239
|
+
export var ListSourceViewsForBillingViewRequest$ = [
|
|
240
240
|
3,
|
|
241
241
|
n0,
|
|
242
242
|
_LSVFBVR,
|
|
@@ -244,7 +244,7 @@ export var ListSourceViewsForBillingViewRequest = [
|
|
|
244
244
|
[_a, _mR, _nT],
|
|
245
245
|
[0, 1, 0],
|
|
246
246
|
];
|
|
247
|
-
export var ListSourceViewsForBillingViewResponse = [
|
|
247
|
+
export var ListSourceViewsForBillingViewResponse$ = [
|
|
248
248
|
3,
|
|
249
249
|
n0,
|
|
250
250
|
_LSVFBVRi,
|
|
@@ -252,9 +252,9 @@ export var ListSourceViewsForBillingViewResponse = [
|
|
|
252
252
|
[_sV, _nT],
|
|
253
253
|
[64 | 0, 0],
|
|
254
254
|
];
|
|
255
|
-
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
|
|
256
|
-
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_rTe], [() => ResourceTagList]];
|
|
257
|
-
export var ResourceNotFoundException = [
|
|
255
|
+
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [0]];
|
|
256
|
+
export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_rTe], [() => ResourceTagList]];
|
|
257
|
+
export var ResourceNotFoundException$ = [
|
|
258
258
|
-3,
|
|
259
259
|
n0,
|
|
260
260
|
_RNFE,
|
|
@@ -262,9 +262,9 @@ export var ResourceNotFoundException = [
|
|
|
262
262
|
[_m, _rI, _rT],
|
|
263
263
|
[0, 0, 0],
|
|
264
264
|
];
|
|
265
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
266
|
-
export var ResourceTag = [3, n0, _RT, 0, [_k, _va], [0, 0]];
|
|
267
|
-
export var ServiceQuotaExceededException = [
|
|
265
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
266
|
+
export var ResourceTag$ = [3, n0, _RT, 0, [_k, _va], [0, 0]];
|
|
267
|
+
export var ServiceQuotaExceededException$ = [
|
|
268
268
|
-3,
|
|
269
269
|
n0,
|
|
270
270
|
_SQEE,
|
|
@@ -272,12 +272,12 @@ export var ServiceQuotaExceededException = [
|
|
|
272
272
|
[_m, _rI, _rT, _sCe, _qC],
|
|
273
273
|
[0, 0, 0, 0, 0],
|
|
274
274
|
];
|
|
275
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
276
|
-
export var StringSearch = [3, n0, _SS, 0, [_sO, _sVe], [0, 0]];
|
|
277
|
-
export var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _rTe], [0, () => ResourceTagList]];
|
|
278
|
-
export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
279
|
-
export var TagValues = [3, n0, _TV, 0, [_k, _v], [0, 64 | 0]];
|
|
280
|
-
export var ThrottlingException = [
|
|
275
|
+
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
276
|
+
export var StringSearch$ = [3, n0, _SS, 0, [_sO, _sVe], [0, 0]];
|
|
277
|
+
export var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _rTe], [0, () => ResourceTagList]];
|
|
278
|
+
export var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
279
|
+
export var TagValues$ = [3, n0, _TV, 0, [_k, _v], [0, 64 | 0]];
|
|
280
|
+
export var ThrottlingException$ = [
|
|
281
281
|
-3,
|
|
282
282
|
n0,
|
|
283
283
|
_TE,
|
|
@@ -285,20 +285,20 @@ export var ThrottlingException = [
|
|
|
285
285
|
[_m],
|
|
286
286
|
[0],
|
|
287
287
|
];
|
|
288
|
-
TypeRegistry.for(n0).registerError(ThrottlingException
|
|
289
|
-
export var TimeRange = [3, n0, _TR, 0, [_bDI, _eDI], [4, 4]];
|
|
290
|
-
export var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _rTK], [0, 64 | 0]];
|
|
291
|
-
export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
292
|
-
export var UpdateBillingViewRequest = [
|
|
288
|
+
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
289
|
+
export var TimeRange$ = [3, n0, _TR, 0, [_bDI, _eDI], [4, 4]];
|
|
290
|
+
export var UntagResourceRequest$ = [3, n0, _URR, 0, [_rA, _rTK], [0, 64 | 0]];
|
|
291
|
+
export var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
292
|
+
export var UpdateBillingViewRequest$ = [
|
|
293
293
|
3,
|
|
294
294
|
n0,
|
|
295
295
|
_UBVR,
|
|
296
296
|
0,
|
|
297
297
|
[_a, _n, _d, _dFE],
|
|
298
|
-
[0, [() => BillingViewName, 0], [() => BillingViewDescription, 0], () => Expression],
|
|
298
|
+
[0, [() => BillingViewName, 0], [() => BillingViewDescription, 0], () => Expression$],
|
|
299
299
|
];
|
|
300
|
-
export var UpdateBillingViewResponse = [3, n0, _UBVRp, 0, [_a, _uA], [0, 4]];
|
|
301
|
-
export var ValidationException = [
|
|
300
|
+
export var UpdateBillingViewResponse$ = [3, n0, _UBVRp, 0, [_a, _uA], [0, 4]];
|
|
301
|
+
export var ValidationException$ = [
|
|
302
302
|
-3,
|
|
303
303
|
n0,
|
|
304
304
|
_VE,
|
|
@@ -306,106 +306,113 @@ export var ValidationException = [
|
|
|
306
306
|
[_m, _r, _fL],
|
|
307
307
|
[0, 0, () => ValidationExceptionFieldList],
|
|
308
308
|
];
|
|
309
|
-
TypeRegistry.for(n0).registerError(ValidationException
|
|
310
|
-
export var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
311
|
-
export var BillingServiceException = [-3, _sm, "BillingServiceException", 0, [], []];
|
|
312
|
-
TypeRegistry.for(_sm).registerError(BillingServiceException
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
export var AssociateSourceViews = [
|
|
309
|
+
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
310
|
+
export var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
311
|
+
export var BillingServiceException$ = [-3, _sm, "BillingServiceException", 0, [], []];
|
|
312
|
+
TypeRegistry.for(_sm).registerError(BillingServiceException$, BillingServiceException);
|
|
313
|
+
var BillingViewArnList = 64 | 0;
|
|
314
|
+
var BillingViewList = [1, n0, _BVL, 0, [() => BillingViewListElement$, 0]];
|
|
315
|
+
var BillingViewSourceViewsList = 64 | 0;
|
|
316
|
+
var BillingViewStatusReasons = 64 | 0;
|
|
317
|
+
var BillingViewTypeList = 64 | 0;
|
|
318
|
+
var ResourceTagKeyList = 64 | 0;
|
|
319
|
+
var ResourceTagList = [1, n0, _RTL, 0, () => ResourceTag$];
|
|
320
|
+
var StringSearches = [1, n0, _SSt, 0, () => StringSearch$];
|
|
321
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
|
|
322
|
+
var Values = 64 | 0;
|
|
323
|
+
export var AssociateSourceViews$ = [
|
|
324
324
|
9,
|
|
325
325
|
n0,
|
|
326
326
|
_ASV,
|
|
327
327
|
2,
|
|
328
|
-
() => AssociateSourceViewsRequest
|
|
329
|
-
() => AssociateSourceViewsResponse
|
|
328
|
+
() => AssociateSourceViewsRequest$,
|
|
329
|
+
() => AssociateSourceViewsResponse$,
|
|
330
330
|
];
|
|
331
|
-
export var CreateBillingView = [
|
|
331
|
+
export var CreateBillingView$ = [
|
|
332
332
|
9,
|
|
333
333
|
n0,
|
|
334
334
|
_CBV,
|
|
335
335
|
2,
|
|
336
|
-
() => CreateBillingViewRequest
|
|
337
|
-
() => CreateBillingViewResponse
|
|
336
|
+
() => CreateBillingViewRequest$,
|
|
337
|
+
() => CreateBillingViewResponse$,
|
|
338
338
|
];
|
|
339
|
-
export var DeleteBillingView = [
|
|
339
|
+
export var DeleteBillingView$ = [
|
|
340
340
|
9,
|
|
341
341
|
n0,
|
|
342
342
|
_DBV,
|
|
343
343
|
2,
|
|
344
|
-
() => DeleteBillingViewRequest
|
|
345
|
-
() => DeleteBillingViewResponse
|
|
344
|
+
() => DeleteBillingViewRequest$,
|
|
345
|
+
() => DeleteBillingViewResponse$,
|
|
346
346
|
];
|
|
347
|
-
export var DisassociateSourceViews = [
|
|
347
|
+
export var DisassociateSourceViews$ = [
|
|
348
348
|
9,
|
|
349
349
|
n0,
|
|
350
350
|
_DSV,
|
|
351
351
|
2,
|
|
352
|
-
() => DisassociateSourceViewsRequest
|
|
353
|
-
() => DisassociateSourceViewsResponse
|
|
352
|
+
() => DisassociateSourceViewsRequest$,
|
|
353
|
+
() => DisassociateSourceViewsResponse$,
|
|
354
354
|
];
|
|
355
|
-
export var GetBillingView = [
|
|
355
|
+
export var GetBillingView$ = [
|
|
356
356
|
9,
|
|
357
357
|
n0,
|
|
358
358
|
_GBV,
|
|
359
359
|
0,
|
|
360
|
-
() => GetBillingViewRequest
|
|
361
|
-
() => GetBillingViewResponse
|
|
360
|
+
() => GetBillingViewRequest$,
|
|
361
|
+
() => GetBillingViewResponse$,
|
|
362
362
|
];
|
|
363
|
-
export var GetResourcePolicy = [
|
|
363
|
+
export var GetResourcePolicy$ = [
|
|
364
364
|
9,
|
|
365
365
|
n0,
|
|
366
366
|
_GRP,
|
|
367
367
|
0,
|
|
368
|
-
() => GetResourcePolicyRequest
|
|
369
|
-
() => GetResourcePolicyResponse
|
|
368
|
+
() => GetResourcePolicyRequest$,
|
|
369
|
+
() => GetResourcePolicyResponse$,
|
|
370
370
|
];
|
|
371
|
-
export var ListBillingViews = [
|
|
371
|
+
export var ListBillingViews$ = [
|
|
372
372
|
9,
|
|
373
373
|
n0,
|
|
374
374
|
_LBV,
|
|
375
375
|
{ [_h]: ["POST", "/", 200] },
|
|
376
|
-
() => ListBillingViewsRequest
|
|
377
|
-
() => ListBillingViewsResponse
|
|
376
|
+
() => ListBillingViewsRequest$,
|
|
377
|
+
() => ListBillingViewsResponse$,
|
|
378
378
|
];
|
|
379
|
-
export var ListSourceViewsForBillingView = [
|
|
379
|
+
export var ListSourceViewsForBillingView$ = [
|
|
380
380
|
9,
|
|
381
381
|
n0,
|
|
382
382
|
_LSVFBV,
|
|
383
383
|
0,
|
|
384
|
-
() => ListSourceViewsForBillingViewRequest
|
|
385
|
-
() => ListSourceViewsForBillingViewResponse
|
|
384
|
+
() => ListSourceViewsForBillingViewRequest$,
|
|
385
|
+
() => ListSourceViewsForBillingViewResponse$,
|
|
386
386
|
];
|
|
387
|
-
export var ListTagsForResource = [
|
|
387
|
+
export var ListTagsForResource$ = [
|
|
388
388
|
9,
|
|
389
389
|
n0,
|
|
390
390
|
_LTFR,
|
|
391
391
|
0,
|
|
392
|
-
() => ListTagsForResourceRequest
|
|
393
|
-
() => ListTagsForResourceResponse
|
|
392
|
+
() => ListTagsForResourceRequest$,
|
|
393
|
+
() => ListTagsForResourceResponse$,
|
|
394
394
|
];
|
|
395
|
-
export var TagResource = [
|
|
396
|
-
|
|
395
|
+
export var TagResource$ = [
|
|
396
|
+
9,
|
|
397
|
+
n0,
|
|
398
|
+
_TRa,
|
|
399
|
+
0,
|
|
400
|
+
() => TagResourceRequest$,
|
|
401
|
+
() => TagResourceResponse$,
|
|
402
|
+
];
|
|
403
|
+
export var UntagResource$ = [
|
|
397
404
|
9,
|
|
398
405
|
n0,
|
|
399
406
|
_UR,
|
|
400
407
|
0,
|
|
401
|
-
() => UntagResourceRequest
|
|
402
|
-
() => UntagResourceResponse
|
|
408
|
+
() => UntagResourceRequest$,
|
|
409
|
+
() => UntagResourceResponse$,
|
|
403
410
|
];
|
|
404
|
-
export var UpdateBillingView = [
|
|
411
|
+
export var UpdateBillingView$ = [
|
|
405
412
|
9,
|
|
406
413
|
n0,
|
|
407
414
|
_UBV,
|
|
408
415
|
2,
|
|
409
|
-
() => UpdateBillingViewRequest
|
|
410
|
-
() => UpdateBillingViewResponse
|
|
416
|
+
() => UpdateBillingViewRequest$,
|
|
417
|
+
() => UpdateBillingViewResponse$,
|
|
411
418
|
];
|