@aws-sdk/client-budgets 3.168.0 → 3.170.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Budgets.d.ts +430 -120
- package/dist-types/ts3.4/BudgetsClient.d.ts +267 -96
- package/dist-types/ts3.4/commands/CreateBudgetActionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateBudgetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateNotificationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateSubscriberCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteBudgetActionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteBudgetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteNotificationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteSubscriberCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeBudgetActionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeBudgetActionHistoriesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeBudgetActionsForAccountCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeBudgetActionsForBudgetCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeBudgetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeBudgetsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeNotificationsForBudgetCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeSubscribersForNotificationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ExecuteBudgetActionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateBudgetActionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateBudgetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateNotificationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateSubscriberCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +23 -23
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/BudgetsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +975 -906
- package/dist-types/ts3.4/pagination/DescribeBudgetActionHistoriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeBudgetActionsForAccountPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeBudgetActionsForBudgetPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeBudgetNotificationsForAccountPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeBudgetPerformanceHistoryPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeBudgetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeNotificationsForBudgetPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeSubscribersForNotificationPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -71
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BudgetsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BudgetsClient";
|
|
13
|
+
import { DeleteBudgetRequest, DeleteBudgetResponse } from "../models/models_0";
|
|
14
|
+
export interface DeleteBudgetCommandInput extends DeleteBudgetRequest {}
|
|
15
|
+
export interface DeleteBudgetCommandOutput
|
|
16
|
+
extends DeleteBudgetResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteBudgetCommand extends $Command<
|
|
20
|
+
DeleteBudgetCommandInput,
|
|
21
|
+
DeleteBudgetCommandOutput,
|
|
22
|
+
BudgetsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteBudgetCommandInput;
|
|
25
|
+
constructor(input: DeleteBudgetCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: BudgetsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteBudgetCommandInput, DeleteBudgetCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BudgetsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BudgetsClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteNotificationRequest,
|
|
15
|
+
DeleteNotificationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteNotificationCommandInput
|
|
18
|
+
extends DeleteNotificationRequest {}
|
|
19
|
+
export interface DeleteNotificationCommandOutput
|
|
20
|
+
extends DeleteNotificationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteNotificationCommand extends $Command<
|
|
24
|
+
DeleteNotificationCommandInput,
|
|
25
|
+
DeleteNotificationCommandOutput,
|
|
26
|
+
BudgetsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteNotificationCommandInput;
|
|
29
|
+
constructor(input: DeleteNotificationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: BudgetsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteNotificationCommandInput, DeleteNotificationCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BudgetsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BudgetsClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteSubscriberRequest,
|
|
15
|
+
DeleteSubscriberResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteSubscriberCommandInput extends DeleteSubscriberRequest {}
|
|
18
|
+
export interface DeleteSubscriberCommandOutput
|
|
19
|
+
extends DeleteSubscriberResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DeleteSubscriberCommand extends $Command<
|
|
23
|
+
DeleteSubscriberCommandInput,
|
|
24
|
+
DeleteSubscriberCommandOutput,
|
|
25
|
+
BudgetsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteSubscriberCommandInput;
|
|
28
|
+
constructor(input: DeleteSubscriberCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: BudgetsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteSubscriberCommandInput, DeleteSubscriberCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BudgetsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BudgetsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeBudgetActionRequest,
|
|
15
|
+
DescribeBudgetActionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeBudgetActionCommandInput
|
|
18
|
+
extends DescribeBudgetActionRequest {}
|
|
19
|
+
export interface DescribeBudgetActionCommandOutput
|
|
20
|
+
extends DescribeBudgetActionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeBudgetActionCommand extends $Command<
|
|
24
|
+
DescribeBudgetActionCommandInput,
|
|
25
|
+
DescribeBudgetActionCommandOutput,
|
|
26
|
+
BudgetsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeBudgetActionCommandInput;
|
|
29
|
+
constructor(input: DescribeBudgetActionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: BudgetsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeBudgetActionCommandInput,
|
|
37
|
+
DescribeBudgetActionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BudgetsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BudgetsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeBudgetActionHistoriesRequest,
|
|
15
|
+
DescribeBudgetActionHistoriesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeBudgetActionHistoriesCommandInput
|
|
18
|
+
extends DescribeBudgetActionHistoriesRequest {}
|
|
19
|
+
export interface DescribeBudgetActionHistoriesCommandOutput
|
|
20
|
+
extends DescribeBudgetActionHistoriesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeBudgetActionHistoriesCommand extends $Command<
|
|
24
|
+
DescribeBudgetActionHistoriesCommandInput,
|
|
25
|
+
DescribeBudgetActionHistoriesCommandOutput,
|
|
26
|
+
BudgetsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeBudgetActionHistoriesCommandInput;
|
|
29
|
+
constructor(input: DescribeBudgetActionHistoriesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: BudgetsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeBudgetActionHistoriesCommandInput,
|
|
37
|
+
DescribeBudgetActionHistoriesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BudgetsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BudgetsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeBudgetActionsForAccountRequest,
|
|
15
|
+
DescribeBudgetActionsForAccountResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeBudgetActionsForAccountCommandInput
|
|
18
|
+
extends DescribeBudgetActionsForAccountRequest {}
|
|
19
|
+
export interface DescribeBudgetActionsForAccountCommandOutput
|
|
20
|
+
extends DescribeBudgetActionsForAccountResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeBudgetActionsForAccountCommand extends $Command<
|
|
24
|
+
DescribeBudgetActionsForAccountCommandInput,
|
|
25
|
+
DescribeBudgetActionsForAccountCommandOutput,
|
|
26
|
+
BudgetsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeBudgetActionsForAccountCommandInput;
|
|
29
|
+
constructor(input: DescribeBudgetActionsForAccountCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: BudgetsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeBudgetActionsForAccountCommandInput,
|
|
37
|
+
DescribeBudgetActionsForAccountCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BudgetsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BudgetsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeBudgetActionsForBudgetRequest,
|
|
15
|
+
DescribeBudgetActionsForBudgetResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeBudgetActionsForBudgetCommandInput
|
|
18
|
+
extends DescribeBudgetActionsForBudgetRequest {}
|
|
19
|
+
export interface DescribeBudgetActionsForBudgetCommandOutput
|
|
20
|
+
extends DescribeBudgetActionsForBudgetResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeBudgetActionsForBudgetCommand extends $Command<
|
|
24
|
+
DescribeBudgetActionsForBudgetCommandInput,
|
|
25
|
+
DescribeBudgetActionsForBudgetCommandOutput,
|
|
26
|
+
BudgetsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeBudgetActionsForBudgetCommandInput;
|
|
29
|
+
constructor(input: DescribeBudgetActionsForBudgetCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: BudgetsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeBudgetActionsForBudgetCommandInput,
|
|
37
|
+
DescribeBudgetActionsForBudgetCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BudgetsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BudgetsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeBudgetRequest,
|
|
15
|
+
DescribeBudgetResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeBudgetCommandInput extends DescribeBudgetRequest {}
|
|
18
|
+
export interface DescribeBudgetCommandOutput
|
|
19
|
+
extends DescribeBudgetResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeBudgetCommand extends $Command<
|
|
23
|
+
DescribeBudgetCommandInput,
|
|
24
|
+
DescribeBudgetCommandOutput,
|
|
25
|
+
BudgetsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeBudgetCommandInput;
|
|
28
|
+
constructor(input: DescribeBudgetCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: BudgetsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeBudgetCommandInput, DescribeBudgetCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BudgetsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BudgetsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeBudgetNotificationsForAccountRequest,
|
|
15
|
+
DescribeBudgetNotificationsForAccountResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeBudgetNotificationsForAccountCommandInput
|
|
18
|
+
extends DescribeBudgetNotificationsForAccountRequest {}
|
|
19
|
+
export interface DescribeBudgetNotificationsForAccountCommandOutput
|
|
20
|
+
extends DescribeBudgetNotificationsForAccountResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeBudgetNotificationsForAccountCommand extends $Command<
|
|
24
|
+
DescribeBudgetNotificationsForAccountCommandInput,
|
|
25
|
+
DescribeBudgetNotificationsForAccountCommandOutput,
|
|
26
|
+
BudgetsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeBudgetNotificationsForAccountCommandInput;
|
|
29
|
+
constructor(input: DescribeBudgetNotificationsForAccountCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: BudgetsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeBudgetNotificationsForAccountCommandInput,
|
|
37
|
+
DescribeBudgetNotificationsForAccountCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BudgetsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BudgetsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeBudgetPerformanceHistoryRequest,
|
|
15
|
+
DescribeBudgetPerformanceHistoryResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeBudgetPerformanceHistoryCommandInput
|
|
18
|
+
extends DescribeBudgetPerformanceHistoryRequest {}
|
|
19
|
+
export interface DescribeBudgetPerformanceHistoryCommandOutput
|
|
20
|
+
extends DescribeBudgetPerformanceHistoryResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeBudgetPerformanceHistoryCommand extends $Command<
|
|
24
|
+
DescribeBudgetPerformanceHistoryCommandInput,
|
|
25
|
+
DescribeBudgetPerformanceHistoryCommandOutput,
|
|
26
|
+
BudgetsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeBudgetPerformanceHistoryCommandInput;
|
|
29
|
+
constructor(input: DescribeBudgetPerformanceHistoryCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: BudgetsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeBudgetPerformanceHistoryCommandInput,
|
|
37
|
+
DescribeBudgetPerformanceHistoryCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
BudgetsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../BudgetsClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeBudgetsRequest,
|
|
15
|
+
DescribeBudgetsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeBudgetsCommandInput extends DescribeBudgetsRequest {}
|
|
18
|
+
export interface DescribeBudgetsCommandOutput
|
|
19
|
+
extends DescribeBudgetsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeBudgetsCommand extends $Command<
|
|
23
|
+
DescribeBudgetsCommandInput,
|
|
24
|
+
DescribeBudgetsCommandOutput,
|
|
25
|
+
BudgetsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeBudgetsCommandInput;
|
|
28
|
+
constructor(input: DescribeBudgetsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: BudgetsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeBudgetsCommandInput, DescribeBudgetsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|