@aws-sdk/client-budgets 3.1087.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/Budgets.d.ts +87 -102
- package/dist-types/ts3.4/BudgetsClient.d.ts +16 -29
- 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/CreateBudgetActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateBudgetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateNotificationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateSubscriberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteBudgetActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteBudgetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteNotificationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSubscriberCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeBudgetActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeBudgetActionHistoriesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeBudgetActionsForAccountCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeBudgetActionsForBudgetCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeBudgetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeBudgetsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeNotificationsForBudgetCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeSubscribersForNotificationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ExecuteBudgetActionCommand.d.ts +5 -10
- 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/UpdateBudgetActionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateBudgetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateNotificationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateSubscriberCommand.d.ts +4 -9
- 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 +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +11 -36
- 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/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { BudgetsClientResolvedConfig } from "../BudgetsClient";
|
|
15
|
-
export interface BudgetsHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface BudgetsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface BudgetsHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface BudgetsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
BudgetsClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
BudgetsHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultBudgetsHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: BudgetsClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<BudgetsHttpAuthSchemeParameters>;
|
|
31
|
-
export interface BudgetsHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<BudgetsHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface BudgetsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<BudgetsHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultBudgetsHttpAuthSchemeProvider: BudgetsHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: BudgetsHttpAuthSchemeProvider;
|
|
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: BudgetsHttpAuthSchemeProvider;
|
|
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 "./BudgetsClient";
|
|
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
|
BudgetsClientResolvedConfig,
|
|
@@ -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,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateBudgetActionRequest,
|
|
4
|
-
CreateBudgetActionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateBudgetActionRequest, CreateBudgetActionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateBudgetActionCommandInput
|
|
8
|
-
extends CreateBudgetActionRequest {}
|
|
4
|
+
export interface CreateBudgetActionCommandInput extends CreateBudgetActionRequest {}
|
|
9
5
|
export interface CreateBudgetActionCommandOutput
|
|
10
|
-
extends CreateBudgetActionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateBudgetActionResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateBudgetActionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateBudgetActionCommandInput
|
|
9
|
+
input: CreateBudgetActionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateBudgetActionCommandInput,
|
|
17
12
|
CreateBudgetActionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateBudgetActionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateBudgetActionCommandInput
|
|
18
|
+
input: CreateBudgetActionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateBudgetActionCommandInput,
|
|
26
21
|
CreateBudgetActionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CreateBudgetRequest, CreateBudgetResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CreateBudgetCommandInput extends CreateBudgetRequest {}
|
|
5
|
-
export interface CreateBudgetCommandOutput
|
|
6
|
-
extends CreateBudgetResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateBudgetCommandOutput extends CreateBudgetResponse, __MetadataBearer {}
|
|
8
6
|
declare const CreateBudgetCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CreateBudgetCommandInput
|
|
8
|
+
input: CreateBudgetCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CreateBudgetCommandInput,
|
|
13
11
|
CreateBudgetCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CreateBudgetCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CreateBudgetCommandInput
|
|
17
|
+
input: CreateBudgetCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CreateBudgetCommandInput,
|
|
22
20
|
CreateBudgetCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateNotificationRequest,
|
|
4
|
-
CreateNotificationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateNotificationRequest, CreateNotificationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateNotificationCommandInput
|
|
8
|
-
extends CreateNotificationRequest {}
|
|
4
|
+
export interface CreateNotificationCommandInput extends CreateNotificationRequest {}
|
|
9
5
|
export interface CreateNotificationCommandOutput
|
|
10
|
-
extends CreateNotificationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateNotificationResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateNotificationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateNotificationCommandInput
|
|
9
|
+
input: CreateNotificationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateNotificationCommandInput,
|
|
17
12
|
CreateNotificationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateNotificationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateNotificationCommandInput
|
|
18
|
+
input: CreateNotificationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateNotificationCommandInput,
|
|
26
21
|
CreateNotificationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateSubscriberRequest,
|
|
4
|
-
CreateSubscriberResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateSubscriberRequest, CreateSubscriberResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface CreateSubscriberCommandInput extends CreateSubscriberRequest {}
|
|
8
|
-
export interface CreateSubscriberCommandOutput
|
|
9
|
-
extends CreateSubscriberResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse, __MetadataBearer {}
|
|
11
6
|
declare const CreateSubscriberCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: CreateSubscriberCommandInput
|
|
8
|
+
input: CreateSubscriberCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
CreateSubscriberCommandInput,
|
|
16
11
|
CreateSubscriberCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const CreateSubscriberCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: CreateSubscriberCommandInput
|
|
17
|
+
input: CreateSubscriberCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
CreateSubscriberCommandInput,
|
|
25
20
|
CreateSubscriberCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteBudgetActionRequest,
|
|
4
|
-
DeleteBudgetActionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteBudgetActionRequest, DeleteBudgetActionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteBudgetActionCommandInput
|
|
8
|
-
extends DeleteBudgetActionRequest {}
|
|
4
|
+
export interface DeleteBudgetActionCommandInput extends DeleteBudgetActionRequest {}
|
|
9
5
|
export interface DeleteBudgetActionCommandOutput
|
|
10
|
-
extends DeleteBudgetActionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteBudgetActionResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteBudgetActionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteBudgetActionCommandInput
|
|
9
|
+
input: DeleteBudgetActionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteBudgetActionCommandInput,
|
|
17
12
|
DeleteBudgetActionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteBudgetActionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteBudgetActionCommandInput
|
|
18
|
+
input: DeleteBudgetActionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteBudgetActionCommandInput,
|
|
26
21
|
DeleteBudgetActionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { DeleteBudgetRequest, DeleteBudgetResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface DeleteBudgetCommandInput extends DeleteBudgetRequest {}
|
|
5
|
-
export interface DeleteBudgetCommandOutput
|
|
6
|
-
extends DeleteBudgetResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteBudgetCommandOutput extends DeleteBudgetResponse, __MetadataBearer {}
|
|
8
6
|
declare const DeleteBudgetCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: DeleteBudgetCommandInput
|
|
8
|
+
input: DeleteBudgetCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
DeleteBudgetCommandInput,
|
|
13
11
|
DeleteBudgetCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const DeleteBudgetCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: DeleteBudgetCommandInput
|
|
17
|
+
input: DeleteBudgetCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
DeleteBudgetCommandInput,
|
|
22
20
|
DeleteBudgetCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteNotificationRequest,
|
|
4
|
-
DeleteNotificationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteNotificationRequest, DeleteNotificationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteNotificationCommandInput
|
|
8
|
-
extends DeleteNotificationRequest {}
|
|
4
|
+
export interface DeleteNotificationCommandInput extends DeleteNotificationRequest {}
|
|
9
5
|
export interface DeleteNotificationCommandOutput
|
|
10
|
-
extends DeleteNotificationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteNotificationResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteNotificationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteNotificationCommandInput
|
|
9
|
+
input: DeleteNotificationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteNotificationCommandInput,
|
|
17
12
|
DeleteNotificationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteNotificationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteNotificationCommandInput
|
|
18
|
+
input: DeleteNotificationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteNotificationCommandInput,
|
|
26
21
|
DeleteNotificationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteSubscriberRequest,
|
|
4
|
-
DeleteSubscriberResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteSubscriberRequest, DeleteSubscriberResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteSubscriberCommandInput extends DeleteSubscriberRequest {}
|
|
8
|
-
export interface DeleteSubscriberCommandOutput
|
|
9
|
-
extends DeleteSubscriberResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteSubscriberCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteSubscriberCommandInput
|
|
8
|
+
input: DeleteSubscriberCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteSubscriberCommandInput,
|
|
16
11
|
DeleteSubscriberCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteSubscriberCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteSubscriberCommandInput
|
|
17
|
+
input: DeleteSubscriberCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteSubscriberCommandInput,
|
|
25
20
|
DeleteSubscriberCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeBudgetActionRequest,
|
|
4
|
-
DescribeBudgetActionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeBudgetActionRequest, DescribeBudgetActionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeBudgetActionCommandInput
|
|
8
|
-
extends DescribeBudgetActionRequest {}
|
|
4
|
+
export interface DescribeBudgetActionCommandInput extends DescribeBudgetActionRequest {}
|
|
9
5
|
export interface DescribeBudgetActionCommandOutput
|
|
10
|
-
extends DescribeBudgetActionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeBudgetActionResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeBudgetActionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeBudgetActionCommandInput
|
|
9
|
+
input: DescribeBudgetActionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeBudgetActionCommandInput,
|
|
17
12
|
DescribeBudgetActionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeBudgetActionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeBudgetActionCommandInput
|
|
18
|
+
input: DescribeBudgetActionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeBudgetActionCommandInput,
|
|
26
21
|
DescribeBudgetActionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeBudgetActionHistoriesResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeBudgetActionHistoriesCommandInput
|
|
8
|
-
extends DescribeBudgetActionHistoriesRequest {}
|
|
7
|
+
export interface DescribeBudgetActionHistoriesCommandInput extends DescribeBudgetActionHistoriesRequest {}
|
|
9
8
|
export interface DescribeBudgetActionHistoriesCommandOutput
|
|
10
|
-
extends DescribeBudgetActionHistoriesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeBudgetActionHistoriesResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeBudgetActionHistoriesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeBudgetActionHistoriesCommandInput
|
|
12
|
+
input: DescribeBudgetActionHistoriesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeBudgetActionHistoriesCommandInput,
|
|
17
15
|
DescribeBudgetActionHistoriesCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeBudgetActionHistoriesCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeBudgetActionHistoriesCommandInput
|
|
21
|
+
input: DescribeBudgetActionHistoriesCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeBudgetActionHistoriesCommandInput,
|
|
26
24
|
DescribeBudgetActionHistoriesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeBudgetActionsForAccountResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeBudgetActionsForAccountCommandInput
|
|
8
|
-
extends DescribeBudgetActionsForAccountRequest {}
|
|
7
|
+
export interface DescribeBudgetActionsForAccountCommandInput extends DescribeBudgetActionsForAccountRequest {}
|
|
9
8
|
export interface DescribeBudgetActionsForAccountCommandOutput
|
|
10
|
-
extends DescribeBudgetActionsForAccountResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeBudgetActionsForAccountResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeBudgetActionsForAccountCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeBudgetActionsForAccountCommandInput
|
|
12
|
+
input: DescribeBudgetActionsForAccountCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeBudgetActionsForAccountCommandInput,
|
|
17
15
|
DescribeBudgetActionsForAccountCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeBudgetActionsForAccountCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeBudgetActionsForAccountCommandInput
|
|
21
|
+
input: DescribeBudgetActionsForAccountCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeBudgetActionsForAccountCommandInput,
|
|
26
24
|
DescribeBudgetActionsForAccountCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeBudgetActionsForBudgetResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeBudgetActionsForBudgetCommandInput
|
|
8
|
-
extends DescribeBudgetActionsForBudgetRequest {}
|
|
7
|
+
export interface DescribeBudgetActionsForBudgetCommandInput extends DescribeBudgetActionsForBudgetRequest {}
|
|
9
8
|
export interface DescribeBudgetActionsForBudgetCommandOutput
|
|
10
|
-
extends DescribeBudgetActionsForBudgetResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeBudgetActionsForBudgetResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeBudgetActionsForBudgetCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeBudgetActionsForBudgetCommandInput
|
|
12
|
+
input: DescribeBudgetActionsForBudgetCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeBudgetActionsForBudgetCommandInput,
|
|
17
15
|
DescribeBudgetActionsForBudgetCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeBudgetActionsForBudgetCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeBudgetActionsForBudgetCommandInput
|
|
21
|
+
input: DescribeBudgetActionsForBudgetCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeBudgetActionsForBudgetCommandInput,
|
|
26
24
|
DescribeBudgetActionsForBudgetCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeBudgetRequest,
|
|
4
|
-
DescribeBudgetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeBudgetRequest, DescribeBudgetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeBudgetCommandInput extends DescribeBudgetRequest {}
|
|
8
|
-
export interface DescribeBudgetCommandOutput
|
|
9
|
-
extends DescribeBudgetResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeBudgetCommandOutput extends DescribeBudgetResponse, __MetadataBearer {}
|
|
11
6
|
declare const DescribeBudgetCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeBudgetCommandInput
|
|
8
|
+
input: DescribeBudgetCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeBudgetCommandInput,
|
|
16
11
|
DescribeBudgetCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DescribeBudgetCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DescribeBudgetCommandInput
|
|
17
|
+
input: DescribeBudgetCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DescribeBudgetCommandInput,
|
|
25
20
|
DescribeBudgetCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeBudgetNotificationsForAccountResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeBudgetNotificationsForAccountCommandInput
|
|
8
|
-
extends DescribeBudgetNotificationsForAccountRequest {}
|
|
7
|
+
export interface DescribeBudgetNotificationsForAccountCommandInput extends DescribeBudgetNotificationsForAccountRequest {}
|
|
9
8
|
export interface DescribeBudgetNotificationsForAccountCommandOutput
|
|
10
|
-
extends DescribeBudgetNotificationsForAccountResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeBudgetNotificationsForAccountResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeBudgetNotificationsForAccountCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeBudgetNotificationsForAccountCommandInput
|
|
12
|
+
input: DescribeBudgetNotificationsForAccountCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeBudgetNotificationsForAccountCommandInput,
|
|
17
15
|
DescribeBudgetNotificationsForAccountCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeBudgetNotificationsForAccountCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeBudgetNotificationsForAccountCommandInput
|
|
21
|
+
input: DescribeBudgetNotificationsForAccountCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeBudgetNotificationsForAccountCommandInput,
|
|
26
24
|
DescribeBudgetNotificationsForAccountCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeBudgetPerformanceHistoryResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeBudgetPerformanceHistoryCommandInput
|
|
8
|
-
extends DescribeBudgetPerformanceHistoryRequest {}
|
|
7
|
+
export interface DescribeBudgetPerformanceHistoryCommandInput extends DescribeBudgetPerformanceHistoryRequest {}
|
|
9
8
|
export interface DescribeBudgetPerformanceHistoryCommandOutput
|
|
10
|
-
extends DescribeBudgetPerformanceHistoryResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeBudgetPerformanceHistoryResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeBudgetPerformanceHistoryCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeBudgetPerformanceHistoryCommandInput
|
|
12
|
+
input: DescribeBudgetPerformanceHistoryCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeBudgetPerformanceHistoryCommandInput,
|
|
17
15
|
DescribeBudgetPerformanceHistoryCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeBudgetPerformanceHistoryCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeBudgetPerformanceHistoryCommandInput
|
|
21
|
+
input: DescribeBudgetPerformanceHistoryCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeBudgetPerformanceHistoryCommandInput,
|
|
26
24
|
DescribeBudgetPerformanceHistoryCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeBudgetsRequest,
|
|
4
|
-
DescribeBudgetsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeBudgetsRequest, DescribeBudgetsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeBudgetsCommandInput extends DescribeBudgetsRequest {}
|
|
8
|
-
export interface DescribeBudgetsCommandOutput
|
|
9
|
-
extends DescribeBudgetsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeBudgetsCommandOutput extends DescribeBudgetsResponse, __MetadataBearer {}
|
|
11
6
|
declare const DescribeBudgetsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeBudgetsCommandInput
|
|
8
|
+
input: DescribeBudgetsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeBudgetsCommandInput,
|
|
16
11
|
DescribeBudgetsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DescribeBudgetsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DescribeBudgetsCommandInput
|
|
17
|
+
input: DescribeBudgetsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DescribeBudgetsCommandInput,
|
|
25
20
|
DescribeBudgetsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeNotificationsForBudgetResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeNotificationsForBudgetCommandInput
|
|
8
|
-
extends DescribeNotificationsForBudgetRequest {}
|
|
7
|
+
export interface DescribeNotificationsForBudgetCommandInput extends DescribeNotificationsForBudgetRequest {}
|
|
9
8
|
export interface DescribeNotificationsForBudgetCommandOutput
|
|
10
|
-
extends DescribeNotificationsForBudgetResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeNotificationsForBudgetResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeNotificationsForBudgetCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeNotificationsForBudgetCommandInput
|
|
12
|
+
input: DescribeNotificationsForBudgetCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeNotificationsForBudgetCommandInput,
|
|
17
15
|
DescribeNotificationsForBudgetCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeNotificationsForBudgetCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeNotificationsForBudgetCommandInput
|
|
21
|
+
input: DescribeNotificationsForBudgetCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeNotificationsForBudgetCommandInput,
|
|
26
24
|
DescribeNotificationsForBudgetCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeSubscribersForNotificationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeSubscribersForNotificationCommandInput
|
|
8
|
-
extends DescribeSubscribersForNotificationRequest {}
|
|
7
|
+
export interface DescribeSubscribersForNotificationCommandInput extends DescribeSubscribersForNotificationRequest {}
|
|
9
8
|
export interface DescribeSubscribersForNotificationCommandOutput
|
|
10
|
-
extends DescribeSubscribersForNotificationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeSubscribersForNotificationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeSubscribersForNotificationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeSubscribersForNotificationCommandInput
|
|
12
|
+
input: DescribeSubscribersForNotificationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeSubscribersForNotificationCommandInput,
|
|
17
15
|
DescribeSubscribersForNotificationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeSubscribersForNotificationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeSubscribersForNotificationCommandInput
|
|
21
|
+
input: DescribeSubscribersForNotificationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeSubscribersForNotificationCommandInput,
|
|
26
24
|
DescribeSubscribersForNotificationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ExecuteBudgetActionRequest,
|
|
4
|
-
ExecuteBudgetActionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ExecuteBudgetActionRequest, ExecuteBudgetActionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ExecuteBudgetActionCommandInput
|
|
8
|
-
extends ExecuteBudgetActionRequest {}
|
|
4
|
+
export interface ExecuteBudgetActionCommandInput extends ExecuteBudgetActionRequest {}
|
|
9
5
|
export interface ExecuteBudgetActionCommandOutput
|
|
10
|
-
extends ExecuteBudgetActionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ExecuteBudgetActionResponse, __MetadataBearer {}
|
|
12
7
|
declare const ExecuteBudgetActionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ExecuteBudgetActionCommandInput
|
|
9
|
+
input: ExecuteBudgetActionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ExecuteBudgetActionCommandInput,
|
|
17
12
|
ExecuteBudgetActionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ExecuteBudgetActionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ExecuteBudgetActionCommandInput
|
|
18
|
+
input: ExecuteBudgetActionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ExecuteBudgetActionCommandInput,
|
|
26
21
|
ExecuteBudgetActionCommandOutput,
|