@aws-sdk/client-cloudcontrol 3.300.0 → 3.301.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/CancelResourceRequestCommand.d.ts +1 -1
- package/dist-types/commands/CreateResourceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResourceCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceRequestStatusCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceRequestsCommand.d.ts +4 -4
- package/dist-types/commands/ListResourcesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateResourceCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -29,7 +29,7 @@ export interface CancelResourceRequestCommandOutput extends CancelResourceReques
|
|
|
29
29
|
* import { CloudControlClient, CancelResourceRequestCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
30
30
|
* // const { CloudControlClient, CancelResourceRequestCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
31
31
|
* const client = new CloudControlClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CancelResourceRequestInput
|
|
33
33
|
* RequestToken: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new CancelResourceRequestCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface CreateResourceCommandOutput extends CreateResourceOutput, __Met
|
|
|
30
30
|
* import { CloudControlClient, CreateResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
31
31
|
* // const { CloudControlClient, CreateResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
32
32
|
* const client = new CloudControlClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // CreateResourceInput
|
|
34
34
|
* TypeName: "STRING_VALUE", // required
|
|
35
35
|
* TypeVersionId: "STRING_VALUE",
|
|
36
36
|
* RoleArn: "STRING_VALUE",
|
|
@@ -30,7 +30,7 @@ export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __Met
|
|
|
30
30
|
* import { CloudControlClient, DeleteResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
31
31
|
* // const { CloudControlClient, DeleteResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
32
32
|
* const client = new CloudControlClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteResourceInput
|
|
34
34
|
* TypeName: "STRING_VALUE", // required
|
|
35
35
|
* TypeVersionId: "STRING_VALUE",
|
|
36
36
|
* RoleArn: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataB
|
|
|
29
29
|
* import { CloudControlClient, GetResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
30
30
|
* // const { CloudControlClient, GetResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
31
31
|
* const client = new CloudControlClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // GetResourceInput
|
|
33
33
|
* TypeName: "STRING_VALUE", // required
|
|
34
34
|
* TypeVersionId: "STRING_VALUE",
|
|
35
35
|
* RoleArn: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface GetResourceRequestStatusCommandOutput extends GetResourceReques
|
|
|
28
28
|
* import { CloudControlClient, GetResourceRequestStatusCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
29
29
|
* // const { CloudControlClient, GetResourceRequestStatusCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
30
30
|
* const client = new CloudControlClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetResourceRequestStatusInput
|
|
32
32
|
* RequestToken: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetResourceRequestStatusCommand(input);
|
|
@@ -31,14 +31,14 @@ export interface ListResourceRequestsCommandOutput extends ListResourceRequestsO
|
|
|
31
31
|
* import { CloudControlClient, ListResourceRequestsCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
32
32
|
* // const { CloudControlClient, ListResourceRequestsCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
33
33
|
* const client = new CloudControlClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListResourceRequestsInput
|
|
35
35
|
* MaxResults: Number("int"),
|
|
36
36
|
* NextToken: "STRING_VALUE",
|
|
37
|
-
* ResourceRequestStatusFilter: {
|
|
38
|
-
* Operations: [
|
|
37
|
+
* ResourceRequestStatusFilter: { // ResourceRequestStatusFilter
|
|
38
|
+
* Operations: [ // Operations
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* OperationStatuses: [
|
|
41
|
+
* OperationStatuses: [ // OperationStatuses
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
@@ -28,7 +28,7 @@ export interface ListResourcesCommandOutput extends ListResourcesOutput, __Metad
|
|
|
28
28
|
* import { CloudControlClient, ListResourcesCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
29
29
|
* // const { CloudControlClient, ListResourcesCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
30
30
|
* const client = new CloudControlClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListResourcesInput
|
|
32
32
|
* TypeName: "STRING_VALUE", // required
|
|
33
33
|
* TypeVersionId: "STRING_VALUE",
|
|
34
34
|
* RoleArn: "STRING_VALUE",
|
|
@@ -37,7 +37,7 @@ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __Met
|
|
|
37
37
|
* import { CloudControlClient, UpdateResourceCommand } from "@aws-sdk/client-cloudcontrol"; // ES Modules import
|
|
38
38
|
* // const { CloudControlClient, UpdateResourceCommand } = require("@aws-sdk/client-cloudcontrol"); // CommonJS import
|
|
39
39
|
* const client = new CloudControlClient(config);
|
|
40
|
-
* const input = {
|
|
40
|
+
* const input = { // UpdateResourceInput
|
|
41
41
|
* TypeName: "STRING_VALUE", // required
|
|
42
42
|
* TypeVersionId: "STRING_VALUE",
|
|
43
43
|
* RoleArn: "STRING_VALUE",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudcontrol",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|