@aws-sdk/client-workspaces 3.917.0 → 3.919.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 +1 -0
- package/dist-es/protocols/Aws_json1_1.js +1 -0
- package/dist-types/commands/CreateWorkspacesCommand.d.ts +3 -0
- package/dist-types/commands/DescribeWorkspaceDirectoriesCommand.d.ts +3 -0
- package/dist-types/commands/DescribeWorkspacesCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +15 -0
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/package.json +3 -3
package/dist-cjs/index.js
CHANGED
|
@@ -3189,6 +3189,7 @@ const de_Workspace = (output, context) => {
|
|
|
3189
3189
|
ErrorCode: smithyClient.expectString,
|
|
3190
3190
|
ErrorMessage: smithyClient.expectString,
|
|
3191
3191
|
IpAddress: smithyClient.expectString,
|
|
3192
|
+
Ipv6Address: smithyClient.expectString,
|
|
3192
3193
|
ModificationStates: smithyClient._json,
|
|
3193
3194
|
RelatedWorkspaces: smithyClient._json,
|
|
3194
3195
|
RootVolumeEncryptionEnabled: smithyClient.expectBoolean,
|
|
@@ -2317,6 +2317,7 @@ const de_Workspace = (output, context) => {
|
|
|
2317
2317
|
ErrorCode: __expectString,
|
|
2318
2318
|
ErrorMessage: __expectString,
|
|
2319
2319
|
IpAddress: __expectString,
|
|
2320
|
+
Ipv6Address: __expectString,
|
|
2320
2321
|
ModificationStates: _json,
|
|
2321
2322
|
RelatedWorkspaces: _json,
|
|
2322
2323
|
RootVolumeEncryptionEnabled: __expectBoolean,
|
|
@@ -93,6 +93,7 @@ declare const CreateWorkspacesCommand_base: {
|
|
|
93
93
|
* },
|
|
94
94
|
* ],
|
|
95
95
|
* WorkspaceName: "STRING_VALUE",
|
|
96
|
+
* Ipv6Address: "STRING_VALUE",
|
|
96
97
|
* },
|
|
97
98
|
* ],
|
|
98
99
|
* };
|
|
@@ -130,6 +131,7 @@ declare const CreateWorkspacesCommand_base: {
|
|
|
130
131
|
* // },
|
|
131
132
|
* // ],
|
|
132
133
|
* // WorkspaceName: "STRING_VALUE",
|
|
134
|
+
* // Ipv6Address: "STRING_VALUE",
|
|
133
135
|
* // },
|
|
134
136
|
* // ErrorCode: "STRING_VALUE",
|
|
135
137
|
* // ErrorMessage: "STRING_VALUE",
|
|
@@ -141,6 +143,7 @@ declare const CreateWorkspacesCommand_base: {
|
|
|
141
143
|
* // DirectoryId: "STRING_VALUE",
|
|
142
144
|
* // UserName: "STRING_VALUE",
|
|
143
145
|
* // IpAddress: "STRING_VALUE",
|
|
146
|
+
* // Ipv6Address: "STRING_VALUE",
|
|
144
147
|
* // State: "PENDING" || "AVAILABLE" || "IMPAIRED" || "UNHEALTHY" || "REBOOTING" || "STARTING" || "REBUILDING" || "RESTORING" || "MAINTENANCE" || "ADMIN_MAINTENANCE" || "TERMINATING" || "TERMINATED" || "SUSPENDED" || "UPDATING" || "STOPPING" || "STOPPED" || "ERROR",
|
|
145
148
|
* // BundleId: "STRING_VALUE",
|
|
146
149
|
* // SubnetId: "STRING_VALUE",
|
|
@@ -69,6 +69,9 @@ declare const DescribeWorkspaceDirectoriesCommand_base: {
|
|
|
69
69
|
* // DnsIpAddresses: [ // DnsIpAddresses
|
|
70
70
|
* // "STRING_VALUE",
|
|
71
71
|
* // ],
|
|
72
|
+
* // DnsIpv6Addresses: [ // DnsIpv6Addresses
|
|
73
|
+
* // "STRING_VALUE",
|
|
74
|
+
* // ],
|
|
72
75
|
* // CustomerUserName: "STRING_VALUE",
|
|
73
76
|
* // IamRoleId: "STRING_VALUE",
|
|
74
77
|
* // DirectoryType: "SIMPLE_AD" || "AD_CONNECTOR" || "CUSTOMER_MANAGED" || "AWS_IAM_IDENTITY_CENTER",
|
|
@@ -58,6 +58,7 @@ declare const DescribeWorkspacesCommand_base: {
|
|
|
58
58
|
* // DirectoryId: "STRING_VALUE",
|
|
59
59
|
* // UserName: "STRING_VALUE",
|
|
60
60
|
* // IpAddress: "STRING_VALUE",
|
|
61
|
+
* // Ipv6Address: "STRING_VALUE",
|
|
61
62
|
* // State: "PENDING" || "AVAILABLE" || "IMPAIRED" || "UNHEALTHY" || "REBOOTING" || "STARTING" || "REBUILDING" || "RESTORING" || "MAINTENANCE" || "ADMIN_MAINTENANCE" || "TERMINATING" || "TERMINATED" || "SUSPENDED" || "UPDATING" || "STOPPING" || "STOPPED" || "ERROR",
|
|
62
63
|
* // BundleId: "STRING_VALUE",
|
|
63
64
|
* // SubnetId: "STRING_VALUE",
|
|
@@ -2108,6 +2108,11 @@ export interface WorkspaceRequest {
|
|
|
2108
2108
|
* @public
|
|
2109
2109
|
*/
|
|
2110
2110
|
WorkspaceName?: string | undefined;
|
|
2111
|
+
/**
|
|
2112
|
+
* <p>The IPv6 address for the WorkSpace.</p>
|
|
2113
|
+
* @public
|
|
2114
|
+
*/
|
|
2115
|
+
Ipv6Address?: string | undefined;
|
|
2111
2116
|
}
|
|
2112
2117
|
/**
|
|
2113
2118
|
* @public
|
|
@@ -2285,6 +2290,11 @@ export interface Workspace {
|
|
|
2285
2290
|
* @public
|
|
2286
2291
|
*/
|
|
2287
2292
|
IpAddress?: string | undefined;
|
|
2293
|
+
/**
|
|
2294
|
+
* <p>The IPv6 address of the WorkSpace.</p>
|
|
2295
|
+
* @public
|
|
2296
|
+
*/
|
|
2297
|
+
Ipv6Address?: string | undefined;
|
|
2288
2298
|
/**
|
|
2289
2299
|
* <p>The operational state of the WorkSpace.</p>
|
|
2290
2300
|
* <ul>
|
|
@@ -4556,6 +4566,11 @@ export interface WorkspaceDirectory {
|
|
|
4556
4566
|
* @public
|
|
4557
4567
|
*/
|
|
4558
4568
|
DnsIpAddresses?: string[] | undefined;
|
|
4569
|
+
/**
|
|
4570
|
+
* <p>The IPv6 addresses of the DNS servers for the directory.</p>
|
|
4571
|
+
* @public
|
|
4572
|
+
*/
|
|
4573
|
+
DnsIpv6Addresses?: string[] | undefined;
|
|
4559
4574
|
/**
|
|
4560
4575
|
* <p>The user name for the service account.</p>
|
|
4561
4576
|
* @public
|
|
@@ -719,6 +719,7 @@ export interface WorkspaceRequest {
|
|
|
719
719
|
WorkspaceProperties?: WorkspaceProperties | undefined;
|
|
720
720
|
Tags?: Tag[] | undefined;
|
|
721
721
|
WorkspaceName?: string | undefined;
|
|
722
|
+
Ipv6Address?: string | undefined;
|
|
722
723
|
}
|
|
723
724
|
export interface CreateWorkspacesRequest {
|
|
724
725
|
Workspaces: WorkspaceRequest[] | undefined;
|
|
@@ -771,6 +772,7 @@ export interface Workspace {
|
|
|
771
772
|
DirectoryId?: string | undefined;
|
|
772
773
|
UserName?: string | undefined;
|
|
773
774
|
IpAddress?: string | undefined;
|
|
775
|
+
Ipv6Address?: string | undefined;
|
|
774
776
|
State?: WorkspaceState | undefined;
|
|
775
777
|
BundleId?: string | undefined;
|
|
776
778
|
SubnetId?: string | undefined;
|
|
@@ -1393,6 +1395,7 @@ export interface WorkspaceDirectory {
|
|
|
1393
1395
|
RegistrationCode?: string | undefined;
|
|
1394
1396
|
SubnetIds?: string[] | undefined;
|
|
1395
1397
|
DnsIpAddresses?: string[] | undefined;
|
|
1398
|
+
DnsIpv6Addresses?: string[] | undefined;
|
|
1396
1399
|
CustomerUserName?: string | undefined;
|
|
1397
1400
|
IamRoleId?: string | undefined;
|
|
1398
1401
|
DirectoryType?: WorkspaceDirectoryType | undefined;
|
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.919.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",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.916.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.919.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.914.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.914.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.919.0",
|
|
28
28
|
"@aws-sdk/middleware-user-agent": "3.916.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.914.0",
|
|
30
30
|
"@aws-sdk/types": "3.914.0",
|