@aws-sdk/client-workspaces 3.37.0 → 3.38.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/CHANGELOG.md +12 -0
- package/dist-cjs/commands/index.js +57 -0
- package/dist-cjs/index.js +4 -60
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-es/commands/index.js +54 -0
- package/dist-es/index.js +4 -60
- package/dist-es/pagination/index.js +4 -0
- package/dist-types/commands/index.d.ts +54 -0
- package/dist-types/index.d.ts +4 -60
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/commands/index.d.ts +54 -0
- package/dist-types/ts3.4/index.d.ts +4 -60
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/package.json +24 -24
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-documentation-generator:** rename package ([#2916](https://github.com/aws/aws-sdk-js-v3/issues/2916)) ([1a80bfd](https://github.com/aws/aws-sdk-js-v3/commit/1a80bfd2dfc583001ddb4a21b6432eaaad699aa7))
|
|
12
|
+
* **clients:** export folder from index.ts ([#2912](https://github.com/aws/aws-sdk-js-v3/issues/2912)) ([183b46d](https://github.com/aws/aws-sdk-js-v3/commit/183b46dde7f5613128038bf1c076f3c0b693203b))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
# [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
|
|
7
19
|
|
|
8
20
|
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./AssociateConnectionAliasCommand"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./AssociateIpGroupsCommand"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./AuthorizeIpRulesCommand"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./CopyWorkspaceImageCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./CreateConnectionAliasCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./CreateIpGroupCommand"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./CreateTagsCommand"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./CreateUpdatedWorkspaceImageCommand"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./CreateWorkspaceBundleCommand"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./CreateWorkspacesCommand"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./DeleteConnectionAliasCommand"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./DeleteIpGroupCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./DeleteTagsCommand"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./DeleteWorkspaceBundleCommand"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./DeleteWorkspaceImageCommand"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./DeregisterWorkspaceDirectoryCommand"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./DescribeAccountCommand"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./DescribeAccountModificationsCommand"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./DescribeClientPropertiesCommand"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./DescribeConnectionAliasPermissionsCommand"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./DescribeConnectionAliasesCommand"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./DescribeIpGroupsCommand"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./DescribeTagsCommand"), exports);
|
|
27
|
+
tslib_1.__exportStar(require("./DescribeWorkspaceBundlesCommand"), exports);
|
|
28
|
+
tslib_1.__exportStar(require("./DescribeWorkspaceDirectoriesCommand"), exports);
|
|
29
|
+
tslib_1.__exportStar(require("./DescribeWorkspaceImagePermissionsCommand"), exports);
|
|
30
|
+
tslib_1.__exportStar(require("./DescribeWorkspaceImagesCommand"), exports);
|
|
31
|
+
tslib_1.__exportStar(require("./DescribeWorkspaceSnapshotsCommand"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./DescribeWorkspacesCommand"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./DescribeWorkspacesConnectionStatusCommand"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./DisassociateConnectionAliasCommand"), exports);
|
|
35
|
+
tslib_1.__exportStar(require("./DisassociateIpGroupsCommand"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./ImportWorkspaceImageCommand"), exports);
|
|
37
|
+
tslib_1.__exportStar(require("./ListAvailableManagementCidrRangesCommand"), exports);
|
|
38
|
+
tslib_1.__exportStar(require("./MigrateWorkspaceCommand"), exports);
|
|
39
|
+
tslib_1.__exportStar(require("./ModifyAccountCommand"), exports);
|
|
40
|
+
tslib_1.__exportStar(require("./ModifyClientPropertiesCommand"), exports);
|
|
41
|
+
tslib_1.__exportStar(require("./ModifySelfservicePermissionsCommand"), exports);
|
|
42
|
+
tslib_1.__exportStar(require("./ModifyWorkspaceAccessPropertiesCommand"), exports);
|
|
43
|
+
tslib_1.__exportStar(require("./ModifyWorkspaceCreationPropertiesCommand"), exports);
|
|
44
|
+
tslib_1.__exportStar(require("./ModifyWorkspacePropertiesCommand"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./ModifyWorkspaceStateCommand"), exports);
|
|
46
|
+
tslib_1.__exportStar(require("./RebootWorkspacesCommand"), exports);
|
|
47
|
+
tslib_1.__exportStar(require("./RebuildWorkspacesCommand"), exports);
|
|
48
|
+
tslib_1.__exportStar(require("./RegisterWorkspaceDirectoryCommand"), exports);
|
|
49
|
+
tslib_1.__exportStar(require("./RestoreWorkspaceCommand"), exports);
|
|
50
|
+
tslib_1.__exportStar(require("./RevokeIpRulesCommand"), exports);
|
|
51
|
+
tslib_1.__exportStar(require("./StartWorkspacesCommand"), exports);
|
|
52
|
+
tslib_1.__exportStar(require("./StopWorkspacesCommand"), exports);
|
|
53
|
+
tslib_1.__exportStar(require("./TerminateWorkspacesCommand"), exports);
|
|
54
|
+
tslib_1.__exportStar(require("./UpdateConnectionAliasPermissionCommand"), exports);
|
|
55
|
+
tslib_1.__exportStar(require("./UpdateRulesOfIpGroupCommand"), exports);
|
|
56
|
+
tslib_1.__exportStar(require("./UpdateWorkspaceBundleCommand"), exports);
|
|
57
|
+
tslib_1.__exportStar(require("./UpdateWorkspaceImagePermissionCommand"), exports);
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,64 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./WorkSpacesClient"), exports);
|
|
5
4
|
tslib_1.__exportStar(require("./WorkSpaces"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./
|
|
7
|
-
tslib_1.__exportStar(require("./commands
|
|
8
|
-
tslib_1.__exportStar(require("./
|
|
9
|
-
tslib_1.__exportStar(require("./
|
|
10
|
-
tslib_1.__exportStar(require("./commands/CreateConnectionAliasCommand"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./commands/CreateIpGroupCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./commands/CreateTagsCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./commands/CreateUpdatedWorkspaceImageCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./commands/CreateWorkspaceBundleCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./commands/CreateWorkspacesCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./commands/DeleteConnectionAliasCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./commands/DeleteIpGroupCommand"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./commands/DeleteTagsCommand"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./commands/DeleteWorkspaceBundleCommand"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./commands/DeleteWorkspaceImageCommand"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./commands/DeregisterWorkspaceDirectoryCommand"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./commands/DescribeAccountCommand"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./commands/DescribeAccountModificationsCommand"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./commands/DescribeClientPropertiesCommand"), exports);
|
|
25
|
-
tslib_1.__exportStar(require("./commands/DescribeConnectionAliasesCommand"), exports);
|
|
26
|
-
tslib_1.__exportStar(require("./commands/DescribeConnectionAliasPermissionsCommand"), exports);
|
|
27
|
-
tslib_1.__exportStar(require("./commands/DescribeIpGroupsCommand"), exports);
|
|
28
|
-
tslib_1.__exportStar(require("./commands/DescribeTagsCommand"), exports);
|
|
29
|
-
tslib_1.__exportStar(require("./commands/DescribeWorkspaceBundlesCommand"), exports);
|
|
30
|
-
tslib_1.__exportStar(require("./pagination/DescribeWorkspaceBundlesPaginator"), exports);
|
|
31
|
-
tslib_1.__exportStar(require("./commands/DescribeWorkspaceDirectoriesCommand"), exports);
|
|
32
|
-
tslib_1.__exportStar(require("./pagination/DescribeWorkspaceDirectoriesPaginator"), exports);
|
|
33
|
-
tslib_1.__exportStar(require("./commands/DescribeWorkspaceImagePermissionsCommand"), exports);
|
|
34
|
-
tslib_1.__exportStar(require("./commands/DescribeWorkspaceImagesCommand"), exports);
|
|
35
|
-
tslib_1.__exportStar(require("./commands/DescribeWorkspacesCommand"), exports);
|
|
36
|
-
tslib_1.__exportStar(require("./pagination/DescribeWorkspacesPaginator"), exports);
|
|
37
|
-
tslib_1.__exportStar(require("./commands/DescribeWorkspacesConnectionStatusCommand"), exports);
|
|
38
|
-
tslib_1.__exportStar(require("./commands/DescribeWorkspaceSnapshotsCommand"), exports);
|
|
39
|
-
tslib_1.__exportStar(require("./commands/DisassociateConnectionAliasCommand"), exports);
|
|
40
|
-
tslib_1.__exportStar(require("./commands/DisassociateIpGroupsCommand"), exports);
|
|
41
|
-
tslib_1.__exportStar(require("./commands/ImportWorkspaceImageCommand"), exports);
|
|
42
|
-
tslib_1.__exportStar(require("./commands/ListAvailableManagementCidrRangesCommand"), exports);
|
|
43
|
-
tslib_1.__exportStar(require("./commands/MigrateWorkspaceCommand"), exports);
|
|
44
|
-
tslib_1.__exportStar(require("./commands/ModifyAccountCommand"), exports);
|
|
45
|
-
tslib_1.__exportStar(require("./commands/ModifyClientPropertiesCommand"), exports);
|
|
46
|
-
tslib_1.__exportStar(require("./commands/ModifySelfservicePermissionsCommand"), exports);
|
|
47
|
-
tslib_1.__exportStar(require("./commands/ModifyWorkspaceAccessPropertiesCommand"), exports);
|
|
48
|
-
tslib_1.__exportStar(require("./commands/ModifyWorkspaceCreationPropertiesCommand"), exports);
|
|
49
|
-
tslib_1.__exportStar(require("./commands/ModifyWorkspacePropertiesCommand"), exports);
|
|
50
|
-
tslib_1.__exportStar(require("./commands/ModifyWorkspaceStateCommand"), exports);
|
|
51
|
-
tslib_1.__exportStar(require("./commands/RebootWorkspacesCommand"), exports);
|
|
52
|
-
tslib_1.__exportStar(require("./commands/RebuildWorkspacesCommand"), exports);
|
|
53
|
-
tslib_1.__exportStar(require("./commands/RegisterWorkspaceDirectoryCommand"), exports);
|
|
54
|
-
tslib_1.__exportStar(require("./commands/RestoreWorkspaceCommand"), exports);
|
|
55
|
-
tslib_1.__exportStar(require("./commands/RevokeIpRulesCommand"), exports);
|
|
56
|
-
tslib_1.__exportStar(require("./commands/StartWorkspacesCommand"), exports);
|
|
57
|
-
tslib_1.__exportStar(require("./commands/StopWorkspacesCommand"), exports);
|
|
58
|
-
tslib_1.__exportStar(require("./commands/TerminateWorkspacesCommand"), exports);
|
|
59
|
-
tslib_1.__exportStar(require("./commands/UpdateConnectionAliasPermissionCommand"), exports);
|
|
60
|
-
tslib_1.__exportStar(require("./commands/UpdateRulesOfIpGroupCommand"), exports);
|
|
61
|
-
tslib_1.__exportStar(require("./commands/UpdateWorkspaceBundleCommand"), exports);
|
|
62
|
-
tslib_1.__exportStar(require("./commands/UpdateWorkspaceImagePermissionCommand"), exports);
|
|
63
|
-
tslib_1.__exportStar(require("./pagination/Interfaces"), exports);
|
|
64
|
-
tslib_1.__exportStar(require("./models/index"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./WorkSpacesClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./pagination"), exports);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./DescribeWorkspaceBundlesPaginator"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./DescribeWorkspaceDirectoriesPaginator"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./DescribeWorkspacesPaginator"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
export * from "./AssociateConnectionAliasCommand";
|
|
2
|
+
export * from "./AssociateIpGroupsCommand";
|
|
3
|
+
export * from "./AuthorizeIpRulesCommand";
|
|
4
|
+
export * from "./CopyWorkspaceImageCommand";
|
|
5
|
+
export * from "./CreateConnectionAliasCommand";
|
|
6
|
+
export * from "./CreateIpGroupCommand";
|
|
7
|
+
export * from "./CreateTagsCommand";
|
|
8
|
+
export * from "./CreateUpdatedWorkspaceImageCommand";
|
|
9
|
+
export * from "./CreateWorkspaceBundleCommand";
|
|
10
|
+
export * from "./CreateWorkspacesCommand";
|
|
11
|
+
export * from "./DeleteConnectionAliasCommand";
|
|
12
|
+
export * from "./DeleteIpGroupCommand";
|
|
13
|
+
export * from "./DeleteTagsCommand";
|
|
14
|
+
export * from "./DeleteWorkspaceBundleCommand";
|
|
15
|
+
export * from "./DeleteWorkspaceImageCommand";
|
|
16
|
+
export * from "./DeregisterWorkspaceDirectoryCommand";
|
|
17
|
+
export * from "./DescribeAccountCommand";
|
|
18
|
+
export * from "./DescribeAccountModificationsCommand";
|
|
19
|
+
export * from "./DescribeClientPropertiesCommand";
|
|
20
|
+
export * from "./DescribeConnectionAliasPermissionsCommand";
|
|
21
|
+
export * from "./DescribeConnectionAliasesCommand";
|
|
22
|
+
export * from "./DescribeIpGroupsCommand";
|
|
23
|
+
export * from "./DescribeTagsCommand";
|
|
24
|
+
export * from "./DescribeWorkspaceBundlesCommand";
|
|
25
|
+
export * from "./DescribeWorkspaceDirectoriesCommand";
|
|
26
|
+
export * from "./DescribeWorkspaceImagePermissionsCommand";
|
|
27
|
+
export * from "./DescribeWorkspaceImagesCommand";
|
|
28
|
+
export * from "./DescribeWorkspaceSnapshotsCommand";
|
|
29
|
+
export * from "./DescribeWorkspacesCommand";
|
|
30
|
+
export * from "./DescribeWorkspacesConnectionStatusCommand";
|
|
31
|
+
export * from "./DisassociateConnectionAliasCommand";
|
|
32
|
+
export * from "./DisassociateIpGroupsCommand";
|
|
33
|
+
export * from "./ImportWorkspaceImageCommand";
|
|
34
|
+
export * from "./ListAvailableManagementCidrRangesCommand";
|
|
35
|
+
export * from "./MigrateWorkspaceCommand";
|
|
36
|
+
export * from "./ModifyAccountCommand";
|
|
37
|
+
export * from "./ModifyClientPropertiesCommand";
|
|
38
|
+
export * from "./ModifySelfservicePermissionsCommand";
|
|
39
|
+
export * from "./ModifyWorkspaceAccessPropertiesCommand";
|
|
40
|
+
export * from "./ModifyWorkspaceCreationPropertiesCommand";
|
|
41
|
+
export * from "./ModifyWorkspacePropertiesCommand";
|
|
42
|
+
export * from "./ModifyWorkspaceStateCommand";
|
|
43
|
+
export * from "./RebootWorkspacesCommand";
|
|
44
|
+
export * from "./RebuildWorkspacesCommand";
|
|
45
|
+
export * from "./RegisterWorkspaceDirectoryCommand";
|
|
46
|
+
export * from "./RestoreWorkspaceCommand";
|
|
47
|
+
export * from "./RevokeIpRulesCommand";
|
|
48
|
+
export * from "./StartWorkspacesCommand";
|
|
49
|
+
export * from "./StopWorkspacesCommand";
|
|
50
|
+
export * from "./TerminateWorkspacesCommand";
|
|
51
|
+
export * from "./UpdateConnectionAliasPermissionCommand";
|
|
52
|
+
export * from "./UpdateRulesOfIpGroupCommand";
|
|
53
|
+
export * from "./UpdateWorkspaceBundleCommand";
|
|
54
|
+
export * from "./UpdateWorkspaceImagePermissionCommand";
|
package/dist-es/index.js
CHANGED
|
@@ -1,61 +1,5 @@
|
|
|
1
|
-
export * from "./WorkSpacesClient";
|
|
2
1
|
export * from "./WorkSpaces";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./commands
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./commands/CreateConnectionAliasCommand";
|
|
8
|
-
export * from "./commands/CreateIpGroupCommand";
|
|
9
|
-
export * from "./commands/CreateTagsCommand";
|
|
10
|
-
export * from "./commands/CreateUpdatedWorkspaceImageCommand";
|
|
11
|
-
export * from "./commands/CreateWorkspaceBundleCommand";
|
|
12
|
-
export * from "./commands/CreateWorkspacesCommand";
|
|
13
|
-
export * from "./commands/DeleteConnectionAliasCommand";
|
|
14
|
-
export * from "./commands/DeleteIpGroupCommand";
|
|
15
|
-
export * from "./commands/DeleteTagsCommand";
|
|
16
|
-
export * from "./commands/DeleteWorkspaceBundleCommand";
|
|
17
|
-
export * from "./commands/DeleteWorkspaceImageCommand";
|
|
18
|
-
export * from "./commands/DeregisterWorkspaceDirectoryCommand";
|
|
19
|
-
export * from "./commands/DescribeAccountCommand";
|
|
20
|
-
export * from "./commands/DescribeAccountModificationsCommand";
|
|
21
|
-
export * from "./commands/DescribeClientPropertiesCommand";
|
|
22
|
-
export * from "./commands/DescribeConnectionAliasesCommand";
|
|
23
|
-
export * from "./commands/DescribeConnectionAliasPermissionsCommand";
|
|
24
|
-
export * from "./commands/DescribeIpGroupsCommand";
|
|
25
|
-
export * from "./commands/DescribeTagsCommand";
|
|
26
|
-
export * from "./commands/DescribeWorkspaceBundlesCommand";
|
|
27
|
-
export * from "./pagination/DescribeWorkspaceBundlesPaginator";
|
|
28
|
-
export * from "./commands/DescribeWorkspaceDirectoriesCommand";
|
|
29
|
-
export * from "./pagination/DescribeWorkspaceDirectoriesPaginator";
|
|
30
|
-
export * from "./commands/DescribeWorkspaceImagePermissionsCommand";
|
|
31
|
-
export * from "./commands/DescribeWorkspaceImagesCommand";
|
|
32
|
-
export * from "./commands/DescribeWorkspacesCommand";
|
|
33
|
-
export * from "./pagination/DescribeWorkspacesPaginator";
|
|
34
|
-
export * from "./commands/DescribeWorkspacesConnectionStatusCommand";
|
|
35
|
-
export * from "./commands/DescribeWorkspaceSnapshotsCommand";
|
|
36
|
-
export * from "./commands/DisassociateConnectionAliasCommand";
|
|
37
|
-
export * from "./commands/DisassociateIpGroupsCommand";
|
|
38
|
-
export * from "./commands/ImportWorkspaceImageCommand";
|
|
39
|
-
export * from "./commands/ListAvailableManagementCidrRangesCommand";
|
|
40
|
-
export * from "./commands/MigrateWorkspaceCommand";
|
|
41
|
-
export * from "./commands/ModifyAccountCommand";
|
|
42
|
-
export * from "./commands/ModifyClientPropertiesCommand";
|
|
43
|
-
export * from "./commands/ModifySelfservicePermissionsCommand";
|
|
44
|
-
export * from "./commands/ModifyWorkspaceAccessPropertiesCommand";
|
|
45
|
-
export * from "./commands/ModifyWorkspaceCreationPropertiesCommand";
|
|
46
|
-
export * from "./commands/ModifyWorkspacePropertiesCommand";
|
|
47
|
-
export * from "./commands/ModifyWorkspaceStateCommand";
|
|
48
|
-
export * from "./commands/RebootWorkspacesCommand";
|
|
49
|
-
export * from "./commands/RebuildWorkspacesCommand";
|
|
50
|
-
export * from "./commands/RegisterWorkspaceDirectoryCommand";
|
|
51
|
-
export * from "./commands/RestoreWorkspaceCommand";
|
|
52
|
-
export * from "./commands/RevokeIpRulesCommand";
|
|
53
|
-
export * from "./commands/StartWorkspacesCommand";
|
|
54
|
-
export * from "./commands/StopWorkspacesCommand";
|
|
55
|
-
export * from "./commands/TerminateWorkspacesCommand";
|
|
56
|
-
export * from "./commands/UpdateConnectionAliasPermissionCommand";
|
|
57
|
-
export * from "./commands/UpdateRulesOfIpGroupCommand";
|
|
58
|
-
export * from "./commands/UpdateWorkspaceBundleCommand";
|
|
59
|
-
export * from "./commands/UpdateWorkspaceImagePermissionCommand";
|
|
60
|
-
export * from "./pagination/Interfaces";
|
|
61
|
-
export * from "./models/index";
|
|
2
|
+
export * from "./WorkSpacesClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
export * from "./AssociateConnectionAliasCommand";
|
|
2
|
+
export * from "./AssociateIpGroupsCommand";
|
|
3
|
+
export * from "./AuthorizeIpRulesCommand";
|
|
4
|
+
export * from "./CopyWorkspaceImageCommand";
|
|
5
|
+
export * from "./CreateConnectionAliasCommand";
|
|
6
|
+
export * from "./CreateIpGroupCommand";
|
|
7
|
+
export * from "./CreateTagsCommand";
|
|
8
|
+
export * from "./CreateUpdatedWorkspaceImageCommand";
|
|
9
|
+
export * from "./CreateWorkspaceBundleCommand";
|
|
10
|
+
export * from "./CreateWorkspacesCommand";
|
|
11
|
+
export * from "./DeleteConnectionAliasCommand";
|
|
12
|
+
export * from "./DeleteIpGroupCommand";
|
|
13
|
+
export * from "./DeleteTagsCommand";
|
|
14
|
+
export * from "./DeleteWorkspaceBundleCommand";
|
|
15
|
+
export * from "./DeleteWorkspaceImageCommand";
|
|
16
|
+
export * from "./DeregisterWorkspaceDirectoryCommand";
|
|
17
|
+
export * from "./DescribeAccountCommand";
|
|
18
|
+
export * from "./DescribeAccountModificationsCommand";
|
|
19
|
+
export * from "./DescribeClientPropertiesCommand";
|
|
20
|
+
export * from "./DescribeConnectionAliasPermissionsCommand";
|
|
21
|
+
export * from "./DescribeConnectionAliasesCommand";
|
|
22
|
+
export * from "./DescribeIpGroupsCommand";
|
|
23
|
+
export * from "./DescribeTagsCommand";
|
|
24
|
+
export * from "./DescribeWorkspaceBundlesCommand";
|
|
25
|
+
export * from "./DescribeWorkspaceDirectoriesCommand";
|
|
26
|
+
export * from "./DescribeWorkspaceImagePermissionsCommand";
|
|
27
|
+
export * from "./DescribeWorkspaceImagesCommand";
|
|
28
|
+
export * from "./DescribeWorkspaceSnapshotsCommand";
|
|
29
|
+
export * from "./DescribeWorkspacesCommand";
|
|
30
|
+
export * from "./DescribeWorkspacesConnectionStatusCommand";
|
|
31
|
+
export * from "./DisassociateConnectionAliasCommand";
|
|
32
|
+
export * from "./DisassociateIpGroupsCommand";
|
|
33
|
+
export * from "./ImportWorkspaceImageCommand";
|
|
34
|
+
export * from "./ListAvailableManagementCidrRangesCommand";
|
|
35
|
+
export * from "./MigrateWorkspaceCommand";
|
|
36
|
+
export * from "./ModifyAccountCommand";
|
|
37
|
+
export * from "./ModifyClientPropertiesCommand";
|
|
38
|
+
export * from "./ModifySelfservicePermissionsCommand";
|
|
39
|
+
export * from "./ModifyWorkspaceAccessPropertiesCommand";
|
|
40
|
+
export * from "./ModifyWorkspaceCreationPropertiesCommand";
|
|
41
|
+
export * from "./ModifyWorkspacePropertiesCommand";
|
|
42
|
+
export * from "./ModifyWorkspaceStateCommand";
|
|
43
|
+
export * from "./RebootWorkspacesCommand";
|
|
44
|
+
export * from "./RebuildWorkspacesCommand";
|
|
45
|
+
export * from "./RegisterWorkspaceDirectoryCommand";
|
|
46
|
+
export * from "./RestoreWorkspaceCommand";
|
|
47
|
+
export * from "./RevokeIpRulesCommand";
|
|
48
|
+
export * from "./StartWorkspacesCommand";
|
|
49
|
+
export * from "./StopWorkspacesCommand";
|
|
50
|
+
export * from "./TerminateWorkspacesCommand";
|
|
51
|
+
export * from "./UpdateConnectionAliasPermissionCommand";
|
|
52
|
+
export * from "./UpdateRulesOfIpGroupCommand";
|
|
53
|
+
export * from "./UpdateWorkspaceBundleCommand";
|
|
54
|
+
export * from "./UpdateWorkspaceImagePermissionCommand";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,61 +1,5 @@
|
|
|
1
|
-
export * from "./WorkSpacesClient";
|
|
2
1
|
export * from "./WorkSpaces";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./commands
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./commands/CreateConnectionAliasCommand";
|
|
8
|
-
export * from "./commands/CreateIpGroupCommand";
|
|
9
|
-
export * from "./commands/CreateTagsCommand";
|
|
10
|
-
export * from "./commands/CreateUpdatedWorkspaceImageCommand";
|
|
11
|
-
export * from "./commands/CreateWorkspaceBundleCommand";
|
|
12
|
-
export * from "./commands/CreateWorkspacesCommand";
|
|
13
|
-
export * from "./commands/DeleteConnectionAliasCommand";
|
|
14
|
-
export * from "./commands/DeleteIpGroupCommand";
|
|
15
|
-
export * from "./commands/DeleteTagsCommand";
|
|
16
|
-
export * from "./commands/DeleteWorkspaceBundleCommand";
|
|
17
|
-
export * from "./commands/DeleteWorkspaceImageCommand";
|
|
18
|
-
export * from "./commands/DeregisterWorkspaceDirectoryCommand";
|
|
19
|
-
export * from "./commands/DescribeAccountCommand";
|
|
20
|
-
export * from "./commands/DescribeAccountModificationsCommand";
|
|
21
|
-
export * from "./commands/DescribeClientPropertiesCommand";
|
|
22
|
-
export * from "./commands/DescribeConnectionAliasesCommand";
|
|
23
|
-
export * from "./commands/DescribeConnectionAliasPermissionsCommand";
|
|
24
|
-
export * from "./commands/DescribeIpGroupsCommand";
|
|
25
|
-
export * from "./commands/DescribeTagsCommand";
|
|
26
|
-
export * from "./commands/DescribeWorkspaceBundlesCommand";
|
|
27
|
-
export * from "./pagination/DescribeWorkspaceBundlesPaginator";
|
|
28
|
-
export * from "./commands/DescribeWorkspaceDirectoriesCommand";
|
|
29
|
-
export * from "./pagination/DescribeWorkspaceDirectoriesPaginator";
|
|
30
|
-
export * from "./commands/DescribeWorkspaceImagePermissionsCommand";
|
|
31
|
-
export * from "./commands/DescribeWorkspaceImagesCommand";
|
|
32
|
-
export * from "./commands/DescribeWorkspacesCommand";
|
|
33
|
-
export * from "./pagination/DescribeWorkspacesPaginator";
|
|
34
|
-
export * from "./commands/DescribeWorkspacesConnectionStatusCommand";
|
|
35
|
-
export * from "./commands/DescribeWorkspaceSnapshotsCommand";
|
|
36
|
-
export * from "./commands/DisassociateConnectionAliasCommand";
|
|
37
|
-
export * from "./commands/DisassociateIpGroupsCommand";
|
|
38
|
-
export * from "./commands/ImportWorkspaceImageCommand";
|
|
39
|
-
export * from "./commands/ListAvailableManagementCidrRangesCommand";
|
|
40
|
-
export * from "./commands/MigrateWorkspaceCommand";
|
|
41
|
-
export * from "./commands/ModifyAccountCommand";
|
|
42
|
-
export * from "./commands/ModifyClientPropertiesCommand";
|
|
43
|
-
export * from "./commands/ModifySelfservicePermissionsCommand";
|
|
44
|
-
export * from "./commands/ModifyWorkspaceAccessPropertiesCommand";
|
|
45
|
-
export * from "./commands/ModifyWorkspaceCreationPropertiesCommand";
|
|
46
|
-
export * from "./commands/ModifyWorkspacePropertiesCommand";
|
|
47
|
-
export * from "./commands/ModifyWorkspaceStateCommand";
|
|
48
|
-
export * from "./commands/RebootWorkspacesCommand";
|
|
49
|
-
export * from "./commands/RebuildWorkspacesCommand";
|
|
50
|
-
export * from "./commands/RegisterWorkspaceDirectoryCommand";
|
|
51
|
-
export * from "./commands/RestoreWorkspaceCommand";
|
|
52
|
-
export * from "./commands/RevokeIpRulesCommand";
|
|
53
|
-
export * from "./commands/StartWorkspacesCommand";
|
|
54
|
-
export * from "./commands/StopWorkspacesCommand";
|
|
55
|
-
export * from "./commands/TerminateWorkspacesCommand";
|
|
56
|
-
export * from "./commands/UpdateConnectionAliasPermissionCommand";
|
|
57
|
-
export * from "./commands/UpdateRulesOfIpGroupCommand";
|
|
58
|
-
export * from "./commands/UpdateWorkspaceBundleCommand";
|
|
59
|
-
export * from "./commands/UpdateWorkspaceImagePermissionCommand";
|
|
60
|
-
export * from "./pagination/Interfaces";
|
|
61
|
-
export * from "./models/index";
|
|
2
|
+
export * from "./WorkSpacesClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
export * from "./AssociateConnectionAliasCommand";
|
|
2
|
+
export * from "./AssociateIpGroupsCommand";
|
|
3
|
+
export * from "./AuthorizeIpRulesCommand";
|
|
4
|
+
export * from "./CopyWorkspaceImageCommand";
|
|
5
|
+
export * from "./CreateConnectionAliasCommand";
|
|
6
|
+
export * from "./CreateIpGroupCommand";
|
|
7
|
+
export * from "./CreateTagsCommand";
|
|
8
|
+
export * from "./CreateUpdatedWorkspaceImageCommand";
|
|
9
|
+
export * from "./CreateWorkspaceBundleCommand";
|
|
10
|
+
export * from "./CreateWorkspacesCommand";
|
|
11
|
+
export * from "./DeleteConnectionAliasCommand";
|
|
12
|
+
export * from "./DeleteIpGroupCommand";
|
|
13
|
+
export * from "./DeleteTagsCommand";
|
|
14
|
+
export * from "./DeleteWorkspaceBundleCommand";
|
|
15
|
+
export * from "./DeleteWorkspaceImageCommand";
|
|
16
|
+
export * from "./DeregisterWorkspaceDirectoryCommand";
|
|
17
|
+
export * from "./DescribeAccountCommand";
|
|
18
|
+
export * from "./DescribeAccountModificationsCommand";
|
|
19
|
+
export * from "./DescribeClientPropertiesCommand";
|
|
20
|
+
export * from "./DescribeConnectionAliasPermissionsCommand";
|
|
21
|
+
export * from "./DescribeConnectionAliasesCommand";
|
|
22
|
+
export * from "./DescribeIpGroupsCommand";
|
|
23
|
+
export * from "./DescribeTagsCommand";
|
|
24
|
+
export * from "./DescribeWorkspaceBundlesCommand";
|
|
25
|
+
export * from "./DescribeWorkspaceDirectoriesCommand";
|
|
26
|
+
export * from "./DescribeWorkspaceImagePermissionsCommand";
|
|
27
|
+
export * from "./DescribeWorkspaceImagesCommand";
|
|
28
|
+
export * from "./DescribeWorkspaceSnapshotsCommand";
|
|
29
|
+
export * from "./DescribeWorkspacesCommand";
|
|
30
|
+
export * from "./DescribeWorkspacesConnectionStatusCommand";
|
|
31
|
+
export * from "./DisassociateConnectionAliasCommand";
|
|
32
|
+
export * from "./DisassociateIpGroupsCommand";
|
|
33
|
+
export * from "./ImportWorkspaceImageCommand";
|
|
34
|
+
export * from "./ListAvailableManagementCidrRangesCommand";
|
|
35
|
+
export * from "./MigrateWorkspaceCommand";
|
|
36
|
+
export * from "./ModifyAccountCommand";
|
|
37
|
+
export * from "./ModifyClientPropertiesCommand";
|
|
38
|
+
export * from "./ModifySelfservicePermissionsCommand";
|
|
39
|
+
export * from "./ModifyWorkspaceAccessPropertiesCommand";
|
|
40
|
+
export * from "./ModifyWorkspaceCreationPropertiesCommand";
|
|
41
|
+
export * from "./ModifyWorkspacePropertiesCommand";
|
|
42
|
+
export * from "./ModifyWorkspaceStateCommand";
|
|
43
|
+
export * from "./RebootWorkspacesCommand";
|
|
44
|
+
export * from "./RebuildWorkspacesCommand";
|
|
45
|
+
export * from "./RegisterWorkspaceDirectoryCommand";
|
|
46
|
+
export * from "./RestoreWorkspaceCommand";
|
|
47
|
+
export * from "./RevokeIpRulesCommand";
|
|
48
|
+
export * from "./StartWorkspacesCommand";
|
|
49
|
+
export * from "./StopWorkspacesCommand";
|
|
50
|
+
export * from "./TerminateWorkspacesCommand";
|
|
51
|
+
export * from "./UpdateConnectionAliasPermissionCommand";
|
|
52
|
+
export * from "./UpdateRulesOfIpGroupCommand";
|
|
53
|
+
export * from "./UpdateWorkspaceBundleCommand";
|
|
54
|
+
export * from "./UpdateWorkspaceImagePermissionCommand";
|
|
@@ -1,61 +1,5 @@
|
|
|
1
|
-
export * from "./WorkSpacesClient";
|
|
2
1
|
export * from "./WorkSpaces";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./commands
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./
|
|
7
|
-
export * from "./commands/CreateConnectionAliasCommand";
|
|
8
|
-
export * from "./commands/CreateIpGroupCommand";
|
|
9
|
-
export * from "./commands/CreateTagsCommand";
|
|
10
|
-
export * from "./commands/CreateUpdatedWorkspaceImageCommand";
|
|
11
|
-
export * from "./commands/CreateWorkspaceBundleCommand";
|
|
12
|
-
export * from "./commands/CreateWorkspacesCommand";
|
|
13
|
-
export * from "./commands/DeleteConnectionAliasCommand";
|
|
14
|
-
export * from "./commands/DeleteIpGroupCommand";
|
|
15
|
-
export * from "./commands/DeleteTagsCommand";
|
|
16
|
-
export * from "./commands/DeleteWorkspaceBundleCommand";
|
|
17
|
-
export * from "./commands/DeleteWorkspaceImageCommand";
|
|
18
|
-
export * from "./commands/DeregisterWorkspaceDirectoryCommand";
|
|
19
|
-
export * from "./commands/DescribeAccountCommand";
|
|
20
|
-
export * from "./commands/DescribeAccountModificationsCommand";
|
|
21
|
-
export * from "./commands/DescribeClientPropertiesCommand";
|
|
22
|
-
export * from "./commands/DescribeConnectionAliasesCommand";
|
|
23
|
-
export * from "./commands/DescribeConnectionAliasPermissionsCommand";
|
|
24
|
-
export * from "./commands/DescribeIpGroupsCommand";
|
|
25
|
-
export * from "./commands/DescribeTagsCommand";
|
|
26
|
-
export * from "./commands/DescribeWorkspaceBundlesCommand";
|
|
27
|
-
export * from "./pagination/DescribeWorkspaceBundlesPaginator";
|
|
28
|
-
export * from "./commands/DescribeWorkspaceDirectoriesCommand";
|
|
29
|
-
export * from "./pagination/DescribeWorkspaceDirectoriesPaginator";
|
|
30
|
-
export * from "./commands/DescribeWorkspaceImagePermissionsCommand";
|
|
31
|
-
export * from "./commands/DescribeWorkspaceImagesCommand";
|
|
32
|
-
export * from "./commands/DescribeWorkspacesCommand";
|
|
33
|
-
export * from "./pagination/DescribeWorkspacesPaginator";
|
|
34
|
-
export * from "./commands/DescribeWorkspacesConnectionStatusCommand";
|
|
35
|
-
export * from "./commands/DescribeWorkspaceSnapshotsCommand";
|
|
36
|
-
export * from "./commands/DisassociateConnectionAliasCommand";
|
|
37
|
-
export * from "./commands/DisassociateIpGroupsCommand";
|
|
38
|
-
export * from "./commands/ImportWorkspaceImageCommand";
|
|
39
|
-
export * from "./commands/ListAvailableManagementCidrRangesCommand";
|
|
40
|
-
export * from "./commands/MigrateWorkspaceCommand";
|
|
41
|
-
export * from "./commands/ModifyAccountCommand";
|
|
42
|
-
export * from "./commands/ModifyClientPropertiesCommand";
|
|
43
|
-
export * from "./commands/ModifySelfservicePermissionsCommand";
|
|
44
|
-
export * from "./commands/ModifyWorkspaceAccessPropertiesCommand";
|
|
45
|
-
export * from "./commands/ModifyWorkspaceCreationPropertiesCommand";
|
|
46
|
-
export * from "./commands/ModifyWorkspacePropertiesCommand";
|
|
47
|
-
export * from "./commands/ModifyWorkspaceStateCommand";
|
|
48
|
-
export * from "./commands/RebootWorkspacesCommand";
|
|
49
|
-
export * from "./commands/RebuildWorkspacesCommand";
|
|
50
|
-
export * from "./commands/RegisterWorkspaceDirectoryCommand";
|
|
51
|
-
export * from "./commands/RestoreWorkspaceCommand";
|
|
52
|
-
export * from "./commands/RevokeIpRulesCommand";
|
|
53
|
-
export * from "./commands/StartWorkspacesCommand";
|
|
54
|
-
export * from "./commands/StopWorkspacesCommand";
|
|
55
|
-
export * from "./commands/TerminateWorkspacesCommand";
|
|
56
|
-
export * from "./commands/UpdateConnectionAliasPermissionCommand";
|
|
57
|
-
export * from "./commands/UpdateRulesOfIpGroupCommand";
|
|
58
|
-
export * from "./commands/UpdateWorkspaceBundleCommand";
|
|
59
|
-
export * from "./commands/UpdateWorkspaceImagePermissionCommand";
|
|
60
|
-
export * from "./pagination/Interfaces";
|
|
61
|
-
export * from "./models/index";
|
|
2
|
+
export * from "./WorkSpacesClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
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.38.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "^1.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "^1.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.38.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.38.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.38.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.38.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.38.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.38.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.38.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.38.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.38.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.38.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.38.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.38.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.38.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.38.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.38.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.38.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.38.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.38.0",
|
|
42
|
+
"@aws-sdk/types": "3.38.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.38.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.37.0",
|
|
45
45
|
"@aws-sdk/util-base64-node": "3.37.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.38.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.38.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
52
|
"tslib": "^2.3.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.38.0",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"downlevel-dts": "0.7.0",
|
|
58
58
|
"jest": "^26.1.0",
|