@aws-sdk/client-cloudcontrol 3.288.0 → 3.290.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 +7 -0
- package/dist-types/commands/CreateResourceCommand.d.ts +74 -0
- package/dist-types/commands/DeleteResourceCommand.d.ts +74 -0
- package/dist-types/commands/GetResourceCommand.d.ts +66 -0
- package/dist-types/commands/GetResourceRequestStatusCommand.d.ts +4 -0
- package/dist-types/commands/ListResourceRequestsCommand.d.ts +1 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +66 -0
- package/dist-types/commands/UpdateResourceCommand.d.ts +74 -0
- package/package.json +30 -30
|
@@ -32,6 +32,13 @@ export interface CancelResourceRequestCommandOutput extends CancelResourceReques
|
|
|
32
32
|
* @see {@link CancelResourceRequestCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link ConcurrentModificationException} (server fault)
|
|
36
|
+
* <p>The resource is currently being modified by another operation.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link RequestTokenNotFoundException} (client fault)
|
|
39
|
+
* <p>A resource operation with the specified request token can't be found.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
35
42
|
*/
|
|
36
43
|
export declare class CancelResourceRequestCommand extends $Command<CancelResourceRequestCommandInput, CancelResourceRequestCommandOutput, CloudControlClientResolvedConfig> {
|
|
37
44
|
readonly input: CancelResourceRequestCommandInput;
|
|
@@ -33,6 +33,80 @@ export interface CreateResourceCommandOutput extends CreateResourceOutput, __Met
|
|
|
33
33
|
* @see {@link CreateResourceCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
37
|
+
* <p>The resource with the name requested already exists.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ClientTokenConflictException} (client fault)
|
|
40
|
+
* <p>The specified client token has already been used in another resource request.</p>
|
|
41
|
+
* <p>It's best practice for client tokens to be unique for each resource operation request.
|
|
42
|
+
* However, client token expire after 36 hours.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ConcurrentOperationException} (client fault)
|
|
45
|
+
* <p>Another resource operation is currently being performed on this resource.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link GeneralServiceException} (client fault)
|
|
48
|
+
* <p>The resource handler has returned that the downstream service generated an error that
|
|
49
|
+
* doesn't map to any other handler error code.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link HandlerFailureException} (server fault)
|
|
52
|
+
* <p>The resource handler has failed without a returning a more specific error code. This can
|
|
53
|
+
* include timeouts.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link HandlerInternalFailureException} (server fault)
|
|
56
|
+
* <p>The resource handler has returned that an unexpected error occurred within the resource
|
|
57
|
+
* handler.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InvalidCredentialsException} (client fault)
|
|
60
|
+
* <p>The resource handler has returned that the credentials provided by the user are
|
|
61
|
+
* invalid.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
64
|
+
* <p>The resource handler has returned that invalid input from the user has generated a generic
|
|
65
|
+
* exception.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link NetworkFailureException} (server fault)
|
|
68
|
+
* <p>The resource handler has returned that the request couldn't be completed due to networking
|
|
69
|
+
* issues, such as a failure to receive a response from the server.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link NotStabilizedException} (client fault)
|
|
72
|
+
* <p>The resource handler has returned that the downstream resource failed to complete all of
|
|
73
|
+
* its ready-state checks.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link NotUpdatableException} (client fault)
|
|
76
|
+
* <p>One or more properties included in this resource operation are defined as create-only, and
|
|
77
|
+
* therefore can't be updated.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link PrivateTypeException} (client fault)
|
|
80
|
+
* <p>Cloud Control API hasn't received a valid response from the resource handler, due to a configuration
|
|
81
|
+
* error. This includes issues such as the resource handler returning an invalid response, or
|
|
82
|
+
* timing out.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ResourceConflictException} (client fault)
|
|
85
|
+
* <p>The resource is temporarily unavailable to be acted upon. For example, if the resource is
|
|
86
|
+
* currently undergoing an operation and can't be acted upon until that operation is
|
|
87
|
+
* finished.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
90
|
+
* <p>A resource with the specified identifier can't be found.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ServiceInternalErrorException} (server fault)
|
|
93
|
+
* <p>The resource handler has returned that the downstream service returned an internal error,
|
|
94
|
+
* typically with a <code>5XX HTTP</code> status code.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
97
|
+
* <p>The resource handler has returned that a non-transient resource limit was reached on the
|
|
98
|
+
* service side.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
101
|
+
* <p>The request was denied due to request throttling.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
104
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link UnsupportedActionException} (client fault)
|
|
107
|
+
* <p>The specified resource doesn't support this resource operation.</p>
|
|
108
|
+
*
|
|
109
|
+
*
|
|
36
110
|
*/
|
|
37
111
|
export declare class CreateResourceCommand extends $Command<CreateResourceCommandInput, CreateResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
38
112
|
readonly input: CreateResourceCommandInput;
|
|
@@ -33,6 +33,80 @@ export interface DeleteResourceCommandOutput extends DeleteResourceOutput, __Met
|
|
|
33
33
|
* @see {@link DeleteResourceCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
37
|
+
* <p>The resource with the name requested already exists.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ClientTokenConflictException} (client fault)
|
|
40
|
+
* <p>The specified client token has already been used in another resource request.</p>
|
|
41
|
+
* <p>It's best practice for client tokens to be unique for each resource operation request.
|
|
42
|
+
* However, client token expire after 36 hours.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ConcurrentOperationException} (client fault)
|
|
45
|
+
* <p>Another resource operation is currently being performed on this resource.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link GeneralServiceException} (client fault)
|
|
48
|
+
* <p>The resource handler has returned that the downstream service generated an error that
|
|
49
|
+
* doesn't map to any other handler error code.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link HandlerFailureException} (server fault)
|
|
52
|
+
* <p>The resource handler has failed without a returning a more specific error code. This can
|
|
53
|
+
* include timeouts.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link HandlerInternalFailureException} (server fault)
|
|
56
|
+
* <p>The resource handler has returned that an unexpected error occurred within the resource
|
|
57
|
+
* handler.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InvalidCredentialsException} (client fault)
|
|
60
|
+
* <p>The resource handler has returned that the credentials provided by the user are
|
|
61
|
+
* invalid.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
64
|
+
* <p>The resource handler has returned that invalid input from the user has generated a generic
|
|
65
|
+
* exception.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link NetworkFailureException} (server fault)
|
|
68
|
+
* <p>The resource handler has returned that the request couldn't be completed due to networking
|
|
69
|
+
* issues, such as a failure to receive a response from the server.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link NotStabilizedException} (client fault)
|
|
72
|
+
* <p>The resource handler has returned that the downstream resource failed to complete all of
|
|
73
|
+
* its ready-state checks.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link NotUpdatableException} (client fault)
|
|
76
|
+
* <p>One or more properties included in this resource operation are defined as create-only, and
|
|
77
|
+
* therefore can't be updated.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link PrivateTypeException} (client fault)
|
|
80
|
+
* <p>Cloud Control API hasn't received a valid response from the resource handler, due to a configuration
|
|
81
|
+
* error. This includes issues such as the resource handler returning an invalid response, or
|
|
82
|
+
* timing out.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ResourceConflictException} (client fault)
|
|
85
|
+
* <p>The resource is temporarily unavailable to be acted upon. For example, if the resource is
|
|
86
|
+
* currently undergoing an operation and can't be acted upon until that operation is
|
|
87
|
+
* finished.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
90
|
+
* <p>A resource with the specified identifier can't be found.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ServiceInternalErrorException} (server fault)
|
|
93
|
+
* <p>The resource handler has returned that the downstream service returned an internal error,
|
|
94
|
+
* typically with a <code>5XX HTTP</code> status code.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
97
|
+
* <p>The resource handler has returned that a non-transient resource limit was reached on the
|
|
98
|
+
* service side.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
101
|
+
* <p>The request was denied due to request throttling.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
104
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link UnsupportedActionException} (client fault)
|
|
107
|
+
* <p>The specified resource doesn't support this resource operation.</p>
|
|
108
|
+
*
|
|
109
|
+
*
|
|
36
110
|
*/
|
|
37
111
|
export declare class DeleteResourceCommand extends $Command<DeleteResourceCommandInput, DeleteResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
38
112
|
readonly input: DeleteResourceCommandInput;
|
|
@@ -32,6 +32,72 @@ export interface GetResourceCommandOutput extends GetResourceOutput, __MetadataB
|
|
|
32
32
|
* @see {@link GetResourceCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
36
|
+
* <p>The resource with the name requested already exists.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link GeneralServiceException} (client fault)
|
|
39
|
+
* <p>The resource handler has returned that the downstream service generated an error that
|
|
40
|
+
* doesn't map to any other handler error code.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link HandlerFailureException} (server fault)
|
|
43
|
+
* <p>The resource handler has failed without a returning a more specific error code. This can
|
|
44
|
+
* include timeouts.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link HandlerInternalFailureException} (server fault)
|
|
47
|
+
* <p>The resource handler has returned that an unexpected error occurred within the resource
|
|
48
|
+
* handler.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InvalidCredentialsException} (client fault)
|
|
51
|
+
* <p>The resource handler has returned that the credentials provided by the user are
|
|
52
|
+
* invalid.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
55
|
+
* <p>The resource handler has returned that invalid input from the user has generated a generic
|
|
56
|
+
* exception.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link NetworkFailureException} (server fault)
|
|
59
|
+
* <p>The resource handler has returned that the request couldn't be completed due to networking
|
|
60
|
+
* issues, such as a failure to receive a response from the server.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link NotStabilizedException} (client fault)
|
|
63
|
+
* <p>The resource handler has returned that the downstream resource failed to complete all of
|
|
64
|
+
* its ready-state checks.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link NotUpdatableException} (client fault)
|
|
67
|
+
* <p>One or more properties included in this resource operation are defined as create-only, and
|
|
68
|
+
* therefore can't be updated.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link PrivateTypeException} (client fault)
|
|
71
|
+
* <p>Cloud Control API hasn't received a valid response from the resource handler, due to a configuration
|
|
72
|
+
* error. This includes issues such as the resource handler returning an invalid response, or
|
|
73
|
+
* timing out.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ResourceConflictException} (client fault)
|
|
76
|
+
* <p>The resource is temporarily unavailable to be acted upon. For example, if the resource is
|
|
77
|
+
* currently undergoing an operation and can't be acted upon until that operation is
|
|
78
|
+
* finished.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
81
|
+
* <p>A resource with the specified identifier can't be found.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ServiceInternalErrorException} (server fault)
|
|
84
|
+
* <p>The resource handler has returned that the downstream service returned an internal error,
|
|
85
|
+
* typically with a <code>5XX HTTP</code> status code.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
88
|
+
* <p>The resource handler has returned that a non-transient resource limit was reached on the
|
|
89
|
+
* service side.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
92
|
+
* <p>The request was denied due to request throttling.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
95
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link UnsupportedActionException} (client fault)
|
|
98
|
+
* <p>The specified resource doesn't support this resource operation.</p>
|
|
99
|
+
*
|
|
100
|
+
*
|
|
35
101
|
*/
|
|
36
102
|
export declare class GetResourceCommand extends $Command<GetResourceCommandInput, GetResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
37
103
|
readonly input: GetResourceCommandInput;
|
|
@@ -31,6 +31,10 @@ export interface GetResourceRequestStatusCommandOutput extends GetResourceReques
|
|
|
31
31
|
* @see {@link GetResourceRequestStatusCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link RequestTokenNotFoundException} (client fault)
|
|
35
|
+
* <p>A resource operation with the specified request token can't be found.</p>
|
|
36
|
+
*
|
|
37
|
+
*
|
|
34
38
|
*/
|
|
35
39
|
export declare class GetResourceRequestStatusCommand extends $Command<GetResourceRequestStatusCommandInput, GetResourceRequestStatusCommandOutput, CloudControlClientResolvedConfig> {
|
|
36
40
|
readonly input: GetResourceRequestStatusCommandInput;
|
|
@@ -34,6 +34,7 @@ export interface ListResourceRequestsCommandOutput extends ListResourceRequestsO
|
|
|
34
34
|
* @see {@link ListResourceRequestsCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
*
|
|
37
38
|
*/
|
|
38
39
|
export declare class ListResourceRequestsCommand extends $Command<ListResourceRequestsCommandInput, ListResourceRequestsCommandOutput, CloudControlClientResolvedConfig> {
|
|
39
40
|
readonly input: ListResourceRequestsCommandInput;
|
|
@@ -31,6 +31,72 @@ export interface ListResourcesCommandOutput extends ListResourcesOutput, __Metad
|
|
|
31
31
|
* @see {@link ListResourcesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
35
|
+
* <p>The resource with the name requested already exists.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link GeneralServiceException} (client fault)
|
|
38
|
+
* <p>The resource handler has returned that the downstream service generated an error that
|
|
39
|
+
* doesn't map to any other handler error code.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link HandlerFailureException} (server fault)
|
|
42
|
+
* <p>The resource handler has failed without a returning a more specific error code. This can
|
|
43
|
+
* include timeouts.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link HandlerInternalFailureException} (server fault)
|
|
46
|
+
* <p>The resource handler has returned that an unexpected error occurred within the resource
|
|
47
|
+
* handler.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InvalidCredentialsException} (client fault)
|
|
50
|
+
* <p>The resource handler has returned that the credentials provided by the user are
|
|
51
|
+
* invalid.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
54
|
+
* <p>The resource handler has returned that invalid input from the user has generated a generic
|
|
55
|
+
* exception.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link NetworkFailureException} (server fault)
|
|
58
|
+
* <p>The resource handler has returned that the request couldn't be completed due to networking
|
|
59
|
+
* issues, such as a failure to receive a response from the server.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link NotStabilizedException} (client fault)
|
|
62
|
+
* <p>The resource handler has returned that the downstream resource failed to complete all of
|
|
63
|
+
* its ready-state checks.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link NotUpdatableException} (client fault)
|
|
66
|
+
* <p>One or more properties included in this resource operation are defined as create-only, and
|
|
67
|
+
* therefore can't be updated.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link PrivateTypeException} (client fault)
|
|
70
|
+
* <p>Cloud Control API hasn't received a valid response from the resource handler, due to a configuration
|
|
71
|
+
* error. This includes issues such as the resource handler returning an invalid response, or
|
|
72
|
+
* timing out.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ResourceConflictException} (client fault)
|
|
75
|
+
* <p>The resource is temporarily unavailable to be acted upon. For example, if the resource is
|
|
76
|
+
* currently undergoing an operation and can't be acted upon until that operation is
|
|
77
|
+
* finished.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
80
|
+
* <p>A resource with the specified identifier can't be found.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ServiceInternalErrorException} (server fault)
|
|
83
|
+
* <p>The resource handler has returned that the downstream service returned an internal error,
|
|
84
|
+
* typically with a <code>5XX HTTP</code> status code.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
87
|
+
* <p>The resource handler has returned that a non-transient resource limit was reached on the
|
|
88
|
+
* service side.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
91
|
+
* <p>The request was denied due to request throttling.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
94
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link UnsupportedActionException} (client fault)
|
|
97
|
+
* <p>The specified resource doesn't support this resource operation.</p>
|
|
98
|
+
*
|
|
99
|
+
*
|
|
34
100
|
*/
|
|
35
101
|
export declare class ListResourcesCommand extends $Command<ListResourcesCommandInput, ListResourcesCommandOutput, CloudControlClientResolvedConfig> {
|
|
36
102
|
readonly input: ListResourcesCommandInput;
|
|
@@ -40,6 +40,80 @@ export interface UpdateResourceCommandOutput extends UpdateResourceOutput, __Met
|
|
|
40
40
|
* @see {@link UpdateResourceCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link CloudControlClientResolvedConfig | config} for CloudControlClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
44
|
+
* <p>The resource with the name requested already exists.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ClientTokenConflictException} (client fault)
|
|
47
|
+
* <p>The specified client token has already been used in another resource request.</p>
|
|
48
|
+
* <p>It's best practice for client tokens to be unique for each resource operation request.
|
|
49
|
+
* However, client token expire after 36 hours.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ConcurrentOperationException} (client fault)
|
|
52
|
+
* <p>Another resource operation is currently being performed on this resource.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link GeneralServiceException} (client fault)
|
|
55
|
+
* <p>The resource handler has returned that the downstream service generated an error that
|
|
56
|
+
* doesn't map to any other handler error code.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link HandlerFailureException} (server fault)
|
|
59
|
+
* <p>The resource handler has failed without a returning a more specific error code. This can
|
|
60
|
+
* include timeouts.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link HandlerInternalFailureException} (server fault)
|
|
63
|
+
* <p>The resource handler has returned that an unexpected error occurred within the resource
|
|
64
|
+
* handler.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InvalidCredentialsException} (client fault)
|
|
67
|
+
* <p>The resource handler has returned that the credentials provided by the user are
|
|
68
|
+
* invalid.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InvalidRequestException} (client fault)
|
|
71
|
+
* <p>The resource handler has returned that invalid input from the user has generated a generic
|
|
72
|
+
* exception.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link NetworkFailureException} (server fault)
|
|
75
|
+
* <p>The resource handler has returned that the request couldn't be completed due to networking
|
|
76
|
+
* issues, such as a failure to receive a response from the server.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link NotStabilizedException} (client fault)
|
|
79
|
+
* <p>The resource handler has returned that the downstream resource failed to complete all of
|
|
80
|
+
* its ready-state checks.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link NotUpdatableException} (client fault)
|
|
83
|
+
* <p>One or more properties included in this resource operation are defined as create-only, and
|
|
84
|
+
* therefore can't be updated.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link PrivateTypeException} (client fault)
|
|
87
|
+
* <p>Cloud Control API hasn't received a valid response from the resource handler, due to a configuration
|
|
88
|
+
* error. This includes issues such as the resource handler returning an invalid response, or
|
|
89
|
+
* timing out.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ResourceConflictException} (client fault)
|
|
92
|
+
* <p>The resource is temporarily unavailable to be acted upon. For example, if the resource is
|
|
93
|
+
* currently undergoing an operation and can't be acted upon until that operation is
|
|
94
|
+
* finished.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
97
|
+
* <p>A resource with the specified identifier can't be found.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ServiceInternalErrorException} (server fault)
|
|
100
|
+
* <p>The resource handler has returned that the downstream service returned an internal error,
|
|
101
|
+
* typically with a <code>5XX HTTP</code> status code.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ServiceLimitExceededException} (client fault)
|
|
104
|
+
* <p>The resource handler has returned that a non-transient resource limit was reached on the
|
|
105
|
+
* service side.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
108
|
+
* <p>The request was denied due to request throttling.</p>
|
|
109
|
+
*
|
|
110
|
+
* @throws {@link TypeNotFoundException} (client fault)
|
|
111
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
112
|
+
*
|
|
113
|
+
* @throws {@link UnsupportedActionException} (client fault)
|
|
114
|
+
* <p>The specified resource doesn't support this resource operation.</p>
|
|
115
|
+
*
|
|
116
|
+
*
|
|
43
117
|
*/
|
|
44
118
|
export declare class UpdateResourceCommand extends $Command<UpdateResourceCommandInput, UpdateResourceCommandOutput, CloudControlClientResolvedConfig> {
|
|
45
119
|
readonly input: UpdateResourceCommandInput;
|
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.290.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,39 +20,39 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
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.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
|
-
"@aws-sdk/util-waiter": "3.
|
|
55
|
+
"@aws-sdk/util-waiter": "3.290.0",
|
|
56
56
|
"tslib": "^2.3.1",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|