@aws-sdk/client-workspaces-thin-client 3.1077.0 → 3.1078.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 (56) hide show
  1. package/dist-cjs/index.js +24 -163
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CreateEnvironmentCommand.js +2 -14
  4. package/dist-es/commands/DeleteDeviceCommand.js +2 -14
  5. package/dist-es/commands/DeleteEnvironmentCommand.js +2 -14
  6. package/dist-es/commands/DeregisterDeviceCommand.js +2 -14
  7. package/dist-es/commands/GetDeviceCommand.js +2 -14
  8. package/dist-es/commands/GetEnvironmentCommand.js +2 -14
  9. package/dist-es/commands/GetSoftwareSetCommand.js +2 -14
  10. package/dist-es/commands/ListDevicesCommand.js +2 -14
  11. package/dist-es/commands/ListEnvironmentsCommand.js +2 -14
  12. package/dist-es/commands/ListSoftwareSetsCommand.js +2 -14
  13. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  14. package/dist-es/commands/TagResourceCommand.js +2 -14
  15. package/dist-es/commands/UntagResourceCommand.js +2 -14
  16. package/dist-es/commands/UpdateDeviceCommand.js +2 -14
  17. package/dist-es/commands/UpdateEnvironmentCommand.js +2 -14
  18. package/dist-es/commands/UpdateSoftwareSetCommand.js +2 -14
  19. package/dist-es/index.js +1 -0
  20. package/dist-types/commandBuilder.d.ts +18 -0
  21. package/dist-types/commands/CreateEnvironmentCommand.d.ts +3 -8
  22. package/dist-types/commands/DeleteDeviceCommand.d.ts +3 -8
  23. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +3 -8
  24. package/dist-types/commands/DeregisterDeviceCommand.d.ts +3 -8
  25. package/dist-types/commands/GetDeviceCommand.d.ts +3 -8
  26. package/dist-types/commands/GetEnvironmentCommand.d.ts +3 -8
  27. package/dist-types/commands/GetSoftwareSetCommand.d.ts +3 -8
  28. package/dist-types/commands/ListDevicesCommand.d.ts +3 -8
  29. package/dist-types/commands/ListEnvironmentsCommand.d.ts +3 -8
  30. package/dist-types/commands/ListSoftwareSetsCommand.d.ts +3 -8
  31. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  32. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  33. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  34. package/dist-types/commands/UpdateDeviceCommand.d.ts +3 -8
  35. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +3 -8
  36. package/dist-types/commands/UpdateSoftwareSetCommand.d.ts +3 -8
  37. package/dist-types/index.d.ts +1 -0
  38. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  39. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +7 -16
  40. package/dist-types/ts3.4/commands/DeleteDeviceCommand.d.ts +7 -16
  41. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/commands/DeregisterDeviceCommand.d.ts +7 -16
  43. package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/commands/GetSoftwareSetCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/ListSoftwareSetsCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/UpdateDeviceCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/UpdateSoftwareSetCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/index.d.ts +1 -0
  56. package/package.json +8 -8
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteDeviceRequest, DeleteDeviceResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteDeviceCommandInput extends DeleteDeviceRequest {
22
19
  export interface DeleteDeviceCommandOutput extends DeleteDeviceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteDeviceCommand_base: {
25
- new (input: DeleteDeviceCommandInput): import("@smithy/core/client").CommandImpl<DeleteDeviceCommandInput, DeleteDeviceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteDeviceCommandInput): import("@smithy/core/client").CommandImpl<DeleteDeviceCommandInput, DeleteDeviceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteDeviceCommandInput): import("@smithy/core/client").CommandImpl<DeleteDeviceCommandInput, DeleteDeviceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteDeviceCommandInput): import("@smithy/core/client").CommandImpl<DeleteDeviceCommandInput, DeleteDeviceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes a thin client device.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteEnvironmentCommandInput extends DeleteEnvironmentRequest
22
19
  export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteEnvironmentCommand_base: {
25
- new (input: DeleteEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes an environment.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeregisterDeviceRequest, DeregisterDeviceResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeregisterDeviceCommandInput extends DeregisterDeviceRequest {
22
19
  export interface DeregisterDeviceCommandOutput extends DeregisterDeviceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeregisterDeviceCommand_base: {
25
- new (input: DeregisterDeviceCommandInput): import("@smithy/core/client").CommandImpl<DeregisterDeviceCommandInput, DeregisterDeviceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeregisterDeviceCommandInput): import("@smithy/core/client").CommandImpl<DeregisterDeviceCommandInput, DeregisterDeviceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeregisterDeviceCommandInput): import("@smithy/core/client").CommandImpl<DeregisterDeviceCommandInput, DeregisterDeviceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeregisterDeviceCommandInput): import("@smithy/core/client").CommandImpl<DeregisterDeviceCommandInput, DeregisterDeviceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deregisters a thin client device.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetDeviceRequest, GetDeviceResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetDeviceCommandInput extends GetDeviceRequest {
22
19
  export interface GetDeviceCommandOutput extends GetDeviceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetDeviceCommand_base: {
25
- new (input: GetDeviceCommandInput): import("@smithy/core/client").CommandImpl<GetDeviceCommandInput, GetDeviceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetDeviceCommandInput): import("@smithy/core/client").CommandImpl<GetDeviceCommandInput, GetDeviceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetDeviceCommandInput): import("@smithy/core/client").CommandImpl<GetDeviceCommandInput, GetDeviceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetDeviceCommandInput): import("@smithy/core/client").CommandImpl<GetDeviceCommandInput, GetDeviceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns information for a thin client device.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {
22
19
  export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetEnvironmentCommand_base: {
25
- new (input: GetEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns information for an environment.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetSoftwareSetRequest, GetSoftwareSetResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetSoftwareSetCommandInput extends GetSoftwareSetRequest {
22
19
  export interface GetSoftwareSetCommandOutput extends GetSoftwareSetResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetSoftwareSetCommand_base: {
25
- new (input: GetSoftwareSetCommandInput): import("@smithy/core/client").CommandImpl<GetSoftwareSetCommandInput, GetSoftwareSetCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetSoftwareSetCommandInput): import("@smithy/core/client").CommandImpl<GetSoftwareSetCommandInput, GetSoftwareSetCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetSoftwareSetCommandInput): import("@smithy/core/client").CommandImpl<GetSoftwareSetCommandInput, GetSoftwareSetCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetSoftwareSetCommandInput): import("@smithy/core/client").CommandImpl<GetSoftwareSetCommandInput, GetSoftwareSetCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns information for a software set.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListDevicesRequest, ListDevicesResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListDevicesCommandInput extends ListDevicesRequest {
22
19
  export interface ListDevicesCommandOutput extends ListDevicesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListDevicesCommand_base: {
25
- new (input: ListDevicesCommandInput): import("@smithy/core/client").CommandImpl<ListDevicesCommandInput, ListDevicesCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListDevicesCommandInput]): import("@smithy/core/client").CommandImpl<ListDevicesCommandInput, ListDevicesCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListDevicesCommandInput): import("@smithy/core/client").CommandImpl<ListDevicesCommandInput, ListDevicesCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListDevicesCommandInput]): import("@smithy/core/client").CommandImpl<ListDevicesCommandInput, ListDevicesCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of thin client devices.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListEnvironmentsCommandInput extends ListEnvironmentsRequest {
22
19
  export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListEnvironmentsCommand_base: {
25
- new (input: ListEnvironmentsCommandInput): import("@smithy/core/client").CommandImpl<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListEnvironmentsCommandInput]): import("@smithy/core/client").CommandImpl<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListEnvironmentsCommandInput): import("@smithy/core/client").CommandImpl<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListEnvironmentsCommandInput]): import("@smithy/core/client").CommandImpl<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of environments.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListSoftwareSetsRequest, ListSoftwareSetsResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListSoftwareSetsCommandInput extends ListSoftwareSetsRequest {
22
19
  export interface ListSoftwareSetsCommandOutput extends ListSoftwareSetsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListSoftwareSetsCommand_base: {
25
- new (input: ListSoftwareSetsCommandInput): import("@smithy/core/client").CommandImpl<ListSoftwareSetsCommandInput, ListSoftwareSetsCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListSoftwareSetsCommandInput]): import("@smithy/core/client").CommandImpl<ListSoftwareSetsCommandInput, ListSoftwareSetsCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListSoftwareSetsCommandInput): import("@smithy/core/client").CommandImpl<ListSoftwareSetsCommandInput, ListSoftwareSetsCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListSoftwareSetsCommandInput]): import("@smithy/core/client").CommandImpl<ListSoftwareSetsCommandInput, ListSoftwareSetsCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of software sets.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
22
19
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListTagsForResourceCommand_base: {
25
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of tags for a resource.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceRequest {
22
19
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const TagResourceCommand_base: {
25
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Assigns one or more tags (key-value pairs) to the specified resource.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
22
19
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UntagResourceCommand_base: {
25
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Removes a tag or tags from a resource.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UpdateDeviceRequest, UpdateDeviceResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UpdateDeviceCommandInput extends UpdateDeviceRequest {
22
19
  export interface UpdateDeviceCommandOutput extends UpdateDeviceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UpdateDeviceCommand_base: {
25
- new (input: UpdateDeviceCommandInput): import("@smithy/core/client").CommandImpl<UpdateDeviceCommandInput, UpdateDeviceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateDeviceCommandInput): import("@smithy/core/client").CommandImpl<UpdateDeviceCommandInput, UpdateDeviceCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateDeviceCommandInput): import("@smithy/core/client").CommandImpl<UpdateDeviceCommandInput, UpdateDeviceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateDeviceCommandInput): import("@smithy/core/client").CommandImpl<UpdateDeviceCommandInput, UpdateDeviceCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates a thin client device.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UpdateEnvironmentRequest, UpdateEnvironmentResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UpdateEnvironmentCommandInput extends UpdateEnvironmentRequest
22
19
  export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UpdateEnvironmentCommand_base: {
25
- new (input: UpdateEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateEnvironmentCommandInput): import("@smithy/core/client").CommandImpl<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates an environment.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { UpdateSoftwareSetRequest, UpdateSoftwareSetResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig } from "../WorkSpacesThinClientClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UpdateSoftwareSetCommandInput extends UpdateSoftwareSetRequest
22
19
  export interface UpdateSoftwareSetCommandOutput extends UpdateSoftwareSetResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UpdateSoftwareSetCommand_base: {
25
- new (input: UpdateSoftwareSetCommandInput): import("@smithy/core/client").CommandImpl<UpdateSoftwareSetCommandInput, UpdateSoftwareSetCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateSoftwareSetCommandInput): import("@smithy/core/client").CommandImpl<UpdateSoftwareSetCommandInput, UpdateSoftwareSetCommandOutput, WorkSpacesThinClientClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateSoftwareSetCommandInput): import("@smithy/core/client").CommandImpl<UpdateSoftwareSetCommandInput, UpdateSoftwareSetCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateSoftwareSetCommandInput): import("@smithy/core/client").CommandImpl<UpdateSoftwareSetCommandInput, UpdateSoftwareSetCommandOutput, import("..").WorkSpacesThinClientClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates a software set.</p>
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { WorkSpacesThinClientExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./pagination";
14
15
  export * from "./models/enums";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ServiceInputTypes,
4
+ ServiceOutputTypes,
5
+ WorkSpacesThinClientClientResolvedConfig,
6
+ } from "./WorkSpacesThinClientClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ WorkSpacesThinClientClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ WorkSpacesThinClientClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  CreateEnvironmentRequest,
5
4
  CreateEnvironmentResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- WorkSpacesThinClientClientResolvedConfig,
11
- } from "../WorkSpacesThinClientClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CreateEnvironmentCommandInput
15
8
  extends CreateEnvironmentRequest {}
16
9
  export interface CreateEnvironmentCommandOutput
@@ -22,22 +15,20 @@ declare const CreateEnvironmentCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CreateEnvironmentCommandInput,
24
17
  CreateEnvironmentCommandOutput,
25
- WorkSpacesThinClientClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").WorkSpacesThinClientClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CreateEnvironmentCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CreateEnvironmentCommandInput,
33
26
  CreateEnvironmentCommandOutput,
34
- WorkSpacesThinClientClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").WorkSpacesThinClientClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CreateEnvironmentCommand extends CreateEnvironmentCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { DeleteDeviceRequest, DeleteDeviceResponse } from "../models/models_0";
4
- import {
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- WorkSpacesThinClientClientResolvedConfig,
8
- } from "../WorkSpacesThinClientClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteDeviceCommandInput extends DeleteDeviceRequest {}
12
5
  export interface DeleteDeviceCommandOutput
13
6
  extends DeleteDeviceResponse,
@@ -18,22 +11,20 @@ declare const DeleteDeviceCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DeleteDeviceCommandInput,
20
13
  DeleteDeviceCommandOutput,
21
- WorkSpacesThinClientClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").WorkSpacesThinClientClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DeleteDeviceCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DeleteDeviceCommandInput,
29
22
  DeleteDeviceCommandOutput,
30
- WorkSpacesThinClientClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").WorkSpacesThinClientClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DeleteDeviceCommand extends DeleteDeviceCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  DeleteEnvironmentRequest,
5
4
  DeleteEnvironmentResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- WorkSpacesThinClientClientResolvedConfig,
11
- } from "../WorkSpacesThinClientClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DeleteEnvironmentCommandInput
15
8
  extends DeleteEnvironmentRequest {}
16
9
  export interface DeleteEnvironmentCommandOutput
@@ -22,22 +15,20 @@ declare const DeleteEnvironmentCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DeleteEnvironmentCommandInput,
24
17
  DeleteEnvironmentCommandOutput,
25
- WorkSpacesThinClientClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").WorkSpacesThinClientClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DeleteEnvironmentCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DeleteEnvironmentCommandInput,
33
26
  DeleteEnvironmentCommandOutput,
34
- WorkSpacesThinClientClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").WorkSpacesThinClientClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DeleteEnvironmentCommand extends DeleteEnvironmentCommand_base {
43
34
  protected static __types: {