@aws-sdk/client-savingsplans 3.478.0 → 3.481.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/commands/CreateSavingsPlanCommand.js +18 -41
- package/dist-cjs/commands/DeleteQueuedSavingsPlanCommand.js +18 -41
- package/dist-cjs/commands/DescribeSavingsPlanRatesCommand.js +18 -41
- package/dist-cjs/commands/DescribeSavingsPlansCommand.js +18 -41
- package/dist-cjs/commands/DescribeSavingsPlansOfferingRatesCommand.js +18 -41
- package/dist-cjs/commands/DescribeSavingsPlansOfferingsCommand.js +18 -41
- package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-cjs/commands/TagResourceCommand.js +18 -41
- package/dist-cjs/commands/UntagResourceCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/CreateSavingsPlanCommand.js +18 -41
- package/dist-es/commands/DeleteQueuedSavingsPlanCommand.js +18 -41
- package/dist-es/commands/DescribeSavingsPlanRatesCommand.js +18 -41
- package/dist-es/commands/DescribeSavingsPlansCommand.js +18 -41
- package/dist-es/commands/DescribeSavingsPlansOfferingRatesCommand.js +18 -41
- package/dist-es/commands/DescribeSavingsPlansOfferingsCommand.js +18 -41
- package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-es/commands/TagResourceCommand.js +18 -41
- package/dist-es/commands/UntagResourceCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/CreateSavingsPlanCommand.d.ts +6 -21
- package/dist-types/commands/DeleteQueuedSavingsPlanCommand.d.ts +6 -21
- package/dist-types/commands/DescribeSavingsPlanRatesCommand.d.ts +6 -21
- package/dist-types/commands/DescribeSavingsPlansCommand.d.ts +6 -21
- package/dist-types/commands/DescribeSavingsPlansOfferingRatesCommand.d.ts +6 -21
- package/dist-types/commands/DescribeSavingsPlansOfferingsCommand.d.ts +6 -21
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
- package/dist-types/commands/TagResourceCommand.d.ts +6 -21
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateSavingsPlanCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeleteQueuedSavingsPlanCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DescribeSavingsPlanRatesCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DescribeSavingsPlansCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DescribeSavingsPlansOfferingRatesCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DescribeSavingsPlansOfferingsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +9 -9
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { CreateSavingsPlanRequest, CreateSavingsPlanResponse } from "../models/models_0";
|
|
5
4
|
import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateSavingsPlanCommandInput extends CreateSavingsPlanRequest
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateSavingsPlanCommandOutput extends CreateSavingsPlanResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateSavingsPlanCommand_base: {
|
|
24
|
+
new (input: CreateSavingsPlanCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSavingsPlanCommandInput, CreateSavingsPlanCommandOutput, SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates a Savings Plan.</p>
|
|
@@ -70,23 +73,5 @@ export interface CreateSavingsPlanCommandOutput extends CreateSavingsPlanRespons
|
|
|
70
73
|
* <p>Base exception class for all service exceptions from Savingsplans service.</p>
|
|
71
74
|
*
|
|
72
75
|
*/
|
|
73
|
-
export declare class CreateSavingsPlanCommand extends
|
|
74
|
-
readonly input: CreateSavingsPlanCommandInput;
|
|
75
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
-
/**
|
|
77
|
-
* @public
|
|
78
|
-
*/
|
|
79
|
-
constructor(input: CreateSavingsPlanCommandInput);
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SavingsplansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSavingsPlanCommandInput, CreateSavingsPlanCommandOutput>;
|
|
84
|
-
/**
|
|
85
|
-
* @internal
|
|
86
|
-
*/
|
|
87
|
-
private serialize;
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
private deserialize;
|
|
76
|
+
export declare class CreateSavingsPlanCommand extends CreateSavingsPlanCommand_base {
|
|
92
77
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DeleteQueuedSavingsPlanRequest, DeleteQueuedSavingsPlanResponse } from "../models/models_0";
|
|
5
4
|
import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeleteQueuedSavingsPlanCommandInput extends DeleteQueuedSavings
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeleteQueuedSavingsPlanCommandOutput extends DeleteQueuedSavingsPlanResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeleteQueuedSavingsPlanCommand_base: {
|
|
24
|
+
new (input: DeleteQueuedSavingsPlanCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteQueuedSavingsPlanCommandInput, DeleteQueuedSavingsPlanCommandOutput, SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deletes the queued purchase for the specified Savings Plan.</p>
|
|
@@ -61,23 +64,5 @@ export interface DeleteQueuedSavingsPlanCommandOutput extends DeleteQueuedSaving
|
|
|
61
64
|
* <p>Base exception class for all service exceptions from Savingsplans service.</p>
|
|
62
65
|
*
|
|
63
66
|
*/
|
|
64
|
-
export declare class DeleteQueuedSavingsPlanCommand extends
|
|
65
|
-
readonly input: DeleteQueuedSavingsPlanCommandInput;
|
|
66
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
-
/**
|
|
68
|
-
* @public
|
|
69
|
-
*/
|
|
70
|
-
constructor(input: DeleteQueuedSavingsPlanCommandInput);
|
|
71
|
-
/**
|
|
72
|
-
* @internal
|
|
73
|
-
*/
|
|
74
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SavingsplansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteQueuedSavingsPlanCommandInput, DeleteQueuedSavingsPlanCommandOutput>;
|
|
75
|
-
/**
|
|
76
|
-
* @internal
|
|
77
|
-
*/
|
|
78
|
-
private serialize;
|
|
79
|
-
/**
|
|
80
|
-
* @internal
|
|
81
|
-
*/
|
|
82
|
-
private deserialize;
|
|
67
|
+
export declare class DeleteQueuedSavingsPlanCommand extends DeleteQueuedSavingsPlanCommand_base {
|
|
83
68
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DescribeSavingsPlanRatesRequest, DescribeSavingsPlanRatesResponse } from "../models/models_0";
|
|
5
4
|
import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeSavingsPlanRatesCommandInput extends DescribeSavingsPla
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeSavingsPlanRatesCommandOutput extends DescribeSavingsPlanRatesResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeSavingsPlanRatesCommand_base: {
|
|
24
|
+
new (input: DescribeSavingsPlanRatesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSavingsPlanRatesCommandInput, DescribeSavingsPlanRatesCommandOutput, SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Describes the specified Savings Plans rates.</p>
|
|
@@ -85,23 +88,5 @@ export interface DescribeSavingsPlanRatesCommandOutput extends DescribeSavingsPl
|
|
|
85
88
|
* <p>Base exception class for all service exceptions from Savingsplans service.</p>
|
|
86
89
|
*
|
|
87
90
|
*/
|
|
88
|
-
export declare class DescribeSavingsPlanRatesCommand extends
|
|
89
|
-
readonly input: DescribeSavingsPlanRatesCommandInput;
|
|
90
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
91
|
-
/**
|
|
92
|
-
* @public
|
|
93
|
-
*/
|
|
94
|
-
constructor(input: DescribeSavingsPlanRatesCommandInput);
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SavingsplansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSavingsPlanRatesCommandInput, DescribeSavingsPlanRatesCommandOutput>;
|
|
99
|
-
/**
|
|
100
|
-
* @internal
|
|
101
|
-
*/
|
|
102
|
-
private serialize;
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
private deserialize;
|
|
91
|
+
export declare class DescribeSavingsPlanRatesCommand extends DescribeSavingsPlanRatesCommand_base {
|
|
107
92
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DescribeSavingsPlansRequest, DescribeSavingsPlansResponse } from "../models/models_0";
|
|
5
4
|
import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeSavingsPlansCommandInput extends DescribeSavingsPlansRe
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeSavingsPlansCommandOutput extends DescribeSavingsPlansResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeSavingsPlansCommand_base: {
|
|
24
|
+
new (input: DescribeSavingsPlansCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSavingsPlansCommandInput, DescribeSavingsPlansCommandOutput, SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Describes the specified Savings Plans.</p>
|
|
@@ -101,23 +104,5 @@ export interface DescribeSavingsPlansCommandOutput extends DescribeSavingsPlansR
|
|
|
101
104
|
* <p>Base exception class for all service exceptions from Savingsplans service.</p>
|
|
102
105
|
*
|
|
103
106
|
*/
|
|
104
|
-
export declare class DescribeSavingsPlansCommand extends
|
|
105
|
-
readonly input: DescribeSavingsPlansCommandInput;
|
|
106
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
107
|
-
/**
|
|
108
|
-
* @public
|
|
109
|
-
*/
|
|
110
|
-
constructor(input: DescribeSavingsPlansCommandInput);
|
|
111
|
-
/**
|
|
112
|
-
* @internal
|
|
113
|
-
*/
|
|
114
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SavingsplansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSavingsPlansCommandInput, DescribeSavingsPlansCommandOutput>;
|
|
115
|
-
/**
|
|
116
|
-
* @internal
|
|
117
|
-
*/
|
|
118
|
-
private serialize;
|
|
119
|
-
/**
|
|
120
|
-
* @internal
|
|
121
|
-
*/
|
|
122
|
-
private deserialize;
|
|
107
|
+
export declare class DescribeSavingsPlansCommand extends DescribeSavingsPlansCommand_base {
|
|
123
108
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DescribeSavingsPlansOfferingRatesRequest, DescribeSavingsPlansOfferingRatesResponse } from "../models/models_0";
|
|
5
4
|
import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeSavingsPlansOfferingRatesCommandInput extends DescribeS
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeSavingsPlansOfferingRatesCommandOutput extends DescribeSavingsPlansOfferingRatesResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeSavingsPlansOfferingRatesCommand_base: {
|
|
24
|
+
new (input: DescribeSavingsPlansOfferingRatesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSavingsPlansOfferingRatesCommandInput, DescribeSavingsPlansOfferingRatesCommandOutput, SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Describes the specified Savings Plans offering rates.</p>
|
|
@@ -111,23 +114,5 @@ export interface DescribeSavingsPlansOfferingRatesCommandOutput extends Describe
|
|
|
111
114
|
* <p>Base exception class for all service exceptions from Savingsplans service.</p>
|
|
112
115
|
*
|
|
113
116
|
*/
|
|
114
|
-
export declare class DescribeSavingsPlansOfferingRatesCommand extends
|
|
115
|
-
readonly input: DescribeSavingsPlansOfferingRatesCommandInput;
|
|
116
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
117
|
-
/**
|
|
118
|
-
* @public
|
|
119
|
-
*/
|
|
120
|
-
constructor(input: DescribeSavingsPlansOfferingRatesCommandInput);
|
|
121
|
-
/**
|
|
122
|
-
* @internal
|
|
123
|
-
*/
|
|
124
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SavingsplansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSavingsPlansOfferingRatesCommandInput, DescribeSavingsPlansOfferingRatesCommandOutput>;
|
|
125
|
-
/**
|
|
126
|
-
* @internal
|
|
127
|
-
*/
|
|
128
|
-
private serialize;
|
|
129
|
-
/**
|
|
130
|
-
* @internal
|
|
131
|
-
*/
|
|
132
|
-
private deserialize;
|
|
117
|
+
export declare class DescribeSavingsPlansOfferingRatesCommand extends DescribeSavingsPlansOfferingRatesCommand_base {
|
|
133
118
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DescribeSavingsPlansOfferingsRequest, DescribeSavingsPlansOfferingsResponse } from "../models/models_0";
|
|
5
4
|
import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeSavingsPlansOfferingsCommandInput extends DescribeSavin
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeSavingsPlansOfferingsCommandOutput extends DescribeSavingsPlansOfferingsResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeSavingsPlansOfferingsCommand_base: {
|
|
24
|
+
new (input: DescribeSavingsPlansOfferingsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSavingsPlansOfferingsCommandInput, DescribeSavingsPlansOfferingsCommandOutput, SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Describes the specified Savings Plans offerings.</p>
|
|
@@ -116,23 +119,5 @@ export interface DescribeSavingsPlansOfferingsCommandOutput extends DescribeSavi
|
|
|
116
119
|
* <p>Base exception class for all service exceptions from Savingsplans service.</p>
|
|
117
120
|
*
|
|
118
121
|
*/
|
|
119
|
-
export declare class DescribeSavingsPlansOfferingsCommand extends
|
|
120
|
-
readonly input: DescribeSavingsPlansOfferingsCommandInput;
|
|
121
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
122
|
-
/**
|
|
123
|
-
* @public
|
|
124
|
-
*/
|
|
125
|
-
constructor(input: DescribeSavingsPlansOfferingsCommandInput);
|
|
126
|
-
/**
|
|
127
|
-
* @internal
|
|
128
|
-
*/
|
|
129
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SavingsplansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSavingsPlansOfferingsCommandInput, DescribeSavingsPlansOfferingsCommandOutput>;
|
|
130
|
-
/**
|
|
131
|
-
* @internal
|
|
132
|
-
*/
|
|
133
|
-
private serialize;
|
|
134
|
-
/**
|
|
135
|
-
* @internal
|
|
136
|
-
*/
|
|
137
|
-
private deserialize;
|
|
122
|
+
export declare class DescribeSavingsPlansOfferingsCommand extends DescribeSavingsPlansOfferingsCommand_base {
|
|
138
123
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
4
|
import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListTagsForResourceCommand_base: {
|
|
24
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists the tags for the specified resource.</p>
|
|
@@ -62,23 +65,5 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
62
65
|
* <p>Base exception class for all service exceptions from Savingsplans service.</p>
|
|
63
66
|
*
|
|
64
67
|
*/
|
|
65
|
-
export declare class ListTagsForResourceCommand extends
|
|
66
|
-
readonly input: ListTagsForResourceCommandInput;
|
|
67
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
-
/**
|
|
69
|
-
* @public
|
|
70
|
-
*/
|
|
71
|
-
constructor(input: ListTagsForResourceCommandInput);
|
|
72
|
-
/**
|
|
73
|
-
* @internal
|
|
74
|
-
*/
|
|
75
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SavingsplansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
private serialize;
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
private deserialize;
|
|
68
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
84
69
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
4
|
import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const TagResourceCommand_base: {
|
|
24
|
+
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Adds the specified tags to the specified resource.</p>
|
|
@@ -64,23 +67,5 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
64
67
|
* <p>Base exception class for all service exceptions from Savingsplans service.</p>
|
|
65
68
|
*
|
|
66
69
|
*/
|
|
67
|
-
export declare class TagResourceCommand extends
|
|
68
|
-
readonly input: TagResourceCommandInput;
|
|
69
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
-
/**
|
|
71
|
-
* @public
|
|
72
|
-
*/
|
|
73
|
-
constructor(input: TagResourceCommandInput);
|
|
74
|
-
/**
|
|
75
|
-
* @internal
|
|
76
|
-
*/
|
|
77
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SavingsplansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
private serialize;
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
private deserialize;
|
|
70
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
86
71
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
4
|
import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UntagResourceCommand_base: {
|
|
24
|
+
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Removes the specified tags from the specified resource.</p>
|
|
@@ -61,23 +64,5 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
61
64
|
* <p>Base exception class for all service exceptions from Savingsplans service.</p>
|
|
62
65
|
*
|
|
63
66
|
*/
|
|
64
|
-
export declare class UntagResourceCommand extends
|
|
65
|
-
readonly input: UntagResourceCommandInput;
|
|
66
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
-
/**
|
|
68
|
-
* @public
|
|
69
|
-
*/
|
|
70
|
-
constructor(input: UntagResourceCommandInput);
|
|
71
|
-
/**
|
|
72
|
-
* @internal
|
|
73
|
-
*/
|
|
74
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SavingsplansClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
75
|
-
/**
|
|
76
|
-
* @internal
|
|
77
|
-
*/
|
|
78
|
-
private serialize;
|
|
79
|
-
/**
|
|
80
|
-
* @internal
|
|
81
|
-
*/
|
|
82
|
-
private deserialize;
|
|
67
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
83
68
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
CreateSavingsPlanRequest,
|
|
11
5
|
CreateSavingsPlanResponse,
|
|
@@ -21,19 +15,16 @@ export interface CreateSavingsPlanCommandInput
|
|
|
21
15
|
export interface CreateSavingsPlanCommandOutput
|
|
22
16
|
extends CreateSavingsPlanResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const CreateSavingsPlanCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateSavingsPlanCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateSavingsPlanCommandInput,
|
|
23
|
+
CreateSavingsPlanCommandOutput,
|
|
24
|
+
SavingsplansClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CreateSavingsPlanCommand extends CreateSavingsPlanCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
DeleteQueuedSavingsPlanRequest,
|
|
11
5
|
DeleteQueuedSavingsPlanResponse,
|
|
@@ -21,22 +15,16 @@ export interface DeleteQueuedSavingsPlanCommandInput
|
|
|
21
15
|
export interface DeleteQueuedSavingsPlanCommandOutput
|
|
22
16
|
extends DeleteQueuedSavingsPlanResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: DeleteQueuedSavingsPlanCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: DeleteQueuedSavingsPlanCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: SavingsplansClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const DeleteQueuedSavingsPlanCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteQueuedSavingsPlanCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
DeleteQueuedSavingsPlanCommandInput,
|
|
38
|
-
DeleteQueuedSavingsPlanCommandOutput
|
|
23
|
+
DeleteQueuedSavingsPlanCommandOutput,
|
|
24
|
+
SavingsplansClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DeleteQueuedSavingsPlanCommand extends DeleteQueuedSavingsPlanCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
DescribeSavingsPlanRatesRequest,
|
|
11
5
|
DescribeSavingsPlanRatesResponse,
|
|
@@ -21,22 +15,16 @@ export interface DescribeSavingsPlanRatesCommandInput
|
|
|
21
15
|
export interface DescribeSavingsPlanRatesCommandOutput
|
|
22
16
|
extends DescribeSavingsPlanRatesResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: DescribeSavingsPlanRatesCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: DescribeSavingsPlanRatesCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: SavingsplansClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const DescribeSavingsPlanRatesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeSavingsPlanRatesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
DescribeSavingsPlanRatesCommandInput,
|
|
38
|
-
DescribeSavingsPlanRatesCommandOutput
|
|
23
|
+
DescribeSavingsPlanRatesCommandOutput,
|
|
24
|
+
SavingsplansClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DescribeSavingsPlanRatesCommand extends DescribeSavingsPlanRatesCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
DescribeSavingsPlansRequest,
|
|
11
5
|
DescribeSavingsPlansResponse,
|
|
@@ -21,22 +15,16 @@ export interface DescribeSavingsPlansCommandInput
|
|
|
21
15
|
export interface DescribeSavingsPlansCommandOutput
|
|
22
16
|
extends DescribeSavingsPlansResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: DescribeSavingsPlansCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: DescribeSavingsPlansCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: SavingsplansClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const DescribeSavingsPlansCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeSavingsPlansCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
DescribeSavingsPlansCommandInput,
|
|
38
|
-
DescribeSavingsPlansCommandOutput
|
|
23
|
+
DescribeSavingsPlansCommandOutput,
|
|
24
|
+
SavingsplansClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class DescribeSavingsPlansCommand extends DescribeSavingsPlansCommand_base {}
|