@aws-sdk/client-workspaces 3.58.0 → 3.68.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.
Files changed (55) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +18 -4
  3. package/dist-cjs/WorkSpaces.js +45 -0
  4. package/dist-cjs/commands/DeleteClientBrandingCommand.js +36 -0
  5. package/dist-cjs/commands/DescribeClientBrandingCommand.js +36 -0
  6. package/dist-cjs/commands/ImportClientBrandingCommand.js +36 -0
  7. package/dist-cjs/commands/index.js +3 -0
  8. package/dist-cjs/models/models_0.js +76 -4
  9. package/dist-cjs/protocols/Aws_json1_1.js +327 -3
  10. package/dist-es/WorkSpaces.js +45 -0
  11. package/dist-es/commands/DeleteClientBrandingCommand.js +39 -0
  12. package/dist-es/commands/DescribeClientBrandingCommand.js +39 -0
  13. package/dist-es/commands/ImportClientBrandingCommand.js +39 -0
  14. package/dist-es/commands/index.js +3 -0
  15. package/dist-es/models/models_0.js +52 -0
  16. package/dist-es/protocols/Aws_json1_1.js +347 -1
  17. package/dist-types/WorkSpaces.d.ts +199 -146
  18. package/dist-types/WorkSpacesClient.d.ts +21 -4
  19. package/dist-types/commands/AssociateConnectionAliasCommand.d.ts +5 -5
  20. package/dist-types/commands/CopyWorkspaceImageCommand.d.ts +5 -9
  21. package/dist-types/commands/CreateConnectClientAddInCommand.d.ts +0 -1
  22. package/dist-types/commands/CreateConnectionAliasCommand.d.ts +3 -3
  23. package/dist-types/commands/CreateIpGroupCommand.d.ts +0 -1
  24. package/dist-types/commands/CreateUpdatedWorkspaceImageCommand.d.ts +11 -13
  25. package/dist-types/commands/DeleteClientBrandingCommand.d.ts +40 -0
  26. package/dist-types/commands/DeleteConnectionAliasCommand.d.ts +9 -11
  27. package/dist-types/commands/DeregisterWorkspaceDirectoryCommand.d.ts +12 -15
  28. package/dist-types/commands/DescribeClientBrandingCommand.d.ts +42 -0
  29. package/dist-types/commands/DescribeConnectionAliasPermissionsCommand.d.ts +4 -3
  30. package/dist-types/commands/DescribeConnectionAliasesCommand.d.ts +3 -3
  31. package/dist-types/commands/DescribeWorkspaceDirectoriesCommand.d.ts +1 -2
  32. package/dist-types/commands/DescribeWorkspaceImagePermissionsCommand.d.ts +1 -2
  33. package/dist-types/commands/DisassociateConnectionAliasCommand.d.ts +6 -6
  34. package/dist-types/commands/ImportClientBrandingCommand.d.ts +62 -0
  35. package/dist-types/commands/ImportWorkspaceImageCommand.d.ts +3 -4
  36. package/dist-types/commands/ListAvailableManagementCidrRangesCommand.d.ts +3 -4
  37. package/dist-types/commands/MigrateWorkspaceCommand.d.ts +11 -9
  38. package/dist-types/commands/ModifyWorkspacePropertiesCommand.d.ts +2 -4
  39. package/dist-types/commands/RebuildWorkspacesCommand.d.ts +2 -1
  40. package/dist-types/commands/RegisterWorkspaceDirectoryCommand.d.ts +4 -4
  41. package/dist-types/commands/TerminateWorkspacesCommand.d.ts +12 -17
  42. package/dist-types/commands/UpdateConnectionAliasPermissionCommand.d.ts +13 -11
  43. package/dist-types/commands/UpdateWorkspaceImagePermissionCommand.d.ts +13 -16
  44. package/dist-types/commands/index.d.ts +3 -0
  45. package/dist-types/models/models_0.d.ts +639 -151
  46. package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
  47. package/dist-types/ts3.4/WorkSpaces.d.ts +15 -0
  48. package/dist-types/ts3.4/WorkSpacesClient.d.ts +5 -2
  49. package/dist-types/ts3.4/commands/DeleteClientBrandingCommand.d.ts +17 -0
  50. package/dist-types/ts3.4/commands/DescribeClientBrandingCommand.d.ts +17 -0
  51. package/dist-types/ts3.4/commands/ImportClientBrandingCommand.d.ts +17 -0
  52. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  53. package/dist-types/ts3.4/models/models_0.d.ts +175 -0
  54. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
  55. package/package.json +3 -3
@@ -11,6 +11,7 @@ import { CreateTagsCommandInput, CreateTagsCommandOutput } from "../commands/Cre
11
11
  import { CreateUpdatedWorkspaceImageCommandInput, CreateUpdatedWorkspaceImageCommandOutput } from "../commands/CreateUpdatedWorkspaceImageCommand";
12
12
  import { CreateWorkspaceBundleCommandInput, CreateWorkspaceBundleCommandOutput } from "../commands/CreateWorkspaceBundleCommand";
13
13
  import { CreateWorkspacesCommandInput, CreateWorkspacesCommandOutput } from "../commands/CreateWorkspacesCommand";
14
+ import { DeleteClientBrandingCommandInput, DeleteClientBrandingCommandOutput } from "../commands/DeleteClientBrandingCommand";
14
15
  import { DeleteConnectClientAddInCommandInput, DeleteConnectClientAddInCommandOutput } from "../commands/DeleteConnectClientAddInCommand";
15
16
  import { DeleteConnectionAliasCommandInput, DeleteConnectionAliasCommandOutput } from "../commands/DeleteConnectionAliasCommand";
16
17
  import { DeleteIpGroupCommandInput, DeleteIpGroupCommandOutput } from "../commands/DeleteIpGroupCommand";
@@ -20,6 +21,7 @@ import { DeleteWorkspaceImageCommandInput, DeleteWorkspaceImageCommandOutput } f
20
21
  import { DeregisterWorkspaceDirectoryCommandInput, DeregisterWorkspaceDirectoryCommandOutput } from "../commands/DeregisterWorkspaceDirectoryCommand";
21
22
  import { DescribeAccountCommandInput, DescribeAccountCommandOutput } from "../commands/DescribeAccountCommand";
22
23
  import { DescribeAccountModificationsCommandInput, DescribeAccountModificationsCommandOutput } from "../commands/DescribeAccountModificationsCommand";
24
+ import { DescribeClientBrandingCommandInput, DescribeClientBrandingCommandOutput } from "../commands/DescribeClientBrandingCommand";
23
25
  import { DescribeClientPropertiesCommandInput, DescribeClientPropertiesCommandOutput } from "../commands/DescribeClientPropertiesCommand";
24
26
  import { DescribeConnectClientAddInsCommandInput, DescribeConnectClientAddInsCommandOutput } from "../commands/DescribeConnectClientAddInsCommand";
25
27
  import { DescribeConnectionAliasesCommandInput, DescribeConnectionAliasesCommandOutput } from "../commands/DescribeConnectionAliasesCommand";
