Skip to content

Commit a83077b

Browse files
author
awstools
committed
feat(client-cloudcontrol): SDK release for Cloud Control API in Amazon Web Services China (Beijing) Region, operated by Sinnet, and Amazon Web Services China (Ningxia) Region, operated by NWCD
1 parent 51170c6 commit a83077b

File tree

10 files changed

+1633
-1660
lines changed

10 files changed

+1633
-1660
lines changed

clients/client-cloudcontrol/README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77

88
AWS SDK for JavaScript CloudControl Client for Node.js, Browser and React Native.
99

10-
<p>Use Amazon Web Services Cloud Control API to create, read, update, delete, and list (CRUD-L) your cloud resources that
11-
belong to a wide range of services--both Amazon Web Services and third-party. With the Cloud Control API
12-
standardized set of application programming interfaces (APIs), you can perform CRUD-L operations
13-
on any supported resources in your Amazon Web Services account. Using Cloud Control API, you won't have to generate code
14-
or scripts specific to each individual service responsible for those resources.</p>
1510
<p>For more information about Amazon Web Services Cloud Control API, see the <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/what-is-cloudcontrolapi.html">Amazon Web Services Cloud Control API User
1611
Guide</a>.</p>
1712

clients/client-cloudcontrol/src/CloudControl.ts

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,20 +39,15 @@ import {
3939
} from "./commands/UpdateResourceCommand";
4040

