@aws-sdk/client-cloudcontrol 3.948.0 → 3.953.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-cjs/index.js +227 -163
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CancelResourceRequestCommand.js +2 -2
- package/dist-es/commands/CreateResourceCommand.js +2 -2
- package/dist-es/commands/DeleteResourceCommand.js +2 -2
- package/dist-es/commands/GetResourceCommand.js +2 -2
- package/dist-es/commands/GetResourceRequestStatusCommand.js +2 -2
- package/dist-es/commands/ListResourceRequestsCommand.js +2 -2
- package/dist-es/commands/ListResourcesCommand.js +2 -2
- package/dist-es/commands/UpdateResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +109 -95
- package/dist-types/CloudControlClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +51 -58
- package/dist-types/ts3.4/CloudControlClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +50 -59
- package/package.json +35 -35
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.cloudcontrol",
|
|
32
|
+
version: "2021-09-30",
|
|
33
|
+
serviceTarget: "CloudApiService",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "CloudControl",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelResourceRequest } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelResourceRequest$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelResourceRequestCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelResourceRequestCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CloudApiService", "CancelResourceRequest", {})
|
|
13
13
|
.n("CloudControlClient", "CancelResourceRequestCommand")
|
|
14
|
-
.sc(CancelResourceRequest)
|
|
14
|
+
.sc(CancelResourceRequest$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateResource } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CloudApiService", "CreateResource", {})
|
|
13
13
|
.n("CloudControlClient", "CreateResourceCommand")
|
|
14
|
-
.sc(CreateResource)
|
|
14
|
+
.sc(CreateResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteResource } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CloudApiService", "DeleteResource", {})
|
|
13
13
|
.n("CloudControlClient", "DeleteResourceCommand")
|
|
14
|
-
.sc(DeleteResource)
|
|
14
|
+
.sc(DeleteResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetResource } from "../schemas/schemas_0";
|
|
4
|
+
import { GetResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CloudApiService", "GetResource", {})
|
|
13
13
|
.n("CloudControlClient", "GetResourceCommand")
|
|
14
|
-
.sc(GetResource)
|
|
14
|
+
.sc(GetResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetResourceRequestStatus } from "../schemas/schemas_0";
|
|
4
|
+
import { GetResourceRequestStatus$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetResourceRequestStatusCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetResourceRequestStatusCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CloudApiService", "GetResourceRequestStatus", {})
|
|
13
13
|
.n("CloudControlClient", "GetResourceRequestStatusCommand")
|
|
14
|
-
.sc(GetResourceRequestStatus)
|
|
14
|
+
.sc(GetResourceRequestStatus$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListResourceRequests } from "../schemas/schemas_0";
|
|
4
|
+
import { ListResourceRequests$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListResourceRequestsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListResourceRequestsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CloudApiService", "ListResourceRequests", {})
|
|
13
13
|
.n("CloudControlClient", "ListResourceRequestsCommand")
|
|
14
|
-
.sc(ListResourceRequests)
|
|
14
|
+
.sc(ListResourceRequests$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListResources } from "../schemas/schemas_0";
|
|
4
|
+
import { ListResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CloudApiService", "ListResources", {})
|
|
13
13
|
.n("CloudControlClient", "ListResourcesCommand")
|
|
14
|
-
.sc(ListResources)
|
|
14
|
+
.sc(ListResources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("CloudApiService", "UpdateResource", {})
|
|
13
13
|
.n("CloudControlClient", "UpdateResourceCommand")
|
|
14
|
-
.sc(UpdateResource)
|
|
14
|
+
.sc(UpdateResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.cloudcontrol",
|
|
29
|
+
version: "2021-09-30",
|
|
30
|
+
serviceTarget: "CloudApiService",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "CloudControl",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
@@ -88,11 +88,11 @@ const _s = "server";
|
|
|
88
88
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cloudcontrol";
|
|
89
89
|
const n0 = "com.amazonaws.cloudcontrol";
|
|
90
90
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
91
|
-
import { CloudControlServiceException
|
|
92
|
-
import { AlreadyExistsException
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
export var AlreadyExistsException = [
|
|
91
|
+
import { CloudControlServiceException } from "../models/CloudControlServiceException";
|
|
92
|
+
import { AlreadyExistsException, ClientTokenConflictException, ConcurrentModificationException, ConcurrentOperationException, GeneralServiceException, HandlerFailureException, HandlerInternalFailureException, InvalidCredentialsException, InvalidRequestException, NetworkFailureException, NotStabilizedException, NotUpdatableException, PrivateTypeException, RequestTokenNotFoundException, ResourceConflictException, ResourceNotFoundException, ServiceInternalErrorException, ServiceLimitExceededException, ThrottlingException, TypeNotFoundException, UnsupportedActionException, } from "../models/errors";
|
|
93
|
+
var PatchDocument = [0, n0, _PD, 8, 0];
|
|
94
|
+
var Properties = [0, n0, _P, 8, 0];
|
|
95
|
+
export var AlreadyExistsException$ = [
|
|
96
96
|
-3,
|
|
97
97
|
n0,
|
|
98
98
|
_AEE,
|
|
@@ -100,10 +100,10 @@ export var AlreadyExistsException = [
|
|
|
100
100
|
[_M],
|
|
101
101
|
[0],
|
|
102
102
|
];
|
|
103
|
-
TypeRegistry.for(n0).registerError(AlreadyExistsException
|
|
104
|
-
export var CancelResourceRequestInput = [3, n0, _CRRI, 0, [_RT], [0]];
|
|
105
|
-
export var CancelResourceRequestOutput = [3, n0, _CRRO, 0, [_PE], [[() => ProgressEvent
|
|
106
|
-
export var ClientTokenConflictException = [
|
|
103
|
+
TypeRegistry.for(n0).registerError(AlreadyExistsException$, AlreadyExistsException);
|
|
104
|
+
export var CancelResourceRequestInput$ = [3, n0, _CRRI, 0, [_RT], [0]];
|
|
105
|
+
export var CancelResourceRequestOutput$ = [3, n0, _CRRO, 0, [_PE], [[() => ProgressEvent$, 0]]];
|
|
106
|
+
export var ClientTokenConflictException$ = [
|
|
107
107
|
-3,
|
|
108
108
|
n0,
|
|
109
109
|
_CTCE,
|
|
@@ -111,8 +111,8 @@ export var ClientTokenConflictException = [
|
|
|
111
111
|
[_M],
|
|
112
112
|
[0],
|
|
113
113
|
];
|
|
114
|
-
TypeRegistry.for(n0).registerError(ClientTokenConflictException
|
|
115
|
-
export var ConcurrentModificationException = [
|
|
114
|
+
TypeRegistry.for(n0).registerError(ClientTokenConflictException$, ClientTokenConflictException);
|
|
115
|
+
export var ConcurrentModificationException$ = [
|
|
116
116
|
-3,
|
|
117
117
|
n0,
|
|
118
118
|
_CME,
|
|
@@ -120,8 +120,8 @@ export var ConcurrentModificationException = [
|
|
|
120
120
|
[_M],
|
|
121
121
|
[0],
|
|
122
122
|
];
|
|
123
|
-
TypeRegistry.for(n0).registerError(ConcurrentModificationException
|
|
124
|
-
export var ConcurrentOperationException = [
|
|
123
|
+
TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
124
|
+
export var ConcurrentOperationException$ = [
|
|
125
125
|
-3,
|
|
126
126
|
n0,
|
|
127
127
|
_COE,
|
|
@@ -129,8 +129,8 @@ export var ConcurrentOperationException = [
|
|
|
129
129
|
[_M],
|
|
130
130
|
[0],
|
|
131
131
|
];
|
|
132
|
-
TypeRegistry.for(n0).registerError(ConcurrentOperationException
|
|
133
|
-
export var CreateResourceInput = [
|
|
132
|
+
TypeRegistry.for(n0).registerError(ConcurrentOperationException$, ConcurrentOperationException);
|
|
133
|
+
export var CreateResourceInput$ = [
|
|
134
134
|
3,
|
|
135
135
|
n0,
|
|
136
136
|
_CRI,
|
|
@@ -138,8 +138,8 @@ export var CreateResourceInput = [
|
|
|
138
138
|
[_TN, _TVI, _RA, _CT, _DS],
|
|
139
139
|
[0, 0, 0, [0, 4], [() => Properties, 0]],
|
|
140
140
|
];
|
|
141
|
-
export var CreateResourceOutput = [3, n0, _CRO, 0, [_PE], [[() => ProgressEvent
|
|
142
|
-
export var DeleteResourceInput = [
|
|
141
|
+
export var CreateResourceOutput$ = [3, n0, _CRO, 0, [_PE], [[() => ProgressEvent$, 0]]];
|
|
142
|
+
export var DeleteResourceInput$ = [
|
|
143
143
|
3,
|
|
144
144
|
n0,
|
|
145
145
|
_DRI,
|
|
@@ -147,8 +147,8 @@ export var DeleteResourceInput = [
|
|
|
147
147
|
[_TN, _TVI, _RA, _CT, _I],
|
|
148
148
|
[0, 0, 0, [0, 4], 0],
|
|
149
149
|
];
|
|
150
|
-
export var DeleteResourceOutput = [3, n0, _DRO, 0, [_PE], [[() => ProgressEvent
|
|
151
|
-
export var GeneralServiceException = [
|
|
150
|
+
export var DeleteResourceOutput$ = [3, n0, _DRO, 0, [_PE], [[() => ProgressEvent$, 0]]];
|
|
151
|
+
export var GeneralServiceException$ = [
|
|
152
152
|
-3,
|
|
153
153
|
n0,
|
|
154
154
|
_GSE,
|
|
@@ -156,19 +156,26 @@ export var GeneralServiceException = [
|
|
|
156
156
|
[_M],
|
|
157
157
|
[0],
|
|
158
158
|
];
|
|
159
|
-
TypeRegistry.for(n0).registerError(GeneralServiceException
|
|
160
|
-
export var GetResourceInput = [3, n0, _GRI, 0, [_TN, _TVI, _RA, _I], [0, 0, 0, 0]];
|
|
161
|
-
export var GetResourceOutput = [
|
|
162
|
-
|
|
163
|
-
|
|
159
|
+
TypeRegistry.for(n0).registerError(GeneralServiceException$, GeneralServiceException);
|
|
160
|
+
export var GetResourceInput$ = [3, n0, _GRI, 0, [_TN, _TVI, _RA, _I], [0, 0, 0, 0]];
|
|
161
|
+
export var GetResourceOutput$ = [
|
|
162
|
+
3,
|
|
163
|
+
n0,
|
|
164
|
+
_GRO,
|
|
165
|
+
0,
|
|
166
|
+
[_TN, _RD],
|
|
167
|
+
[0, [() => ResourceDescription$, 0]],
|
|
168
|
+
];
|
|
169
|
+
export var GetResourceRequestStatusInput$ = [3, n0, _GRRSI, 0, [_RT], [0]];
|
|
170
|
+
export var GetResourceRequestStatusOutput$ = [
|
|
164
171
|
3,
|
|
165
172
|
n0,
|
|
166
173
|
_GRRSO,
|
|
167
174
|
0,
|
|
168
175
|
[_PE, _HPE],
|
|
169
|
-
[[() => ProgressEvent
|
|
176
|
+
[[() => ProgressEvent$, 0], () => HooksProgressEvent],
|
|
170
177
|
];
|
|
171
|
-
export var HandlerFailureException = [
|
|
178
|
+
export var HandlerFailureException$ = [
|
|
172
179
|
-3,
|
|
173
180
|
n0,
|
|
174
181
|
_HFE,
|
|
@@ -176,8 +183,8 @@ export var HandlerFailureException = [
|
|
|
176
183
|
[_M],
|
|
177
184
|
[0],
|
|
178
185
|
];
|
|
179
|
-
TypeRegistry.for(n0).registerError(HandlerFailureException
|
|
180
|
-
export var HandlerInternalFailureException = [
|
|
186
|
+
TypeRegistry.for(n0).registerError(HandlerFailureException$, HandlerFailureException);
|
|
187
|
+
export var HandlerInternalFailureException$ = [
|
|
181
188
|
-3,
|
|
182
189
|
n0,
|
|
183
190
|
_HIFE,
|
|
@@ -185,8 +192,8 @@ export var HandlerInternalFailureException = [
|
|
|
185
192
|
[_M],
|
|
186
193
|
[0],
|
|
187
194
|
];
|
|
188
|
-
TypeRegistry.for(n0).registerError(HandlerInternalFailureException
|
|
189
|
-
export var HookProgressEvent = [
|
|
195
|
+
TypeRegistry.for(n0).registerError(HandlerInternalFailureException$, HandlerInternalFailureException);
|
|
196
|
+
export var HookProgressEvent$ = [
|
|
190
197
|
3,
|
|
191
198
|
n0,
|
|
192
199
|
_HPEo,
|
|
@@ -194,7 +201,7 @@ export var HookProgressEvent = [
|
|
|
194
201
|
[_HTN, _HTVI, _HTA, _IP, _HS, _HET, _HSM, _FM],
|
|
195
202
|
[0, 0, 0, 0, 0, 4, 0, 0],
|
|
196
203
|
];
|
|
197
|
-
export var InvalidCredentialsException = [
|
|
204
|
+
export var InvalidCredentialsException$ = [
|
|
198
205
|
-3,
|
|
199
206
|
n0,
|
|
200
207
|
_ICE,
|
|
@@ -202,8 +209,8 @@ export var InvalidCredentialsException = [
|
|
|
202
209
|
[_M],
|
|
203
210
|
[0],
|
|
204
211
|
];
|
|
205
|
-
TypeRegistry.for(n0).registerError(InvalidCredentialsException
|
|
206
|
-
export var InvalidRequestException = [
|
|
212
|
+
TypeRegistry.for(n0).registerError(InvalidCredentialsException$, InvalidCredentialsException);
|
|
213
|
+
export var InvalidRequestException$ = [
|
|
207
214
|
-3,
|
|
208
215
|
n0,
|
|
209
216
|
_IRE,
|
|
@@ -211,16 +218,16 @@ export var InvalidRequestException = [
|
|
|
211
218
|
[_M],
|
|
212
219
|
[0],
|
|
213
220
|
];
|
|
214
|
-
TypeRegistry.for(n0).registerError(InvalidRequestException
|
|
215
|
-
export var ListResourceRequestsInput = [
|
|
221
|
+
TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
222
|
+
export var ListResourceRequestsInput$ = [
|
|
216
223
|
3,
|
|
217
224
|
n0,
|
|
218
225
|
_LRRI,
|
|
219
226
|
0,
|
|
220
227
|
[_MR, _NT, _RRSF],
|
|
221
|
-
[1, 0, () => ResourceRequestStatusFilter],
|
|
228
|
+
[1, 0, () => ResourceRequestStatusFilter$],
|
|
222
229
|
];
|
|
223
|
-
export var ListResourceRequestsOutput = [
|
|
230
|
+
export var ListResourceRequestsOutput$ = [
|
|
224
231
|
3,
|
|
225
232
|
n0,
|
|
226
233
|
_LRRO,
|
|
@@ -228,7 +235,7 @@ export var ListResourceRequestsOutput = [
|
|
|
228
235
|
[_RRSS, _NT],
|
|
229
236
|
[[() => ResourceRequestStatusSummaries, 0], 0],
|
|
230
237
|
];
|
|
231
|
-
export var ListResourcesInput = [
|
|
238
|
+
export var ListResourcesInput$ = [
|
|
232
239
|
3,
|
|
233
240
|
n0,
|
|
234
241
|
_LRI,
|
|
@@ -236,7 +243,7 @@ export var ListResourcesInput = [
|
|
|
236
243
|
[_TN, _TVI, _RA, _NT, _MR, _RM],
|
|
237
244
|
[0, 0, 0, 0, 1, [() => Properties, 0]],
|
|
238
245
|
];
|
|
239
|
-
export var ListResourcesOutput = [
|
|
246
|
+
export var ListResourcesOutput$ = [
|
|
240
247
|
3,
|
|
241
248
|
n0,
|
|
242
249
|
_LRO,
|
|
@@ -244,7 +251,7 @@ export var ListResourcesOutput = [
|
|
|
244
251
|
[_TN, _RDe, _NT],
|
|
245
252
|
[0, [() => ResourceDescriptions, 0], 0],
|
|
246
253
|
];
|
|
247
|
-
export var NetworkFailureException = [
|
|
254
|
+
export var NetworkFailureException$ = [
|
|
248
255
|
-3,
|
|
249
256
|
n0,
|
|
250
257
|
_NFE,
|
|
@@ -252,8 +259,8 @@ export var NetworkFailureException = [
|
|
|
252
259
|
[_M],
|
|
253
260
|
[0],
|
|
254
261
|
];
|
|
255
|
-
TypeRegistry.for(n0).registerError(NetworkFailureException
|
|
256
|
-
export var NotStabilizedException = [
|
|
262
|
+
TypeRegistry.for(n0).registerError(NetworkFailureException$, NetworkFailureException);
|
|
263
|
+
export var NotStabilizedException$ = [
|
|
257
264
|
-3,
|
|
258
265
|
n0,
|
|
259
266
|
_NSE,
|
|
@@ -261,8 +268,8 @@ export var NotStabilizedException = [
|
|
|
261
268
|
[_M],
|
|
262
269
|
[0],
|
|
263
270
|
];
|
|
264
|
-
TypeRegistry.for(n0).registerError(NotStabilizedException
|
|
265
|
-
export var NotUpdatableException = [
|
|
271
|
+
TypeRegistry.for(n0).registerError(NotStabilizedException$, NotStabilizedException);
|
|
272
|
+
export var NotUpdatableException$ = [
|
|
266
273
|
-3,
|
|
267
274
|
n0,
|
|
268
275
|
_NUE,
|
|
@@ -270,8 +277,8 @@ export var NotUpdatableException = [
|
|
|
270
277
|
[_M],
|
|
271
278
|
[0],
|
|
272
279
|
];
|
|
273
|
-
TypeRegistry.for(n0).registerError(NotUpdatableException
|
|
274
|
-
export var PrivateTypeException = [
|
|
280
|
+
TypeRegistry.for(n0).registerError(NotUpdatableException$, NotUpdatableException);
|
|
281
|
+
export var PrivateTypeException$ = [
|
|
275
282
|
-3,
|
|
276
283
|
n0,
|
|
277
284
|
_PTE,
|
|
@@ -279,8 +286,8 @@ export var PrivateTypeException = [
|
|
|
279
286
|
[_M],
|
|
280
287
|
[0],
|
|
281
288
|
];
|
|
282
|
-
TypeRegistry.for(n0).registerError(PrivateTypeException
|
|
283
|
-
export var ProgressEvent = [
|
|
289
|
+
TypeRegistry.for(n0).registerError(PrivateTypeException$, PrivateTypeException);
|
|
290
|
+
export var ProgressEvent$ = [
|
|
284
291
|
3,
|
|
285
292
|
n0,
|
|
286
293
|
_PE,
|
|
@@ -288,7 +295,7 @@ export var ProgressEvent = [
|
|
|
288
295
|
[_TN, _I, _RT, _HRT, _O, _OS, _ET, _RM, _SM, _EC, _RAe],
|
|
289
296
|
[0, 0, 0, 0, 0, 0, 4, [() => Properties, 0], 0, 0, 4],
|
|
290
297
|
];
|
|
291
|
-
export var RequestTokenNotFoundException = [
|
|
298
|
+
export var RequestTokenNotFoundException$ = [
|
|
292
299
|
-3,
|
|
293
300
|
n0,
|
|
294
301
|
_RTNFE,
|
|
@@ -296,8 +303,8 @@ export var RequestTokenNotFoundException = [
|
|
|
296
303
|
[_M],
|
|
297
304
|
[0],
|
|
298
305
|
];
|
|
299
|
-
TypeRegistry.for(n0).registerError(RequestTokenNotFoundException
|
|
300
|
-
export var ResourceConflictException = [
|
|
306
|
+
TypeRegistry.for(n0).registerError(RequestTokenNotFoundException$, RequestTokenNotFoundException);
|
|
307
|
+
export var ResourceConflictException$ = [
|
|
301
308
|
-3,
|
|
302
309
|
n0,
|
|
303
310
|
_RCE,
|
|
@@ -305,9 +312,9 @@ export var ResourceConflictException = [
|
|
|
305
312
|
[_M],
|
|
306
313
|
[0],
|
|
307
314
|
];
|
|
308
|
-
TypeRegistry.for(n0).registerError(ResourceConflictException
|
|
309
|
-
export var ResourceDescription = [3, n0, _RD, 0, [_I, _P], [0, [() => Properties, 0]]];
|
|
310
|
-
export var ResourceNotFoundException = [
|
|
315
|
+
TypeRegistry.for(n0).registerError(ResourceConflictException$, ResourceConflictException);
|
|
316
|
+
export var ResourceDescription$ = [3, n0, _RD, 0, [_I, _P], [0, [() => Properties, 0]]];
|
|
317
|
+
export var ResourceNotFoundException$ = [
|
|
311
318
|
-3,
|
|
312
319
|
n0,
|
|
313
320
|
_RNFE,
|
|
@@ -315,9 +322,9 @@ export var ResourceNotFoundException = [
|
|
|
315
322
|
[_M],
|
|
316
323
|
[0],
|
|
317
324
|
];
|
|
318
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
319
|
-
export var ResourceRequestStatusFilter = [3, n0, _RRSF, 0, [_Op, _OSp], [64 | 0, 64 | 0]];
|
|
320
|
-
export var ServiceInternalErrorException = [
|
|
325
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
326
|
+
export var ResourceRequestStatusFilter$ = [3, n0, _RRSF, 0, [_Op, _OSp], [64 | 0, 64 | 0]];
|
|
327
|
+
export var ServiceInternalErrorException$ = [
|
|
321
328
|
-3,
|
|
322
329
|
n0,
|
|
323
330
|
_SIEE,
|
|
@@ -325,8 +332,8 @@ export var ServiceInternalErrorException = [
|
|
|
325
332
|
[_M],
|
|
326
333
|
[0],
|
|
327
334
|
];
|
|
328
|
-
TypeRegistry.for(n0).registerError(ServiceInternalErrorException
|
|
329
|
-
export var ServiceLimitExceededException = [
|
|
335
|
+
TypeRegistry.for(n0).registerError(ServiceInternalErrorException$, ServiceInternalErrorException);
|
|
336
|
+
export var ServiceLimitExceededException$ = [
|
|
330
337
|
-3,
|
|
331
338
|
n0,
|
|
332
339
|
_SLEE,
|
|
@@ -334,8 +341,8 @@ export var ServiceLimitExceededException = [
|
|
|
334
341
|
[_M],
|
|
335
342
|
[0],
|
|
336
343
|
];
|
|
337
|
-
TypeRegistry.for(n0).registerError(ServiceLimitExceededException
|
|
338
|
-
export var ThrottlingException = [
|
|
344
|
+
TypeRegistry.for(n0).registerError(ServiceLimitExceededException$, ServiceLimitExceededException);
|
|
345
|
+
export var ThrottlingException$ = [
|
|
339
346
|
-3,
|
|
340
347
|
n0,
|
|
341
348
|
_TE,
|
|
@@ -343,8 +350,8 @@ export var ThrottlingException = [
|
|
|
343
350
|
[_M],
|
|
344
351
|
[0],
|
|
345
352
|
];
|
|
346
|
-
TypeRegistry.for(n0).registerError(ThrottlingException
|
|
347
|
-
export var TypeNotFoundException = [
|
|
353
|
+
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
354
|
+
export var TypeNotFoundException$ = [
|
|
348
355
|
-3,
|
|
349
356
|
n0,
|
|
350
357
|
_TNFE,
|
|
@@ -352,8 +359,8 @@ export var TypeNotFoundException = [
|
|
|
352
359
|
[_M],
|
|
353
360
|
[0],
|
|
354
361
|
];
|
|
355
|
-
TypeRegistry.for(n0).registerError(TypeNotFoundException
|
|
356
|
-
export var UnsupportedActionException = [
|
|
362
|
+
TypeRegistry.for(n0).registerError(TypeNotFoundException$, TypeNotFoundException);
|
|
363
|
+
export var UnsupportedActionException$ = [
|
|
357
364
|
-3,
|
|
358
365
|
n0,
|
|
359
366
|
_UAE,
|
|
@@ -361,8 +368,8 @@ export var UnsupportedActionException = [
|
|
|
361
368
|
[_M],
|
|
362
369
|
[0],
|
|
363
370
|
];
|
|
364
|
-
TypeRegistry.for(n0).registerError(UnsupportedActionException
|
|
365
|
-
export var UpdateResourceInput = [
|
|
371
|
+
TypeRegistry.for(n0).registerError(UnsupportedActionException$, UnsupportedActionException);
|
|
372
|
+
export var UpdateResourceInput$ = [
|
|
366
373
|
3,
|
|
367
374
|
n0,
|
|
368
375
|
_URI,
|
|
@@ -370,61 +377,68 @@ export var UpdateResourceInput = [
|
|
|
370
377
|
[_TN, _TVI, _RA, _CT, _I, _PD],
|
|
371
378
|
[0, 0, 0, [0, 4], 0, [() => PatchDocument, 0]],
|
|
372
379
|
];
|
|
373
|
-
export var UpdateResourceOutput = [3, n0, _URO, 0, [_PE], [[() => ProgressEvent
|
|
374
|
-
export var CloudControlServiceException = [-3, _sm, "CloudControlServiceException", 0, [], []];
|
|
375
|
-
TypeRegistry.for(_sm).registerError(CloudControlServiceException
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
export var CancelResourceRequest = [
|
|
380
|
+
export var UpdateResourceOutput$ = [3, n0, _URO, 0, [_PE], [[() => ProgressEvent$, 0]]];
|
|
381
|
+
export var CloudControlServiceException$ = [-3, _sm, "CloudControlServiceException", 0, [], []];
|
|
382
|
+
TypeRegistry.for(_sm).registerError(CloudControlServiceException$, CloudControlServiceException);
|
|
383
|
+
var HooksProgressEvent = [1, n0, _HPE, 0, () => HookProgressEvent$];
|
|
384
|
+
var Operations = 64 | 0;
|
|
385
|
+
var OperationStatuses = 64 | 0;
|
|
386
|
+
var ResourceDescriptions = [1, n0, _RDe, 0, [() => ResourceDescription$, 0]];
|
|
387
|
+
var ResourceRequestStatusSummaries = [1, n0, _RRSS, 0, [() => ProgressEvent$, 0]];
|
|
388
|
+
export var CancelResourceRequest$ = [
|
|
382
389
|
9,
|
|
383
390
|
n0,
|
|
384
391
|
_CRR,
|
|
385
392
|
2,
|
|
386
|
-
() => CancelResourceRequestInput
|
|
387
|
-
() => CancelResourceRequestOutput
|
|
393
|
+
() => CancelResourceRequestInput$,
|
|
394
|
+
() => CancelResourceRequestOutput$,
|
|
388
395
|
];
|
|
389
|
-
export var CreateResource = [
|
|
396
|
+
export var CreateResource$ = [
|
|
390
397
|
9,
|
|
391
398
|
n0,
|
|
392
399
|
_CR,
|
|
393
400
|
0,
|
|
394
|
-
() => CreateResourceInput
|
|
395
|
-
() => CreateResourceOutput
|
|
401
|
+
() => CreateResourceInput$,
|
|
402
|
+
() => CreateResourceOutput$,
|
|
396
403
|
];
|
|
397
|
-
export var DeleteResource = [
|
|
404
|
+
export var DeleteResource$ = [
|
|
398
405
|
9,
|
|
399
406
|
n0,
|
|
400
407
|
_DR,
|
|
401
408
|
0,
|
|
402
|
-
() => DeleteResourceInput
|
|
403
|
-
() => DeleteResourceOutput
|
|
409
|
+
() => DeleteResourceInput$,
|
|
410
|
+
() => DeleteResourceOutput$,
|
|
404
411
|
];
|
|
405
|
-
export var GetResource = [9, n0, _GR, 0, () => GetResourceInput
|
|
406
|
-
export var GetResourceRequestStatus = [
|
|
412
|
+
export var GetResource$ = [9, n0, _GR, 0, () => GetResourceInput$, () => GetResourceOutput$];
|
|
413
|
+
export var GetResourceRequestStatus$ = [
|
|
407
414
|
9,
|
|
408
415
|
n0,
|
|
409
416
|
_GRRS,
|
|
410
417
|
0,
|
|
411
|
-
() => GetResourceRequestStatusInput
|
|
412
|
-
() => GetResourceRequestStatusOutput
|
|
418
|
+
() => GetResourceRequestStatusInput$,
|
|
419
|
+
() => GetResourceRequestStatusOutput$,
|
|
413
420
|
];
|
|
414
|
-
export var ListResourceRequests = [
|
|
421
|
+
export var ListResourceRequests$ = [
|
|
415
422
|
9,
|
|
416
423
|
n0,
|
|
417
424
|
_LRR,
|
|
418
425
|
0,
|
|
419
|
-
() => ListResourceRequestsInput
|
|
420
|
-
() => ListResourceRequestsOutput
|
|
426
|
+
() => ListResourceRequestsInput$,
|
|
427
|
+
() => ListResourceRequestsOutput$,
|
|
428
|
+
];
|
|
429
|
+
export var ListResources$ = [
|
|
430
|
+
9,
|
|
431
|
+
n0,
|
|
432
|
+
_LR,
|
|
433
|
+
0,
|
|
434
|
+
() => ListResourcesInput$,
|
|
435
|
+
() => ListResourcesOutput$,
|
|
421
436
|
];
|
|
422
|
-
export var
|
|
423
|
-
export var UpdateResource = [
|
|
437
|
+
export var UpdateResource$ = [
|
|
424
438
|
9,
|
|
425
439
|
n0,
|
|
426
440
|
_UR,
|
|
427
441
|
0,
|
|
428
|
-
() => UpdateResourceInput
|
|
429
|
-
() => UpdateResourceOutput
|
|
442
|
+
() => UpdateResourceInput$,
|
|
443
|
+
() => UpdateResourceOutput$,
|
|
430
444
|
];
|
|
@@ -5,7 +5,7 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type
|
|
8
|
+
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CancelResourceRequestCommandInput, CancelResourceRequestCommandOutput } from "./commands/CancelResourceRequestCommand";
|
|
11
11
|
import { CreateResourceCommandInput, CreateResourceCommandOutput } from "./commands/CreateResourceCommand";
|
|
@@ -149,15 +149,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
149
149
|
* Optional extensions
|
|
150
150
|
*/
|
|
151
151
|
extensions?: RuntimeExtension[];
|
|
152
|
-
/**
|
|
153
|
-
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
154
|
-
* may be overridden. A default will always be set by the client.
|
|
155
|
-
* Available options depend on the service's supported protocols and will not be validated by
|
|
156
|
-
* the client.
|
|
157
|
-
* @alpha
|
|
158
|
-
*
|
|
159
|
-
*/
|
|
160
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
161
152
|
/**
|
|
162
153
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
163
154
|
*/
|