Skip to content

Commit a5ebd35

Browse files
author
awstools
committed
feat(client-billing): Clarify IPv4 and IPv6 endpoints
1 parent 2d0793e commit a5ebd35

19 files changed

+953
-472
lines changed

clients/client-billing/README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,7 @@
66

77
AWS SDK for JavaScript Billing Client for Node.js, Browser and React Native.
88

9-
<p>
10-
You can use the Billing API to programatically list the billing views available to you for a given time period. A billing view represents a set of billing data.
11-
</p>
12-
<p>The Billing API provides the following endpoint:</p>
13-
<p>
14-
<code>https://billing.us-east-1.api.aws</code>
15-
</p>
9+
<p> You can use the Billing API to programatically list the billing views available to you for a given time period. A billing view represents a set of billing data. </p> <p>The Billing API provides the following endpoint:</p> <p> <code>https://billing.us-east-1.api.aws</code> </p>
1610

1711
## Installing
1812

clients/client-billing/src/Billing.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,7 @@ export interface Billing {
222222
}
223223

224224
/**
225-
* <p>
226-
* You can use the Billing API to programatically list the billing views available to you for a given time period. A billing view represents a set of billing data.
227-
* </p>
228-
* <p>The Billing API provides the following endpoint:</p>
229-
* <p>
230-
* <code>https://billing.us-east-1.api.aws</code>
231-
* </p>
225+
* <p> You can use the Billing API to programatically list the billing views available to you for a given time period. A billing view represents a set of billing data. </p> <p>The Billing API provides the following endpoint:</p> <p> <code>https://billing.us-east-1.api.aws</code> </p>
232226
* @public
233227
*/
234228
export class Billing extends BillingClient implements Billing {}

clients/client-billing/src/BillingClient.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -301,13 +301,7 @@ export type BillingClientResolvedConfigType = __SmithyResolvedConfiguration<__Ht
301301
export interface BillingClientResolvedConfig extends BillingClientResolvedConfigType {}
302302

303303
/**
304-
* <p>
305-
* You can use the Billing API to programatically list the billing views available to you for a given time period. A billing view represents a set of billing data.
306-
* </p>
307-
* <p>The Billing API provides the following endpoint:</p>
308-
* <p>
309-
* <code>https://billing.us-east-1.api.aws</code>
310-
* </p>
304+
* <p> You can use the Billing API to programatically list the billing views available to you for a given time period. A billing view represents a set of billing data. </p> <p>The Billing API provides the following endpoint:</p> <p> <code>https://billing.us-east-1.api.aws</code> </p>
311305
* @public
312306
*/
313307
export class BillingClient extends __Client<

clients/client-billing/src/commands/CreateBillingViewCommand.ts

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ export interface CreateBillingViewCommandInput extends CreateBillingViewRequest
3232
export interface CreateBillingViewCommandOutput extends CreateBillingViewResponse, __MetadataBearer {}
3333

