@aws-sdk/client-billing 3.1100.0 → 3.1101.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/README.md +21 -0
- package/dist-cjs/index.js +236 -19
- package/dist-es/Billing.js +8 -0
- package/dist-es/commands/GetEnterpriseSupportChargeSummaryCommand.js +4 -0
- package/dist-es/commands/GetEnterpriseSupportContractDetailsCommand.js +4 -0
- package/dist-es/commands/ListEnterpriseSupportLinkedAccountChargesCommand.js +4 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/pagination/ListEnterpriseSupportLinkedAccountChargesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +199 -18
- package/dist-types/Billing.d.ts +28 -0
- package/dist-types/BillingClient.d.ts +5 -2
- package/dist-types/commands/GetEnterpriseSupportChargeSummaryCommand.d.ts +122 -0
- package/dist-types/commands/GetEnterpriseSupportContractDetailsCommand.d.ts +143 -0
- package/dist-types/commands/ListEnterpriseSupportLinkedAccountChargesCommand.d.ts +120 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +464 -0
- package/dist-types/pagination/ListEnterpriseSupportLinkedAccountChargesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/Billing.d.ts +58 -0
- package/dist-types/ts3.4/BillingClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetEnterpriseSupportChargeSummaryCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetEnterpriseSupportContractDetailsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListEnterpriseSupportLinkedAccountChargesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +104 -0
- package/dist-types/ts3.4/pagination/ListEnterpriseSupportLinkedAccountChargesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +1 -1
|
@@ -15,6 +15,27 @@ export interface ActiveTimeRange {
|
|
|
15
15
|
*/
|
|
16
16
|
activeBeforeInclusive: Date | undefined;
|
|
17
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* <p>An additional charge applied to an Enterprise Support contract.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export interface AdditionalCharge {
|
|
23
|
+
/**
|
|
24
|
+
* <p>A description of the additional charge.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
description: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The charge amount.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
amount?: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The type of additional charge.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
chargeType?: string | undefined;
|
|
38
|
+
}
|
|
18
39
|
/**
|
|
19
40
|
* <p>A monetary amount with a currency code. Used throughout the Billing API to represent credit balances, allocations, and adjustments.</p>
|
|
20
41
|
* @public
|
|
@@ -735,6 +756,309 @@ export interface GetCreditsResponse {
|
|
|
735
756
|
*/
|
|
736
757
|
credits?: CreditData[] | undefined;
|
|
737
758
|
}
|
|
759
|
+
/**
|
|
760
|
+
* <p>The request structure for GetEnterpriseSupportChargeSummary.</p>
|
|
761
|
+
* @public
|
|
762
|
+
*/
|
|
763
|
+
export interface GetEnterpriseSupportChargeSummaryRequest {
|
|
764
|
+
/**
|
|
765
|
+
* <p>The billing month in YYYY-MM format. This must be a month in the past.</p>
|
|
766
|
+
* @public
|
|
767
|
+
*/
|
|
768
|
+
billingMonth: string | undefined;
|
|
769
|
+
}
|
|
770
|
+
/**
|
|
771
|
+
* <p>A tier within an Enterprise Support pricing plan.</p>
|
|
772
|
+
* @public
|
|
773
|
+
*/
|
|
774
|
+
export interface PricingPlanTier {
|
|
775
|
+
/**
|
|
776
|
+
* <p>The minimum spend threshold for this tier.</p>
|
|
777
|
+
* @public
|
|
778
|
+
*/
|
|
779
|
+
tierMinimum: string | undefined;
|
|
780
|
+
/**
|
|
781
|
+
* <p>The maximum spend threshold for this tier.</p>
|
|
782
|
+
* @public
|
|
783
|
+
*/
|
|
784
|
+
tierMaximum?: string | undefined;
|
|
785
|
+
/**
|
|
786
|
+
* <p>The base charge for this tier.</p>
|
|
787
|
+
* @public
|
|
788
|
+
*/
|
|
789
|
+
baseCharge: string | undefined;
|
|
790
|
+
/**
|
|
791
|
+
* <p>The additional percentage applied to aggregate charges in this tier.</p>
|
|
792
|
+
* @public
|
|
793
|
+
*/
|
|
794
|
+
additionalPercentageOfAggregateCharges: string | undefined;
|
|
795
|
+
/**
|
|
796
|
+
* <p>The adjustment applied to aggregate charges.</p>
|
|
797
|
+
* @public
|
|
798
|
+
*/
|
|
799
|
+
aggregateChargesAdjustment: string | undefined;
|
|
800
|
+
/**
|
|
801
|
+
* <p>Whether the tier charges are calculated incrementally.</p>
|
|
802
|
+
* @public
|
|
803
|
+
*/
|
|
804
|
+
incremental: boolean | undefined;
|
|
805
|
+
/**
|
|
806
|
+
* <p>The increment amount for incremental tier calculations.</p>
|
|
807
|
+
* @public
|
|
808
|
+
*/
|
|
809
|
+
increment?: string | undefined;
|
|
810
|
+
/**
|
|
811
|
+
* <p>The charge per increment.</p>
|
|
812
|
+
* @public
|
|
813
|
+
*/
|
|
814
|
+
incrementCharge?: string | undefined;
|
|
815
|
+
}
|
|
816
|
+
/**
|
|
817
|
+
* <p>A pricing plan for Enterprise Support billing.</p>
|
|
818
|
+
* @public
|
|
819
|
+
*/
|
|
820
|
+
export interface PricingPlan {
|
|
821
|
+
/**
|
|
822
|
+
* <p>The unique identifier for the pricing plan.</p>
|
|
823
|
+
* @public
|
|
824
|
+
*/
|
|
825
|
+
pricingPlanId?: string | undefined;
|
|
826
|
+
/**
|
|
827
|
+
* <p>The name of the pricing plan.</p>
|
|
828
|
+
* @public
|
|
829
|
+
*/
|
|
830
|
+
name?: string | undefined;
|
|
831
|
+
/**
|
|
832
|
+
* <p>A description of the pricing plan.</p>
|
|
833
|
+
* @public
|
|
834
|
+
*/
|
|
835
|
+
description?: string | undefined;
|
|
836
|
+
/**
|
|
837
|
+
* <p>The start date of the pricing plan.</p>
|
|
838
|
+
* @public
|
|
839
|
+
*/
|
|
840
|
+
startDate?: Date | undefined;
|
|
841
|
+
/**
|
|
842
|
+
* <p>The end date of the pricing plan.</p>
|
|
843
|
+
* @public
|
|
844
|
+
*/
|
|
845
|
+
endDate?: Date | undefined;
|
|
846
|
+
/**
|
|
847
|
+
* <p>The discount percentage applied by this pricing plan.</p>
|
|
848
|
+
* @public
|
|
849
|
+
*/
|
|
850
|
+
planDiscountPercent?: string | undefined;
|
|
851
|
+
/**
|
|
852
|
+
* <p>Whether the discount applies to the minimum Support charge.</p>
|
|
853
|
+
* @public
|
|
854
|
+
*/
|
|
855
|
+
discountAppliesToMinimumCharge?: boolean | undefined;
|
|
856
|
+
/**
|
|
857
|
+
* <p>The minimum Support charge amount for this pricing plan.</p>
|
|
858
|
+
* @public
|
|
859
|
+
*/
|
|
860
|
+
minimumCharge?: string | undefined;
|
|
861
|
+
/**
|
|
862
|
+
* <p>Whether the pricing plan uses tiered pricing.</p>
|
|
863
|
+
* @public
|
|
864
|
+
*/
|
|
865
|
+
tiered?: string | undefined;
|
|
866
|
+
/**
|
|
867
|
+
* <p>The pricing tiers within this plan.</p>
|
|
868
|
+
* @public
|
|
869
|
+
*/
|
|
870
|
+
tiers: PricingPlanTier[] | undefined;
|
|
871
|
+
}
|
|
872
|
+
/**
|
|
873
|
+
* <p>The response structure for GetEnterpriseSupportChargeSummary.</p>
|
|
874
|
+
* @public
|
|
875
|
+
*/
|
|
876
|
+
export interface GetEnterpriseSupportChargeSummaryResponse {
|
|
877
|
+
/**
|
|
878
|
+
* <p>The payer account ID that is authorized to view Enterprise Support data for all accounts in its Support profile.</p>
|
|
879
|
+
* @public
|
|
880
|
+
*/
|
|
881
|
+
payerAccountId: string | undefined;
|
|
882
|
+
/**
|
|
883
|
+
* <p>The billing month in YYYY-MM format. This must be a month in the past.</p>
|
|
884
|
+
* @public
|
|
885
|
+
*/
|
|
886
|
+
billingMonth: string | undefined;
|
|
887
|
+
/**
|
|
888
|
+
* <p>The start date of the billing period.</p>
|
|
889
|
+
* @public
|
|
890
|
+
*/
|
|
891
|
+
billingPeriodStartDate: Date | undefined;
|
|
892
|
+
/**
|
|
893
|
+
* <p>The end date of the billing period.</p>
|
|
894
|
+
* @public
|
|
895
|
+
*/
|
|
896
|
+
billingPeriodEndDate: Date | undefined;
|
|
897
|
+
/**
|
|
898
|
+
* <p>When true, the Support charge amount is estimated. When false, the Support charge amount is finalized.</p>
|
|
899
|
+
* @public
|
|
900
|
+
*/
|
|
901
|
+
isEstimated: boolean | undefined;
|
|
902
|
+
/**
|
|
903
|
+
* <p>The date the bill was generated.</p>
|
|
904
|
+
* @public
|
|
905
|
+
*/
|
|
906
|
+
billDate: Date | undefined;
|
|
907
|
+
/**
|
|
908
|
+
* <p>The Support charge amount for the account.</p>
|
|
909
|
+
* @public
|
|
910
|
+
*/
|
|
911
|
+
supportCharge: string | undefined;
|
|
912
|
+
/**
|
|
913
|
+
* <p>The total Support charge amount for all accounts in the Support profile.</p>
|
|
914
|
+
* @public
|
|
915
|
+
*/
|
|
916
|
+
totalSupportCharge: string | undefined;
|
|
917
|
+
/**
|
|
918
|
+
* <p>The support discount amount.</p>
|
|
919
|
+
* @public
|
|
920
|
+
*/
|
|
921
|
+
supportDiscount: string | undefined;
|
|
922
|
+
/**
|
|
923
|
+
* <p>The total Support-eligible Spend from all accounts in the Support profile. This includes eligible spend from usage of Amazon Web Services, Reserved Instances, and Savings Plans.</p>
|
|
924
|
+
* @public
|
|
925
|
+
*/
|
|
926
|
+
totalSupportEligibleSpend: string | undefined;
|
|
927
|
+
/**
|
|
928
|
+
* <p>The total Support-eligible spend from usage of Amazon Web Services from all accounts in the Support profile.</p>
|
|
929
|
+
* @public
|
|
930
|
+
*/
|
|
931
|
+
totalSupportEligibleUsageSpend: string | undefined;
|
|
932
|
+
/**
|
|
933
|
+
* <p>The total Support-eligible Reserved Instance spend from all accounts in the Support profile.</p>
|
|
934
|
+
* @public
|
|
935
|
+
*/
|
|
936
|
+
totalSupportEligibleReservedInstanceSpend: string | undefined;
|
|
937
|
+
/**
|
|
938
|
+
* <p>The total Support-eligible Savings Plan spend from all accounts in the Support profile.</p>
|
|
939
|
+
* @public
|
|
940
|
+
*/
|
|
941
|
+
totalSupportEligibleSavingsPlanSpend: string | undefined;
|
|
942
|
+
/**
|
|
943
|
+
* <p>The percentage applied to the total Support-eligible spend to calculate the total Support charge across all accounts in the Support profile.</p>
|
|
944
|
+
* @public
|
|
945
|
+
*/
|
|
946
|
+
supportChargePercentage: string | undefined;
|
|
947
|
+
/**
|
|
948
|
+
* <p>The effective pricing plan used for the support charge calculation.</p>
|
|
949
|
+
* @public
|
|
950
|
+
*/
|
|
951
|
+
supportEffectivePricingPlan: PricingPlan | undefined;
|
|
952
|
+
}
|
|
953
|
+
/**
|
|
954
|
+
* <p>The request structure for GetEnterpriseSupportContractDetails.</p>
|
|
955
|
+
* @public
|
|
956
|
+
*/
|
|
957
|
+
export interface GetEnterpriseSupportContractDetailsRequest {
|
|
958
|
+
/**
|
|
959
|
+
* <p>The billing month in YYYY-MM format. This must be a month in the past.</p>
|
|
960
|
+
* @public
|
|
961
|
+
*/
|
|
962
|
+
billingMonth: string | undefined;
|
|
963
|
+
}
|
|
964
|
+
/**
|
|
965
|
+
* <p>An account that is charged all or a portion of the total Support charge and the percentage of the charge allocated to it.</p>
|
|
966
|
+
* @public
|
|
967
|
+
*/
|
|
968
|
+
export interface ChargeAccount {
|
|
969
|
+
/**
|
|
970
|
+
* <p>The account ID.</p>
|
|
971
|
+
* @public
|
|
972
|
+
*/
|
|
973
|
+
accountId: string | undefined;
|
|
974
|
+
/**
|
|
975
|
+
* <p>The percentage of the total Support charge allocated to this account. This is 0.0 when supportAllocationMethod = Proportional.</p>
|
|
976
|
+
* @public
|
|
977
|
+
*/
|
|
978
|
+
chargePercentage: string | undefined;
|
|
979
|
+
}
|
|
980
|
+
/**
|
|
981
|
+
* <p>An account that is covered by the Enterprise Support contract.</p>
|
|
982
|
+
* @public
|
|
983
|
+
*/
|
|
984
|
+
export interface ContractAccount {
|
|
985
|
+
/**
|
|
986
|
+
* <p>The account ID.</p>
|
|
987
|
+
* @public
|
|
988
|
+
*/
|
|
989
|
+
accountId: string | undefined;
|
|
990
|
+
/**
|
|
991
|
+
* <p>When true, Support charges are calculated on charges before private discounts. When false, they are calculated after private discounts.</p>
|
|
992
|
+
* @public
|
|
993
|
+
*/
|
|
994
|
+
isGdn: boolean | undefined;
|
|
995
|
+
}
|
|
996
|
+
/**
|
|
997
|
+
* <p>The response structure for GetEnterpriseSupportContractDetails.</p>
|
|
998
|
+
* @public
|
|
999
|
+
*/
|
|
1000
|
+
export interface GetEnterpriseSupportContractDetailsResponse {
|
|
1001
|
+
/**
|
|
1002
|
+
* <p>When true, the Enterprise Support contract is active. When false, the Enterprise Support Contract is inactive.</p>
|
|
1003
|
+
* @public
|
|
1004
|
+
*/
|
|
1005
|
+
isContractActive?: boolean | undefined;
|
|
1006
|
+
/**
|
|
1007
|
+
* <p>The method used to distribute the total Support charge amount across each account in the Support profile. Valid values: Proportional, Fixed_Percentage. Proportional means support charges are distributed to each account in proportion to its eligible Spend. Fixed_Percentage means support charges are distributed across accounts according to pre-configured percentages from the contract.</p>
|
|
1008
|
+
* @public
|
|
1009
|
+
*/
|
|
1010
|
+
supportAllocationMethod: string | undefined;
|
|
1011
|
+
/**
|
|
1012
|
+
* <p>When supportReservedInstanceTreatmentMethod = AmortizedCustom, only amortized fees for Reserved Instances purchased on or after this date are included in the calculation. This field is Null for all other treatment methods.</p>
|
|
1013
|
+
* @public
|
|
1014
|
+
*/
|
|
1015
|
+
supportReservedInstanceAmortizationStartDate?: Date | undefined;
|
|
1016
|
+
/**
|
|
1017
|
+
* <p>The method used to include Reserved Instance (RI) fees in the Enterprise Support charge calculation. Valid values: None (RI fees excluded from Support-eligible spend), Upfront (full upfront RI fees included in month of purchase), Amortized (RI fees spread over commitment term for RIs purchased on or after Support subscription start date), AmortizedCustom (same as Amortized but only for RIs purchased on or after a specified custom start date), AmortizedAll (RI fees amortized for all active RIs including those purchased before Support subscription started).</p>
|
|
1018
|
+
* @public
|
|
1019
|
+
*/
|
|
1020
|
+
supportReservedInstanceTreatmentMethod?: string | undefined;
|
|
1021
|
+
/**
|
|
1022
|
+
* <p>This is applicable when supportSavingsPlansTreatmentMethod = Amortized and is Null for all other methods. It shows the start date from which Savings Plan fees are included in Support Eligible Spend.</p>
|
|
1023
|
+
* @public
|
|
1024
|
+
*/
|
|
1025
|
+
supportSavingsPlansAmortizationStartDate?: Date | undefined;
|
|
1026
|
+
/**
|
|
1027
|
+
* <p>The method used to include Savings Plans fees in Enterprise Support charge calculations. Valid values: None (Savings Plan fees excluded from Support-eligible spend), Upfront (full upfront Savings Plan fees included in month of purchase), Amortized (Savings Plan fees spread over commitment term for Savings Plans purchased on or after Support subscription start date), AmortizedCustom (same as Amortized but only for Savings Plans purchased on or after a specified custom start date), AmortizedAll (Savings Plan fees amortized for all active Savings Plans including those purchased before Support subscription started).</p>
|
|
1028
|
+
* @public
|
|
1029
|
+
*/
|
|
1030
|
+
supportSavingsPlansTreatmentMethod?: string | undefined;
|
|
1031
|
+
/**
|
|
1032
|
+
* <p>The start date for accounts subscribed or unsubscribed to Support billing during the billing month.</p>
|
|
1033
|
+
* @public
|
|
1034
|
+
*/
|
|
1035
|
+
supportProrateStartDate?: Date | undefined;
|
|
1036
|
+
/**
|
|
1037
|
+
* <p>The list of accounts covered by the Enterprise Support contract.</p>
|
|
1038
|
+
* @public
|
|
1039
|
+
*/
|
|
1040
|
+
contractPayerAccountIds: ContractAccount[] | undefined;
|
|
1041
|
+
/**
|
|
1042
|
+
* <p>The list of payer accounts and their charge allocation percentages.</p>
|
|
1043
|
+
* @public
|
|
1044
|
+
*/
|
|
1045
|
+
chargedPayerAccountIds: ChargeAccount[] | undefined;
|
|
1046
|
+
/**
|
|
1047
|
+
* <p>Any Additional support charges applied to the contract.</p>
|
|
1048
|
+
* @public
|
|
1049
|
+
*/
|
|
1050
|
+
additionalSupportCharge?: AdditionalCharge[] | undefined;
|
|
1051
|
+
/**
|
|
1052
|
+
* <p>Any Additional support-eligible usage spend charges.</p>
|
|
1053
|
+
* @public
|
|
1054
|
+
*/
|
|
1055
|
+
additionalSupportEligibleUsageSpend?: AdditionalCharge[] | undefined;
|
|
1056
|
+
/**
|
|
1057
|
+
* <p>The pricing plans associated with this Enterprise Support contract.</p>
|
|
1058
|
+
* @public
|
|
1059
|
+
*/
|
|
1060
|
+
pricingPlans: PricingPlan[] | undefined;
|
|
1061
|
+
}
|
|
738
1062
|
/**
|
|
739
1063
|
* @public
|
|
740
1064
|
*/
|
|
@@ -877,6 +1201,146 @@ export interface ListBillingViewsResponse {
|
|
|
877
1201
|
*/
|
|
878
1202
|
nextToken?: string | undefined;
|
|
879
1203
|
}
|
|
1204
|
+
/**
|
|
1205
|
+
* <p>The request structure for ListEnterpriseSupportLinkedAccountCharges.</p>
|
|
1206
|
+
* @public
|
|
1207
|
+
*/
|
|
1208
|
+
export interface ListEnterpriseSupportLinkedAccountChargesRequest {
|
|
1209
|
+
/**
|
|
1210
|
+
* <p>The billing month in YYYY-MM format. This must be a month in the past.</p>
|
|
1211
|
+
* @public
|
|
1212
|
+
*/
|
|
1213
|
+
billingMonth: string | undefined;
|
|
1214
|
+
/**
|
|
1215
|
+
* <p>An optional linked account ID to filter results to a specific account.</p>
|
|
1216
|
+
* @public
|
|
1217
|
+
*/
|
|
1218
|
+
accountId?: string | undefined;
|
|
1219
|
+
/**
|
|
1220
|
+
* <p>The maximum number of results to return per page.</p>
|
|
1221
|
+
* @public
|
|
1222
|
+
*/
|
|
1223
|
+
maxResults?: number | undefined;
|
|
1224
|
+
/**
|
|
1225
|
+
* <p>The pagination token for the next page of results.</p>
|
|
1226
|
+
* @public
|
|
1227
|
+
*/
|
|
1228
|
+
nextToken?: string | undefined;
|
|
1229
|
+
}
|
|
1230
|
+
/**
|
|
1231
|
+
* <p>A time period for Enterprise Support billing.</p>
|
|
1232
|
+
* @public
|
|
1233
|
+
*/
|
|
1234
|
+
export interface EnterpriseSupportTimePeriod {
|
|
1235
|
+
/**
|
|
1236
|
+
* <p>The begin date of the time period.</p>
|
|
1237
|
+
* @public
|
|
1238
|
+
*/
|
|
1239
|
+
beginDate: Date | undefined;
|
|
1240
|
+
/**
|
|
1241
|
+
* <p>The end date of the time period.</p>
|
|
1242
|
+
* @public
|
|
1243
|
+
*/
|
|
1244
|
+
endDate?: Date | undefined;
|
|
1245
|
+
}
|
|
1246
|
+
/**
|
|
1247
|
+
* <p>Service-level usage details by account.</p>
|
|
1248
|
+
* @public
|
|
1249
|
+
*/
|
|
1250
|
+
export interface ServiceLevelAccountUsage {
|
|
1251
|
+
/**
|
|
1252
|
+
* <p>The service code for which to return Support-eligible spend data.</p>
|
|
1253
|
+
* @public
|
|
1254
|
+
*/
|
|
1255
|
+
serviceCode?: string | undefined;
|
|
1256
|
+
/**
|
|
1257
|
+
* <p>The total support-eligible spend for the service.</p>
|
|
1258
|
+
* @public
|
|
1259
|
+
*/
|
|
1260
|
+
totalSupportEligibleSpend?: string | undefined;
|
|
1261
|
+
}
|
|
1262
|
+
/**
|
|
1263
|
+
* <p>Enterprise Support charges for a linked account.</p>
|
|
1264
|
+
* @public
|
|
1265
|
+
*/
|
|
1266
|
+
export interface LinkedAccountCharge {
|
|
1267
|
+
/**
|
|
1268
|
+
* <p>The linked account ID.</p>
|
|
1269
|
+
* @public
|
|
1270
|
+
*/
|
|
1271
|
+
accountId: string | undefined;
|
|
1272
|
+
/**
|
|
1273
|
+
* <p>The payer account ID that is authorized to view Enterprise Support data for all accounts in its Support profile.</p>
|
|
1274
|
+
* @public
|
|
1275
|
+
*/
|
|
1276
|
+
payerAccountId: string | undefined;
|
|
1277
|
+
/**
|
|
1278
|
+
* <p>The type of account.</p>
|
|
1279
|
+
* @public
|
|
1280
|
+
*/
|
|
1281
|
+
accountType?: string | undefined;
|
|
1282
|
+
/**
|
|
1283
|
+
* <p>The number of billable seconds in the billing period based on when the account was subscribed to Enterprise Support.</p>
|
|
1284
|
+
* @public
|
|
1285
|
+
*/
|
|
1286
|
+
billableSeconds: number | undefined;
|
|
1287
|
+
/**
|
|
1288
|
+
* <p>The total number of seconds in the billing period.</p>
|
|
1289
|
+
* @public
|
|
1290
|
+
*/
|
|
1291
|
+
totalSeconds: number | undefined;
|
|
1292
|
+
/**
|
|
1293
|
+
* <p>The total support-eligible spend for this account.</p>
|
|
1294
|
+
* @public
|
|
1295
|
+
*/
|
|
1296
|
+
totalSupportEligibleSpend: string | undefined;
|
|
1297
|
+
/**
|
|
1298
|
+
* <p>The prorated total support-eligible spend based on when the account was subscribed to Enterprise Support.</p>
|
|
1299
|
+
* @public
|
|
1300
|
+
*/
|
|
1301
|
+
proratedTotalSupportEligibleSpend: string | undefined;
|
|
1302
|
+
/**
|
|
1303
|
+
* <p>The time periods during which this account was linked.</p>
|
|
1304
|
+
* @public
|
|
1305
|
+
*/
|
|
1306
|
+
linkedTimePeriods?: EnterpriseSupportTimePeriod[] | undefined;
|
|
1307
|
+
/**
|
|
1308
|
+
* <p>The subscription time periods for this account.</p>
|
|
1309
|
+
* @public
|
|
1310
|
+
*/
|
|
1311
|
+
subscriptionTimePeriods?: EnterpriseSupportTimePeriod[] | undefined;
|
|
1312
|
+
/**
|
|
1313
|
+
* <p>The total support-eligible Reserved Instance spend for this account.</p>
|
|
1314
|
+
* @public
|
|
1315
|
+
*/
|
|
1316
|
+
totalSupportEligibleReservedInstanceSpend?: string | undefined;
|
|
1317
|
+
/**
|
|
1318
|
+
* <p>The total support-eligible Savings Plan spend for this account.</p>
|
|
1319
|
+
* @public
|
|
1320
|
+
*/
|
|
1321
|
+
totalSupportEligibleSavingsPlanSpend?: string | undefined;
|
|
1322
|
+
/**
|
|
1323
|
+
* <p>The support-eligible spend broken down by service.</p>
|
|
1324
|
+
* @public
|
|
1325
|
+
*/
|
|
1326
|
+
supportEligibleSpendByService?: ServiceLevelAccountUsage[] | undefined;
|
|
1327
|
+
}
|
|
1328
|
+
/**
|
|
1329
|
+
* <p>The response structure for ListEnterpriseSupportLinkedAccountCharges.</p>
|
|
1330
|
+
* @public
|
|
1331
|
+
*/
|
|
1332
|
+
export interface ListEnterpriseSupportLinkedAccountChargesResponse {
|
|
1333
|
+
/**
|
|
1334
|
+
* <p>The list of Enterprise Support charges per linked account.</p>
|
|
1335
|
+
* @public
|
|
1336
|
+
*/
|
|
1337
|
+
linkedAccount: LinkedAccountCharge[] | undefined;
|
|
1338
|
+
/**
|
|
1339
|
+
* <p>The pagination token for the next page of results.</p>
|
|
1340
|
+
* @public
|
|
1341
|
+
*/
|
|
1342
|
+
nextToken?: string | undefined;
|
|
1343
|
+
}
|
|
880
1344
|
/**
|
|
881
1345
|
* @public
|
|
882
1346
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListEnterpriseSupportLinkedAccountChargesCommandInput, ListEnterpriseSupportLinkedAccountChargesCommandOutput } from "../commands/ListEnterpriseSupportLinkedAccountChargesCommand";
|
|
3
|
+
import type { BillingPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListEnterpriseSupportLinkedAccountCharges: (config: BillingPaginationConfiguration, input: ListEnterpriseSupportLinkedAccountChargesCommandInput, ...rest: any[]) => Paginator<ListEnterpriseSupportLinkedAccountChargesCommandOutput>;
|
|
@@ -16,6 +16,7 @@ export declare var ValidationException$: StaticErrorSchema;
|
|
|
16
16
|
*/
|
|
17
17
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
18
18
|
export declare var ActiveTimeRange$: StaticStructureSchema;
|
|
19
|
+
export declare var AdditionalCharge$: StaticStructureSchema;
|
|
19
20
|
export declare var Amount$: StaticStructureSchema;
|
|
20
21
|
export declare var AssociateSourceViewsRequest$: StaticStructureSchema;
|
|
21
22
|
export declare var AssociateSourceViewsResponse$: StaticStructureSchema;
|
|
@@ -26,6 +27,8 @@ export declare var BillingPreferenceSummary$: StaticStructureSchema;
|
|
|
26
27
|
export declare var BillingViewElement$: StaticStructureSchema;
|
|
27
28
|
export declare var BillingViewHealthStatus$: StaticStructureSchema;
|
|
28
29
|
export declare var BillingViewListElement$: StaticStructureSchema;
|
|
30
|
+
export declare var ChargeAccount$: StaticStructureSchema;
|
|
31
|
+
export declare var ContractAccount$: StaticStructureSchema;
|
|
29
32
|
export declare var CostCategoryValues$: StaticStructureSchema;
|
|
30
33
|
export declare var CreateBillingViewRequest$: StaticStructureSchema;
|
|
31
34
|
export declare var CreateBillingViewResponse$: StaticStructureSchema;
|
|
@@ -36,6 +39,7 @@ export declare var DeleteBillingViewResponse$: StaticStructureSchema;
|
|
|
36
39
|
export declare var DimensionValues$: StaticStructureSchema;
|
|
37
40
|
export declare var DisassociateSourceViewsRequest$: StaticStructureSchema;
|
|
38
41
|
export declare var DisassociateSourceViewsResponse$: StaticStructureSchema;
|
|
42
|
+
export declare var EnterpriseSupportTimePeriod$: StaticStructureSchema;
|
|
39
43
|
export declare var Expression$: StaticStructureSchema;
|
|
40
44
|
export declare var GetBillingPreferencesRequest$: StaticStructureSchema;
|
|
41
45
|
export declare var GetBillingPreferencesResponse$: StaticStructureSchema;
|
|
@@ -45,17 +49,27 @@ export declare var GetCreditAllocationHistoryRequest$: StaticStructureSchema;
|
|
|
45
49
|
export declare var GetCreditAllocationHistoryResponse$: StaticStructureSchema;
|
|
46
50
|
export declare var GetCreditsRequest$: StaticStructureSchema;
|
|
47
51
|
export declare var GetCreditsResponse$: StaticStructureSchema;
|
|
52
|
+
export declare var GetEnterpriseSupportChargeSummaryRequest$: StaticStructureSchema;
|
|
53
|
+
export declare var GetEnterpriseSupportChargeSummaryResponse$: StaticStructureSchema;
|
|
54
|
+
export declare var GetEnterpriseSupportContractDetailsRequest$: StaticStructureSchema;
|
|
55
|
+
export declare var GetEnterpriseSupportContractDetailsResponse$: StaticStructureSchema;
|
|
48
56
|
export declare var GetResourcePolicyRequest$: StaticStructureSchema;
|
|
49
57
|
export declare var GetResourcePolicyResponse$: StaticStructureSchema;
|
|
58
|
+
export declare var LinkedAccountCharge$: StaticStructureSchema;
|
|
50
59
|
export declare var ListBillingViewsRequest$: StaticStructureSchema;
|
|
51
60
|
export declare var ListBillingViewsResponse$: StaticStructureSchema;
|
|
61
|
+
export declare var ListEnterpriseSupportLinkedAccountChargesRequest$: StaticStructureSchema;
|
|
62
|
+
export declare var ListEnterpriseSupportLinkedAccountChargesResponse$: StaticStructureSchema;
|
|
52
63
|
export declare var ListSourceViewsForBillingViewRequest$: StaticStructureSchema;
|
|
53
64
|
export declare var ListSourceViewsForBillingViewResponse$: StaticStructureSchema;
|
|
54
65
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
55
66
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
67
|
+
export declare var PricingPlan$: StaticStructureSchema;
|
|
68
|
+
export declare var PricingPlanTier$: StaticStructureSchema;
|
|
56
69
|
export declare var RedeemCreditsRequest$: StaticStructureSchema;
|
|
57
70
|
export declare var RedeemCreditsResponse$: StaticStructureSchema;
|
|
58
71
|
export declare var ResourceTag$: StaticStructureSchema;
|
|
72
|
+
export declare var ServiceLevelAccountUsage$: StaticStructureSchema;
|
|
59
73
|
export declare var StringSearch$: StaticStructureSchema;
|
|
60
74
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
61
75
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
@@ -76,8 +90,11 @@ export declare var GetBillingPreferences$: StaticOperationSchema;
|
|
|
76
90
|
export declare var GetBillingView$: StaticOperationSchema;
|
|
77
91
|
export declare var GetCreditAllocationHistory$: StaticOperationSchema;
|
|
78
92
|
export declare var GetCredits$: StaticOperationSchema;
|
|
93
|
+
export declare var GetEnterpriseSupportChargeSummary$: StaticOperationSchema;
|
|
94
|
+
export declare var GetEnterpriseSupportContractDetails$: StaticOperationSchema;
|
|
79
95
|
export declare var GetResourcePolicy$: StaticOperationSchema;
|
|
80
96
|
export declare var ListBillingViews$: StaticOperationSchema;
|
|
97
|
+
export declare var ListEnterpriseSupportLinkedAccountCharges$: StaticOperationSchema;
|
|
81
98
|
export declare var ListSourceViewsForBillingView$: StaticOperationSchema;
|
|
82
99
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
83
100
|
export declare var RedeemCredits$: StaticOperationSchema;
|
|
@@ -33,6 +33,14 @@ import {
|
|
|
33
33
|
GetCreditAllocationHistoryCommandOutput,
|
|
34
34
|
} from "./commands/GetCreditAllocationHistoryCommand";
|
|
35
35
|
import { GetCreditsCommandInput, GetCreditsCommandOutput } from "./commands/GetCreditsCommand";
|
|
36
|
+
import {
|
|
37
|
+
GetEnterpriseSupportChargeSummaryCommandInput,
|
|
38
|
+
GetEnterpriseSupportChargeSummaryCommandOutput,
|
|
39
|
+
} from "./commands/GetEnterpriseSupportChargeSummaryCommand";
|
|
40
|
+
import {
|
|
41
|
+
GetEnterpriseSupportContractDetailsCommandInput,
|
|
42
|
+
GetEnterpriseSupportContractDetailsCommandOutput,
|
|
43
|
+
} from "./commands/GetEnterpriseSupportContractDetailsCommand";
|
|
36
44
|
import {
|
|
37
45
|
GetResourcePolicyCommandInput,
|
|
38
46
|
GetResourcePolicyCommandOutput,
|
|
@@ -41,6 +49,10 @@ import {
|
|
|
41
49
|
ListBillingViewsCommandInput,
|
|
42
50
|
ListBillingViewsCommandOutput,
|
|
43
51
|
} from "./commands/ListBillingViewsCommand";
|
|
52
|
+
import {
|
|
53
|
+
ListEnterpriseSupportLinkedAccountChargesCommandInput,
|
|
54
|
+
ListEnterpriseSupportLinkedAccountChargesCommandOutput,
|
|
55
|
+
} from "./commands/ListEnterpriseSupportLinkedAccountChargesCommand";
|
|
44
56
|
import {
|
|
45
57
|
ListSourceViewsForBillingViewCommandInput,
|
|
46
58
|
ListSourceViewsForBillingViewCommandOutput,
|
|
@@ -171,6 +183,32 @@ export interface Billing {
|
|
|
171
183
|
options: __HttpHandlerOptions,
|
|
172
184
|
cb: (err: any, data?: GetCreditsCommandOutput) => void,
|
|
173
185
|
): void;
|
|
186
|
+
getEnterpriseSupportChargeSummary(
|
|
187
|
+
args: GetEnterpriseSupportChargeSummaryCommandInput,
|
|
188
|
+
options?: __HttpHandlerOptions,
|
|
189
|
+
): Promise<GetEnterpriseSupportChargeSummaryCommandOutput>;
|
|
190
|
+
getEnterpriseSupportChargeSummary(
|
|
191
|
+
args: GetEnterpriseSupportChargeSummaryCommandInput,
|
|
192
|
+
cb: (err: any, data?: GetEnterpriseSupportChargeSummaryCommandOutput) => void,
|
|
193
|
+
): void;
|
|
194
|
+
getEnterpriseSupportChargeSummary(
|
|
195
|
+
args: GetEnterpriseSupportChargeSummaryCommandInput,
|
|
196
|
+
options: __HttpHandlerOptions,
|
|
197
|
+
cb: (err: any, data?: GetEnterpriseSupportChargeSummaryCommandOutput) => void,
|
|
198
|
+
): void;
|
|
199
|
+
getEnterpriseSupportContractDetails(
|
|
200
|
+
args: GetEnterpriseSupportContractDetailsCommandInput,
|
|
201
|
+
options?: __HttpHandlerOptions,
|
|
202
|
+
): Promise<GetEnterpriseSupportContractDetailsCommandOutput>;
|
|
203
|
+
getEnterpriseSupportContractDetails(
|
|
204
|
+
args: GetEnterpriseSupportContractDetailsCommandInput,
|
|
205
|
+
cb: (err: any, data?: GetEnterpriseSupportContractDetailsCommandOutput) => void,
|
|
206
|
+
): void;
|
|
207
|
+
getEnterpriseSupportContractDetails(
|
|
208
|
+
args: GetEnterpriseSupportContractDetailsCommandInput,
|
|
209
|
+
options: __HttpHandlerOptions,
|
|
210
|
+
cb: (err: any, data?: GetEnterpriseSupportContractDetailsCommandOutput) => void,
|
|
211
|
+
): void;
|
|
174
212
|
getResourcePolicy(
|
|
175
213
|
args: GetResourcePolicyCommandInput,
|
|
176
214
|
options?: __HttpHandlerOptions,
|
|
@@ -198,6 +236,19 @@ export interface Billing {
|
|
|
198
236
|
options: __HttpHandlerOptions,
|
|
199
237
|
cb: (err: any, data?: ListBillingViewsCommandOutput) => void,
|
|
200
238
|
): void;
|
|
239
|
+
listEnterpriseSupportLinkedAccountCharges(
|
|
240
|
+
args: ListEnterpriseSupportLinkedAccountChargesCommandInput,
|
|
241
|
+
options?: __HttpHandlerOptions,
|
|
242
|
+
): Promise<ListEnterpriseSupportLinkedAccountChargesCommandOutput>;
|
|
243
|
+
listEnterpriseSupportLinkedAccountCharges(
|
|
244
|
+
args: ListEnterpriseSupportLinkedAccountChargesCommandInput,
|
|
245
|
+
cb: (err: any, data?: ListEnterpriseSupportLinkedAccountChargesCommandOutput) => void,
|
|
246
|
+
): void;
|
|
247
|
+
listEnterpriseSupportLinkedAccountCharges(
|
|
248
|
+
args: ListEnterpriseSupportLinkedAccountChargesCommandInput,
|
|
249
|
+
options: __HttpHandlerOptions,
|
|
250
|
+
cb: (err: any, data?: ListEnterpriseSupportLinkedAccountChargesCommandOutput) => void,
|
|
251
|
+
): void;
|
|
201
252
|
listSourceViewsForBillingView(
|
|
202
253
|
args: ListSourceViewsForBillingViewCommandInput,
|
|
203
254
|
options?: __HttpHandlerOptions,
|
|
@@ -303,6 +354,13 @@ export interface Billing {
|
|
|
303
354
|
Exclude<keyof PaginationConfiguration, "client">
|
|
304
355
|
>,
|
|
305
356
|
): Paginator<ListBillingViewsCommandOutput>;
|
|
357
|
+
paginateListEnterpriseSupportLinkedAccountCharges(
|
|
358
|
+
args: ListEnterpriseSupportLinkedAccountChargesCommandInput,
|
|
359
|
+
paginationConfig?: Pick<
|
|
360
|
+
PaginationConfiguration,
|
|
361
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
362
|
+
>,
|
|
363
|
+
): Paginator<ListEnterpriseSupportLinkedAccountChargesCommandOutput>;
|
|
306
364
|
paginateListSourceViewsForBillingView(
|
|
307
365
|
args: ListSourceViewsForBillingViewCommandInput,
|
|
308
366
|
paginationConfig?: Pick<
|