4141
/**
42-
* <p>Use Amazon Web Services Cloud Control API to create, read, update, delete, and list (CRUD-L) your cloud resources that
43-
* belong to a wide range of services--both Amazon Web Services and third-party. With the Cloud Control API
44-
* standardized set of application programming interfaces (APIs), you can perform CRUD-L operations
45-
* on any supported resources in your Amazon Web Services account. Using Cloud Control API, you won't have to generate code
46-
* or scripts specific to each individual service responsible for those resources.</p>
47-
* <p>For more information about Amazon Web Services Cloud Control API, see the <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/what-is-cloudcontrolapi.html">Amazon Web Services Cloud Control API User
42+
* <p>For more information about Amazon Web Services Cloud Control API, see the <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/what-is-cloudcontrolapi.html">Amazon Web Services Cloud Control API User
4843
* Guide</a>.</p>
4944
*/
5045
export class CloudControl extends CloudControlClient {
5146
/**
5247
* <p>Cancels the specified resource operation request. For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html#resource-operations-manage-requests-cancel">Canceling resource operation requests</a> in the
5348
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
5449
* <p>Only resource operations requests with a status of <code>PENDING</code> or
55-
* <code>IN_PROGRESS</code> can be cancelled.</p>
50+
* <code>IN_PROGRESS</code> can be canceled.</p>
5651
*/
5752
public cancelResourceRequest(
5853
args: CancelResourceRequestCommandInput,
@@ -159,7 +154,7 @@ export class CloudControl extends CloudControlClient {
159154
* <p>Returns information about the current state of the specified resource. For details, see
160155
* <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-read.html">Reading a resource's current state</a>.</p>
161156
* <p>You can use this action to return information about an existing resource in your account
162-
* and Amazon Web Services Region, whether or not those resources were provisioned using Cloud Control API.</p>
157+
* and Amazon Web Services Region, whether those resources were provisioned using Cloud Control API.</p>
163158
*/
164159
public getResource(args: GetResourceCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceCommandOutput>;
165160
public getResource(args: GetResourceCommandInput, cb: (err: any, data?: GetResourceCommandOutput) => void): void;
@@ -223,7 +218,7 @@ export class CloudControl extends CloudControlClient {
223218
* For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html#resource-operations-manage-requests-list">Listing active resource operation requests</a> in the
224219
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
225220
* <note>
226-
* <p>Resource operation requests expire after seven days.</p>
221+
* <p>Resource operation requests expire after 7 days.</p>
227222
* </note>
228223
*/
229224
public listResourceRequests(
@@ -256,10 +251,9 @@ export class CloudControl extends CloudControlClient {
256251
}
257252

258253
/**
259-
* <p>Returns information about the specified resources. For more information, see <a href="cloudcontrolapi/latest/userguide/resource-operations-list.html">Discovering
260-
* resources</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
254+
* <p>Returns information about the specified resources. For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-list.html">Discovering resources</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
261255
* <p>You can use this action to return information about existing resources in your account and
262-
* Amazon Web Services Region, whether or not those resources were provisioned using Cloud Control API.</p>
256+
* Amazon Web Services Region, whether those resources were provisioned using Cloud Control API.</p>
263257
*/
264258
public listResources(
265259
args: ListResourcesCommandInput,
@@ -302,8 +296,7 @@ export class CloudControl extends CloudControlClient {
302296
* request by calling <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/APIReference/API_GetResourceRequestStatus.html">GetResourceRequestStatus</a> using the <code>RequestToken</code> of the
303297
* <code>ProgressEvent</code> returned by <code>UpdateResource</code>.</p>
304298
* <p>For more information about the properties of a specific resource, refer to the related
305-
* topic for the resource in the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Resource and property types reference</a> in the <i>Amazon Web Services
306-
* CloudFormation Users Guide</i>.</p>
299+
* topic for the resource in the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Resource and property types reference</a> in the <i>CloudFormation Users Guide</i>.</p>
307300
*/
308301
public updateResource(
309302
args: UpdateResourceCommandInput,

clients/client-cloudcontrol/src/CloudControlClient.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -244,12 +244,7 @@ type CloudControlClientResolvedConfigType = __SmithyResolvedConfiguration<__Http
244244
export interface CloudControlClientResolvedConfig extends CloudControlClientResolvedConfigType {}
245245

246246
/**
247-
* <p>Use Amazon Web Services Cloud Control API to create, read, update, delete, and list (CRUD-L) your cloud resources that
248-
* belong to a wide range of services--both Amazon Web Services and third-party. With the Cloud Control API
249-
* standardized set of application programming interfaces (APIs), you can perform CRUD-L operations
250-
* on any supported resources in your Amazon Web Services account. Using Cloud Control API, you won't have to generate code
251-
* or scripts specific to each individual service responsible for those resources.</p>
252-
* <p>For more information about Amazon Web Services Cloud Control API, see the <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/what-is-cloudcontrolapi.html">Amazon Web Services Cloud Control API User
247+
* <p>For more information about Amazon Web Services Cloud Control API, see the <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/what-is-cloudcontrolapi.html">Amazon Web Services Cloud Control API User
253248
* Guide</a>.</p>
254249
*/
255250
export class CloudControlClient extends __Client<

clients/client-cloudcontrol/src/commands/CancelResourceRequestCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface CancelResourceRequestCommandOutput extends CancelResourceReques
2525
* <p>Cancels the specified resource operation request. For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html#resource-operations-manage-requests-cancel">Canceling resource operation requests</a> in the
2626
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
2727
* <p>Only resource operations requests with a status of <code>PENDING</code> or
28-
* <code>IN_PROGRESS</code> can be cancelled.</p>
28+
* <code>IN_PROGRESS</code> can be canceled.</p>
2929
* @example
3030
* Use a bare-bones client and the command you need to make an API call.
3131
* ```javascript

clients/client-cloudcontrol/src/commands/GetResourceCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataB
2525
* <p>Returns information about the current state of the specified resource. For details, see
2626
* <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-read.html">Reading a resource's current state</a>.</p>
2727
* <p>You can use this action to return information about an existing resource in your account
28-
* and Amazon Web Services Region, whether or not those resources were provisioned using Cloud Control API.</p>
28+
* and Amazon Web Services Region, whether those resources were provisioned using Cloud Control API.</p>
2929
* @example
3030
* Use a bare-bones client and the command you need to make an API call.
3131
* ```javascript

clients/client-cloudcontrol/src/commands/ListResourceRequestsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export interface ListResourceRequestsCommandOutput extends ListResourceRequestsO
2626
* For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-manage-requests.html#resource-operations-manage-requests-list">Listing active resource operation requests</a> in the
2727
* <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
2828
* <note>
29-
* <p>Resource operation requests expire after seven days.</p>
29+
* <p>Resource operation requests expire after 7 days.</p>
3030
* </note>
3131
* @example
3232
* Use a bare-bones client and the command you need to make an API call.

clients/client-cloudcontrol/src/commands/ListResourcesCommand.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ export interface ListResourcesCommandInput extends ListResourcesInput {}
2222
export interface ListResourcesCommandOutput extends ListResourcesOutput, __MetadataBearer {}
2323

2424
/**
25-
* <p>Returns information about the specified resources. For more information, see <a href="cloudcontrolapi/latest/userguide/resource-operations-list.html">Discovering
26-
* resources</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
25+
* <p>Returns information about the specified resources. For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-list.html">Discovering resources</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p>
2726
* <p>You can use this action to return information about existing resources in your account and
28-
* Amazon Web Services Region, whether or not those resources were provisioned using Cloud Control API.</p>
27+
* Amazon Web Services Region, whether those resources were provisioned using Cloud Control API.</p>
2928
* @example
3029
* Use a bare-bones client and the command you need to make an API call.
3130
* ```javascript

clients/client-cloudcontrol/src/commands/UpdateResourceCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __Met
3333
* request by calling <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/APIReference/API_GetResourceRequestStatus.html">GetResourceRequestStatus</a> using the <code>RequestToken</code> of the
3434
* <code>ProgressEvent</code> returned by <code>UpdateResource</code>.</p>
3535
* <p>For more information about the properties of a specific resource, refer to the related
36-
* topic for the resource in the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Resource and property types reference</a> in the <i>Amazon Web Services
37-
* CloudFormation Users Guide</i>.</p>
36+
* topic for the resource in the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Resource and property types reference</a> in the <i>CloudFormation Users Guide</i>.</p>
3837
* @example
3938
* Use a bare-bones client and the command you need to make an API call.
4039
* ```javascript

0 commit comments

Comments
 (0)