@@ -35,6 +37,7 @@ import { DescribeWorkspacesConnectionStatusCommandInput, DescribeWorkspacesConne
35
37
  import { DescribeWorkspaceSnapshotsCommandInput, DescribeWorkspaceSnapshotsCommandOutput } from "../commands/DescribeWorkspaceSnapshotsCommand";
36
38
  import { DisassociateConnectionAliasCommandInput, DisassociateConnectionAliasCommandOutput } from "../commands/DisassociateConnectionAliasCommand";
37
39
  import { DisassociateIpGroupsCommandInput, DisassociateIpGroupsCommandOutput } from "../commands/DisassociateIpGroupsCommand";
40
+ import { ImportClientBrandingCommandInput, ImportClientBrandingCommandOutput } from "../commands/ImportClientBrandingCommand";
38
41
  import { ImportWorkspaceImageCommandInput, ImportWorkspaceImageCommandOutput } from "../commands/ImportWorkspaceImageCommand";
39
42
  import { ListAvailableManagementCidrRangesCommandInput, ListAvailableManagementCidrRangesCommandOutput } from "../commands/ListAvailableManagementCidrRangesCommand";
40
43
  import { MigrateWorkspaceCommandInput, MigrateWorkspaceCommandOutput } from "../commands/MigrateWorkspaceCommand";
@@ -69,6 +72,7 @@ export declare const serializeAws_json1_1CreateTagsCommand: (input: CreateTagsCo
69
72
  export declare const serializeAws_json1_1CreateUpdatedWorkspaceImageCommand: (input: CreateUpdatedWorkspaceImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
73
  export declare const serializeAws_json1_1CreateWorkspaceBundleCommand: (input: CreateWorkspaceBundleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
74
  export declare const serializeAws_json1_1CreateWorkspacesCommand: (input: CreateWorkspacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
+ export declare const serializeAws_json1_1DeleteClientBrandingCommand: (input: DeleteClientBrandingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
72
76
  export declare const serializeAws_json1_1DeleteConnectClientAddInCommand: (input: DeleteConnectClientAddInCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
77
  export declare const serializeAws_json1_1DeleteConnectionAliasCommand: (input: DeleteConnectionAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
78
  export declare const serializeAws_json1_1DeleteIpGroupCommand: (input: DeleteIpGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -78,6 +82,7 @@ export declare const serializeAws_json1_1DeleteWorkspaceImageCommand: (input: De
78
82
  export declare const serializeAws_json1_1DeregisterWorkspaceDirectoryCommand: (input: DeregisterWorkspaceDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
83
  export declare const serializeAws_json1_1DescribeAccountCommand: (input: DescribeAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
84
  export declare const serializeAws_json1_1DescribeAccountModificationsCommand: (input: DescribeAccountModificationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
+ export declare const serializeAws_json1_1DescribeClientBrandingCommand: (input: DescribeClientBrandingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
86
  export declare const serializeAws_json1_1DescribeClientPropertiesCommand: (input: DescribeClientPropertiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
87
  export declare const serializeAws_json1_1DescribeConnectClientAddInsCommand: (input: DescribeConnectClientAddInsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
88
  export declare const serializeAws_json1_1DescribeConnectionAliasesCommand: (input: DescribeConnectionAliasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -93,6 +98,7 @@ export declare const serializeAws_json1_1DescribeWorkspacesConnectionStatusComma
93
98
  export declare const serializeAws_json1_1DescribeWorkspaceSnapshotsCommand: (input: DescribeWorkspaceSnapshotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
99
  export declare const serializeAws_json1_1DisassociateConnectionAliasCommand: (input: DisassociateConnectionAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
100
  export declare const serializeAws_json1_1DisassociateIpGroupsCommand: (input: DisassociateIpGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
+ export declare const serializeAws_json1_1ImportClientBrandingCommand: (input: ImportClientBrandingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
96
102
  export declare const serializeAws_json1_1ImportWorkspaceImageCommand: (input: ImportWorkspaceImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
103
  export declare const serializeAws_json1_1ListAvailableManagementCidrRangesCommand: (input: ListAvailableManagementCidrRangesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
104
  export declare const serializeAws_json1_1MigrateWorkspaceCommand: (input: MigrateWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -127,6 +133,7 @@ export declare const deserializeAws_json1_1CreateTagsCommand: (output: __HttpRes
127
133
  export declare const deserializeAws_json1_1CreateUpdatedWorkspaceImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUpdatedWorkspaceImageCommandOutput>;
128
134
  export declare const deserializeAws_json1_1CreateWorkspaceBundleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspaceBundleCommandOutput>;
129
135
  export declare const deserializeAws_json1_1CreateWorkspacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspacesCommandOutput>;
136
+ export declare const deserializeAws_json1_1DeleteClientBrandingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClientBrandingCommandOutput>;
130
137
  export declare const deserializeAws_json1_1DeleteConnectClientAddInCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectClientAddInCommandOutput>;
131
138
  export declare const deserializeAws_json1_1DeleteConnectionAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectionAliasCommandOutput>;
132
139
  export declare const deserializeAws_json1_1DeleteIpGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIpGroupCommandOutput>;
@@ -136,6 +143,7 @@ export declare const deserializeAws_json1_1DeleteWorkspaceImageCommand: (output:
136
143
  export declare const deserializeAws_json1_1DeregisterWorkspaceDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterWorkspaceDirectoryCommandOutput>;
137
144
  export declare const deserializeAws_json1_1DescribeAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountCommandOutput>;
138
145
  export declare const deserializeAws_json1_1DescribeAccountModificationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountModificationsCommandOutput>;
146
+ export declare const deserializeAws_json1_1DescribeClientBrandingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClientBrandingCommandOutput>;
139
147
  export declare const deserializeAws_json1_1DescribeClientPropertiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClientPropertiesCommandOutput>;
140
148
  export declare const deserializeAws_json1_1DescribeConnectClientAddInsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectClientAddInsCommandOutput>;
141
149
  export declare const deserializeAws_json1_1DescribeConnectionAliasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectionAliasesCommandOutput>;
@@ -151,6 +159,7 @@ export declare const deserializeAws_json1_1DescribeWorkspacesConnectionStatusCom
151
159
  export declare const deserializeAws_json1_1DescribeWorkspaceSnapshotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeWorkspaceSnapshotsCommandOutput>;
152
160
  export declare const deserializeAws_json1_1DisassociateConnectionAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateConnectionAliasCommandOutput>;
153
161
  export declare const deserializeAws_json1_1DisassociateIpGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateIpGroupsCommandOutput>;
162
+ export declare const deserializeAws_json1_1ImportClientBrandingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportClientBrandingCommandOutput>;
154
163
  export declare const deserializeAws_json1_1ImportWorkspaceImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportWorkspaceImageCommandOutput>;
155
164
  export declare const deserializeAws_json1_1ListAvailableManagementCidrRangesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAvailableManagementCidrRangesCommandOutput>;
156
165
  export declare const deserializeAws_json1_1MigrateWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<MigrateWorkspaceCommandOutput>;
@@ -10,6 +10,7 @@ import { CreateTagsCommandInput, CreateTagsCommandOutput } from "./commands/Crea
10
10
  import { CreateUpdatedWorkspaceImageCommandInput, CreateUpdatedWorkspaceImageCommandOutput } from "./commands/CreateUpdatedWorkspaceImageCommand";
11
11
  import { CreateWorkspaceBundleCommandInput, CreateWorkspaceBundleCommandOutput } from "./commands/CreateWorkspaceBundleCommand";
12
12
  import { CreateWorkspacesCommandInput, CreateWorkspacesCommandOutput } from "./commands/CreateWorkspacesCommand";
13
+ import { DeleteClientBrandingCommandInput, DeleteClientBrandingCommandOutput } from "./commands/DeleteClientBrandingCommand";
13
14
  import { DeleteConnectClientAddInCommandInput, DeleteConnectClientAddInCommandOutput } from "./commands/DeleteConnectClientAddInCommand";
14
15
  import { DeleteConnectionAliasCommandInput, DeleteConnectionAliasCommandOutput } from "./commands/DeleteConnectionAliasCommand";
15
16
  import { DeleteIpGroupCommandInput, DeleteIpGroupCommandOutput } from "./commands/DeleteIpGroupCommand";
@@ -19,6 +20,7 @@ import { DeleteWorkspaceImageCommandInput, DeleteWorkspaceImageCommandOutput } f
19
20
  import { DeregisterWorkspaceDirectoryCommandInput, DeregisterWorkspaceDirectoryCommandOutput } from "./commands/DeregisterWorkspaceDirectoryCommand";
20
21
  import { DescribeAccountCommandInput, DescribeAccountCommandOutput } from "./commands/DescribeAccountCommand";
21
22
  import { DescribeAccountModificationsCommandInput, DescribeAccountModificationsCommandOutput } from "./commands/DescribeAccountModificationsCommand";
23
+ import { DescribeClientBrandingCommandInput, DescribeClientBrandingCommandOutput } from "./commands/DescribeClientBrandingCommand";
22
24
  import { DescribeClientPropertiesCommandInput, DescribeClientPropertiesCommandOutput } from "./commands/DescribeClientPropertiesCommand";
23
25
  import { DescribeConnectClientAddInsCommandInput, DescribeConnectClientAddInsCommandOutput } from "./commands/DescribeConnectClientAddInsCommand";
24
26
  import { DescribeConnectionAliasesCommandInput, DescribeConnectionAliasesCommandOutput } from "./commands/DescribeConnectionAliasesCommand";
@@ -34,6 +36,7 @@ import { DescribeWorkspacesConnectionStatusCommandInput, DescribeWorkspacesConne
34
36
  import { DescribeWorkspaceSnapshotsCommandInput, DescribeWorkspaceSnapshotsCommandOutput } from "./commands/DescribeWorkspaceSnapshotsCommand";
35
37
  import { DisassociateConnectionAliasCommandInput, DisassociateConnectionAliasCommandOutput } from "./commands/DisassociateConnectionAliasCommand";
36
38
  import { DisassociateIpGroupsCommandInput, DisassociateIpGroupsCommandOutput } from "./commands/DisassociateIpGroupsCommand";
39
+ import { ImportClientBrandingCommandInput, ImportClientBrandingCommandOutput } from "./commands/ImportClientBrandingCommand";
37
40
  import { ImportWorkspaceImageCommandInput, ImportWorkspaceImageCommandOutput } from "./commands/ImportWorkspaceImageCommand";
38
41
  import { ListAvailableManagementCidrRangesCommandInput, ListAvailableManagementCidrRangesCommandOutput } from "./commands/ListAvailableManagementCidrRangesCommand";
39
42
  import { MigrateWorkspaceCommandInput, MigrateWorkspaceCommandOutput } from "./commands/MigrateWorkspaceCommand";
@@ -105,6 +108,10 @@ export declare class WorkSpaces extends WorkSpacesClient {
105
108
  createWorkspaces(args: CreateWorkspacesCommandInput, cb: (err: any, data?: CreateWorkspacesCommandOutput) => void): void;
106
109
  createWorkspaces(args: CreateWorkspacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspacesCommandOutput) => void): void;
107
110
 
111
+ deleteClientBranding(args: DeleteClientBrandingCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClientBrandingCommandOutput>;
112
+ deleteClientBranding(args: DeleteClientBrandingCommandInput, cb: (err: any, data?: DeleteClientBrandingCommandOutput) => void): void;
113
+ deleteClientBranding(args: DeleteClientBrandingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClientBrandingCommandOutput) => void): void;
114
+
108
115
  deleteConnectClientAddIn(args: DeleteConnectClientAddInCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectClientAddInCommandOutput>;
109
116
  deleteConnectClientAddIn(args: DeleteConnectClientAddInCommandInput, cb: (err: any, data?: DeleteConnectClientAddInCommandOutput) => void): void;
110
117
  deleteConnectClientAddIn(args: DeleteConnectClientAddInCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectClientAddInCommandOutput) => void): void;
@@ -141,6 +148,10 @@ export declare class WorkSpaces extends WorkSpacesClient {
141
148
  describeAccountModifications(args: DescribeAccountModificationsCommandInput, cb: (err: any, data?: DescribeAccountModificationsCommandOutput) => void): void;
142
149
  describeAccountModifications(args: DescribeAccountModificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountModificationsCommandOutput) => void): void;
143
150
 
151
+ describeClientBranding(args: DescribeClientBrandingCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClientBrandingCommandOutput>;
152
+ describeClientBranding(args: DescribeClientBrandingCommandInput, cb: (err: any, data?: DescribeClientBrandingCommandOutput) => void): void;
153
+ describeClientBranding(args: DescribeClientBrandingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClientBrandingCommandOutput) => void): void;
154
+
144
155
  describeClientProperties(args: DescribeClientPropertiesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClientPropertiesCommandOutput>;
145
156
  describeClientProperties(args: DescribeClientPropertiesCommandInput, cb: (err: any, data?: DescribeClientPropertiesCommandOutput) => void): void;
146
157
  describeClientProperties(args: DescribeClientPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClientPropertiesCommandOutput) => void): void;
@@ -201,6 +212,10 @@ export declare class WorkSpaces extends WorkSpacesClient {
201
212
  disassociateIpGroups(args: DisassociateIpGroupsCommandInput, cb: (err: any, data?: DisassociateIpGroupsCommandOutput) => void): void;
202
213
  disassociateIpGroups(args: DisassociateIpGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateIpGroupsCommandOutput) => void): void;
203
214
 
215
+ importClientBranding(args: ImportClientBrandingCommandInput, options?: __HttpHandlerOptions): Promise<ImportClientBrandingCommandOutput>;
216
+ importClientBranding(args: ImportClientBrandingCommandInput, cb: (err: any, data?: ImportClientBrandingCommandOutput) => void): void;
217
+ importClientBranding(args: ImportClientBrandingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportClientBrandingCommandOutput) => void): void;
218
+
204
219
  importWorkspaceImage(args: ImportWorkspaceImageCommandInput, options?: __HttpHandlerOptions): Promise<ImportWorkspaceImageCommandOutput>;
205
220
  importWorkspaceImage(args: ImportWorkspaceImageCommandInput, cb: (err: any, data?: ImportWorkspaceImageCommandOutput) => void): void;
206
221
  importWorkspaceImage(args: ImportWorkspaceImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportWorkspaceImageCommandOutput) => void): void;
@@ -17,6 +17,7 @@ import { CreateTagsCommandInput, CreateTagsCommandOutput } from "./commands/Crea
17
17
  import { CreateUpdatedWorkspaceImageCommandInput, CreateUpdatedWorkspaceImageCommandOutput } from "./commands/CreateUpdatedWorkspaceImageCommand";
18
18
  import { CreateWorkspaceBundleCommandInput, CreateWorkspaceBundleCommandOutput } from "./commands/CreateWorkspaceBundleCommand";
19
19
  import { CreateWorkspacesCommandInput, CreateWorkspacesCommandOutput } from "./commands/CreateWorkspacesCommand";
20
+ import { DeleteClientBrandingCommandInput, DeleteClientBrandingCommandOutput } from "./commands/DeleteClientBrandingCommand";
20
21
  import { DeleteConnectClientAddInCommandInput, DeleteConnectClientAddInCommandOutput } from "./commands/DeleteConnectClientAddInCommand";
21
22
  import { DeleteConnectionAliasCommandInput, DeleteConnectionAliasCommandOutput } from "./commands/DeleteConnectionAliasCommand";
22
23
  import { DeleteIpGroupCommandInput, DeleteIpGroupCommandOutput } from "./commands/DeleteIpGroupCommand";
@@ -26,6 +27,7 @@ import { DeleteWorkspaceImageCommandInput, DeleteWorkspaceImageCommandOutput } f
26
27
  import { DeregisterWorkspaceDirectoryCommandInput, DeregisterWorkspaceDirectoryCommandOutput } from "./commands/DeregisterWorkspaceDirectoryCommand";
27
28
  import { DescribeAccountCommandInput, DescribeAccountCommandOutput } from "./commands/DescribeAccountCommand";
28
29
  import { DescribeAccountModificationsCommandInput, DescribeAccountModificationsCommandOutput } from "./commands/DescribeAccountModificationsCommand";
30
+ import { DescribeClientBrandingCommandInput, DescribeClientBrandingCommandOutput } from "./commands/DescribeClientBrandingCommand";
29
31
  import { DescribeClientPropertiesCommandInput, DescribeClientPropertiesCommandOutput } from "./commands/DescribeClientPropertiesCommand";
30
32
  import { DescribeConnectClientAddInsCommandInput, DescribeConnectClientAddInsCommandOutput } from "./commands/DescribeConnectClientAddInsCommand";
31
33
  import { DescribeConnectionAliasesCommandInput, DescribeConnectionAliasesCommandOutput } from "./commands/DescribeConnectionAliasesCommand";
@@ -41,6 +43,7 @@ import { DescribeWorkspacesConnectionStatusCommandInput, DescribeWorkspacesConne
41
43
  import { DescribeWorkspaceSnapshotsCommandInput, DescribeWorkspaceSnapshotsCommandOutput } from "./commands/DescribeWorkspaceSnapshotsCommand";
42
44
  import { DisassociateConnectionAliasCommandInput, DisassociateConnectionAliasCommandOutput } from "./commands/DisassociateConnectionAliasCommand";
43
45
  import { DisassociateIpGroupsCommandInput, DisassociateIpGroupsCommandOutput } from "./commands/DisassociateIpGroupsCommand";
46
+ import { ImportClientBrandingCommandInput, ImportClientBrandingCommandOutput } from "./commands/ImportClientBrandingCommand";
44
47
  import { ImportWorkspaceImageCommandInput, ImportWorkspaceImageCommandOutput } from "./commands/ImportWorkspaceImageCommand";
45
48
  import { ListAvailableManagementCidrRangesCommandInput, ListAvailableManagementCidrRangesCommandOutput } from "./commands/ListAvailableManagementCidrRangesCommand";
46
49
  import { MigrateWorkspaceCommandInput, MigrateWorkspaceCommandOutput } from "./commands/MigrateWorkspaceCommand";
@@ -64,8 +67,8 @@ import { UpdateConnectionAliasPermissionCommandInput, UpdateConnectionAliasPermi
64
67
  import { UpdateRulesOfIpGroupCommandInput, UpdateRulesOfIpGroupCommandOutput } from "./commands/UpdateRulesOfIpGroupCommand";
65
68
  import { UpdateWorkspaceBundleCommandInput, UpdateWorkspaceBundleCommandOutput } from "./commands/UpdateWorkspaceBundleCommand";
66
69
  import { UpdateWorkspaceImagePermissionCommandInput, UpdateWorkspaceImagePermissionCommandOutput } from "./commands/UpdateWorkspaceImagePermissionCommand";
67
- export declare type ServiceInputTypes = AssociateConnectionAliasCommandInput | AssociateIpGroupsCommandInput | AuthorizeIpRulesCommandInput | CopyWorkspaceImageCommandInput | CreateConnectClientAddInCommandInput | CreateConnectionAliasCommandInput | CreateIpGroupCommandInput | CreateTagsCommandInput | CreateUpdatedWorkspaceImageCommandInput | CreateWorkspaceBundleCommandInput | CreateWorkspacesCommandInput | DeleteConnectClientAddInCommandInput | DeleteConnectionAliasCommandInput | DeleteIpGroupCommandInput | DeleteTagsCommandInput | DeleteWorkspaceBundleCommandInput | DeleteWorkspaceImageCommandInput | DeregisterWorkspaceDirectoryCommandInput | DescribeAccountCommandInput | DescribeAccountModificationsCommandInput | DescribeClientPropertiesCommandInput | DescribeConnectClientAddInsCommandInput | DescribeConnectionAliasPermissionsCommandInput | DescribeConnectionAliasesCommandInput | DescribeIpGroupsCommandInput | DescribeTagsCommandInput | DescribeWorkspaceBundlesCommandInput | DescribeWorkspaceDirectoriesCommandInput | DescribeWorkspaceImagePermissionsCommandInput | DescribeWorkspaceImagesCommandInput | DescribeWorkspaceSnapshotsCommandInput | DescribeWorkspacesCommandInput | DescribeWorkspacesConnectionStatusCommandInput | DisassociateConnectionAliasCommandInput | DisassociateIpGroupsCommandInput | ImportWorkspaceImageCommandInput | ListAvailableManagementCidrRangesCommandInput | MigrateWorkspaceCommandInput | ModifyAccountCommandInput | ModifyClientPropertiesCommandInput | ModifySelfservicePermissionsCommandInput | ModifyWorkspaceAccessPropertiesCommandInput | ModifyWorkspaceCreationPropertiesCommandInput | ModifyWorkspacePropertiesCommandInput | ModifyWorkspaceStateCommandInput | RebootWorkspacesCommandInput | RebuildWorkspacesCommandInput | RegisterWorkspaceDirectoryCommandInput | RestoreWorkspaceCommandInput | RevokeIpRulesCommandInput | StartWorkspacesCommandInput | StopWorkspacesCommandInput | TerminateWorkspacesCommandInput | UpdateConnectClientAddInCommandInput | UpdateConnectionAliasPermissionCommandInput | UpdateRulesOfIpGroupCommandInput | UpdateWorkspaceBundleCommandInput | UpdateWorkspaceImagePermissionCommandInput;
68
- export declare type ServiceOutputTypes = AssociateConnectionAliasCommandOutput | AssociateIpGroupsCommandOutput | AuthorizeIpRulesCommandOutput | CopyWorkspaceImageCommandOutput | CreateConnectClientAddInCommandOutput | CreateConnectionAliasCommandOutput | CreateIpGroupCommandOutput | CreateTagsCommandOutput | CreateUpdatedWorkspaceImageCommandOutput | CreateWorkspaceBundleCommandOutput | CreateWorkspacesCommandOutput | DeleteConnectClientAddInCommandOutput | DeleteConnectionAliasCommandOutput | DeleteIpGroupCommandOutput | DeleteTagsCommandOutput | DeleteWorkspaceBundleCommandOutput | DeleteWorkspaceImageCommandOutput | DeregisterWorkspaceDirectoryCommandOutput | DescribeAccountCommandOutput | DescribeAccountModificationsCommandOutput | DescribeClientPropertiesCommandOutput | DescribeConnectClientAddInsCommandOutput | DescribeConnectionAliasPermissionsCommandOutput | DescribeConnectionAliasesCommandOutput | DescribeIpGroupsCommandOutput | DescribeTagsCommandOutput | DescribeWorkspaceBundlesCommandOutput | DescribeWorkspaceDirectoriesCommandOutput | DescribeWorkspaceImagePermissionsCommandOutput | DescribeWorkspaceImagesCommandOutput | DescribeWorkspaceSnapshotsCommandOutput | DescribeWorkspacesCommandOutput | DescribeWorkspacesConnectionStatusCommandOutput | DisassociateConnectionAliasCommandOutput | DisassociateIpGroupsCommandOutput | ImportWorkspaceImageCommandOutput | ListAvailableManagementCidrRangesCommandOutput | MigrateWorkspaceCommandOutput | ModifyAccountCommandOutput | ModifyClientPropertiesCommandOutput | ModifySelfservicePermissionsCommandOutput | ModifyWorkspaceAccessPropertiesCommandOutput | ModifyWorkspaceCreationPropertiesCommandOutput | ModifyWorkspacePropertiesCommandOutput | ModifyWorkspaceStateCommandOutput | RebootWorkspacesCommandOutput | RebuildWorkspacesCommandOutput | RegisterWorkspaceDirectoryCommandOutput | RestoreWorkspaceCommandOutput | RevokeIpRulesCommandOutput | StartWorkspacesCommandOutput | StopWorkspacesCommandOutput | TerminateWorkspacesCommandOutput | UpdateConnectClientAddInCommandOutput | UpdateConnectionAliasPermissionCommandOutput | UpdateRulesOfIpGroupCommandOutput | UpdateWorkspaceBundleCommandOutput | UpdateWorkspaceImagePermissionCommandOutput;
70
+ export declare type ServiceInputTypes = AssociateConnectionAliasCommandInput | AssociateIpGroupsCommandInput | AuthorizeIpRulesCommandInput | CopyWorkspaceImageCommandInput | CreateConnectClientAddInCommandInput | CreateConnectionAliasCommandInput | CreateIpGroupCommandInput | CreateTagsCommandInput | CreateUpdatedWorkspaceImageCommandInput | CreateWorkspaceBundleCommandInput | CreateWorkspacesCommandInput | DeleteClientBrandingCommandInput | DeleteConnectClientAddInCommandInput | DeleteConnectionAliasCommandInput | DeleteIpGroupCommandInput | DeleteTagsCommandInput | DeleteWorkspaceBundleCommandInput | DeleteWorkspaceImageCommandInput | DeregisterWorkspaceDirectoryCommandInput | DescribeAccountCommandInput | DescribeAccountModificationsCommandInput | DescribeClientBrandingCommandInput | DescribeClientPropertiesCommandInput | DescribeConnectClientAddInsCommandInput | DescribeConnectionAliasPermissionsCommandInput | DescribeConnectionAliasesCommandInput | DescribeIpGroupsCommandInput | DescribeTagsCommandInput | DescribeWorkspaceBundlesCommandInput | DescribeWorkspaceDirectoriesCommandInput | DescribeWorkspaceImagePermissionsCommandInput | DescribeWorkspaceImagesCommandInput | DescribeWorkspaceSnapshotsCommandInput | DescribeWorkspacesCommandInput | DescribeWorkspacesConnectionStatusCommandInput | DisassociateConnectionAliasCommandInput | DisassociateIpGroupsCommandInput | ImportClientBrandingCommandInput | ImportWorkspaceImageCommandInput | ListAvailableManagementCidrRangesCommandInput | MigrateWorkspaceCommandInput | ModifyAccountCommandInput | ModifyClientPropertiesCommandInput | ModifySelfservicePermissionsCommandInput | ModifyWorkspaceAccessPropertiesCommandInput | ModifyWorkspaceCreationPropertiesCommandInput | ModifyWorkspacePropertiesCommandInput | ModifyWorkspaceStateCommandInput | RebootWorkspacesCommandInput | RebuildWorkspacesCommandInput | RegisterWorkspaceDirectoryCommandInput | RestoreWorkspaceCommandInput | RevokeIpRulesCommandInput | StartWorkspacesCommandInput | StopWorkspacesCommandInput | TerminateWorkspacesCommandInput | UpdateConnectClientAddInCommandInput | UpdateConnectionAliasPermissionCommandInput | UpdateRulesOfIpGroupCommandInput | UpdateWorkspaceBundleCommandInput | UpdateWorkspaceImagePermissionCommandInput;
71
+ export declare type ServiceOutputTypes = AssociateConnectionAliasCommandOutput | AssociateIpGroupsCommandOutput | AuthorizeIpRulesCommandOutput | CopyWorkspaceImageCommandOutput | CreateConnectClientAddInCommandOutput | CreateConnectionAliasCommandOutput | CreateIpGroupCommandOutput | CreateTagsCommandOutput | CreateUpdatedWorkspaceImageCommandOutput | CreateWorkspaceBundleCommandOutput | CreateWorkspacesCommandOutput | DeleteClientBrandingCommandOutput | DeleteConnectClientAddInCommandOutput | DeleteConnectionAliasCommandOutput | DeleteIpGroupCommandOutput | DeleteTagsCommandOutput | DeleteWorkspaceBundleCommandOutput | DeleteWorkspaceImageCommandOutput | DeregisterWorkspaceDirectoryCommandOutput | DescribeAccountCommandOutput | DescribeAccountModificationsCommandOutput | DescribeClientBrandingCommandOutput | DescribeClientPropertiesCommandOutput | DescribeConnectClientAddInsCommandOutput | DescribeConnectionAliasPermissionsCommandOutput | DescribeConnectionAliasesCommandOutput | DescribeIpGroupsCommandOutput | DescribeTagsCommandOutput | DescribeWorkspaceBundlesCommandOutput | DescribeWorkspaceDirectoriesCommandOutput | DescribeWorkspaceImagePermissionsCommandOutput | DescribeWorkspaceImagesCommandOutput | DescribeWorkspaceSnapshotsCommandOutput | DescribeWorkspacesCommandOutput | DescribeWorkspacesConnectionStatusCommandOutput | DisassociateConnectionAliasCommandOutput | DisassociateIpGroupsCommandOutput | ImportClientBrandingCommandOutput | ImportWorkspaceImageCommandOutput | ListAvailableManagementCidrRangesCommandOutput | MigrateWorkspaceCommandOutput | ModifyAccountCommandOutput | ModifyClientPropertiesCommandOutput | ModifySelfservicePermissionsCommandOutput | ModifyWorkspaceAccessPropertiesCommandOutput | ModifyWorkspaceCreationPropertiesCommandOutput | ModifyWorkspacePropertiesCommandOutput | ModifyWorkspaceStateCommandOutput | RebootWorkspacesCommandOutput | RebuildWorkspacesCommandOutput | RegisterWorkspaceDirectoryCommandOutput | RestoreWorkspaceCommandOutput | RevokeIpRulesCommandOutput | StartWorkspacesCommandOutput | StopWorkspacesCommandOutput | TerminateWorkspacesCommandOutput | UpdateConnectClientAddInCommandOutput | UpdateConnectionAliasPermissionCommandOutput | UpdateRulesOfIpGroupCommandOutput | UpdateWorkspaceBundleCommandOutput | UpdateWorkspaceImagePermissionCommandOutput;
69
72
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
70
73
 
71
74
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DeleteClientBrandingRequest, DeleteClientBrandingResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient";
5
+ export interface DeleteClientBrandingCommandInput extends DeleteClientBrandingRequest {
6
+ }
7
+ export interface DeleteClientBrandingCommandOutput extends DeleteClientBrandingResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteClientBrandingCommand extends $Command<DeleteClientBrandingCommandInput, DeleteClientBrandingCommandOutput, WorkSpacesClientResolvedConfig> {
11
+ readonly input: DeleteClientBrandingCommandInput;
12
+ constructor(input: DeleteClientBrandingCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteClientBrandingCommandInput, DeleteClientBrandingCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DescribeClientBrandingRequest, DescribeClientBrandingResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient";
5
+ export interface DescribeClientBrandingCommandInput extends DescribeClientBrandingRequest {
6
+ }
7
+ export interface DescribeClientBrandingCommandOutput extends DescribeClientBrandingResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeClientBrandingCommand extends $Command<DescribeClientBrandingCommandInput, DescribeClientBrandingCommandOutput, WorkSpacesClientResolvedConfig> {
11
+ readonly input: DescribeClientBrandingCommandInput;
12
+ constructor(input: DescribeClientBrandingCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeClientBrandingCommandInput, DescribeClientBrandingCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ImportClientBrandingRequest, ImportClientBrandingResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient";
5
+ export interface ImportClientBrandingCommandInput extends ImportClientBrandingRequest {
6
+ }
7
+ export interface ImportClientBrandingCommandOutput extends ImportClientBrandingResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ImportClientBrandingCommand extends $Command<ImportClientBrandingCommandInput, ImportClientBrandingCommandOutput, WorkSpacesClientResolvedConfig> {
11
+ readonly input: ImportClientBrandingCommandInput;
12
+ constructor(input: ImportClientBrandingCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportClientBrandingCommandInput, ImportClientBrandingCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -9,6 +9,7 @@ export * from "./CreateTagsCommand";
9
9
  export * from "./CreateUpdatedWorkspaceImageCommand";
10
10
  export * from "./CreateWorkspaceBundleCommand";
11
11
  export * from "./CreateWorkspacesCommand";
12
+ export * from "./DeleteClientBrandingCommand";
12
13
  export * from "./DeleteConnectClientAddInCommand";
13
14
  export * from "./DeleteConnectionAliasCommand";
14
15
  export * from "./DeleteIpGroupCommand";
@@ -18,6 +19,7 @@ export * from "./DeleteWorkspaceImageCommand";
18
19
  export * from "./DeregisterWorkspaceDirectoryCommand";
19
20
  export * from "./DescribeAccountCommand";
20
21
  export * from "./DescribeAccountModificationsCommand";
22
+ export * from "./DescribeClientBrandingCommand";
21
23
  export * from "./DescribeClientPropertiesCommand";
22
24
  export * from "./DescribeConnectClientAddInsCommand";
23
25
  export * from "./DescribeConnectionAliasPermissionsCommand";
@@ -33,6 +35,7 @@ export * from "./DescribeWorkspacesCommand";
33
35
  export * from "./DescribeWorkspacesConnectionStatusCommand";
34
36
  export * from "./DisassociateConnectionAliasCommand";
35
37
  export * from "./DisassociateIpGroupsCommand";
38
+ export * from "./ImportClientBrandingCommand";
36
39
  export * from "./ImportWorkspaceImageCommand";
37
40
  export * from "./ListAvailableManagementCidrRangesCommand";
38
41
  export * from "./MigrateWorkspaceCommand";
@@ -158,6 +158,8 @@ export declare namespace AuthorizeIpRulesResult {
158
158
  export declare enum Compute {
159
159
  GRAPHICS = "GRAPHICS",
160
160
  GRAPHICSPRO = "GRAPHICSPRO",
161
+ GRAPHICSPRO_G4DN = "GRAPHICSPRO_G4DN",
162
+ GRAPHICS_G4DN = "GRAPHICS_G4DN",
161
163
  PERFORMANCE = "PERFORMANCE",
162
164
  POWER = "POWER",
163
165
  POWERPRO = "POWERPRO",
@@ -218,6 +220,14 @@ export declare namespace WorkspaceBundle {
218
220
 
219
221
  const filterSensitiveLog: (obj: WorkspaceBundle) => any;
220
222
  }
223
+ export declare enum ClientDeviceType {
224
+ DEVICE_TYPE_ANDROID = "DeviceTypeAndroid",
225
+ DEVICE_TYPE_IOS = "DeviceTypeIos",
226
+ DEVICE_TYPE_LINUX = "DeviceTypeLinux",
227
+ DEVICE_TYPE_OSX = "DeviceTypeOsx",
228
+ DEVICE_TYPE_WEB = "DeviceTypeWeb",
229
+ DEVICE_TYPE_WINDOWS = "DeviceTypeWindows"
230
+ }
221
231
  export declare enum ReconnectEnum {
222
232
  DISABLED = "DISABLED",
223
233
  ENABLED = "ENABLED"
@@ -649,6 +659,44 @@ export declare enum DedicatedTenancySupportEnum {
649
659
  ENABLED = "ENABLED"
650
660
  }
651
661
 
662
+ export interface DefaultClientBrandingAttributes {
663
+
664
+ LogoUrl?: string;
665
+
666
+ SupportEmail?: string;
667
+
668
+ SupportLink?: string;
669
+
670
+ ForgotPasswordLink?: string;
671
+
672
+ LoginMessage?: {
673
+ [key: string]: string;
674
+ };
675
+ }
676
+ export declare namespace DefaultClientBrandingAttributes {
677
+
678
+ const filterSensitiveLog: (obj: DefaultClientBrandingAttributes) => any;
679
+ }
680
+
681
+ export interface DefaultImportClientBrandingAttributes {
682
+
683
+ Logo?: Uint8Array;
684
+
685
+ SupportEmail?: string;
686
+
687
+ SupportLink?: string;
688
+
689
+ ForgotPasswordLink?: string;
690
+
691
+ LoginMessage?: {
692
+ [key: string]: string;
693
+ };
694
+ }
695
+ export declare namespace DefaultImportClientBrandingAttributes {
696
+
697
+ const filterSensitiveLog: (obj: DefaultImportClientBrandingAttributes) => any;
698
+ }
699
+
652
700
  export interface DefaultWorkspaceCreationProperties {
653
701
 
654
702
  EnableWorkDocs?: boolean;
@@ -667,6 +715,22 @@ export declare namespace DefaultWorkspaceCreationProperties {
667
715
 
668
716
  const filterSensitiveLog: (obj: DefaultWorkspaceCreationProperties) => any;
669
717
  }
718
+ export interface DeleteClientBrandingRequest {
719
+
720
+ ResourceId: string | undefined;
721
+
722
+ Platforms: (ClientDeviceType | string)[] | undefined;
723
+ }
724
+ export declare namespace DeleteClientBrandingRequest {
725
+
726
+ const filterSensitiveLog: (obj: DeleteClientBrandingRequest) => any;
727
+ }
728
+ export interface DeleteClientBrandingResult {
729
+ }
730
+ export declare namespace DeleteClientBrandingResult {
731
+
732
+ const filterSensitiveLog: (obj: DeleteClientBrandingResult) => any;
733
+ }
670
734
  export interface DeleteConnectClientAddInRequest {
671
735
 
672
736
  AddInId: string | undefined;
@@ -803,6 +867,55 @@ export declare namespace DescribeAccountModificationsResult {
803
867
 
804
868
  const filterSensitiveLog: (obj: DescribeAccountModificationsResult) => any;
805
869
  }
870
+ export interface DescribeClientBrandingRequest {
871
+
872
+ ResourceId: string | undefined;
873
+ }
874
+ export declare namespace DescribeClientBrandingRequest {
875
+
876
+ const filterSensitiveLog: (obj: DescribeClientBrandingRequest) => any;
877
+ }
878
+
879
+ export interface IosClientBrandingAttributes {
880
+
881
+ LogoUrl?: string;
882
+
883
+ Logo2xUrl?: string;
884
+
885
+ Logo3xUrl?: string;
886
+
887
+ SupportEmail?: string;
888
+
889
+ SupportLink?: string;
890
+
891
+ ForgotPasswordLink?: string;
892
+
893
+ LoginMessage?: {
894
+ [key: string]: string;
895
+ };
896
+ }
897
+ export declare namespace IosClientBrandingAttributes {
898
+
899
+ const filterSensitiveLog: (obj: IosClientBrandingAttributes) => any;
900
+ }
901
+ export interface DescribeClientBrandingResult {
902
+
903
+ DeviceTypeWindows?: DefaultClientBrandingAttributes;
904
+
905
+ DeviceTypeOsx?: DefaultClientBrandingAttributes;
906
+
907
+ DeviceTypeAndroid?: DefaultClientBrandingAttributes;
908
+
909
+ DeviceTypeIos?: IosClientBrandingAttributes;
910
+
911
+ DeviceTypeLinux?: DefaultClientBrandingAttributes;
912
+
913
+ DeviceTypeWeb?: DefaultClientBrandingAttributes;
914
+ }
915
+ export declare namespace DescribeClientBrandingResult {
916
+
917
+ const filterSensitiveLog: (obj: DescribeClientBrandingResult) => any;
918
+ }
806
919
  export interface DescribeClientPropertiesRequest {
807
920
 
808
921
  ResourceIds: string[] | undefined;
@@ -1336,9 +1449,71 @@ export declare namespace FailedWorkspaceChangeRequest {
1336
1449
 
1337
1450
  const filterSensitiveLog: (obj: FailedWorkspaceChangeRequest) => any;
1338
1451
  }
1452
+
1453
+ export interface IosImportClientBrandingAttributes {
1454
+
1455
+ Logo?: Uint8Array;
1456
+
1457
+ Logo2x?: Uint8Array;
1458
+
1459
+ Logo3x?: Uint8Array;
1460
+
1461
+ SupportEmail?: string;
1462
+
1463
+ SupportLink?: string;
1464
+
1465
+ ForgotPasswordLink?: string;
1466
+
1467
+ LoginMessage?: {
1468
+ [key: string]: string;
1469
+ };
1470
+ }
1471
+ export declare namespace IosImportClientBrandingAttributes {
1472
+
1473
+ const filterSensitiveLog: (obj: IosImportClientBrandingAttributes) => any;
1474
+ }
1475
+ export interface ImportClientBrandingRequest {
1476
+
1477
+ ResourceId: string | undefined;
1478
+
1479
+ DeviceTypeWindows?: DefaultImportClientBrandingAttributes;
1480
+
1481
+ DeviceTypeOsx?: DefaultImportClientBrandingAttributes;
1482
+
1483
+ DeviceTypeAndroid?: DefaultImportClientBrandingAttributes;
1484
+
1485
+ DeviceTypeIos?: IosImportClientBrandingAttributes;
1486
+
1487
+ DeviceTypeLinux?: DefaultImportClientBrandingAttributes;
1488
+
1489
+ DeviceTypeWeb?: DefaultImportClientBrandingAttributes;
1490
+ }
1491
+ export declare namespace ImportClientBrandingRequest {
1492
+
1493
+ const filterSensitiveLog: (obj: ImportClientBrandingRequest) => any;
1494
+ }
1495
+ export interface ImportClientBrandingResult {
1496
+
1497
+ DeviceTypeWindows?: DefaultClientBrandingAttributes;
1498
+
1499
+ DeviceTypeOsx?: DefaultClientBrandingAttributes;
1500
+
1501
+ DeviceTypeAndroid?: DefaultClientBrandingAttributes;
1502
+
1503
+ DeviceTypeIos?: IosClientBrandingAttributes;
1504
+
1505
+ DeviceTypeLinux?: DefaultClientBrandingAttributes;
1506
+
1507
+ DeviceTypeWeb?: DefaultClientBrandingAttributes;
1508
+ }
1509
+ export declare namespace ImportClientBrandingResult {
1510
+
1511
+ const filterSensitiveLog: (obj: ImportClientBrandingResult) => any;
1512
+ }
1339
1513
  export declare enum WorkspaceImageIngestionProcess {
1340
1514
  BYOL_GRAPHICS = "BYOL_GRAPHICS",
1341
1515
  BYOL_GRAPHICSPRO = "BYOL_GRAPHICSPRO",
1516
+ BYOL_GRAPHICS_G4DN = "BYOL_GRAPHICS_G4DN",
1342
1517
  BYOL_REGULAR = "BYOL_REGULAR",
1343
1518
  BYOL_REGULAR_WSP = "BYOL_REGULAR_WSP"
1344
1519
  }
@@ -11,6 +11,7 @@ import { CreateTagsCommandInput, CreateTagsCommandOutput } from "../commands/Cre
11
11
  import { CreateUpdatedWorkspaceImageCommandInput, CreateUpdatedWorkspaceImageCommandOutput } from "../commands/CreateUpdatedWorkspaceImageCommand";
12
12
  import { CreateWorkspaceBundleCommandInput, CreateWorkspaceBundleCommandOutput } from "../commands/CreateWorkspaceBundleCommand";
13
13
  import { CreateWorkspacesCommandInput, CreateWorkspacesCommandOutput } from "../commands/CreateWorkspacesCommand";
14
+ import { DeleteClientBrandingCommandInput, DeleteClientBrandingCommandOutput } from "../commands/DeleteClientBrandingCommand";
14
15
  import { DeleteConnectClientAddInCommandInput, DeleteConnectClientAddInCommandOutput } from "../commands/DeleteConnectClientAddInCommand";
15
16
  import { DeleteConnectionAliasCommandInput, DeleteConnectionAliasCommandOutput } from "../commands/DeleteConnectionAliasCommand";
16
17
  import { DeleteIpGroupCommandInput, DeleteIpGroupCommandOutput } from "../commands/DeleteIpGroupCommand";
@@ -20,6 +21,7 @@ import { DeleteWorkspaceImageCommandInput, DeleteWorkspaceImageCommandOutput } f
20
21
  import { DeregisterWorkspaceDirectoryCommandInput, DeregisterWorkspaceDirectoryCommandOutput } from "../commands/DeregisterWorkspaceDirectoryCommand";
21
22
  import { DescribeAccountCommandInput, DescribeAccountCommandOutput } from "../commands/DescribeAccountCommand";
22
23
  import { DescribeAccountModificationsCommandInput, DescribeAccountModificationsCommandOutput } from "../commands/DescribeAccountModificationsCommand";
24
+ import { DescribeClientBrandingCommandInput, DescribeClientBrandingCommandOutput } from "../commands/DescribeClientBrandingCommand";
23
25
  import { DescribeClientPropertiesCommandInput, DescribeClientPropertiesCommandOutput } from "../commands/DescribeClientPropertiesCommand";
24
26
  import { DescribeConnectClientAddInsCommandInput, DescribeConnectClientAddInsCommandOutput } from "../commands/DescribeConnectClientAddInsCommand";
25
27
  import { DescribeConnectionAliasesCommandInput, DescribeConnectionAliasesCommandOutput } from "../commands/DescribeConnectionAliasesCommand";
@@ -35,6 +37,7 @@ import { DescribeWorkspacesConnectionStatusCommandInput, DescribeWorkspacesConne
35
37
  import { DescribeWorkspaceSnapshotsCommandInput, DescribeWorkspaceSnapshotsCommandOutput } from "../commands/DescribeWorkspaceSnapshotsCommand";
36
38
  import { DisassociateConnectionAliasCommandInput, DisassociateConnectionAliasCommandOutput } from "../commands/DisassociateConnectionAliasCommand";
37
39
  import { DisassociateIpGroupsCommandInput, DisassociateIpGroupsCommandOutput } from "../commands/DisassociateIpGroupsCommand";
40
+ import { ImportClientBrandingCommandInput, ImportClientBrandingCommandOutput } from "../commands/ImportClientBrandingCommand";
38
41
  import { ImportWorkspaceImageCommandInput, ImportWorkspaceImageCommandOutput } from "../commands/ImportWorkspaceImageCommand";
39
42
  import { ListAvailableManagementCidrRangesCommandInput, ListAvailableManagementCidrRangesCommandOutput } from "../commands/ListAvailableManagementCidrRangesCommand";
40
43
  import { MigrateWorkspaceCommandInput, MigrateWorkspaceCommandOutput } from "../commands/MigrateWorkspaceCommand";
@@ -69,6 +72,7 @@ export declare const serializeAws_json1_1CreateTagsCommand: (input: CreateTagsCo
69
72
  export declare const serializeAws_json1_1CreateUpdatedWorkspaceImageCommand: (input: CreateUpdatedWorkspaceImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
73
  export declare const serializeAws_json1_1CreateWorkspaceBundleCommand: (input: CreateWorkspaceBundleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
74
  export declare const serializeAws_json1_1CreateWorkspacesCommand: (input: CreateWorkspacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
+ export declare const serializeAws_json1_1DeleteClientBrandingCommand: (input: DeleteClientBrandingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
72
76
  export declare const serializeAws_json1_1DeleteConnectClientAddInCommand: (input: DeleteConnectClientAddInCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
77
  export declare const serializeAws_json1_1DeleteConnectionAliasCommand: (input: DeleteConnectionAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
78
  export declare const serializeAws_json1_1DeleteIpGroupCommand: (input: DeleteIpGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -78,6 +82,7 @@ export declare const serializeAws_json1_1DeleteWorkspaceImageCommand: (input: De
78
82
  export declare const serializeAws_json1_1DeregisterWorkspaceDirectoryCommand: (input: DeregisterWorkspaceDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
83
  export declare const serializeAws_json1_1DescribeAccountCommand: (input: DescribeAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
84
  export declare const serializeAws_json1_1DescribeAccountModificationsCommand: (input: DescribeAccountModificationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
+ export declare const serializeAws_json1_1DescribeClientBrandingCommand: (input: DescribeClientBrandingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
86
  export declare const serializeAws_json1_1DescribeClientPropertiesCommand: (input: DescribeClientPropertiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
87
  export declare const serializeAws_json1_1DescribeConnectClientAddInsCommand: (input: DescribeConnectClientAddInsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
88
  export declare const serializeAws_json1_1DescribeConnectionAliasesCommand: (input: DescribeConnectionAliasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -93,6 +98,7 @@ export declare const serializeAws_json1_1DescribeWorkspacesConnectionStatusComma
93
98
  export declare const serializeAws_json1_1DescribeWorkspaceSnapshotsCommand: (input: DescribeWorkspaceSnapshotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
99
  export declare const serializeAws_json1_1DisassociateConnectionAliasCommand: (input: DisassociateConnectionAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
100
  export declare const serializeAws_json1_1DisassociateIpGroupsCommand: (input: DisassociateIpGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
+ export declare const serializeAws_json1_1ImportClientBrandingCommand: (input: ImportClientBrandingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
96
102
  export declare const serializeAws_json1_1ImportWorkspaceImageCommand: (input: ImportWorkspaceImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
103
  export declare const serializeAws_json1_1ListAvailableManagementCidrRangesCommand: (input: ListAvailableManagementCidrRangesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
104
  export declare const serializeAws_json1_1MigrateWorkspaceCommand: (input: MigrateWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -127,6 +133,7 @@ export declare const deserializeAws_json1_1CreateTagsCommand: (output: __HttpRes
127
133
  export declare const deserializeAws_json1_1CreateUpdatedWorkspaceImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUpdatedWorkspaceImageCommandOutput>;
128
134
  export declare const deserializeAws_json1_1CreateWorkspaceBundleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspaceBundleCommandOutput>;
129
135
  export declare const deserializeAws_json1_1CreateWorkspacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspacesCommandOutput>;
136
+ export declare const deserializeAws_json1_1DeleteClientBrandingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClientBrandingCommandOutput>;
130
137
  export declare const deserializeAws_json1_1DeleteConnectClientAddInCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectClientAddInCommandOutput>;
131
138
  export declare const deserializeAws_json1_1DeleteConnectionAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectionAliasCommandOutput>;
132
139
  export declare const deserializeAws_json1_1DeleteIpGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteIpGroupCommandOutput>;
@@ -136,6 +143,7 @@ export declare const deserializeAws_json1_1DeleteWorkspaceImageCommand: (output:
136
143
  export declare const deserializeAws_json1_1DeregisterWorkspaceDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterWorkspaceDirectoryCommandOutput>;
137
144
  export declare const deserializeAws_json1_1DescribeAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountCommandOutput>;
138
145
  export declare const deserializeAws_json1_1DescribeAccountModificationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountModificationsCommandOutput>;
146
+ export declare const deserializeAws_json1_1DescribeClientBrandingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClientBrandingCommandOutput>;
139
147
  export declare const deserializeAws_json1_1DescribeClientPropertiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClientPropertiesCommandOutput>;
140
148
  export declare const deserializeAws_json1_1DescribeConnectClientAddInsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectClientAddInsCommandOutput>;
141
149
  export declare const deserializeAws_json1_1DescribeConnectionAliasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectionAliasesCommandOutput>;
@@ -151,6 +159,7 @@ export declare const deserializeAws_json1_1DescribeWorkspacesConnectionStatusCom
151
159
  export declare const deserializeAws_json1_1DescribeWorkspaceSnapshotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeWorkspaceSnapshotsCommandOutput>;
152
160
  export declare const deserializeAws_json1_1DisassociateConnectionAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateConnectionAliasCommandOutput>;
153
161
  export declare const deserializeAws_json1_1DisassociateIpGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateIpGroupsCommandOutput>;
162
+ export declare const deserializeAws_json1_1ImportClientBrandingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportClientBrandingCommandOutput>;
154
163
  export declare const deserializeAws_json1_1ImportWorkspaceImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportWorkspaceImageCommandOutput>;
155
164
  export declare const deserializeAws_json1_1ListAvailableManagementCidrRangesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAvailableManagementCidrRangesCommandOutput>;
156
165
  export declare const deserializeAws_json1_1MigrateWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<MigrateWorkspaceCommandOutput>;
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.58.0",
4
+ "version": "3.68.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.58.0",
21
+ "@aws-sdk/client-sts": "3.67.0",
22
22
  "@aws-sdk/config-resolver": "3.58.0",
23
- "@aws-sdk/credential-provider-node": "3.58.0",
23
+ "@aws-sdk/credential-provider-node": "3.67.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.58.0",
25
25
  "@aws-sdk/hash-node": "3.55.0",
26
26
  "@aws-sdk/invalid-dependency": "3.55.0",