@aws-sdk/client-workspaces-thin-client 3.458.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/LICENSE +201 -0
- package/README.md +344 -0
- package/dist-cjs/WorkSpacesThin.js +43 -0
- package/dist-cjs/WorkSpacesThinClientClient.js +43 -0
- package/dist-cjs/commands/CreateEnvironmentCommand.js +52 -0
- package/dist-cjs/commands/DeleteDeviceCommand.js +51 -0
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +51 -0
- package/dist-cjs/commands/DeregisterDeviceCommand.js +51 -0
- package/dist-cjs/commands/GetDeviceCommand.js +52 -0
- package/dist-cjs/commands/GetEnvironmentCommand.js +52 -0
- package/dist-cjs/commands/GetSoftwareSetCommand.js +51 -0
- package/dist-cjs/commands/ListDevicesCommand.js +52 -0
- package/dist-cjs/commands/ListEnvironmentsCommand.js +52 -0
- package/dist-cjs/commands/ListSoftwareSetsCommand.js +51 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +52 -0
- package/dist-cjs/commands/TagResourceCommand.js +52 -0
- package/dist-cjs/commands/UntagResourceCommand.js +52 -0
- package/dist-cjs/commands/UpdateDeviceCommand.js +52 -0
- package/dist-cjs/commands/UpdateEnvironmentCommand.js +52 -0
- package/dist-cjs/commands/UpdateSoftwareSetCommand.js +51 -0
- package/dist-cjs/commands/index.js +19 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/WorkSpacesThinClientServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +287 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListDevicesPaginator.js +29 -0
- package/dist-cjs/pagination/ListEnvironmentsPaginator.js +29 -0
- package/dist-cjs/pagination/ListSoftwareSetsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1486 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/WorkSpacesThin.js +39 -0
- package/dist-es/WorkSpacesThinClientClient.js +39 -0
- package/dist-es/commands/CreateEnvironmentCommand.js +48 -0
- package/dist-es/commands/DeleteDeviceCommand.js +47 -0
- package/dist-es/commands/DeleteEnvironmentCommand.js +47 -0
- package/dist-es/commands/DeregisterDeviceCommand.js +47 -0
- package/dist-es/commands/GetDeviceCommand.js +48 -0
- package/dist-es/commands/GetEnvironmentCommand.js +48 -0
- package/dist-es/commands/GetSoftwareSetCommand.js +47 -0
- package/dist-es/commands/ListDevicesCommand.js +48 -0
- package/dist-es/commands/ListEnvironmentsCommand.js +48 -0
- package/dist-es/commands/ListSoftwareSetsCommand.js +47 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +48 -0
- package/dist-es/commands/TagResourceCommand.js +48 -0
- package/dist-es/commands/UntagResourceCommand.js +48 -0
- package/dist-es/commands/UpdateDeviceCommand.js +48 -0
- package/dist-es/commands/UpdateEnvironmentCommand.js +48 -0
- package/dist-es/commands/UpdateSoftwareSetCommand.js +47 -0
- package/dist-es/commands/index.js +16 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/WorkSpacesThinClientServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +258 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListDevicesPaginator.js +25 -0
- package/dist-es/pagination/ListEnvironmentsPaginator.js +25 -0
- package/dist-es/pagination/ListSoftwareSetsPaginator.js +25 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +1451 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/WorkSpacesThin.d.ts +133 -0
- package/dist-types/WorkSpacesThinClientClient.d.ts +196 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +146 -0
- package/dist-types/commands/DeleteDeviceCommand.d.ts +92 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +92 -0
- package/dist-types/commands/DeregisterDeviceCommand.d.ts +93 -0
- package/dist-types/commands/GetDeviceCommand.d.ts +113 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +121 -0
- package/dist-types/commands/GetSoftwareSetCommand.d.ts +101 -0
- package/dist-types/commands/ListDevicesCommand.d.ts +109 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +118 -0
- package/dist-types/commands/ListSoftwareSetsCommand.d.ts +96 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +84 -0
- package/dist-types/commands/TagResourceCommand.d.ts +83 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
- package/dist-types/commands/UpdateDeviceCommand.d.ts +112 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +134 -0
- package/dist-types/commands/UpdateSoftwareSetCommand.d.ts +87 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +26 -0
- package/dist-types/models/WorkSpacesThinClientServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1506 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListDevicesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSoftwareSetsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/WorkSpacesThin.d.ts +279 -0
- package/dist-types/ts3.4/WorkSpacesThinClientClient.d.ts +217 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteDeviceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeregisterDeviceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSoftwareSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSoftwareSetsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateDeviceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateSoftwareSetCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/WorkSpacesThinClientServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +440 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDevicesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSoftwareSetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +104 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDevicesCommandInput,
|
|
4
|
+
ListDevicesCommandOutput,
|
|
5
|
+
} from "../commands/ListDevicesCommand";
|
|
6
|
+
import { WorkSpacesThinPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListDevices(
|
|
8
|
+
config: WorkSpacesThinPaginationConfiguration,
|
|
9
|
+
input: ListDevicesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListDevicesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEnvironmentsCommandInput,
|
|
4
|
+
ListEnvironmentsCommandOutput,
|
|
5
|
+
} from "../commands/ListEnvironmentsCommand";
|
|
6
|
+
import { WorkSpacesThinPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListEnvironments(
|
|
8
|
+
config: WorkSpacesThinPaginationConfiguration,
|
|
9
|
+
input: ListEnvironmentsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListEnvironmentsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSoftwareSetsCommandInput,
|
|
4
|
+
ListSoftwareSetsCommandOutput,
|
|
5
|
+
} from "../commands/ListSoftwareSetsCommand";
|
|
6
|
+
import { WorkSpacesThinPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListSoftwareSets(
|
|
8
|
+
config: WorkSpacesThinPaginationConfiguration,
|
|
9
|
+
input: ListSoftwareSetsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListSoftwareSetsCommandOutput>;
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateEnvironmentCommandInput,
|
|
8
|
+
CreateEnvironmentCommandOutput,
|
|
9
|
+
} from "../commands/CreateEnvironmentCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteDeviceCommandInput,
|
|
12
|
+
DeleteDeviceCommandOutput,
|
|
13
|
+
} from "../commands/DeleteDeviceCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteEnvironmentCommandInput,
|
|
16
|
+
DeleteEnvironmentCommandOutput,
|
|
17
|
+
} from "../commands/DeleteEnvironmentCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeregisterDeviceCommandInput,
|
|
20
|
+
DeregisterDeviceCommandOutput,
|
|
21
|
+
} from "../commands/DeregisterDeviceCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetDeviceCommandInput,
|
|
24
|
+
GetDeviceCommandOutput,
|
|
25
|
+
} from "../commands/GetDeviceCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetEnvironmentCommandInput,
|
|
28
|
+
GetEnvironmentCommandOutput,
|
|
29
|
+
} from "../commands/GetEnvironmentCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetSoftwareSetCommandInput,
|
|
32
|
+
GetSoftwareSetCommandOutput,
|
|
33
|
+
} from "../commands/GetSoftwareSetCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListDevicesCommandInput,
|
|
36
|
+
ListDevicesCommandOutput,
|
|
37
|
+
} from "../commands/ListDevicesCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListEnvironmentsCommandInput,
|
|
40
|
+
ListEnvironmentsCommandOutput,
|
|
41
|
+
} from "../commands/ListEnvironmentsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListSoftwareSetsCommandInput,
|
|
44
|
+
ListSoftwareSetsCommandOutput,
|
|
45
|
+
} from "../commands/ListSoftwareSetsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListTagsForResourceCommandInput,
|
|
48
|
+
ListTagsForResourceCommandOutput,
|
|
49
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
TagResourceCommandInput,
|
|
52
|
+
TagResourceCommandOutput,
|
|
53
|
+
} from "../commands/TagResourceCommand";
|
|
54
|
+
import {
|
|
55
|
+
UntagResourceCommandInput,
|
|
56
|
+
UntagResourceCommandOutput,
|
|
57
|
+
} from "../commands/UntagResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
UpdateDeviceCommandInput,
|
|
60
|
+
UpdateDeviceCommandOutput,
|
|
61
|
+
} from "../commands/UpdateDeviceCommand";
|
|
62
|
+
import {
|
|
63
|
+
UpdateEnvironmentCommandInput,
|
|
64
|
+
UpdateEnvironmentCommandOutput,
|
|
65
|
+
} from "../commands/UpdateEnvironmentCommand";
|
|
66
|
+
import {
|
|
67
|
+
UpdateSoftwareSetCommandInput,
|
|
68
|
+
UpdateSoftwareSetCommandOutput,
|
|
69
|
+
} from "../commands/UpdateSoftwareSetCommand";
|
|
70
|
+
export declare const se_CreateEnvironmentCommand: (
|
|
71
|
+
input: CreateEnvironmentCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const se_DeleteDeviceCommand: (
|
|
75
|
+
input: DeleteDeviceCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const se_DeleteEnvironmentCommand: (
|
|
79
|
+
input: DeleteEnvironmentCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const se_DeregisterDeviceCommand: (
|
|
83
|
+
input: DeregisterDeviceCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_GetDeviceCommand: (
|
|
87
|
+
input: GetDeviceCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const se_GetEnvironmentCommand: (
|
|
91
|
+
input: GetEnvironmentCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_GetSoftwareSetCommand: (
|
|
95
|
+
input: GetSoftwareSetCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_ListDevicesCommand: (
|
|
99
|
+
input: ListDevicesCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const se_ListEnvironmentsCommand: (
|
|
103
|
+
input: ListEnvironmentsCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const se_ListSoftwareSetsCommand: (
|
|
107
|
+
input: ListSoftwareSetsCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const se_ListTagsForResourceCommand: (
|
|
111
|
+
input: ListTagsForResourceCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const se_TagResourceCommand: (
|
|
115
|
+
input: TagResourceCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const se_UntagResourceCommand: (
|
|
119
|
+
input: UntagResourceCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const se_UpdateDeviceCommand: (
|
|
123
|
+
input: UpdateDeviceCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_UpdateEnvironmentCommand: (
|
|
127
|
+
input: UpdateEnvironmentCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_UpdateSoftwareSetCommand: (
|
|
131
|
+
input: UpdateSoftwareSetCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const de_CreateEnvironmentCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<CreateEnvironmentCommandOutput>;
|
|
138
|
+
export declare const de_DeleteDeviceCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<DeleteDeviceCommandOutput>;
|
|
142
|
+
export declare const de_DeleteEnvironmentCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<DeleteEnvironmentCommandOutput>;
|
|
146
|
+
export declare const de_DeregisterDeviceCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<DeregisterDeviceCommandOutput>;
|
|
150
|
+
export declare const de_GetDeviceCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<GetDeviceCommandOutput>;
|
|
154
|
+
export declare const de_GetEnvironmentCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<GetEnvironmentCommandOutput>;
|
|
158
|
+
export declare const de_GetSoftwareSetCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<GetSoftwareSetCommandOutput>;
|
|
162
|
+
export declare const de_ListDevicesCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<ListDevicesCommandOutput>;
|
|
166
|
+
export declare const de_ListEnvironmentsCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<ListEnvironmentsCommandOutput>;
|
|
170
|
+
export declare const de_ListSoftwareSetsCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<ListSoftwareSetsCommandOutput>;
|
|
174
|
+
export declare const de_ListTagsForResourceCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
178
|
+
export declare const de_TagResourceCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<TagResourceCommandOutput>;
|
|
182
|
+
export declare const de_UntagResourceCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
186
|
+
export declare const de_UpdateDeviceCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<UpdateDeviceCommandOutput>;
|
|
190
|
+
export declare const de_UpdateEnvironmentCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<UpdateEnvironmentCommandOutput>;
|
|
194
|
+
export declare const de_UpdateSoftwareSetCommand: (
|
|
195
|
+
output: __HttpResponse,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<UpdateSoftwareSetCommandOutput>;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: WorkSpacesThinClientClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
15
|
+
import("@smithy/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@smithy/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@smithy/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@smithy/types").RequestHandler<
|
|
26
|
+
import("@smithy/protocol-http").HttpRequest,
|
|
27
|
+
import("@smithy/protocol-http").HttpResponse,
|
|
28
|
+
import("@smithy/types").HttpHandlerOptions
|
|
29
|
+
> & {
|
|
30
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
31
|
+
httpHandlerConfigs(): {};
|
|
32
|
+
})
|
|
33
|
+
| RequestHandler;
|
|
34
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
35
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
36
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
37
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
38
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
39
|
+
apiVersion: string;
|
|
40
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
41
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
42
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
43
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
44
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
45
|
+
disableHostPrefix: boolean;
|
|
46
|
+
serviceId: string;
|
|
47
|
+
logger: import("@smithy/types").Logger;
|
|
48
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
49
|
+
endpoint?:
|
|
50
|
+
| ((
|
|
51
|
+
| string
|
|
52
|
+
| import("@smithy/types").Endpoint
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
54
|
+
| import("@smithy/types").EndpointV2
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
56
|
+
) &
|
|
57
|
+
(
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Provider<string>
|
|
60
|
+
| import("@smithy/types").Endpoint
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
|
+
| import("@smithy/types").EndpointV2
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
64
|
+
))
|
|
65
|
+
| undefined;
|
|
66
|
+
endpointProvider: (
|
|
67
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
68
|
+
context?: {
|
|
69
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
70
|
+
}
|
|
71
|
+
) => import("@smithy/types").EndpointV2;
|
|
72
|
+
tls?: boolean | undefined;
|
|
73
|
+
retryStrategy?:
|
|
74
|
+
| import("@smithy/types").RetryStrategy
|
|
75
|
+
| import("@smithy/types").RetryStrategyV2
|
|
76
|
+
| undefined;
|
|
77
|
+
credentials?:
|
|
78
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
79
|
+
| import("@smithy/types").Provider<
|
|
80
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
81
|
+
>
|
|
82
|
+
| undefined;
|
|
83
|
+
signer?:
|
|
84
|
+
| import("@smithy/types").RequestSigner
|
|
85
|
+
| ((
|
|
86
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
87
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
88
|
+
| undefined;
|
|
89
|
+
signingEscapePath?: boolean | undefined;
|
|
90
|
+
systemClockOffset?: number | undefined;
|
|
91
|
+
signingRegion?: string | undefined;
|
|
92
|
+
signerConstructor?:
|
|
93
|
+
| (new (
|
|
94
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
96
|
+
) => import("@smithy/types").RequestSigner)
|
|
97
|
+
| undefined;
|
|
98
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
99
|
+
};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: WorkSpacesThinClientClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
15
|
+
import("@smithy/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@smithy/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@smithy/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@smithy/types").RequestHandler<
|
|
26
|
+
import("@smithy/protocol-http").HttpRequest,
|
|
27
|
+
import("@smithy/protocol-http").HttpResponse,
|
|
28
|
+
import("@smithy/types").HttpHandlerOptions
|
|
29
|
+
> & {
|
|
30
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
31
|
+
httpHandlerConfigs(): {};
|
|
32
|
+
})
|
|
33
|
+
| RequestHandler;
|
|
34
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
35
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
36
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
37
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
38
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
39
|
+
apiVersion: string;
|
|
40
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
41
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
42
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
43
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
44
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
45
|
+
disableHostPrefix: boolean;
|
|
46
|
+
serviceId: string;
|
|
47
|
+
logger: import("@smithy/types").Logger;
|
|
48
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
49
|
+
endpoint?:
|
|
50
|
+
| ((
|
|
51
|
+
| string
|
|
52
|
+
| import("@smithy/types").Endpoint
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
54
|
+
| import("@smithy/types").EndpointV2
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
56
|
+
) &
|
|
57
|
+
(
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Provider<string>
|
|
60
|
+
| import("@smithy/types").Endpoint
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
|
+
| import("@smithy/types").EndpointV2
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
64
|
+
))
|
|
65
|
+
| undefined;
|
|
66
|
+
endpointProvider: (
|
|
67
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
68
|
+
context?: {
|
|
69
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
70
|
+
}
|
|
71
|
+
) => import("@smithy/types").EndpointV2;
|
|
72
|
+
tls?: boolean | undefined;
|
|
73
|
+
retryStrategy?:
|
|
74
|
+
| import("@smithy/types").RetryStrategy
|
|
75
|
+
| import("@smithy/types").RetryStrategyV2
|
|
76
|
+
| undefined;
|
|
77
|
+
credentials?:
|
|
78
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
79
|
+
| import("@smithy/types").Provider<
|
|
80
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
81
|
+
>
|
|
82
|
+
| undefined;
|
|
83
|
+
signer?:
|
|
84
|
+
| import("@smithy/types").RequestSigner
|
|
85
|
+
| ((
|
|
86
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
87
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
88
|
+
| undefined;
|
|
89
|
+
signingEscapePath?: boolean | undefined;
|
|
90
|
+
systemClockOffset?: number | undefined;
|
|
91
|
+
signingRegion?: string | undefined;
|
|
92
|
+
signerConstructor?:
|
|
93
|
+
| (new (
|
|
94
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
96
|
+
) => import("@smithy/types").RequestSigner)
|
|
97
|
+
| undefined;
|
|
98
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
99
|
+
};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: WorkSpacesThinClientClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
7
|
+
requestHandler:
|
|
8
|
+
| (import("@smithy/types").RequestHandler<
|
|
9
|
+
any,
|
|
10
|
+
any,
|
|
11
|
+
import("@smithy/types").HttpHandlerOptions
|
|
12
|
+
> &
|
|
13
|
+
import("@smithy/types").RequestHandler<
|
|
14
|
+
import("@smithy/protocol-http").HttpRequest,
|
|
15
|
+
import("@smithy/protocol-http").HttpResponse,
|
|
16
|
+
import("@smithy/types").HttpHandlerOptions
|
|
17
|
+
> & {
|
|
18
|
+
updateHttpClientConfig(key: never, value: never): void;
|
|
19
|
+
httpHandlerConfigs(): {};
|
|
20
|
+
})
|
|
21
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
24
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
25
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
26
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
27
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
28
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
30
|
+
disableHostPrefix: boolean;
|
|
31
|
+
serviceId: string;
|
|
32
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
34
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
35
|
+
credentialDefaultProvider: (
|
|
36
|
+
input: any
|
|
37
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
38
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
39
|
+
import("@smithy/types").UserAgent
|
|
40
|
+
>;
|
|
41
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
42
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
43
|
+
logger: import("@smithy/types").Logger;
|
|
44
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
45
|
+
defaultsMode:
|
|
46
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
47
|
+
| import("@smithy/types").Provider<
|
|
48
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
49
|
+
>;
|
|
50
|
+
endpoint?:
|
|
51
|
+
| string
|
|
52
|
+
| import("@smithy/types").Endpoint
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
54
|
+
| import("@smithy/types").EndpointV2
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
56
|
+
| undefined;
|
|
57
|
+
endpointProvider: (
|
|
58
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
59
|
+
context?: {
|
|
60
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
61
|
+
}
|
|
62
|
+
) => import("@smithy/types").EndpointV2;
|
|
63
|
+
tls?: boolean | undefined;
|
|
64
|
+
retryStrategy?:
|
|
65
|
+
| import("@smithy/types").RetryStrategy
|
|
66
|
+
| import("@smithy/types").RetryStrategyV2
|
|
67
|
+
| undefined;
|
|
68
|
+
credentials?:
|
|
69
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
70
|
+
| import("@smithy/types").Provider<
|
|
71
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
72
|
+
>
|
|
73
|
+
| undefined;
|
|
74
|
+
signer?:
|
|
75
|
+
| import("@smithy/types").RequestSigner
|
|
76
|
+
| ((
|
|
77
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
78
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
79
|
+
| undefined;
|
|
80
|
+
signingEscapePath?: boolean | undefined;
|
|
81
|
+
systemClockOffset?: number | undefined;
|
|
82
|
+
signingRegion?: string | undefined;
|
|
83
|
+
signerConstructor?:
|
|
84
|
+
| (new (
|
|
85
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
86
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
87
|
+
) => import("@smithy/types").RequestSigner)
|
|
88
|
+
| undefined;
|
|
89
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
90
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: WorkSpacesThinClientClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
7
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
8
|
+
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (
|
|
10
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
11
|
+
context?: {
|
|
12
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
13
|
+
}
|
|
14
|
+
) => import("@smithy/types").EndpointV2;
|
|
15
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
16
|
+
logger: import("@smithy/types").Logger;
|
|
17
|
+
serviceId: string;
|
|
18
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
21
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WorkSpacesThinExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(extensionConfiguration: WorkSpacesThinExtensionConfiguration): void;
|
|
4
|
+
}
|
|
5
|
+
export interface RuntimeExtensionsConfig {
|
|
6
|
+
extensions: RuntimeExtension[];
|
|
7
|
+
}
|
|
8
|
+
export declare const resolveRuntimeExtensions: (
|
|
9
|
+
runtimeConfig: any,
|
|
10
|
+
extensions: RuntimeExtension[]
|
|
11
|
+
) => any;
|
package/package.json
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-sdk/client-workspaces-thin-client",
|
|
3
|
+
"description": "AWS SDK for JavaScript Workspaces Thin Client Client for Node.js, Browser and React Native",
|
|
4
|
+
"version": "3.458.0",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:docs": "typedoc",
|
|
9
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
10
|
+
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
|
11
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
12
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
15
|
+
"generate:client": "node ../../scripts/generate-clients/single-service --solo workspaces-thin-client"
|
|
16
|
+
},
|
|
17
|
+
"main": "./dist-cjs/index.js",
|
|
18
|
+
"types": "./dist-types/index.d.ts",
|
|
19
|
+
"module": "./dist-es/index.js",
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
|
+
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.458.0",
|
|
25
|
+
"@aws-sdk/core": "3.451.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.458.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.451.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.451.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.451.0",
|
|
30
|
+
"@aws-sdk/middleware-signing": "3.451.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.451.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.451.0",
|
|
33
|
+
"@aws-sdk/types": "3.451.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.451.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.451.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.451.0",
|
|
37
|
+
"@smithy/config-resolver": "^2.0.18",
|
|
38
|
+
"@smithy/fetch-http-handler": "^2.2.6",
|
|
39
|
+
"@smithy/hash-node": "^2.0.15",
|
|
40
|
+
"@smithy/invalid-dependency": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-content-length": "^2.0.15",
|
|
42
|
+
"@smithy/middleware-endpoint": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-retry": "^2.0.20",
|
|
44
|
+
"@smithy/middleware-serde": "^2.0.13",
|
|
45
|
+
"@smithy/middleware-stack": "^2.0.7",
|
|
46
|
+
"@smithy/node-config-provider": "^2.1.5",
|
|
47
|
+
"@smithy/node-http-handler": "^2.1.9",
|
|
48
|
+
"@smithy/protocol-http": "^3.0.9",
|
|
49
|
+
"@smithy/smithy-client": "^2.1.15",
|
|
50
|
+
"@smithy/types": "^2.5.0",
|
|
51
|
+
"@smithy/url-parser": "^2.0.13",
|
|
52
|
+
"@smithy/util-base64": "^2.0.1",
|
|
53
|
+
"@smithy/util-body-length-browser": "^2.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^2.1.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^2.0.19",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^2.0.25",
|
|
57
|
+
"@smithy/util-endpoints": "^1.0.4",
|
|
58
|
+
"@smithy/util-retry": "^2.0.6",
|
|
59
|
+
"@smithy/util-utf8": "^2.0.2",
|
|
60
|
+
"tslib": "^2.5.0",
|
|
61
|
+
"uuid": "^8.3.2"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@smithy/service-client-documentation-generator": "^2.0.0",
|
|
65
|
+
"@tsconfig/node14": "1.0.3",
|
|
66
|
+
"@types/node": "^14.14.31",
|
|
67
|
+
"@types/uuid": "^8.3.0",
|
|
68
|
+
"concurrently": "7.0.0",
|
|
69
|
+
"downlevel-dts": "0.10.1",
|
|
70
|
+
"rimraf": "3.0.2",
|
|
71
|
+
"typedoc": "0.23.23",
|
|
72
|
+
"typescript": "~4.9.5"
|
|
73
|
+
},
|
|
74
|
+
"engines": {
|
|
75
|
+
"node": ">=14.0.0"
|
|
76
|
+
},
|
|
77
|
+
"typesVersions": {
|
|
78
|
+
"<4.0": {
|
|
79
|
+
"dist-types/*": [
|
|
80
|
+
"dist-types/ts3.4/*"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"files": [
|
|
85
|
+
"dist-*/**"
|
|
86
|
+
],
|
|
87
|
+
"author": {
|
|
88
|
+
"name": "AWS SDK for JavaScript Team",
|
|
89
|
+
"url": "https://aws.amazon.com/javascript/"
|
|
90
|
+
},
|
|
91
|
+
"license": "Apache-2.0",
|
|
92
|
+
"browser": {
|
|
93
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
94
|
+
},
|
|
95
|
+
"react-native": {
|
|
96
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
97
|
+
},
|
|
98
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-workspaces-thin-client",
|
|
99
|
+
"repository": {
|
|
100
|
+
"type": "git",
|
|
101
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
102
|
+
"directory": "clients/client-workspaces-thin-client"
|
|
103
|
+
}
|
|
104
|
+
}
|