@aws-sdk/client-workspaces 3.686.0 → 3.691.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.
|
@@ -17,26 +17,26 @@ export interface RevokeIpRulesRequest {
|
|
|
17
17
|
}
|
|
18
18
|
export interface RevokeIpRulesResult {}
|
|
19
19
|
export interface StartRequest {
|
|
20
|
-
WorkspaceId?: string;
|
|
20
|
+
WorkspaceId?: string | undefined;
|
|
21
21
|
}
|
|
22
22
|
export interface StartWorkspacesRequest {
|
|
23
23
|
StartWorkspaceRequests: StartRequest[] | undefined;
|
|
24
24
|
}
|
|
25
25
|
export interface StartWorkspacesResult {
|
|
26
|
-
FailedRequests?: FailedWorkspaceChangeRequest[];
|
|
26
|
+
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
27
27
|
}
|
|
28
28
|
export interface StartWorkspacesPoolRequest {
|
|
29
29
|
PoolId: string | undefined;
|
|
30
30
|
}
|
|
31
31
|
export interface StartWorkspacesPoolResult {}
|
|
32
32
|
export interface StopRequest {
|
|
33
|
-
WorkspaceId?: string;
|
|
33
|
+
WorkspaceId?: string | undefined;
|
|
34
34
|
}
|
|
35
35
|
export interface StopWorkspacesRequest {
|
|
36
36
|
StopWorkspaceRequests: StopRequest[] | undefined;
|
|
37
37
|
}
|
|
38
38
|
export interface StopWorkspacesResult {
|
|
39
|
-
FailedRequests?: FailedWorkspaceChangeRequest[];
|
|
39
|
+
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
40
40
|
}
|
|
41
41
|
export interface StopWorkspacesPoolRequest {
|
|
42
42
|
PoolId: string | undefined;
|
|
@@ -49,7 +49,7 @@ export interface TerminateWorkspacesRequest {
|
|
|
49
49
|
TerminateWorkspaceRequests: TerminateRequest[] | undefined;
|
|
50
50
|
}
|
|
51
51
|
export interface TerminateWorkspacesResult {
|
|
52
|
-
FailedRequests?: FailedWorkspaceChangeRequest[];
|
|
52
|
+
FailedRequests?: FailedWorkspaceChangeRequest[] | undefined;
|
|
53
53
|
}
|
|
54
54
|
export interface TerminateWorkspacesPoolRequest {
|
|
55
55
|
PoolId: string | undefined;
|
|
@@ -62,8 +62,8 @@ export interface TerminateWorkspacesPoolSessionResult {}
|
|
|
62
62
|
export interface UpdateConnectClientAddInRequest {
|
|
63
63
|
AddInId: string | undefined;
|
|
64
64
|
ResourceId: string | undefined;
|
|
65
|
-
Name?: string;
|
|
66
|
-
URL?: string;
|
|
65
|
+
Name?: string | undefined;
|
|
66
|
+
URL?: string | undefined;
|
|
67
67
|
}
|
|
68
68
|
export interface UpdateConnectClientAddInResult {}
|
|
69
69
|
export interface UpdateConnectionAliasPermissionRequest {
|
|
@@ -77,8 +77,8 @@ export interface UpdateRulesOfIpGroupRequest {
|
|
|
77
77
|
}
|
|
78
78
|
export interface UpdateRulesOfIpGroupResult {}
|
|
79
79
|
export interface UpdateWorkspaceBundleRequest {
|
|
80
|
-
BundleId?: string;
|
|
81
|
-
ImageId?: string;
|
|
80
|
+
BundleId?: string | undefined;
|
|
81
|
+
ImageId?: string | undefined;
|
|
82
82
|
}
|
|
83
83
|
export interface UpdateWorkspaceBundleResult {}
|
|
84
84
|
export interface UpdateWorkspaceImagePermissionRequest {
|
|
@@ -89,13 +89,13 @@ export interface UpdateWorkspaceImagePermissionRequest {
|
|
|
89
89
|
export interface UpdateWorkspaceImagePermissionResult {}
|
|
90
90
|
export interface UpdateWorkspacesPoolRequest {
|
|
91
91
|
PoolId: string | undefined;
|
|
92
|
-
Description?: string;
|
|
93
|
-
BundleId?: string;
|
|
94
|
-
DirectoryId?: string;
|
|
95
|
-
Capacity?: Capacity;
|
|
96
|
-
ApplicationSettings?: ApplicationSettingsRequest;
|
|
97
|
-
TimeoutSettings?: TimeoutSettings;
|
|
92
|
+
Description?: string | undefined;
|
|
93
|
+
BundleId?: string | undefined;
|
|
94
|
+
DirectoryId?: string | undefined;
|
|
95
|
+
Capacity?: Capacity | undefined;
|
|
96
|
+
ApplicationSettings?: ApplicationSettingsRequest | undefined;
|
|
97
|
+
TimeoutSettings?: TimeoutSettings | undefined;
|
|
98
98
|
}
|
|
99
99
|
export interface UpdateWorkspacesPoolResult {
|
|
100
|
-
WorkspacesPool?: WorkspacesPool;
|
|
100
|
+
WorkspacesPool?: WorkspacesPool | undefined;
|
|
101
101
|
}
|
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.691.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,19 +20,19 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|