@aws-sdk/client-savingsplans 3.296.0 → 3.298.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 +2 -3
- package/dist-cjs/commands/DeleteQueuedSavingsPlanCommand.js +2 -3
- package/dist-cjs/commands/DescribeSavingsPlanRatesCommand.js +2 -3
- package/dist-cjs/commands/DescribeSavingsPlansCommand.js +2 -3
- package/dist-cjs/commands/DescribeSavingsPlansOfferingRatesCommand.js +2 -3
- package/dist-cjs/commands/DescribeSavingsPlansOfferingsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -121
- package/dist-es/commands/CreateSavingsPlanCommand.js +2 -3
- package/dist-es/commands/DeleteQueuedSavingsPlanCommand.js +2 -3
- package/dist-es/commands/DescribeSavingsPlanRatesCommand.js +2 -3
- package/dist-es/commands/DescribeSavingsPlansCommand.js +2 -3
- package/dist-es/commands/DescribeSavingsPlansOfferingRatesCommand.js +2 -3
- package/dist-es/commands/DescribeSavingsPlansOfferingsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -90
- package/dist-types/Savingsplans.d.ts +10 -0
- package/dist-types/SavingsplansClient.d.ts +24 -4
- package/dist-types/commands/CreateSavingsPlanCommand.d.ts +16 -0
- package/dist-types/commands/DeleteQueuedSavingsPlanCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSavingsPlanRatesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSavingsPlansCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSavingsPlansOfferingRatesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSavingsPlansOfferingsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/SavingsplansServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +110 -121
- package/dist-types/ts3.4/models/models_0.d.ts +0 -88
- package/package.json +4 -3
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { SavingsplansServiceException as __BaseException } from "./SavingsplansServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface CreateSavingsPlanRequest {
|
|
4
7
|
/**
|
|
5
8
|
* <p>The ID of the offering.</p>
|
|
@@ -28,6 +31,9 @@ export interface CreateSavingsPlanRequest {
|
|
|
28
31
|
*/
|
|
29
32
|
tags?: Record<string, string>;
|
|
30
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
31
37
|
export interface CreateSavingsPlanResponse {
|
|
32
38
|
/**
|
|
33
39
|
* <p>The ID of the Savings Plan.</p>
|
|
@@ -35,6 +41,7 @@ export interface CreateSavingsPlanResponse {
|
|
|
35
41
|
savingsPlanId?: string;
|
|
36
42
|
}
|
|
37
43
|
/**
|
|
44
|
+
* @public
|
|
38
45
|
* <p>An unexpected error occurred.</p>
|
|
39
46
|
*/
|
|
40
47
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -46,6 +53,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
46
53
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
47
54
|
}
|
|
48
55
|
/**
|
|
56
|
+
* @public
|
|
49
57
|
* <p>The specified resource was not found.</p>
|
|
50
58
|
*/
|
|
51
59
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -57,6 +65,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
57
65
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
58
66
|
}
|
|
59
67
|
/**
|
|
68
|
+
* @public
|
|
60
69
|
* <p>A service quota has been exceeded.</p>
|
|
61
70
|
*/
|
|
62
71
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -68,6 +77,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
68
77
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
69
78
|
}
|
|
70
79
|
/**
|
|
80
|
+
* @public
|
|
71
81
|
* <p>One of the input parameters is not valid.</p>
|
|
72
82
|
*/
|
|
73
83
|
export declare class ValidationException extends __BaseException {
|
|
@@ -78,14 +88,23 @@ export declare class ValidationException extends __BaseException {
|
|
|
78
88
|
*/
|
|
79
89
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
80
90
|
}
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
81
94
|
export interface DeleteQueuedSavingsPlanRequest {
|
|
82
95
|
/**
|
|
83
96
|
* <p>The ID of the Savings Plan.</p>
|
|
84
97
|
*/
|
|
85
98
|
savingsPlanId: string | undefined;
|
|
86
99
|
}
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
87
103
|
export interface DeleteQueuedSavingsPlanResponse {
|
|
88
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
89
108
|
export declare enum SavingsPlanRateFilterName {
|
|
90
109
|
INSTANCE_TYPE = "instanceType",
|
|
91
110
|
OPERATION = "operation",
|
|
@@ -97,6 +116,7 @@ export declare enum SavingsPlanRateFilterName {
|
|
|
97
116
|
USAGE_TYPE = "usageType"
|
|
98
117
|
}
|
|
99
118
|
/**
|
|
119
|
+
* @public
|
|
100
120
|
* <p>Information about a filter.</p>
|
|
101
121
|
*/
|
|
102
122
|
export interface SavingsPlanRateFilter {
|
|
@@ -109,6 +129,9 @@ export interface SavingsPlanRateFilter {
|
|
|
109
129
|
*/
|
|
110
130
|
values?: string[];
|
|
111
131
|
}
|
|
132
|
+
/**
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
112
135
|
export interface DescribeSavingsPlanRatesRequest {
|
|
113
136
|
/**
|
|
114
137
|
* <p>The ID of the Savings Plan.</p>
|
|
@@ -128,13 +151,22 @@ export interface DescribeSavingsPlanRatesRequest {
|
|
|
128
151
|
*/
|
|
129
152
|
maxResults?: number;
|
|
130
153
|
}
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
131
157
|
export type CurrencyCode = "CNY" | "USD";
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
132
161
|
export declare enum SavingsPlanProductType {
|
|
133
162
|
EC2 = "EC2",
|
|
134
163
|
FARGATE = "Fargate",
|
|
135
164
|
LAMBDA = "Lambda",
|
|
136
165
|
SAGEMAKER = "SageMaker"
|
|
137
166
|
}
|
|
167
|
+
/**
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
138
170
|
export declare enum SavingsPlanRatePropertyKey {
|
|
139
171
|
INSTANCE_FAMILY = "instanceFamily",
|
|
140
172
|
INSTANCE_TYPE = "instanceType",
|
|
@@ -143,6 +175,7 @@ export declare enum SavingsPlanRatePropertyKey {
|
|
|
143
175
|
TENANCY = "tenancy"
|
|
144
176
|
}
|
|
145
177
|
/**
|
|
178
|
+
* @public
|
|
146
179
|
* <p>Information about a property.</p>
|
|
147
180
|
*/
|
|
148
181
|
export interface SavingsPlanRateProperty {
|
|
@@ -155,6 +188,9 @@ export interface SavingsPlanRateProperty {
|
|
|
155
188
|
*/
|
|
156
189
|
value?: string;
|
|
157
190
|
}
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
158
194
|
export declare enum SavingsPlanRateServiceCode {
|
|
159
195
|
EC2 = "AmazonEC2",
|
|
160
196
|
FARGATE = "AmazonECS",
|
|
@@ -162,12 +198,16 @@ export declare enum SavingsPlanRateServiceCode {
|
|
|
162
198
|
LAMBDA = "AWSLambda",
|
|
163
199
|
SAGEMAKER = "AmazonSageMaker"
|
|
164
200
|
}
|
|
201
|
+
/**
|
|
202
|
+
* @public
|
|
203
|
+
*/
|
|
165
204
|
export declare enum SavingsPlanRateUnit {
|
|
166
205
|
HOURS = "Hrs",
|
|
167
206
|
LAMBDA_GB_SECOND = "Lambda-GB-Second",
|
|
168
207
|
REQUEST = "Request"
|
|
169
208
|
}
|
|
170
209
|
/**
|
|
210
|
+
* @public
|
|
171
211
|
* <p>Information about a Savings Plan rate.</p>
|
|
172
212
|
*/
|
|
173
213
|
export interface SavingsPlanRate {
|
|
@@ -204,6 +244,9 @@ export interface SavingsPlanRate {
|
|
|
204
244
|
*/
|
|
205
245
|
properties?: SavingsPlanRateProperty[];
|
|
206
246
|
}
|
|
247
|
+
/**
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
207
250
|
export interface DescribeSavingsPlanRatesResponse {
|
|
208
251
|
/**
|
|
209
252
|
* <p>The ID of the Savings Plan.</p>
|
|
@@ -219,6 +262,9 @@ export interface DescribeSavingsPlanRatesResponse {
|
|
|
219
262
|
*/
|
|
220
263
|
nextToken?: string;
|
|
221
264
|
}
|
|
265
|
+
/**
|
|
266
|
+
* @public
|
|
267
|
+
*/
|
|
222
268
|
export declare enum SavingsPlansFilterName {
|
|
223
269
|
COMMITMENT = "commitment",
|
|
224
270
|
EC2_INSTANCE_FAMILY = "ec2-instance-family",
|
|
@@ -231,6 +277,7 @@ export declare enum SavingsPlansFilterName {
|
|
|
231
277
|
UPFRONT = "upfront"
|
|
232
278
|
}
|
|
233
279
|
/**
|
|
280
|
+
* @public
|
|
234
281
|
* <p>Information about a filter.</p>
|
|
235
282
|
*/
|
|
236
283
|
export interface SavingsPlanFilter {
|
|
@@ -243,6 +290,9 @@ export interface SavingsPlanFilter {
|
|
|
243
290
|
*/
|
|
244
291
|
values?: string[];
|
|
245
292
|
}
|
|
293
|
+
/**
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
246
296
|
export declare enum SavingsPlanState {
|
|
247
297
|
ACTIVE = "active",
|
|
248
298
|
PAYMENT_FAILED = "payment-failed",
|
|
@@ -251,6 +301,9 @@ export declare enum SavingsPlanState {
|
|
|
251
301
|
QUEUED_DELETED = "queued-deleted",
|
|
252
302
|
RETIRED = "retired"
|
|
253
303
|
}
|
|
304
|
+
/**
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
254
307
|
export interface DescribeSavingsPlansRequest {
|
|
255
308
|
/**
|
|
256
309
|
* <p>The Amazon Resource Names (ARN) of the Savings Plans.</p>
|
|
@@ -278,17 +331,24 @@ export interface DescribeSavingsPlansRequest {
|
|
|
278
331
|
*/
|
|
279
332
|
filters?: SavingsPlanFilter[];
|
|
280
333
|
}
|
|
334
|
+
/**
|
|
335
|
+
* @public
|
|
336
|
+
*/
|
|
281
337
|
export declare enum SavingsPlanPaymentOption {
|
|
282
338
|
ALL_UPFRONT = "All Upfront",
|
|
283
339
|
NO_UPFRONT = "No Upfront",
|
|
284
340
|
PARTIAL_UPFRONT = "Partial Upfront"
|
|
285
341
|
}
|
|
342
|
+
/**
|
|
343
|
+
* @public
|
|
344
|
+
*/
|
|
286
345
|
export declare enum SavingsPlanType {
|
|
287
346
|
COMPUTE = "Compute",
|
|
288
347
|
EC2_INSTANCE = "EC2Instance",
|
|
289
348
|
SAGEMAKER = "SageMaker"
|
|
290
349
|
}
|
|
291
350
|
/**
|
|
351
|
+
* @public
|
|
292
352
|
* <p>Information about a Savings Plan.</p>
|
|
293
353
|
*/
|
|
294
354
|
export interface SavingsPlan {
|
|
@@ -365,6 +425,9 @@ export interface SavingsPlan {
|
|
|
365
425
|
*/
|
|
366
426
|
tags?: Record<string, string>;
|
|
367
427
|
}
|
|
428
|
+
/**
|
|
429
|
+
* @public
|
|
430
|
+
*/
|
|
368
431
|
export interface DescribeSavingsPlansResponse {
|
|
369
432
|
/**
|
|
370
433
|
* <p>Information about the Savings Plans.</p>
|
|
@@ -376,6 +439,9 @@ export interface DescribeSavingsPlansResponse {
|
|
|
376
439
|
*/
|
|
377
440
|
nextToken?: string;
|
|
378
441
|
}
|
|
442
|
+
/**
|
|
443
|
+
* @public
|
|
444
|
+
*/
|
|
379
445
|
export declare enum SavingsPlanRateFilterAttribute {
|
|
380
446
|
INSTANCE_FAMILY = "instanceFamily",
|
|
381
447
|
INSTANCE_TYPE = "instanceType",
|
|
@@ -385,6 +451,7 @@ export declare enum SavingsPlanRateFilterAttribute {
|
|
|
385
451
|
TENANCY = "tenancy"
|
|
386
452
|
}
|
|
387
453
|
/**
|
|
454
|
+
* @public
|
|
388
455
|
* <p>Information about a filter.</p>
|
|
389
456
|
*/
|
|
390
457
|
export interface SavingsPlanOfferingRateFilterElement {
|
|
@@ -397,6 +464,9 @@ export interface SavingsPlanOfferingRateFilterElement {
|
|
|
397
464
|
*/
|
|
398
465
|
values?: string[];
|
|
399
466
|
}
|
|
467
|
+
/**
|
|
468
|
+
* @public
|
|
469
|
+
*/
|
|
400
470
|
export interface DescribeSavingsPlansOfferingRatesRequest {
|
|
401
471
|
/**
|
|
402
472
|
* <p>The IDs of the offerings.</p>
|
|
@@ -441,6 +511,7 @@ export interface DescribeSavingsPlansOfferingRatesRequest {
|
|
|
441
511
|
maxResults?: number;
|
|
442
512
|
}
|
|
443
513
|
/**
|
|
514
|
+
* @public
|
|
444
515
|
* <p>Information about a property.</p>
|
|
445
516
|
*/
|
|
446
517
|
export interface SavingsPlanOfferingRateProperty {
|
|
@@ -454,6 +525,7 @@ export interface SavingsPlanOfferingRateProperty {
|
|
|
454
525
|
value?: string;
|
|
455
526
|
}
|
|
456
527
|
/**
|
|
528
|
+
* @public
|
|
457
529
|
* <p>Information about a Savings Plan offering.</p>
|
|
458
530
|
*/
|
|
459
531
|
export interface ParentSavingsPlanOffering {
|
|
@@ -483,6 +555,7 @@ export interface ParentSavingsPlanOffering {
|
|
|
483
555
|
planDescription?: string;
|
|
484
556
|
}
|
|
485
557
|
/**
|
|
558
|
+
* @public
|
|
486
559
|
* <p>Information about a Savings Plan offering rate.</p>
|
|
487
560
|
*/
|
|
488
561
|
export interface SavingsPlanOfferingRate {
|
|
@@ -519,6 +592,9 @@ export interface SavingsPlanOfferingRate {
|
|
|
519
592
|
*/
|
|
520
593
|
properties?: SavingsPlanOfferingRateProperty[];
|
|
521
594
|
}
|
|
595
|
+
/**
|
|
596
|
+
* @public
|
|
597
|
+
*/
|
|
522
598
|
export interface DescribeSavingsPlansOfferingRatesResponse {
|
|
523
599
|
/**
|
|
524
600
|
* <p>Information about the Savings Plans offering rates.</p>
|
|
@@ -530,11 +606,15 @@ export interface DescribeSavingsPlansOfferingRatesResponse {
|
|
|
530
606
|
*/
|
|
531
607
|
nextToken?: string;
|
|
532
608
|
}
|
|
609
|
+
/**
|
|
610
|
+
* @public
|
|
611
|
+
*/
|
|
533
612
|
export declare enum SavingsPlanOfferingFilterAttribute {
|
|
534
613
|
instanceFamily = "instanceFamily",
|
|
535
614
|
region = "region"
|
|
536
615
|
}
|
|
537
616
|
/**
|
|
617
|
+
* @public
|
|
538
618
|
* <p>Information about a filter.</p>
|
|
539
619
|
*/
|
|
540
620
|
export interface SavingsPlanOfferingFilterElement {
|
|
@@ -547,6 +627,9 @@ export interface SavingsPlanOfferingFilterElement {
|
|
|
547
627
|
*/
|
|
548
628
|
values?: string[];
|
|
549
629
|
}
|
|
630
|
+
/**
|
|
631
|
+
* @public
|
|
632
|
+
*/
|
|
550
633
|
export interface DescribeSavingsPlansOfferingsRequest {
|
|
551
634
|
/**
|
|
552
635
|
* <p>The IDs of the offerings.</p>
|
|
@@ -602,11 +685,15 @@ export interface DescribeSavingsPlansOfferingsRequest {
|
|
|
602
685
|
*/
|
|
603
686
|
maxResults?: number;
|
|
604
687
|
}
|
|
688
|
+
/**
|
|
689
|
+
* @public
|
|
690
|
+
*/
|
|
605
691
|
export declare enum SavingsPlanOfferingPropertyKey {
|
|
606
692
|
INSTANCE_FAMILY = "instanceFamily",
|
|
607
693
|
REGION = "region"
|
|
608
694
|
}
|
|
609
695
|
/**
|
|
696
|
+
* @public
|
|
610
697
|
* <p>Information about a property.</p>
|
|
611
698
|
*/
|
|
612
699
|
export interface SavingsPlanOfferingProperty {
|
|
@@ -620,6 +707,7 @@ export interface SavingsPlanOfferingProperty {
|
|
|
620
707
|
value?: string;
|
|
621
708
|
}
|
|
622
709
|
/**
|
|
710
|
+
* @public
|
|
623
711
|
* <p>Information about a Savings Plan offering.</p>
|
|
624
712
|
*/
|
|
625
713
|
export interface SavingsPlanOffering {
|
|
@@ -668,6 +756,9 @@ export interface SavingsPlanOffering {
|
|
|
668
756
|
*/
|
|
669
757
|
properties?: SavingsPlanOfferingProperty[];
|
|
670
758
|
}
|
|
759
|
+
/**
|
|
760
|
+
* @public
|
|
761
|
+
*/
|
|
671
762
|
export interface DescribeSavingsPlansOfferingsResponse {
|
|
672
763
|
/**
|
|
673
764
|
* <p>Information about the Savings Plans offerings.</p>
|
|
@@ -679,30 +770,45 @@ export interface DescribeSavingsPlansOfferingsResponse {
|
|
|
679
770
|
*/
|
|
680
771
|
nextToken?: string;
|
|
681
772
|
}
|
|
773
|
+
/**
|
|
774
|
+
* @public
|
|
775
|
+
*/
|
|
682
776
|
export interface ListTagsForResourceRequest {
|
|
683
777
|
/**
|
|
684
778
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
685
779
|
*/
|
|
686
780
|
resourceArn: string | undefined;
|
|
687
781
|
}
|
|
782
|
+
/**
|
|
783
|
+
* @public
|
|
784
|
+
*/
|
|
688
785
|
export interface ListTagsForResourceResponse {
|
|
689
786
|
/**
|
|
690
787
|
* <p>Information about the tags.</p>
|
|
691
788
|
*/
|
|
692
789
|
tags?: Record<string, string>;
|
|
693
790
|
}
|
|
791
|
+
/**
|
|
792
|
+
* @public
|
|
793
|
+
*/
|
|
694
794
|
export interface TagResourceRequest {
|
|
695
795
|
/**
|
|
696
796
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
697
797
|
*/
|
|
698
798
|
resourceArn: string | undefined;
|
|
699
799
|
/**
|
|
700
|
-
* <p>One or more tags. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
800
|
+
* <p>One or more tags. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
701
801
|
*/
|
|
702
802
|
tags: Record<string, string> | undefined;
|
|
703
803
|
}
|
|
804
|
+
/**
|
|
805
|
+
* @public
|
|
806
|
+
*/
|
|
704
807
|
export interface TagResourceResponse {
|
|
705
808
|
}
|
|
809
|
+
/**
|
|
810
|
+
* @public
|
|
811
|
+
*/
|
|
706
812
|
export interface UntagResourceRequest {
|
|
707
813
|
/**
|
|
708
814
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
@@ -713,125 +819,8 @@ export interface UntagResourceRequest {
|
|
|
713
819
|
*/
|
|
714
820
|
tagKeys: string[] | undefined;
|
|
715
821
|
}
|
|
716
|
-
export interface UntagResourceResponse {
|
|
717
|
-
}
|
|
718
|
-
/**
|
|
719
|
-
* @internal
|
|
720
|
-
*/
|
|
721
|
-
export declare const CreateSavingsPlanRequestFilterSensitiveLog: (obj: CreateSavingsPlanRequest) => any;
|
|
722
|
-
/**
|
|
723
|
-
* @internal
|
|
724
|
-
*/
|
|
725
|
-
export declare const CreateSavingsPlanResponseFilterSensitiveLog: (obj: CreateSavingsPlanResponse) => any;
|
|
726
|
-
/**
|
|
727
|
-
* @internal
|
|
728
|
-
*/
|
|
729
|
-
export declare const DeleteQueuedSavingsPlanRequestFilterSensitiveLog: (obj: DeleteQueuedSavingsPlanRequest) => any;
|
|
730
|
-
/**
|
|
731
|
-
* @internal
|
|
732
|
-
*/
|
|
733
|
-
export declare const DeleteQueuedSavingsPlanResponseFilterSensitiveLog: (obj: DeleteQueuedSavingsPlanResponse) => any;
|
|
734
|
-
/**
|
|
735
|
-
* @internal
|
|
736
|
-
*/
|
|
737
|
-
export declare const SavingsPlanRateFilterFilterSensitiveLog: (obj: SavingsPlanRateFilter) => any;
|
|
738
|
-
/**
|
|
739
|
-
* @internal
|
|
740
|
-
*/
|
|
741
|
-
export declare const DescribeSavingsPlanRatesRequestFilterSensitiveLog: (obj: DescribeSavingsPlanRatesRequest) => any;
|
|
742
|
-
/**
|
|
743
|
-
* @internal
|
|
744
|
-
*/
|
|
745
|
-
export declare const SavingsPlanRatePropertyFilterSensitiveLog: (obj: SavingsPlanRateProperty) => any;
|
|
746
|
-
/**
|
|
747
|
-
* @internal
|
|
748
|
-
*/
|
|
749
|
-
export declare const SavingsPlanRateFilterSensitiveLog: (obj: SavingsPlanRate) => any;
|
|
750
|
-
/**
|
|
751
|
-
* @internal
|
|
752
|
-
*/
|
|
753
|
-
export declare const DescribeSavingsPlanRatesResponseFilterSensitiveLog: (obj: DescribeSavingsPlanRatesResponse) => any;
|
|
754
|
-
/**
|
|
755
|
-
* @internal
|
|
756
|
-
*/
|
|
757
|
-
export declare const SavingsPlanFilterFilterSensitiveLog: (obj: SavingsPlanFilter) => any;
|
|
758
|
-
/**
|
|
759
|
-
* @internal
|
|
760
|
-
*/
|
|
761
|
-
export declare const DescribeSavingsPlansRequestFilterSensitiveLog: (obj: DescribeSavingsPlansRequest) => any;
|
|
762
|
-
/**
|
|
763
|
-
* @internal
|
|
764
|
-
*/
|
|
765
|
-
export declare const SavingsPlanFilterSensitiveLog: (obj: SavingsPlan) => any;
|
|
766
|
-
/**
|
|
767
|
-
* @internal
|
|
768
|
-
*/
|
|
769
|
-
export declare const DescribeSavingsPlansResponseFilterSensitiveLog: (obj: DescribeSavingsPlansResponse) => any;
|
|
770
|
-
/**
|
|
771
|
-
* @internal
|
|
772
|
-
*/
|
|
773
|
-
export declare const SavingsPlanOfferingRateFilterElementFilterSensitiveLog: (obj: SavingsPlanOfferingRateFilterElement) => any;
|
|
774
|
-
/**
|
|
775
|
-
* @internal
|
|
776
|
-
*/
|
|
777
|
-
export declare const DescribeSavingsPlansOfferingRatesRequestFilterSensitiveLog: (obj: DescribeSavingsPlansOfferingRatesRequest) => any;
|
|
778
822
|
/**
|
|
779
|
-
* @
|
|
823
|
+
* @public
|
|
780
824
|
*/
|
|
781
|
-
export
|
|
782
|
-
|
|
783
|
-
* @internal
|
|
784
|
-
*/
|
|
785
|
-
export declare const ParentSavingsPlanOfferingFilterSensitiveLog: (obj: ParentSavingsPlanOffering) => any;
|
|
786
|
-
/**
|
|
787
|
-
* @internal
|
|
788
|
-
*/
|
|
789
|
-
export declare const SavingsPlanOfferingRateFilterSensitiveLog: (obj: SavingsPlanOfferingRate) => any;
|
|
790
|
-
/**
|
|
791
|
-
* @internal
|
|
792
|
-
*/
|
|
793
|
-
export declare const DescribeSavingsPlansOfferingRatesResponseFilterSensitiveLog: (obj: DescribeSavingsPlansOfferingRatesResponse) => any;
|
|
794
|
-
/**
|
|
795
|
-
* @internal
|
|
796
|
-
*/
|
|
797
|
-
export declare const SavingsPlanOfferingFilterElementFilterSensitiveLog: (obj: SavingsPlanOfferingFilterElement) => any;
|
|
798
|
-
/**
|
|
799
|
-
* @internal
|
|
800
|
-
*/
|
|
801
|
-
export declare const DescribeSavingsPlansOfferingsRequestFilterSensitiveLog: (obj: DescribeSavingsPlansOfferingsRequest) => any;
|
|
802
|
-
/**
|
|
803
|
-
* @internal
|
|
804
|
-
*/
|
|
805
|
-
export declare const SavingsPlanOfferingPropertyFilterSensitiveLog: (obj: SavingsPlanOfferingProperty) => any;
|
|
806
|
-
/**
|
|
807
|
-
* @internal
|
|
808
|
-
*/
|
|
809
|
-
export declare const SavingsPlanOfferingFilterSensitiveLog: (obj: SavingsPlanOffering) => any;
|
|
810
|
-
/**
|
|
811
|
-
* @internal
|
|
812
|
-
*/
|
|
813
|
-
export declare const DescribeSavingsPlansOfferingsResponseFilterSensitiveLog: (obj: DescribeSavingsPlansOfferingsResponse) => any;
|
|
814
|
-
/**
|
|
815
|
-
* @internal
|
|
816
|
-
*/
|
|
817
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
818
|
-
/**
|
|
819
|
-
* @internal
|
|
820
|
-
*/
|
|
821
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
822
|
-
/**
|
|
823
|
-
* @internal
|
|
824
|
-
*/
|
|
825
|
-
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
826
|
-
/**
|
|
827
|
-
* @internal
|
|
828
|
-
*/
|
|
829
|
-
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
830
|
-
/**
|
|
831
|
-
* @internal
|
|
832
|
-
*/
|
|
833
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
834
|
-
/**
|
|
835
|
-
* @internal
|
|
836
|
-
*/
|
|
837
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
825
|
+
export interface UntagResourceResponse {
|
|
826
|
+
}
|
|
@@ -287,91 +287,3 @@ export interface UntagResourceRequest {
|
|
|
287
287
|
tagKeys: string[] | undefined;
|
|
288
288
|
}
|
|
289
289
|
export interface UntagResourceResponse {}
|
|
290
|
-
export declare const CreateSavingsPlanRequestFilterSensitiveLog: (
|
|
291
|
-
obj: CreateSavingsPlanRequest
|
|
292
|
-
) => any;
|
|
293
|
-
export declare const CreateSavingsPlanResponseFilterSensitiveLog: (
|
|
294
|
-
obj: CreateSavingsPlanResponse
|
|
295
|
-
) => any;
|
|
296
|
-
export declare const DeleteQueuedSavingsPlanRequestFilterSensitiveLog: (
|
|
297
|
-
obj: DeleteQueuedSavingsPlanRequest
|
|
298
|
-
) => any;
|
|
299
|
-
export declare const DeleteQueuedSavingsPlanResponseFilterSensitiveLog: (
|
|
300
|
-
obj: DeleteQueuedSavingsPlanResponse
|
|
301
|
-
) => any;
|
|
302
|
-
export declare const SavingsPlanRateFilterFilterSensitiveLog: (
|
|
303
|
-
obj: SavingsPlanRateFilter
|
|
304
|
-
) => any;
|
|
305
|
-
export declare const DescribeSavingsPlanRatesRequestFilterSensitiveLog: (
|
|
306
|
-
obj: DescribeSavingsPlanRatesRequest
|
|
307
|
-
) => any;
|
|
308
|
-
export declare const SavingsPlanRatePropertyFilterSensitiveLog: (
|
|
309
|
-
obj: SavingsPlanRateProperty
|
|
310
|
-
) => any;
|
|
311
|
-
export declare const SavingsPlanRateFilterSensitiveLog: (
|
|
312
|
-
obj: SavingsPlanRate
|
|
313
|
-
) => any;
|
|
314
|
-
export declare const DescribeSavingsPlanRatesResponseFilterSensitiveLog: (
|
|
315
|
-
obj: DescribeSavingsPlanRatesResponse
|
|
316
|
-
) => any;
|
|
317
|
-
export declare const SavingsPlanFilterFilterSensitiveLog: (
|
|
318
|
-
obj: SavingsPlanFilter
|
|
319
|
-
) => any;
|
|
320
|
-
export declare const DescribeSavingsPlansRequestFilterSensitiveLog: (
|
|
321
|
-
obj: DescribeSavingsPlansRequest
|
|
322
|
-
) => any;
|
|
323
|
-
export declare const SavingsPlanFilterSensitiveLog: (obj: SavingsPlan) => any;
|
|
324
|
-
export declare const DescribeSavingsPlansResponseFilterSensitiveLog: (
|
|
325
|
-
obj: DescribeSavingsPlansResponse
|
|
326
|
-
) => any;
|
|
327
|
-
export declare const SavingsPlanOfferingRateFilterElementFilterSensitiveLog: (
|
|
328
|
-
obj: SavingsPlanOfferingRateFilterElement
|
|
329
|
-
) => any;
|
|
330
|
-
export declare const DescribeSavingsPlansOfferingRatesRequestFilterSensitiveLog: (
|
|
331
|
-
obj: DescribeSavingsPlansOfferingRatesRequest
|
|
332
|
-
) => any;
|
|
333
|
-
export declare const SavingsPlanOfferingRatePropertyFilterSensitiveLog: (
|
|
334
|
-
obj: SavingsPlanOfferingRateProperty
|
|
335
|
-
) => any;
|
|
336
|
-
export declare const ParentSavingsPlanOfferingFilterSensitiveLog: (
|
|
337
|
-
obj: ParentSavingsPlanOffering
|
|
338
|
-
) => any;
|
|
339
|
-
export declare const SavingsPlanOfferingRateFilterSensitiveLog: (
|
|
340
|
-
obj: SavingsPlanOfferingRate
|
|
341
|
-
) => any;
|
|
342
|
-
export declare const DescribeSavingsPlansOfferingRatesResponseFilterSensitiveLog: (
|
|
343
|
-
obj: DescribeSavingsPlansOfferingRatesResponse
|
|
344
|
-
) => any;
|
|
345
|
-
export declare const SavingsPlanOfferingFilterElementFilterSensitiveLog: (
|
|
346
|
-
obj: SavingsPlanOfferingFilterElement
|
|
347
|
-
) => any;
|
|
348
|
-
export declare const DescribeSavingsPlansOfferingsRequestFilterSensitiveLog: (
|
|
349
|
-
obj: DescribeSavingsPlansOfferingsRequest
|
|
350
|
-
) => any;
|
|
351
|
-
export declare const SavingsPlanOfferingPropertyFilterSensitiveLog: (
|
|
352
|
-
obj: SavingsPlanOfferingProperty
|
|
353
|
-
) => any;
|
|
354
|
-
export declare const SavingsPlanOfferingFilterSensitiveLog: (
|
|
355
|
-
obj: SavingsPlanOffering
|
|
356
|
-
) => any;
|
|
357
|
-
export declare const DescribeSavingsPlansOfferingsResponseFilterSensitiveLog: (
|
|
358
|
-
obj: DescribeSavingsPlansOfferingsResponse
|
|
359
|
-
) => any;
|
|
360
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
361
|
-
obj: ListTagsForResourceRequest
|
|
362
|
-
) => any;
|
|
363
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
364
|
-
obj: ListTagsForResourceResponse
|
|
365
|
-
) => any;
|
|
366
|
-
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
367
|
-
obj: TagResourceRequest
|
|
368
|
-
) => any;
|
|
369
|
-
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
370
|
-
obj: TagResourceResponse
|
|
371
|
-
) => any;
|
|
372
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
373
|
-
obj: UntagResourceRequest
|
|
374
|
-
) => any;
|
|
375
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
376
|
-
obj: UntagResourceResponse
|
|
377
|
-
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-savingsplans",
|
|
3
3
|
"description": "AWS SDK for JavaScript Savingsplans Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.298.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo savingsplans"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|