@aws-sdk/client-workspaces 3.716.0 → 3.723.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 +521 -384
- package/dist-es/WorkSpacesClient.js +1 -0
- package/dist-es/models/models_0.js +44 -40
- package/dist-es/models/models_1.js +4 -4
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class WorkSpacesClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -7,63 +7,64 @@ export const AccountLinkStatusEnum = {
|
|
|
7
7
|
REJECTED: "REJECTED",
|
|
8
8
|
};
|
|
9
9
|
export class AccessDeniedException extends __BaseException {
|
|
10
|
+
name = "AccessDeniedException";
|
|
11
|
+
$fault = "client";
|
|
10
12
|
constructor(opts) {
|
|
11
13
|
super({
|
|
12
14
|
name: "AccessDeniedException",
|
|
13
15
|
$fault: "client",
|
|
14
16
|
...opts,
|
|
15
17
|
});
|
|
16
|
-
this.name = "AccessDeniedException";
|
|
17
|
-
this.$fault = "client";
|
|
18
18
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
export class ConflictException extends __BaseException {
|
|
22
|
+
name = "ConflictException";
|
|
23
|
+
$fault = "client";
|
|
22
24
|
constructor(opts) {
|
|
23
25
|
super({
|
|
24
26
|
name: "ConflictException",
|
|
25
27
|
$fault: "client",
|
|
26
28
|
...opts,
|
|
27
29
|
});
|
|
28
|
-
this.name = "ConflictException";
|
|
29
|
-
this.$fault = "client";
|
|
30
30
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
export class InternalServerException extends __BaseException {
|
|
34
|
+
name = "InternalServerException";
|
|
35
|
+
$fault = "client";
|
|
34
36
|
constructor(opts) {
|
|
35
37
|
super({
|
|
36
38
|
name: "InternalServerException",
|
|
37
39
|
$fault: "client",
|
|
38
40
|
...opts,
|
|
39
41
|
});
|
|
40
|
-
this.name = "InternalServerException";
|
|
41
|
-
this.$fault = "client";
|
|
42
42
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
export class ResourceNotFoundException extends __BaseException {
|
|
46
|
+
name = "ResourceNotFoundException";
|
|
47
|
+
$fault = "client";
|
|
48
|
+
ResourceId;
|
|
46
49
|
constructor(opts) {
|
|
47
50
|
super({
|
|
48
51
|
name: "ResourceNotFoundException",
|
|
49
52
|
$fault: "client",
|
|
50
53
|
...opts,
|
|
51
54
|
});
|
|
52
|
-
this.name = "ResourceNotFoundException";
|
|
53
|
-
this.$fault = "client";
|
|
54
55
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
55
56
|
this.ResourceId = opts.ResourceId;
|
|
56
57
|
}
|
|
57
58
|
}
|
|
58
59
|
export class ValidationException extends __BaseException {
|
|
60
|
+
name = "ValidationException";
|
|
61
|
+
$fault = "client";
|
|
59
62
|
constructor(opts) {
|
|
60
63
|
super({
|
|
61
64
|
name: "ValidationException",
|
|
62
65
|
$fault: "client",
|
|
63
66
|
...opts,
|
|
64
67
|
});
|
|
65
|
-
this.name = "ValidationException";
|
|
66
|
-
this.$fault = "client";
|
|
67
68
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
68
69
|
}
|
|
69
70
|
}
|
|
@@ -108,14 +109,14 @@ export const ApplicationAssociatedResourceType = {
|
|
|
108
109
|
WORKSPACE: "WORKSPACE",
|
|
109
110
|
};
|
|
110
111
|
export class ApplicationNotSupportedException extends __BaseException {
|
|
112
|
+
name = "ApplicationNotSupportedException";
|
|
113
|
+
$fault = "client";
|
|
111
114
|
constructor(opts) {
|
|
112
115
|
super({
|
|
113
116
|
name: "ApplicationNotSupportedException",
|
|
114
117
|
$fault: "client",
|
|
115
118
|
...opts,
|
|
116
119
|
});
|
|
117
|
-
this.name = "ApplicationNotSupportedException";
|
|
118
|
-
this.$fault = "client";
|
|
119
120
|
Object.setPrototypeOf(this, ApplicationNotSupportedException.prototype);
|
|
120
121
|
}
|
|
121
122
|
}
|
|
@@ -142,63 +143,64 @@ export const ApplicationSettingsStatusEnum = {
|
|
|
142
143
|
ENABLED: "ENABLED",
|
|
143
144
|
};
|
|
144
145
|
export class InvalidParameterValuesException extends __BaseException {
|
|
146
|
+
name = "InvalidParameterValuesException";
|
|
147
|
+
$fault = "client";
|
|
145
148
|
constructor(opts) {
|
|
146
149
|
super({
|
|
147
150
|
name: "InvalidParameterValuesException",
|
|
148
151
|
$fault: "client",
|
|
149
152
|
...opts,
|
|
150
153
|
});
|
|
151
|
-
this.name = "InvalidParameterValuesException";
|
|
152
|
-
this.$fault = "client";
|
|
153
154
|
Object.setPrototypeOf(this, InvalidParameterValuesException.prototype);
|
|
154
155
|
}
|
|
155
156
|
}
|
|
156
157
|
export class InvalidResourceStateException extends __BaseException {
|
|
158
|
+
name = "InvalidResourceStateException";
|
|
159
|
+
$fault = "client";
|
|
157
160
|
constructor(opts) {
|
|
158
161
|
super({
|
|
159
162
|
name: "InvalidResourceStateException",
|
|
160
163
|
$fault: "client",
|
|
161
164
|
...opts,
|
|
162
165
|
});
|
|
163
|
-
this.name = "InvalidResourceStateException";
|
|
164
|
-
this.$fault = "client";
|
|
165
166
|
Object.setPrototypeOf(this, InvalidResourceStateException.prototype);
|
|
166
167
|
}
|
|
167
168
|
}
|
|
168
169
|
export class OperationNotSupportedException extends __BaseException {
|
|
170
|
+
name = "OperationNotSupportedException";
|
|
171
|
+
$fault = "client";
|
|
172
|
+
reason;
|
|
169
173
|
constructor(opts) {
|
|
170
174
|
super({
|
|
171
175
|
name: "OperationNotSupportedException",
|
|
172
176
|
$fault: "client",
|
|
173
177
|
...opts,
|
|
174
178
|
});
|
|
175
|
-
this.name = "OperationNotSupportedException";
|
|
176
|
-
this.$fault = "client";
|
|
177
179
|
Object.setPrototypeOf(this, OperationNotSupportedException.prototype);
|
|
178
180
|
this.reason = opts.reason;
|
|
179
181
|
}
|
|
180
182
|
}
|
|
181
183
|
export class ResourceAssociatedException extends __BaseException {
|
|
184
|
+
name = "ResourceAssociatedException";
|
|
185
|
+
$fault = "client";
|
|
182
186
|
constructor(opts) {
|
|
183
187
|
super({
|
|
184
188
|
name: "ResourceAssociatedException",
|
|
185
189
|
$fault: "client",
|
|
186
190
|
...opts,
|
|
187
191
|
});
|
|
188
|
-
this.name = "ResourceAssociatedException";
|
|
189
|
-
this.$fault = "client";
|
|
190
192
|
Object.setPrototypeOf(this, ResourceAssociatedException.prototype);
|
|
191
193
|
}
|
|
192
194
|
}
|
|
193
195
|
export class ResourceLimitExceededException extends __BaseException {
|
|
196
|
+
name = "ResourceLimitExceededException";
|
|
197
|
+
$fault = "client";
|
|
194
198
|
constructor(opts) {
|
|
195
199
|
super({
|
|
196
200
|
name: "ResourceLimitExceededException",
|
|
197
201
|
$fault: "client",
|
|
198
202
|
...opts,
|
|
199
203
|
});
|
|
200
|
-
this.name = "ResourceLimitExceededException";
|
|
201
|
-
this.$fault = "client";
|
|
202
204
|
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
203
205
|
}
|
|
204
206
|
}
|
|
@@ -206,62 +208,63 @@ export const WorkSpaceAssociatedResourceType = {
|
|
|
206
208
|
APPLICATION: "APPLICATION",
|
|
207
209
|
};
|
|
208
210
|
export class ComputeNotCompatibleException extends __BaseException {
|
|
211
|
+
name = "ComputeNotCompatibleException";
|
|
212
|
+
$fault = "client";
|
|
209
213
|
constructor(opts) {
|
|
210
214
|
super({
|
|
211
215
|
name: "ComputeNotCompatibleException",
|
|
212
216
|
$fault: "client",
|
|
213
217
|
...opts,
|
|
214
218
|
});
|
|
215
|
-
this.name = "ComputeNotCompatibleException";
|
|
216
|
-
this.$fault = "client";
|
|
217
219
|
Object.setPrototypeOf(this, ComputeNotCompatibleException.prototype);
|
|
218
220
|
}
|
|
219
221
|
}
|
|
220
222
|
export class IncompatibleApplicationsException extends __BaseException {
|
|
223
|
+
name = "IncompatibleApplicationsException";
|
|
224
|
+
$fault = "client";
|
|
221
225
|
constructor(opts) {
|
|
222
226
|
super({
|
|
223
227
|
name: "IncompatibleApplicationsException",
|
|
224
228
|
$fault: "client",
|
|
225
229
|
...opts,
|
|
226
230
|
});
|
|
227
|
-
this.name = "IncompatibleApplicationsException";
|
|
228
|
-
this.$fault = "client";
|
|
229
231
|
Object.setPrototypeOf(this, IncompatibleApplicationsException.prototype);
|
|
230
232
|
}
|
|
231
233
|
}
|
|
232
234
|
export class OperatingSystemNotCompatibleException extends __BaseException {
|
|
235
|
+
name = "OperatingSystemNotCompatibleException";
|
|
236
|
+
$fault = "client";
|
|
233
237
|
constructor(opts) {
|
|
234
238
|
super({
|
|
235
239
|
name: "OperatingSystemNotCompatibleException",
|
|
236
240
|
$fault: "client",
|
|
237
241
|
...opts,
|
|
238
242
|
});
|
|
239
|
-
this.name = "OperatingSystemNotCompatibleException";
|
|
240
|
-
this.$fault = "client";
|
|
241
243
|
Object.setPrototypeOf(this, OperatingSystemNotCompatibleException.prototype);
|
|
242
244
|
}
|
|
243
245
|
}
|
|
244
246
|
export class ResourceAlreadyExistsException extends __BaseException {
|
|
247
|
+
name = "ResourceAlreadyExistsException";
|
|
248
|
+
$fault = "client";
|
|
245
249
|
constructor(opts) {
|
|
246
250
|
super({
|
|
247
251
|
name: "ResourceAlreadyExistsException",
|
|
248
252
|
$fault: "client",
|
|
249
253
|
...opts,
|
|
250
254
|
});
|
|
251
|
-
this.name = "ResourceAlreadyExistsException";
|
|
252
|
-
this.$fault = "client";
|
|
253
255
|
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
254
256
|
}
|
|
255
257
|
}
|
|
256
258
|
export class ResourceInUseException extends __BaseException {
|
|
259
|
+
name = "ResourceInUseException";
|
|
260
|
+
$fault = "client";
|
|
261
|
+
ResourceId;
|
|
257
262
|
constructor(opts) {
|
|
258
263
|
super({
|
|
259
264
|
name: "ResourceInUseException",
|
|
260
265
|
$fault: "client",
|
|
261
266
|
...opts,
|
|
262
267
|
});
|
|
263
|
-
this.name = "ResourceInUseException";
|
|
264
|
-
this.$fault = "client";
|
|
265
268
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
266
269
|
this.ResourceId = opts.ResourceId;
|
|
267
270
|
}
|
|
@@ -330,27 +333,28 @@ export const ConnectionState = {
|
|
|
330
333
|
UNKNOWN: "UNKNOWN",
|
|
331
334
|
};
|
|
332
335
|
export class ResourceUnavailableException extends __BaseException {
|
|
336
|
+
name = "ResourceUnavailableException";
|
|
337
|
+
$fault = "client";
|
|
338
|
+
ResourceId;
|
|
333
339
|
constructor(opts) {
|
|
334
340
|
super({
|
|
335
341
|
name: "ResourceUnavailableException",
|
|
336
342
|
$fault: "client",
|
|
337
343
|
...opts,
|
|
338
344
|
});
|
|
339
|
-
this.name = "ResourceUnavailableException";
|
|
340
|
-
this.$fault = "client";
|
|
341
345
|
Object.setPrototypeOf(this, ResourceUnavailableException.prototype);
|
|
342
346
|
this.ResourceId = opts.ResourceId;
|
|
343
347
|
}
|
|
344
348
|
}
|
|
345
349
|
export class ResourceCreationFailedException extends __BaseException {
|
|
350
|
+
name = "ResourceCreationFailedException";
|
|
351
|
+
$fault = "client";
|
|
346
352
|
constructor(opts) {
|
|
347
353
|
super({
|
|
348
354
|
name: "ResourceCreationFailedException",
|
|
349
355
|
$fault: "client",
|
|
350
356
|
...opts,
|
|
351
357
|
});
|
|
352
|
-
this.name = "ResourceCreationFailedException";
|
|
353
|
-
this.$fault = "client";
|
|
354
358
|
Object.setPrototypeOf(this, ResourceCreationFailedException.prototype);
|
|
355
359
|
}
|
|
356
360
|
}
|
|
@@ -636,26 +640,26 @@ export const WorkspaceImageIngestionProcess = {
|
|
|
636
640
|
BYOL_REGULAR_WSP: "BYOL_REGULAR_WSP",
|
|
637
641
|
};
|
|
638
642
|
export class OperationInProgressException extends __BaseException {
|
|
643
|
+
name = "OperationInProgressException";
|
|
644
|
+
$fault = "client";
|
|
639
645
|
constructor(opts) {
|
|
640
646
|
super({
|
|
641
647
|
name: "OperationInProgressException",
|
|
642
648
|
$fault: "client",
|
|
643
649
|
...opts,
|
|
644
650
|
});
|
|
645
|
-
this.name = "OperationInProgressException";
|
|
646
|
-
this.$fault = "client";
|
|
647
651
|
Object.setPrototypeOf(this, OperationInProgressException.prototype);
|
|
648
652
|
}
|
|
649
653
|
}
|
|
650
654
|
export class UnsupportedWorkspaceConfigurationException extends __BaseException {
|
|
655
|
+
name = "UnsupportedWorkspaceConfigurationException";
|
|
656
|
+
$fault = "client";
|
|
651
657
|
constructor(opts) {
|
|
652
658
|
super({
|
|
653
659
|
name: "UnsupportedWorkspaceConfigurationException",
|
|
654
660
|
$fault: "client",
|
|
655
661
|
...opts,
|
|
656
662
|
});
|
|
657
|
-
this.name = "UnsupportedWorkspaceConfigurationException";
|
|
658
|
-
this.$fault = "client";
|
|
659
663
|
Object.setPrototypeOf(this, UnsupportedWorkspaceConfigurationException.prototype);
|
|
660
664
|
}
|
|
661
665
|
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { WorkSpacesServiceException as __BaseException } from "./WorkSpacesServiceException";
|
|
2
2
|
export class UnsupportedNetworkConfigurationException extends __BaseException {
|
|
3
|
+
name = "UnsupportedNetworkConfigurationException";
|
|
4
|
+
$fault = "client";
|
|
3
5
|
constructor(opts) {
|
|
4
6
|
super({
|
|
5
7
|
name: "UnsupportedNetworkConfigurationException",
|
|
6
8
|
$fault: "client",
|
|
7
9
|
...opts,
|
|
8
10
|
});
|
|
9
|
-
this.name = "UnsupportedNetworkConfigurationException";
|
|
10
|
-
this.$fault = "client";
|
|
11
11
|
Object.setPrototypeOf(this, UnsupportedNetworkConfigurationException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
export class WorkspacesDefaultRoleNotFoundException extends __BaseException {
|
|
15
|
+
name = "WorkspacesDefaultRoleNotFoundException";
|
|
16
|
+
$fault = "client";
|
|
15
17
|
constructor(opts) {
|
|
16
18
|
super({
|
|
17
19
|
name: "WorkspacesDefaultRoleNotFoundException",
|
|
18
20
|
$fault: "client",
|
|
19
21
|
...opts,
|
|
20
22
|
});
|
|
21
|
-
this.name = "WorkspacesDefaultRoleNotFoundException";
|
|
22
|
-
this.$fault = "client";
|
|
23
23
|
Object.setPrototypeOf(this, WorkspacesDefaultRoleNotFoundException.prototype);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: WorkSpacesClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workspaces",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workspaces Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-workspaces",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|