@aws-sdk/client-workspaces 3.56.0 → 3.67.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 +27 -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 +73 -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 +49 -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 +625 -153
  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 +172 -0
  54. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
  55. package/package.json +18 -18
@@ -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";
@@ -218,6 +218,14 @@ export declare namespace WorkspaceBundle {
218
218
 
219
219
  const filterSensitiveLog: (obj: WorkspaceBundle) => any;
220
220
  }
221
+ export declare enum ClientDeviceType {
222
+ DEVICE_TYPE_ANDROID = "DeviceTypeAndroid",
223
+ DEVICE_TYPE_IOS = "DeviceTypeIos",
224
+ DEVICE_TYPE_LINUX = "DeviceTypeLinux",
225
+ DEVICE_TYPE_OSX = "DeviceTypeOsx",
226
+ DEVICE_TYPE_WEB = "DeviceTypeWeb",
227
+ DEVICE_TYPE_WINDOWS = "DeviceTypeWindows"
228
+ }
221
229
  export declare enum ReconnectEnum {
222
230
  DISABLED = "DISABLED",
223
231
  ENABLED = "ENABLED"
@@ -649,6 +657,44 @@ export declare enum DedicatedTenancySupportEnum {
649
657
  ENABLED = "ENABLED"
650
658
  }
651
659
 
660
+ export interface DefaultClientBrandingAttributes {
661
+
662
+ LogoUrl?: string;
663
+
664
+ SupportEmail?: string;
665
+
666
+ SupportLink?: string;
667
+
668
+ ForgotPasswordLink?: string;
669
+
670
+ LoginMessage?: {
671
+ [key: string]: string;
672
+ };
673
+ }
674
+ export declare namespace DefaultClientBrandingAttributes {
675
+
676
+ const filterSensitiveLog: (obj: DefaultClientBrandingAttributes) => any;
677
+ }
678
+
679
+ export interface DefaultImportClientBrandingAttributes {
680
+
681
+ Logo?: Uint8Array;
682
+
683
+ SupportEmail?: string;
684
+
685
+ SupportLink?: string;
686
+
687
+ ForgotPasswordLink?: string;
688
+
689
+ LoginMessage?: {
690
+ [key: string]: string;
691
+ };
692
+ }
693
+ export declare namespace DefaultImportClientBrandingAttributes {
694
+
695
+ const filterSensitiveLog: (obj: DefaultImportClientBrandingAttributes) => any;
696
+ }
697
+
652
698
  export interface DefaultWorkspaceCreationProperties {
653
699
 
654
700
  EnableWorkDocs?: boolean;
@@ -667,6 +713,22 @@ export declare namespace DefaultWorkspaceCreationProperties {
667
713
 
668
714
  const filterSensitiveLog: (obj: DefaultWorkspaceCreationProperties) => any;
669
715
  }
716
+ export interface DeleteClientBrandingRequest {
717
+
718
+ ResourceId: string | undefined;
719
+
720
+ Platforms: (ClientDeviceType | string)[] | undefined;
721
+ }
722
+ export declare namespace DeleteClientBrandingRequest {
723
+
724
+ const filterSensitiveLog: (obj: DeleteClientBrandingRequest) => any;
725
+ }
726
+ export interface DeleteClientBrandingResult {
727
+ }
728
+ export declare namespace DeleteClientBrandingResult {
729
+
730
+ const filterSensitiveLog: (obj: DeleteClientBrandingResult) => any;
731
+ }
670
732
  export interface DeleteConnectClientAddInRequest {
671
733
 
672
734
  AddInId: string | undefined;
@@ -803,6 +865,55 @@ export declare namespace DescribeAccountModificationsResult {
803
865
 
804
866
  const filterSensitiveLog: (obj: DescribeAccountModificationsResult) => any;
805
867
  }
868
+ export interface DescribeClientBrandingRequest {
869
+
870
+ ResourceId: string | undefined;
871
+ }
872
+ export declare namespace DescribeClientBrandingRequest {
873
+
874
+ const filterSensitiveLog: (obj: DescribeClientBrandingRequest) => any;
875
+ }
876
+
877
+ export interface IosClientBrandingAttributes {
878
+
879
+ LogoUrl?: string;
880
+
881
+ Logo2xUrl?: string;
882
+
883
+ Logo3xUrl?: string;
884
+
885
+ SupportEmail?: string;
886
+
887
+ SupportLink?: string;
888
+
889
+ ForgotPasswordLink?: string;
890
+
891
+ LoginMessage?: {
892
+ [key: string]: string;
893
+ };
894
+ }
895
+ export declare namespace IosClientBrandingAttributes {
896
+
897
+ const filterSensitiveLog: (obj: IosClientBrandingAttributes) => any;
898
+ }
899
+ export interface DescribeClientBrandingResult {
900
+
901
+ DeviceTypeWindows?: DefaultClientBrandingAttributes;
902
+
903
+ DeviceTypeOsx?: DefaultClientBrandingAttributes;
904
+
905
+ DeviceTypeAndroid?: DefaultClientBrandingAttributes;
906
+
907
+ DeviceTypeIos?: IosClientBrandingAttributes;
908
+
909
+ DeviceTypeLinux?: DefaultClientBrandingAttributes;
910
+
911
+ DeviceTypeWeb?: DefaultClientBrandingAttributes;
912
+ }
913
+ export declare namespace DescribeClientBrandingResult {
914
+
915
+ const filterSensitiveLog: (obj: DescribeClientBrandingResult) => any;
916
+ }
806
917
  export interface DescribeClientPropertiesRequest {
807
918
 
808
919
  ResourceIds: string[] | undefined;
@@ -1336,6 +1447,67 @@ export declare namespace FailedWorkspaceChangeRequest {
1336
1447
 
1337
1448
  const filterSensitiveLog: (obj: FailedWorkspaceChangeRequest) => any;
1338
1449
  }
1450
+
1451
+ export interface IosImportClientBrandingAttributes {
1452
+
1453
+ Logo?: Uint8Array;
1454
+
1455
+ Logo2x?: Uint8Array;
1456
+
1457
+ Logo3x?: Uint8Array;
1458
+
1459
+ SupportEmail?: string;
1460
+
1461
+ SupportLink?: string;
1462
+
1463
+ ForgotPasswordLink?: string;
1464
+
1465
+ LoginMessage?: {
1466
+ [key: string]: string;
1467
+ };
1468
+ }
1469
+ export declare namespace IosImportClientBrandingAttributes {
1470
+
1471
+ const filterSensitiveLog: (obj: IosImportClientBrandingAttributes) => any;
1472
+ }
1473
+ export interface ImportClientBrandingRequest {
1474
+
1475
+ ResourceId: string | undefined;
1476
+
1477
+ DeviceTypeWindows?: DefaultImportClientBrandingAttributes;
1478
+
1479
+ DeviceTypeOsx?: DefaultImportClientBrandingAttributes;
1480
+
1481
+ DeviceTypeAndroid?: DefaultImportClientBrandingAttributes;
1482
+
1483
+ DeviceTypeIos?: IosImportClientBrandingAttributes;
1484
+
1485
+ DeviceTypeLinux?: DefaultImportClientBrandingAttributes;
1486
+
1487
+ DeviceTypeWeb?: DefaultImportClientBrandingAttributes;
1488
+ }
1489
+ export declare namespace ImportClientBrandingRequest {
1490
+
1491
+ const filterSensitiveLog: (obj: ImportClientBrandingRequest) => any;
1492
+ }
1493
+ export interface ImportClientBrandingResult {
1494
+
1495
+ DeviceTypeWindows?: DefaultClientBrandingAttributes;
1496
+
1497
+ DeviceTypeOsx?: DefaultClientBrandingAttributes;
1498
+
1499
+ DeviceTypeAndroid?: DefaultClientBrandingAttributes;
1500
+
1501
+ DeviceTypeIos?: IosClientBrandingAttributes;
1502
+
1503
+ DeviceTypeLinux?: DefaultClientBrandingAttributes;
1504
+
1505
+ DeviceTypeWeb?: DefaultClientBrandingAttributes;
1506
+ }
1507
+ export declare namespace ImportClientBrandingResult {
1508
+
1509
+ const filterSensitiveLog: (obj: ImportClientBrandingResult) => any;
1510
+ }
1339
1511
  export declare enum WorkspaceImageIngestionProcess {
1340
1512
  BYOL_GRAPHICS = "BYOL_GRAPHICS",
1341
1513
  BYOL_GRAPHICSPRO = "BYOL_GRAPHICSPRO",
@@ -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.56.0",
4
+ "version": "3.67.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,40 +18,40 @@
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.56.0",
22
- "@aws-sdk/config-resolver": "3.56.0",
23
- "@aws-sdk/credential-provider-node": "3.56.0",
24
- "@aws-sdk/fetch-http-handler": "3.55.0",
21
+ "@aws-sdk/client-sts": "3.67.0",
22
+ "@aws-sdk/config-resolver": "3.58.0",
23
+ "@aws-sdk/credential-provider-node": "3.67.0",
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",
27
- "@aws-sdk/middleware-content-length": "3.55.0",
28
- "@aws-sdk/middleware-host-header": "3.55.0",
27
+ "@aws-sdk/middleware-content-length": "3.58.0",
28
+ "@aws-sdk/middleware-host-header": "3.58.0",
29
29
  "@aws-sdk/middleware-logger": "3.55.0",
30
- "@aws-sdk/middleware-retry": "3.56.0",
30
+ "@aws-sdk/middleware-retry": "3.58.0",
31
31
  "@aws-sdk/middleware-serde": "3.55.0",
32
- "@aws-sdk/middleware-signing": "3.56.0",
32
+ "@aws-sdk/middleware-signing": "3.58.0",
33
33
  "@aws-sdk/middleware-stack": "3.55.0",
34
- "@aws-sdk/middleware-user-agent": "3.55.0",
35
- "@aws-sdk/node-config-provider": "3.56.0",
36
- "@aws-sdk/node-http-handler": "3.55.0",
37
- "@aws-sdk/protocol-http": "3.55.0",
34
+ "@aws-sdk/middleware-user-agent": "3.58.0",
35
+ "@aws-sdk/node-config-provider": "3.58.0",
36
+ "@aws-sdk/node-http-handler": "3.58.0",
37
+ "@aws-sdk/protocol-http": "3.58.0",
38
38
  "@aws-sdk/smithy-client": "3.55.0",
39
39
  "@aws-sdk/types": "3.55.0",
40
40
  "@aws-sdk/url-parser": "3.55.0",
41
- "@aws-sdk/util-base64-browser": "3.55.0",
41
+ "@aws-sdk/util-base64-browser": "3.58.0",
42
42
  "@aws-sdk/util-base64-node": "3.55.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
44
  "@aws-sdk/util-body-length-node": "3.55.0",
45
45
  "@aws-sdk/util-defaults-mode-browser": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.56.0",
47
- "@aws-sdk/util-user-agent-browser": "3.55.0",
48
- "@aws-sdk/util-user-agent-node": "3.56.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.58.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.58.0",
48
+ "@aws-sdk/util-user-agent-node": "3.58.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.55.0",
50
50
  "@aws-sdk/util-utf8-node": "3.55.0",
51
51
  "tslib": "^2.3.1"
52
52
  },
53
53
  "devDependencies": {
54
- "@aws-sdk/service-client-documentation-generator": "3.55.0",
54
+ "@aws-sdk/service-client-documentation-generator": "3.58.0",
55
55
  "@tsconfig/recommended": "1.0.1",
56
56
  "@types/node": "^12.7.5",
57
57
  "concurrently": "7.0.0",