@aws-sdk/client-billingconductor 3.289.0 → 3.292.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-types/commands/AssociateAccountsCommand.d.ts +28 -0
- package/dist-types/commands/AssociatePricingRulesCommand.d.ts +28 -0
- package/dist-types/commands/BatchAssociateResourcesToCustomLineItemCommand.d.ts +28 -0
- package/dist-types/commands/BatchDisassociateResourcesFromCustomLineItemCommand.d.ts +24 -0
- package/dist-types/commands/CreateBillingGroupCommand.d.ts +24 -0
- package/dist-types/commands/CreateCustomLineItemCommand.d.ts +24 -0
- package/dist-types/commands/CreatePricingPlanCommand.d.ts +28 -0
- package/dist-types/commands/CreatePricingRuleCommand.d.ts +24 -0
- package/dist-types/commands/DeleteBillingGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCustomLineItemCommand.d.ts +20 -0
- package/dist-types/commands/DeletePricingPlanCommand.d.ts +20 -0
- package/dist-types/commands/DeletePricingRuleCommand.d.ts +20 -0
- package/dist-types/commands/DisassociateAccountsCommand.d.ts +24 -0
- package/dist-types/commands/DisassociatePricingRulesCommand.d.ts +24 -0
- package/dist-types/commands/ListAccountAssociationsCommand.d.ts +20 -0
- package/dist-types/commands/ListBillingGroupCostReportsCommand.d.ts +20 -0
- package/dist-types/commands/ListBillingGroupsCommand.d.ts +20 -0
- package/dist-types/commands/ListCustomLineItemVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListCustomLineItemsCommand.d.ts +20 -0
- package/dist-types/commands/ListPricingPlansAssociatedWithPricingRuleCommand.d.ts +20 -0
- package/dist-types/commands/ListPricingPlansCommand.d.ts +16 -0
- package/dist-types/commands/ListPricingRulesAssociatedToPricingPlanCommand.d.ts +20 -0
- package/dist-types/commands/ListPricingRulesCommand.d.ts +16 -0
- package/dist-types/commands/ListResourcesAssociatedToCustomLineItemCommand.d.ts +20 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +20 -0
- package/dist-types/commands/TagResourceCommand.d.ts +20 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +20 -0
- package/dist-types/commands/UpdateBillingGroupCommand.d.ts +24 -0
- package/dist-types/commands/UpdateCustomLineItemCommand.d.ts +20 -0
- package/dist-types/commands/UpdatePricingPlanCommand.d.ts +24 -0
- package/dist-types/commands/UpdatePricingRuleCommand.d.ts +24 -0
- package/package.json +35 -40
|
@@ -32,6 +32,34 @@ export interface AssociateAccountsCommandOutput extends AssociateAccountsOutput,
|
|
|
32
32
|
* @see {@link AssociateAccountsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You do not have sufficient access to perform this action.
|
|
37
|
+
* </p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ConflictException} (client fault)
|
|
40
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
41
|
+
* </p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerException} (server fault)
|
|
44
|
+
* <p>An unexpected error occurred while processing a request.
|
|
45
|
+
* </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>The request references a resource that doesn't exist.
|
|
49
|
+
* </p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
52
|
+
* <p>The request would cause a service limit to exceed.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
56
|
+
* <p>The request was denied due to request throttling.
|
|
57
|
+
* </p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ValidationException} (client fault)
|
|
60
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
35
63
|
*/
|
|
36
64
|
export declare class AssociateAccountsCommand extends $Command<AssociateAccountsCommandInput, AssociateAccountsCommandOutput, BillingconductorClientResolvedConfig> {
|
|
37
65
|
readonly input: AssociateAccountsCommandInput;
|
|
@@ -30,6 +30,34 @@ export interface AssociatePricingRulesCommandOutput extends AssociatePricingRule
|
|
|
30
30
|
* @see {@link AssociatePricingRulesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.
|
|
35
|
+
* </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
39
|
+
* </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p>An unexpected error occurred while processing a request.
|
|
43
|
+
* </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>The request references a resource that doesn't exist.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
50
|
+
* <p>The request would cause a service limit to exceed.
|
|
51
|
+
* </p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
54
|
+
* <p>The request was denied due to request throttling.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
33
61
|
*/
|
|
34
62
|
export declare class AssociatePricingRulesCommand extends $Command<AssociatePricingRulesCommandInput, AssociatePricingRulesCommandOutput, BillingconductorClientResolvedConfig> {
|
|
35
63
|
readonly input: AssociatePricingRulesCommandInput;
|
|
@@ -31,6 +31,34 @@ export interface BatchAssociateResourcesToCustomLineItemCommandOutput extends Ba
|
|
|
31
31
|
* @see {@link BatchAssociateResourcesToCustomLineItemCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>An unexpected error occurred while processing a request.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>The request references a resource that doesn't exist.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
51
|
+
* <p>The request would cause a service limit to exceed.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
55
|
+
* <p>The request was denied due to request throttling.
|
|
56
|
+
* </p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ValidationException} (client fault)
|
|
59
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
34
62
|
*/
|
|
35
63
|
export declare class BatchAssociateResourcesToCustomLineItemCommand extends $Command<BatchAssociateResourcesToCustomLineItemCommandInput, BatchAssociateResourcesToCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
64
|
readonly input: BatchAssociateResourcesToCustomLineItemCommandInput;
|
|
@@ -31,6 +31,30 @@ export interface BatchDisassociateResourcesFromCustomLineItemCommandOutput exten
|
|
|
31
31
|
* @see {@link BatchDisassociateResourcesFromCustomLineItemCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>An unexpected error occurred while processing a request.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>The request references a resource that doesn't exist.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
34
58
|
*/
|
|
35
59
|
export declare class BatchDisassociateResourcesFromCustomLineItemCommand extends $Command<BatchDisassociateResourcesFromCustomLineItemCommandInput, BatchDisassociateResourcesFromCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
60
|
readonly input: BatchDisassociateResourcesFromCustomLineItemCommandInput;
|
|
@@ -31,6 +31,30 @@ export interface CreateBillingGroupCommandOutput extends CreateBillingGroupOutpu
|
|
|
31
31
|
* @see {@link CreateBillingGroupCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>An unexpected error occurred while processing a request.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
47
|
+
* <p>The request would cause a service limit to exceed.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
34
58
|
*/
|
|
35
59
|
export declare class CreateBillingGroupCommand extends $Command<CreateBillingGroupCommandInput, CreateBillingGroupCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
60
|
readonly input: CreateBillingGroupCommandInput;
|
|
@@ -31,6 +31,30 @@ export interface CreateCustomLineItemCommandOutput extends CreateCustomLineItemO
|
|
|
31
31
|
* @see {@link CreateCustomLineItemCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>An unexpected error occurred while processing a request.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
47
|
+
* <p>The request would cause a service limit to exceed.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
34
58
|
*/
|
|
35
59
|
export declare class CreateCustomLineItemCommand extends $Command<CreateCustomLineItemCommandInput, CreateCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
60
|
readonly input: CreateCustomLineItemCommandInput;
|
|
@@ -30,6 +30,34 @@ export interface CreatePricingPlanCommandOutput extends CreatePricingPlanOutput,
|
|
|
30
30
|
* @see {@link CreatePricingPlanCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.
|
|
35
|
+
* </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
39
|
+
* </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p>An unexpected error occurred while processing a request.
|
|
43
|
+
* </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>The request references a resource that doesn't exist.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
50
|
+
* <p>The request would cause a service limit to exceed.
|
|
51
|
+
* </p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
54
|
+
* <p>The request was denied due to request throttling.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ValidationException} (client fault)
|
|
58
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
33
61
|
*/
|
|
34
62
|
export declare class CreatePricingPlanCommand extends $Command<CreatePricingPlanCommandInput, CreatePricingPlanCommandOutput, BillingconductorClientResolvedConfig> {
|
|
35
63
|
readonly input: CreatePricingPlanCommandInput;
|
|
@@ -31,6 +31,30 @@ export interface CreatePricingRuleCommandOutput extends CreatePricingRuleOutput,
|
|
|
31
31
|
* @see {@link CreatePricingRuleCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>An unexpected error occurred while processing a request.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
47
|
+
* <p>The request would cause a service limit to exceed.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
34
58
|
*/
|
|
35
59
|
export declare class CreatePricingRuleCommand extends $Command<CreatePricingRuleCommandInput, CreatePricingRuleCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
60
|
readonly input: CreatePricingRuleCommandInput;
|
|
@@ -31,6 +31,22 @@ export interface DeleteBillingGroupCommandOutput extends DeleteBillingGroupOutpu
|
|
|
31
31
|
* @see {@link DeleteBillingGroupCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing a request.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>The request was denied due to request throttling.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ValidationException} (client fault)
|
|
47
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
34
50
|
*/
|
|
35
51
|
export declare class DeleteBillingGroupCommand extends $Command<DeleteBillingGroupCommandInput, DeleteBillingGroupCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
52
|
readonly input: DeleteBillingGroupCommandInput;
|
|
@@ -31,6 +31,26 @@ export interface DeleteCustomLineItemCommandOutput extends DeleteCustomLineItemO
|
|
|
31
31
|
* @see {@link DeleteCustomLineItemCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>An unexpected error occurred while processing a request.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>The request was denied due to request throttling.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
34
54
|
*/
|
|
35
55
|
export declare class DeleteCustomLineItemCommand extends $Command<DeleteCustomLineItemCommandInput, DeleteCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
56
|
readonly input: DeleteCustomLineItemCommandInput;
|
|
@@ -30,6 +30,26 @@ export interface DeletePricingPlanCommandOutput extends DeletePricingPlanOutput,
|
|
|
30
30
|
* @see {@link DeletePricingPlanCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.
|
|
35
|
+
* </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
39
|
+
* </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p>An unexpected error occurred while processing a request.
|
|
43
|
+
* </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>The request was denied due to request throttling.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ValidationException} (client fault)
|
|
50
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
33
53
|
*/
|
|
34
54
|
export declare class DeletePricingPlanCommand extends $Command<DeletePricingPlanCommandInput, DeletePricingPlanCommandOutput, BillingconductorClientResolvedConfig> {
|
|
35
55
|
readonly input: DeletePricingPlanCommandInput;
|
|
@@ -29,6 +29,26 @@ export interface DeletePricingRuleCommandOutput extends DeletePricingRuleOutput,
|
|
|
29
29
|
* @see {@link DeletePricingRuleCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.
|
|
34
|
+
* </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
38
|
+
* </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerException} (server fault)
|
|
41
|
+
* <p>An unexpected error occurred while processing a request.
|
|
42
|
+
* </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was denied due to request throttling.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
32
52
|
*/
|
|
33
53
|
export declare class DeletePricingRuleCommand extends $Command<DeletePricingRuleCommandInput, DeletePricingRuleCommandOutput, BillingconductorClientResolvedConfig> {
|
|
34
54
|
readonly input: DeletePricingRuleCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface DisassociateAccountsCommandOutput extends DisassociateAccountsO
|
|
|
29
29
|
* @see {@link DisassociateAccountsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.
|
|
34
|
+
* </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ConflictException} (client fault)
|
|
37
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
38
|
+
* </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerException} (server fault)
|
|
41
|
+
* <p>An unexpected error occurred while processing a request.
|
|
42
|
+
* </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The request references a resource that doesn't exist.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
49
|
+
* <p>The request was denied due to request throttling.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ValidationException} (client fault)
|
|
53
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class DisassociateAccountsCommand extends $Command<DisassociateAccountsCommandInput, DisassociateAccountsCommandOutput, BillingconductorClientResolvedConfig> {
|
|
34
58
|
readonly input: DisassociateAccountsCommandInput;
|
|
@@ -31,6 +31,30 @@ export interface DisassociatePricingRulesCommandOutput extends DisassociatePrici
|
|
|
31
31
|
* @see {@link DisassociatePricingRulesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>An unexpected error occurred while processing a request.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>The request references a resource that doesn't exist.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
34
58
|
*/
|
|
35
59
|
export declare class DisassociatePricingRulesCommand extends $Command<DisassociatePricingRulesCommandInput, DisassociatePricingRulesCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
60
|
readonly input: DisassociatePricingRulesCommandInput;
|
|
@@ -32,6 +32,26 @@ export interface ListAccountAssociationsCommandOutput extends ListAccountAssocia
|
|
|
32
32
|
* @see {@link ListAccountAssociationsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You do not have sufficient access to perform this action.
|
|
37
|
+
* </p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>An unexpected error occurred while processing a request.
|
|
41
|
+
* </p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
44
|
+
* <p>The request references a resource that doesn't exist.
|
|
45
|
+
* </p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>The request was denied due to request throttling.
|
|
49
|
+
* </p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ValidationException} (client fault)
|
|
52
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
35
55
|
*/
|
|
36
56
|
export declare class ListAccountAssociationsCommand extends $Command<ListAccountAssociationsCommandInput, ListAccountAssociationsCommandOutput, BillingconductorClientResolvedConfig> {
|
|
37
57
|
readonly input: ListAccountAssociationsCommandInput;
|
|
@@ -30,6 +30,26 @@ export interface ListBillingGroupCostReportsCommandOutput extends ListBillingGro
|
|
|
30
30
|
* @see {@link ListBillingGroupCostReportsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.
|
|
35
|
+
* </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>An unexpected error occurred while processing a request.
|
|
39
|
+
* </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The request references a resource that doesn't exist.
|
|
43
|
+
* </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
46
|
+
* <p>The request was denied due to request throttling.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ValidationException} (client fault)
|
|
50
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
33
53
|
*/
|
|
34
54
|
export declare class ListBillingGroupCostReportsCommand extends $Command<ListBillingGroupCostReportsCommandInput, ListBillingGroupCostReportsCommandOutput, BillingconductorClientResolvedConfig> {
|
|
35
55
|
readonly input: ListBillingGroupCostReportsCommandInput;
|
|
@@ -29,6 +29,26 @@ export interface ListBillingGroupsCommandOutput extends ListBillingGroupsOutput,
|
|
|
29
29
|
* @see {@link ListBillingGroupsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.
|
|
34
|
+
* </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>An unexpected error occurred while processing a request.
|
|
38
|
+
* </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p>The request references a resource that doesn't exist.
|
|
42
|
+
* </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was denied due to request throttling.
|
|
46
|
+
* </p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ValidationException} (client fault)
|
|
49
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
32
52
|
*/
|
|
33
53
|
export declare class ListBillingGroupsCommand extends $Command<ListBillingGroupsCommandInput, ListBillingGroupsCommandOutput, BillingconductorClientResolvedConfig> {
|
|
34
54
|
readonly input: ListBillingGroupsCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListCustomLineItemVersionsCommandOutput extends ListCustomLineI
|
|
|
29
29
|
* @see {@link ListCustomLineItemVersionsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.
|
|
34
|
+
* </p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>An unexpected error occurred while processing a request.
|
|
38
|
+
* </p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
41
|
+
* <p>The request was denied due to request throttling.
|
|
42
|
+
* </p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListCustomLineItemVersionsCommand extends $Command<ListCustomLineItemVersionsCommandInput, ListCustomLineItemVersionsCommandOutput, BillingconductorClientResolvedConfig> {
|
|
34
50
|
readonly input: ListCustomLineItemVersionsCommandInput;
|
|
@@ -31,6 +31,26 @@ export interface ListCustomLineItemsCommandOutput extends ListCustomLineItemsOut
|
|
|
31
31
|
* @see {@link ListCustomLineItemsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing a request.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The request references a resource that doesn't exist.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>The request was denied due to request throttling.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
34
54
|
*/
|
|
35
55
|
export declare class ListCustomLineItemsCommand extends $Command<ListCustomLineItemsCommandInput, ListCustomLineItemsCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
56
|
readonly input: ListCustomLineItemsCommandInput;
|
|
@@ -31,6 +31,26 @@ export interface ListPricingPlansAssociatedWithPricingRuleCommandOutput extends
|
|
|
31
31
|
* @see {@link ListPricingPlansAssociatedWithPricingRuleCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing a request.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The request references a resource that doesn't exist.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>The request was denied due to request throttling.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
34
54
|
*/
|
|
35
55
|
export declare class ListPricingPlansAssociatedWithPricingRuleCommand extends $Command<ListPricingPlansAssociatedWithPricingRuleCommandInput, ListPricingPlansAssociatedWithPricingRuleCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
56
|
readonly input: ListPricingPlansAssociatedWithPricingRuleCommandInput;
|
|
@@ -30,6 +30,22 @@ export interface ListPricingPlansCommandOutput extends ListPricingPlansOutput, _
|
|
|
30
30
|
* @see {@link ListPricingPlansCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.
|
|
35
|
+
* </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>An unexpected error occurred while processing a request.
|
|
39
|
+
* </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>The request was denied due to request throttling.
|
|
43
|
+
* </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
33
49
|
*/
|
|
34
50
|
export declare class ListPricingPlansCommand extends $Command<ListPricingPlansCommandInput, ListPricingPlansCommandOutput, BillingconductorClientResolvedConfig> {
|
|
35
51
|
readonly input: ListPricingPlansCommandInput;
|
|
@@ -31,6 +31,26 @@ export interface ListPricingRulesAssociatedToPricingPlanCommandOutput extends Li
|
|
|
31
31
|
* @see {@link ListPricingRulesAssociatedToPricingPlanCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing a request.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The request references a resource that doesn't exist.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>The request was denied due to request throttling.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
34
54
|
*/
|
|
35
55
|
export declare class ListPricingRulesAssociatedToPricingPlanCommand extends $Command<ListPricingRulesAssociatedToPricingPlanCommandInput, ListPricingRulesAssociatedToPricingPlanCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
56
|
readonly input: ListPricingRulesAssociatedToPricingPlanCommandInput;
|
|
@@ -31,6 +31,22 @@ export interface ListPricingRulesCommandOutput extends ListPricingRulesOutput, _
|
|
|
31
31
|
* @see {@link ListPricingRulesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing a request.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
43
|
+
* <p>The request was denied due to request throttling.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ValidationException} (client fault)
|
|
47
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
34
50
|
*/
|
|
35
51
|
export declare class ListPricingRulesCommand extends $Command<ListPricingRulesCommandInput, ListPricingRulesCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
52
|
readonly input: ListPricingRulesCommandInput;
|
|
@@ -31,6 +31,26 @@ export interface ListResourcesAssociatedToCustomLineItemCommandOutput extends Li
|
|
|
31
31
|
* @see {@link ListResourcesAssociatedToCustomLineItemCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing a request.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The request references a resource that doesn't exist.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>The request was denied due to request throttling.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
34
54
|
*/
|
|
35
55
|
export declare class ListResourcesAssociatedToCustomLineItemCommand extends $Command<ListResourcesAssociatedToCustomLineItemCommandInput, ListResourcesAssociatedToCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
56
|
readonly input: ListResourcesAssociatedToCustomLineItemCommandInput;
|
|
@@ -31,6 +31,26 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing a request.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The request references a resource that doesn't exist.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>The request was denied due to request throttling.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
34
54
|
*/
|
|
35
55
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
56
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -31,6 +31,26 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
31
31
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing a request.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The request references a resource that doesn't exist.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>The request was denied due to request throttling.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
34
54
|
*/
|
|
35
55
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
56
|
readonly input: TagResourceCommandInput;
|
|
@@ -31,6 +31,26 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
31
31
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing a request.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The request references a resource that doesn't exist.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>The request was denied due to request throttling.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
34
54
|
*/
|
|
35
55
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
56
|
readonly input: UntagResourceCommandInput;
|
|
@@ -30,6 +30,30 @@ export interface UpdateBillingGroupCommandOutput extends UpdateBillingGroupOutpu
|
|
|
30
30
|
* @see {@link UpdateBillingGroupCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.
|
|
35
|
+
* </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
39
|
+
* </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p>An unexpected error occurred while processing a request.
|
|
43
|
+
* </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>The request references a resource that doesn't exist.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>The request was denied due to request throttling.
|
|
51
|
+
* </p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
33
57
|
*/
|
|
34
58
|
export declare class UpdateBillingGroupCommand extends $Command<UpdateBillingGroupCommandInput, UpdateBillingGroupCommandOutput, BillingconductorClientResolvedConfig> {
|
|
35
59
|
readonly input: UpdateBillingGroupCommandInput;
|
|
@@ -31,6 +31,26 @@ export interface UpdateCustomLineItemCommandOutput extends UpdateCustomLineItemO
|
|
|
31
31
|
* @see {@link UpdateCustomLineItemCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred while processing a request.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
43
|
+
* <p>The request references a resource that doesn't exist.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>The request was denied due to request throttling.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
34
54
|
*/
|
|
35
55
|
export declare class UpdateCustomLineItemCommand extends $Command<UpdateCustomLineItemCommandInput, UpdateCustomLineItemCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
56
|
readonly input: UpdateCustomLineItemCommandInput;
|
|
@@ -30,6 +30,30 @@ export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanOutput,
|
|
|
30
30
|
* @see {@link UpdatePricingPlanCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>You do not have sufficient access to perform this action.
|
|
35
|
+
* </p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ConflictException} (client fault)
|
|
38
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
39
|
+
* </p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerException} (server fault)
|
|
42
|
+
* <p>An unexpected error occurred while processing a request.
|
|
43
|
+
* </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
46
|
+
* <p>The request references a resource that doesn't exist.
|
|
47
|
+
* </p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>The request was denied due to request throttling.
|
|
51
|
+
* </p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
33
57
|
*/
|
|
34
58
|
export declare class UpdatePricingPlanCommand extends $Command<UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput, BillingconductorClientResolvedConfig> {
|
|
35
59
|
readonly input: UpdatePricingPlanCommandInput;
|
|
@@ -31,6 +31,30 @@ export interface UpdatePricingRuleCommandOutput extends UpdatePricingRuleOutput,
|
|
|
31
31
|
* @see {@link UpdatePricingRuleCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BillingconductorClientResolvedConfig | config} for BillingconductorClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You do not have sufficient access to perform this action.
|
|
36
|
+
* </p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ConflictException} (client fault)
|
|
39
|
+
* <p>You can cause an inconsistent state by updating or deleting a resource.
|
|
40
|
+
* </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServerException} (server fault)
|
|
43
|
+
* <p>An unexpected error occurred while processing a request.
|
|
44
|
+
* </p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
47
|
+
* <p>The request references a resource that doesn't exist.
|
|
48
|
+
* </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
34
58
|
*/
|
|
35
59
|
export declare class UpdatePricingRuleCommand extends $Command<UpdatePricingRuleCommandInput, UpdatePricingRuleCommandOutput, BillingconductorClientResolvedConfig> {
|
|
36
60
|
readonly input: UpdatePricingRuleCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-billingconductor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Billingconductor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.292.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",
|
|
@@ -20,57 +20,52 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
-
"@aws-sdk/util-utf8": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.292.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.292.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.292.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.292.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.292.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.292.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.292.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.292.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.292.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.292.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.292.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.292.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.292.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.292.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.292.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.292.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.292.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.292.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.292.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.292.0",
|
|
43
|
+
"@aws-sdk/types": "3.292.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.292.0",
|
|
45
|
+
"@aws-sdk/util-base64": "3.292.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.292.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.292.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.292.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.292.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.292.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.292.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.292.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.292.0",
|
|
54
|
+
"@aws-sdk/util-utf8": "3.292.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.292.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"@types/uuid": "^8.3.0",
|
|
63
63
|
"concurrently": "7.0.0",
|
|
64
64
|
"downlevel-dts": "0.10.1",
|
|
65
65
|
"rimraf": "3.0.2",
|
|
66
|
-
"typedoc": "0.
|
|
66
|
+
"typedoc": "0.23.23",
|
|
67
67
|
"typescript": "~4.6.2"
|
|
68
68
|
},
|
|
69
|
-
"overrides": {
|
|
70
|
-
"typedoc": {
|
|
71
|
-
"typescript": "~4.6.2"
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
69
|
"engines": {
|
|
75
70
|
"node": ">=14.0.0"
|
|
76
71
|
},
|