3434
/**
35-
* <p>
36-
* Creates a billing view with the specified billing view attributes.
37-
* </p>
35+
* <p> Creates a billing view with the specified billing view attributes. </p>
3836
* @example
3937
* Use a bare-bones client and the command you need to make an API call.
4038
* ```javascript
@@ -88,26 +86,19 @@ export interface CreateBillingViewCommandOutput extends CreateBillingViewRespons
8886
* <p>You don't have sufficient access to perform this action.</p>
8987
*
9088
* @throws {@link ConflictException} (client fault)
91-
* <p>
92-
* The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
93-
* </p>
89+
* <p> The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request. </p>
9490
*
9591
* @throws {@link InternalServerException} (server fault)
96-
* <p>The request processing failed because of an unknown error, exception, or failure.
97-
* </p>
92+
* <p>The request processing failed because of an unknown error, exception, or failure. </p>
9893
*
9994
* @throws {@link ServiceQuotaExceededException} (client fault)
100-
* <p>
101-
* You've reached the limit of resources you can create, or exceeded the size of an individual resource.
102-
* </p>
95+
* <p> You've reached the limit of resources you can create, or exceeded the size of an individual resource. </p>
10396
*
10497
* @throws {@link ThrottlingException} (client fault)
105-
* <p>The request was denied due to request throttling.
106-
* </p>
98+
* <p>The request was denied due to request throttling. </p>
10799
*
108100
* @throws {@link ValidationException} (client fault)
109-
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.
110-
* </p>
101+
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service. </p>
111102
*
112103
* @throws {@link BillingServiceException}
113104
* <p>Base exception class for all service exceptions from Billing service.</p>

clients/client-billing/src/commands/DeleteBillingViewCommand.ts

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,16 @@ export interface DeleteBillingViewCommandOutput extends DeleteBillingViewRespons
5656
* <p>You don't have sufficient access to perform this action.</p>
5757
*
5858
* @throws {@link ConflictException} (client fault)
59-
* <p>
60-
* The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
61-
* </p>
59+
* <p> The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request. </p>
6260
*
6361
* @throws {@link InternalServerException} (server fault)
64-
* <p>The request processing failed because of an unknown error, exception, or failure.
65-
* </p>
62+
* <p>The request processing failed because of an unknown error, exception, or failure. </p>
6663
*
6764
* @throws {@link ThrottlingException} (client fault)
68-
* <p>The request was denied due to request throttling.
69-
* </p>
65+
* <p>The request was denied due to request throttling. </p>
7066
*
7167
* @throws {@link ValidationException} (client fault)
72-
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.
73-
* </p>
68+
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service. </p>
7469
*
7570
* @throws {@link BillingServiceException}
7671
* <p>Base exception class for all service exceptions from Billing service.</p>

clients/client-billing/src/commands/GetBillingViewCommand.ts

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ export interface GetBillingViewCommandInput extends GetBillingViewRequest {}
3232
export interface GetBillingViewCommandOutput extends GetBillingViewResponse, __MetadataBearer {}
3333

3434
/**
35-
* <p>Returns the metadata associated to the specified billing view ARN.
36-
* </p>
35+
* <p>Returns the metadata associated to the specified billing view ARN. </p>
3736
* @example
3837
* Use a bare-bones client and the command you need to make an API call.
3938
* ```javascript
@@ -83,21 +82,16 @@ export interface GetBillingViewCommandOutput extends GetBillingViewResponse, __M
8382
* <p>You don't have sufficient access to perform this action.</p>
8483
*
8584
* @throws {@link InternalServerException} (server fault)
86-
* <p>The request processing failed because of an unknown error, exception, or failure.
87-
* </p>
85+
* <p>The request processing failed because of an unknown error, exception, or failure. </p>
8886
*
8987
* @throws {@link ResourceNotFoundException} (client fault)
90-
* <p>
91-
* The specified ARN in the request doesn't exist.
92-
* </p>
88+
* <p> The specified ARN in the request doesn't exist. </p>
9389
*
9490
* @throws {@link ThrottlingException} (client fault)
95-
* <p>The request was denied due to request throttling.
96-
* </p>
91+
* <p>The request was denied due to request throttling. </p>
9792
*
9893
* @throws {@link ValidationException} (client fault)
99-
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.
100-
* </p>
94+
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service. </p>
10195
*
10296
* @throws {@link BillingServiceException}
10397
* <p>Base exception class for all service exceptions from Billing service.</p>

clients/client-billing/src/commands/GetResourcePolicyCommand.ts

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ export interface GetResourcePolicyCommandInput extends GetResourcePolicyRequest
2828
export interface GetResourcePolicyCommandOutput extends GetResourcePolicyResponse, __MetadataBearer {}
2929

3030
/**
31-
* <p>Returns the resource-based policy document attached to the resource in <code>JSON</code> format.
32-
* </p>
31+
* <p>Returns the resource-based policy document attached to the resource in <code>JSON</code> format. </p>
3332
* @example
3433
* Use a bare-bones client and the command you need to make an API call.
3534
* ```javascript
@@ -58,21 +57,16 @@ export interface GetResourcePolicyCommandOutput extends GetResourcePolicyRespons
5857
* <p>You don't have sufficient access to perform this action.</p>
5958
*
6059
* @throws {@link InternalServerException} (server fault)
61-
* <p>The request processing failed because of an unknown error, exception, or failure.
62-
* </p>
60+
* <p>The request processing failed because of an unknown error, exception, or failure. </p>
6361
*
6462
* @throws {@link ResourceNotFoundException} (client fault)
65-
* <p>
66-
* The specified ARN in the request doesn't exist.
67-
* </p>
63+
* <p> The specified ARN in the request doesn't exist. </p>
6864
*
6965
* @throws {@link ThrottlingException} (client fault)
70-
* <p>The request was denied due to request throttling.
71-
* </p>
66+
* <p>The request was denied due to request throttling. </p>
7267
*
7368
* @throws {@link ValidationException} (client fault)
74-
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.
75-
* </p>
69+
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service. </p>
7670
*
7771
* @throws {@link BillingServiceException}
7872
* <p>Base exception class for all service exceptions from Billing service.</p>

clients/client-billing/src/commands/ListBillingViewsCommand.ts

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ export interface ListBillingViewsCommandInput extends ListBillingViewsRequest {}
3232
export interface ListBillingViewsCommandOutput extends ListBillingViewsResponse, __MetadataBearer {}
3333

3434
/**
35-
* <p>Lists the billing views available for a given time period.
36-
* </p>
37-
* <p>Every Amazon Web Services account has a unique <code>PRIMARY</code> billing view that represents the billing data available by default. Accounts that use Billing Conductor also have <code>BILLING_GROUP</code> billing views representing pro forma costs associated with each created billing group.</p>
35+
* <p>Lists the billing views available for a given time period. </p> <p>Every Amazon Web Services account has a unique <code>PRIMARY</code> billing view that represents the billing data available by default. Accounts that use Billing Conductor also have <code>BILLING_GROUP</code> billing views representing pro forma costs associated with each created billing group.</p>
3836
* @example
3937
* Use a bare-bones client and the command you need to make an API call.
4038
* ```javascript
@@ -83,16 +81,13 @@ export interface ListBillingViewsCommandOutput extends ListBillingViewsResponse,
8381
* <p>You don't have sufficient access to perform this action.</p>
8482
*
8583
* @throws {@link InternalServerException} (server fault)
86-
* <p>The request processing failed because of an unknown error, exception, or failure.
87-
* </p>
84+
* <p>The request processing failed because of an unknown error, exception, or failure. </p>
8885
*
8986
* @throws {@link ThrottlingException} (client fault)
90-
* <p>The request was denied due to request throttling.
91-
* </p>
87+
* <p>The request was denied due to request throttling. </p>
9288
*
9389
* @throws {@link ValidationException} (client fault)
94-
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.
95-
* </p>
90+
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service. </p>
9691
*
9792
* @throws {@link BillingServiceException}
9893
* <p>Base exception class for all service exceptions from Billing service.</p>

clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ export interface ListSourceViewsForBillingViewCommandOutput
3333
__MetadataBearer {}
3434

3535
/**
36-
* <p>Lists the source views (managed Amazon Web Services billing views) associated with the billing view.
37-
* </p>
36+
* <p>Lists the source views (managed Amazon Web Services billing views) associated with the billing view. </p>
3837
* @example
3938
* Use a bare-bones client and the command you need to make an API call.
4039
* ```javascript
@@ -67,21 +66,16 @@ export interface ListSourceViewsForBillingViewCommandOutput
6766
* <p>You don't have sufficient access to perform this action.</p>
6867
*
6968
* @throws {@link InternalServerException} (server fault)
70-
* <p>The request processing failed because of an unknown error, exception, or failure.
71-
* </p>
69+
* <p>The request processing failed because of an unknown error, exception, or failure. </p>
7270
*
7371
* @throws {@link ResourceNotFoundException} (client fault)
74-
* <p>
75-
* The specified ARN in the request doesn't exist.
76-
* </p>
72+
* <p> The specified ARN in the request doesn't exist. </p>
7773
*
7874
* @throws {@link ThrottlingException} (client fault)
79-
* <p>The request was denied due to request throttling.
80-
* </p>
75+
* <p>The request was denied due to request throttling. </p>
8176
*
8277
* @throws {@link ValidationException} (client fault)
83-
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.
84-
* </p>
78+
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service. </p>
8579
*
8680
* @throws {@link BillingServiceException}
8781
* <p>Base exception class for all service exceptions from Billing service.</p>

clients/client-billing/src/commands/ListTagsForResourceCommand.ts

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
2828
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {}
2929

3030
/**
31-
* <p>Lists tags associated with the billing view resource.
32-
* </p>
31+
* <p>Lists tags associated with the billing view resource. </p>
3332
* @example
3433
* Use a bare-bones client and the command you need to make an API call.
3534
* ```javascript
@@ -62,21 +61,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
6261
* <p>You don't have sufficient access to perform this action.</p>
6362
*
6463
* @throws {@link InternalServerException} (server fault)
65-
* <p>The request processing failed because of an unknown error, exception, or failure.
66-
* </p>
64+
* <p>The request processing failed because of an unknown error, exception, or failure. </p>
6765
*
6866
* @throws {@link ResourceNotFoundException} (client fault)
69-
* <p>
70-
* The specified ARN in the request doesn't exist.
71-
* </p>
67+
* <p> The specified ARN in the request doesn't exist. </p>
7268
*
7369
* @throws {@link ThrottlingException} (client fault)
74-
* <p>The request was denied due to request throttling.
75-
* </p>
70+
* <p>The request was denied due to request throttling. </p>
7671
*
7772
* @throws {@link ValidationException} (client fault)
78-
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.
79-
* </p>
73+
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service. </p>
8074
*
8175
* @throws {@link BillingServiceException}
8276
* <p>Base exception class for all service exceptions from Billing service.</p>

0 commit comments

Comments
 (0)