@aws-sdk/client-workspaces-thin-client 3.458.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 (155) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +344 -0
  3. package/dist-cjs/WorkSpacesThin.js +43 -0
  4. package/dist-cjs/WorkSpacesThinClientClient.js +43 -0
  5. package/dist-cjs/commands/CreateEnvironmentCommand.js +52 -0
  6. package/dist-cjs/commands/DeleteDeviceCommand.js +51 -0
  7. package/dist-cjs/commands/DeleteEnvironmentCommand.js +51 -0
  8. package/dist-cjs/commands/DeregisterDeviceCommand.js +51 -0
  9. package/dist-cjs/commands/GetDeviceCommand.js +52 -0
  10. package/dist-cjs/commands/GetEnvironmentCommand.js +52 -0
  11. package/dist-cjs/commands/GetSoftwareSetCommand.js +51 -0
  12. package/dist-cjs/commands/ListDevicesCommand.js +52 -0
  13. package/dist-cjs/commands/ListEnvironmentsCommand.js +52 -0
  14. package/dist-cjs/commands/ListSoftwareSetsCommand.js +51 -0
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +52 -0
  16. package/dist-cjs/commands/TagResourceCommand.js +52 -0
  17. package/dist-cjs/commands/UntagResourceCommand.js +52 -0
  18. package/dist-cjs/commands/UpdateDeviceCommand.js +52 -0
  19. package/dist-cjs/commands/UpdateEnvironmentCommand.js +52 -0
  20. package/dist-cjs/commands/UpdateSoftwareSetCommand.js +51 -0
  21. package/dist-cjs/commands/index.js +19 -0
  22. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  24. package/dist-cjs/endpoint/ruleset.js +7 -0
  25. package/dist-cjs/extensionConfiguration.js +2 -0
  26. package/dist-cjs/index.js +12 -0
  27. package/dist-cjs/models/WorkSpacesThinClientServiceException.js +12 -0
  28. package/dist-cjs/models/index.js +4 -0
  29. package/dist-cjs/models/models_0.js +287 -0
  30. package/dist-cjs/pagination/Interfaces.js +2 -0
  31. package/dist-cjs/pagination/ListDevicesPaginator.js +29 -0
  32. package/dist-cjs/pagination/ListEnvironmentsPaginator.js +29 -0
  33. package/dist-cjs/pagination/ListSoftwareSetsPaginator.js +29 -0
  34. package/dist-cjs/pagination/index.js +7 -0
  35. package/dist-cjs/protocols/Aws_restJson1.js +1486 -0
  36. package/dist-cjs/runtimeConfig.browser.js +39 -0
  37. package/dist-cjs/runtimeConfig.js +50 -0
  38. package/dist-cjs/runtimeConfig.native.js +15 -0
  39. package/dist-cjs/runtimeConfig.shared.js +24 -0
  40. package/dist-cjs/runtimeExtensions.js +22 -0
  41. package/dist-es/WorkSpacesThin.js +39 -0
  42. package/dist-es/WorkSpacesThinClientClient.js +39 -0
  43. package/dist-es/commands/CreateEnvironmentCommand.js +48 -0
  44. package/dist-es/commands/DeleteDeviceCommand.js +47 -0
  45. package/dist-es/commands/DeleteEnvironmentCommand.js +47 -0
  46. package/dist-es/commands/DeregisterDeviceCommand.js +47 -0
  47. package/dist-es/commands/GetDeviceCommand.js +48 -0
  48. package/dist-es/commands/GetEnvironmentCommand.js +48 -0
  49. package/dist-es/commands/GetSoftwareSetCommand.js +47 -0
  50. package/dist-es/commands/ListDevicesCommand.js +48 -0
  51. package/dist-es/commands/ListEnvironmentsCommand.js +48 -0
  52. package/dist-es/commands/ListSoftwareSetsCommand.js +47 -0
  53. package/dist-es/commands/ListTagsForResourceCommand.js +48 -0
  54. package/dist-es/commands/TagResourceCommand.js +48 -0
  55. package/dist-es/commands/UntagResourceCommand.js +48 -0
  56. package/dist-es/commands/UpdateDeviceCommand.js +48 -0
  57. package/dist-es/commands/UpdateEnvironmentCommand.js +48 -0
  58. package/dist-es/commands/UpdateSoftwareSetCommand.js +47 -0
  59. package/dist-es/commands/index.js +16 -0
  60. package/dist-es/endpoint/EndpointParameters.js +8 -0
  61. package/dist-es/endpoint/endpointResolver.js +8 -0
  62. package/dist-es/endpoint/ruleset.js +4 -0
  63. package/dist-es/extensionConfiguration.js +1 -0
  64. package/dist-es/index.js +7 -0
  65. package/dist-es/models/WorkSpacesThinClientServiceException.js +8 -0
  66. package/dist-es/models/index.js +1 -0
  67. package/dist-es/models/models_0.js +258 -0
  68. package/dist-es/pagination/Interfaces.js +1 -0
  69. package/dist-es/pagination/ListDevicesPaginator.js +25 -0
  70. package/dist-es/pagination/ListEnvironmentsPaginator.js +25 -0
  71. package/dist-es/pagination/ListSoftwareSetsPaginator.js +25 -0
  72. package/dist-es/pagination/index.js +4 -0
  73. package/dist-es/protocols/Aws_restJson1.js +1451 -0
  74. package/dist-es/runtimeConfig.browser.js +34 -0
  75. package/dist-es/runtimeConfig.js +45 -0
  76. package/dist-es/runtimeConfig.native.js +11 -0
  77. package/dist-es/runtimeConfig.shared.js +20 -0
  78. package/dist-es/runtimeExtensions.js +18 -0
  79. package/dist-types/WorkSpacesThin.d.ts +133 -0
  80. package/dist-types/WorkSpacesThinClientClient.d.ts +196 -0
  81. package/dist-types/commands/CreateEnvironmentCommand.d.ts +146 -0
  82. package/dist-types/commands/DeleteDeviceCommand.d.ts +92 -0
  83. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +92 -0
  84. package/dist-types/commands/DeregisterDeviceCommand.d.ts +93 -0
  85. package/dist-types/commands/GetDeviceCommand.d.ts +113 -0
  86. package/dist-types/commands/GetEnvironmentCommand.d.ts +121 -0
  87. package/dist-types/commands/GetSoftwareSetCommand.d.ts +101 -0
  88. package/dist-types/commands/ListDevicesCommand.d.ts +109 -0
  89. package/dist-types/commands/ListEnvironmentsCommand.d.ts +118 -0
  90. package/dist-types/commands/ListSoftwareSetsCommand.d.ts +96 -0
  91. package/dist-types/commands/ListTagsForResourceCommand.d.ts +84 -0
  92. package/dist-types/commands/TagResourceCommand.d.ts +83 -0
  93. package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
  94. package/dist-types/commands/UpdateDeviceCommand.d.ts +112 -0
  95. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +134 -0
  96. package/dist-types/commands/UpdateSoftwareSetCommand.d.ts +87 -0
  97. package/dist-types/commands/index.d.ts +16 -0
  98. package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
  99. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  100. package/dist-types/endpoint/ruleset.d.ts +2 -0
  101. package/dist-types/extensionConfiguration.d.ts +8 -0
  102. package/dist-types/index.d.ts +26 -0
  103. package/dist-types/models/WorkSpacesThinClientServiceException.d.ts +13 -0
  104. package/dist-types/models/index.d.ts +1 -0
  105. package/dist-types/models/models_0.d.ts +1506 -0
  106. package/dist-types/pagination/Interfaces.d.ts +8 -0
  107. package/dist-types/pagination/ListDevicesPaginator.d.ts +7 -0
  108. package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListSoftwareSetsPaginator.d.ts +7 -0
  110. package/dist-types/pagination/index.d.ts +4 -0
  111. package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
  112. package/dist-types/runtimeConfig.browser.d.ts +46 -0
  113. package/dist-types/runtimeConfig.d.ts +46 -0
  114. package/dist-types/runtimeConfig.native.d.ts +45 -0
  115. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  116. package/dist-types/runtimeExtensions.d.ts +17 -0
  117. package/dist-types/ts3.4/WorkSpacesThin.d.ts +279 -0
  118. package/dist-types/ts3.4/WorkSpacesThinClientClient.d.ts +217 -0
  119. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +39 -0
  120. package/dist-types/ts3.4/commands/DeleteDeviceCommand.d.ts +35 -0
  121. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +39 -0
  122. package/dist-types/ts3.4/commands/DeregisterDeviceCommand.d.ts +38 -0
  123. package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +35 -0
  124. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +38 -0
  125. package/dist-types/ts3.4/commands/GetSoftwareSetCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +35 -0
  127. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +38 -0
  128. package/dist-types/ts3.4/commands/ListSoftwareSetsCommand.d.ts +38 -0
  129. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  130. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  131. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  132. package/dist-types/ts3.4/commands/UpdateDeviceCommand.d.ts +35 -0
  133. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +39 -0
  134. package/dist-types/ts3.4/commands/UpdateSoftwareSetCommand.d.ts +39 -0
  135. package/dist-types/ts3.4/commands/index.d.ts +16 -0
  136. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  137. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  138. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  139. package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  140. package/dist-types/ts3.4/index.d.ts +10 -0
  141. package/dist-types/ts3.4/models/WorkSpacesThinClientServiceException.d.ts +8 -0
  142. package/dist-types/ts3.4/models/index.d.ts +1 -0
  143. package/dist-types/ts3.4/models/models_0.d.ts +440 -0
  144. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  145. package/dist-types/ts3.4/pagination/ListDevicesPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListSoftwareSetsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  149. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
  150. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +99 -0
  151. package/dist-types/ts3.4/runtimeConfig.d.ts +99 -0
  152. package/dist-types/ts3.4/runtimeConfig.native.d.ts +90 -0
  153. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  154. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  155. package/package.json +104 -0
@@ -0,0 +1,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { WorkSpacesThinClientClient } from "../WorkSpacesThinClientClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface WorkSpacesThinPaginationConfiguration extends PaginationConfiguration {
7
+ client: WorkSpacesThinClientClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDevicesCommandInput, ListDevicesCommandOutput } from "../commands/ListDevicesCommand";
3
+ import { WorkSpacesThinPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListDevices(config: WorkSpacesThinPaginationConfiguration, input: ListDevicesCommandInput, ...additionalArguments: any): Paginator<ListDevicesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
3
+ import { WorkSpacesThinPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListEnvironments(config: WorkSpacesThinPaginationConfiguration, input: ListEnvironmentsCommandInput, ...additionalArguments: any): Paginator<ListEnvironmentsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListSoftwareSetsCommandInput, ListSoftwareSetsCommandOutput } from "../commands/ListSoftwareSetsCommand";
3
+ import { WorkSpacesThinPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListSoftwareSets(config: WorkSpacesThinPaginationConfiguration, input: ListSoftwareSetsCommandInput, ...additionalArguments: any): Paginator<ListSoftwareSetsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListDevicesPaginator";
3
+ export * from "./ListEnvironmentsPaginator";
4
+ export * from "./ListSoftwareSetsPaginator";
@@ -0,0 +1,146 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
4
+ import { DeleteDeviceCommandInput, DeleteDeviceCommandOutput } from "../commands/DeleteDeviceCommand";
5
+ import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
6
+ import { DeregisterDeviceCommandInput, DeregisterDeviceCommandOutput } from "../commands/DeregisterDeviceCommand";
7
+ import { GetDeviceCommandInput, GetDeviceCommandOutput } from "../commands/GetDeviceCommand";
8
+ import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
9
+ import { GetSoftwareSetCommandInput, GetSoftwareSetCommandOutput } from "../commands/GetSoftwareSetCommand";
10
+ import { ListDevicesCommandInput, ListDevicesCommandOutput } from "../commands/ListDevicesCommand";
11
+ import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
12
+ import { ListSoftwareSetsCommandInput, ListSoftwareSetsCommandOutput } from "../commands/ListSoftwareSetsCommand";
13
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
14
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
15
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
16
+ import { UpdateDeviceCommandInput, UpdateDeviceCommandOutput } from "../commands/UpdateDeviceCommand";
17
+ import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "../commands/UpdateEnvironmentCommand";
18
+ import { UpdateSoftwareSetCommandInput, UpdateSoftwareSetCommandOutput } from "../commands/UpdateSoftwareSetCommand";
19
+ /**
20
+ * serializeAws_restJson1CreateEnvironmentCommand
21
+ */
22
+ export declare const se_CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ /**
24
+ * serializeAws_restJson1DeleteDeviceCommand
25
+ */
26
+ export declare const se_DeleteDeviceCommand: (input: DeleteDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ /**
28
+ * serializeAws_restJson1DeleteEnvironmentCommand
29
+ */
30
+ export declare const se_DeleteEnvironmentCommand: (input: DeleteEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ /**
32
+ * serializeAws_restJson1DeregisterDeviceCommand
33
+ */
34
+ export declare const se_DeregisterDeviceCommand: (input: DeregisterDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ /**
36
+ * serializeAws_restJson1GetDeviceCommand
37
+ */
38
+ export declare const se_GetDeviceCommand: (input: GetDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ /**
40
+ * serializeAws_restJson1GetEnvironmentCommand
41
+ */
42
+ export declare const se_GetEnvironmentCommand: (input: GetEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ /**
44
+ * serializeAws_restJson1GetSoftwareSetCommand
45
+ */
46
+ export declare const se_GetSoftwareSetCommand: (input: GetSoftwareSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ /**
48
+ * serializeAws_restJson1ListDevicesCommand
49
+ */
50
+ export declare const se_ListDevicesCommand: (input: ListDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ /**
52
+ * serializeAws_restJson1ListEnvironmentsCommand
53
+ */
54
+ export declare const se_ListEnvironmentsCommand: (input: ListEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ /**
56
+ * serializeAws_restJson1ListSoftwareSetsCommand
57
+ */
58
+ export declare const se_ListSoftwareSetsCommand: (input: ListSoftwareSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ /**
60
+ * serializeAws_restJson1ListTagsForResourceCommand
61
+ */
62
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
+ /**
64
+ * serializeAws_restJson1TagResourceCommand
65
+ */
66
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
+ /**
68
+ * serializeAws_restJson1UntagResourceCommand
69
+ */
70
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
+ /**
72
+ * serializeAws_restJson1UpdateDeviceCommand
73
+ */
74
+ export declare const se_UpdateDeviceCommand: (input: UpdateDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
+ /**
76
+ * serializeAws_restJson1UpdateEnvironmentCommand
77
+ */
78
+ export declare const se_UpdateEnvironmentCommand: (input: UpdateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
+ /**
80
+ * serializeAws_restJson1UpdateSoftwareSetCommand
81
+ */
82
+ export declare const se_UpdateSoftwareSetCommand: (input: UpdateSoftwareSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
+ /**
84
+ * deserializeAws_restJson1CreateEnvironmentCommand
85
+ */
86
+ export declare const de_CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
87
+ /**
88
+ * deserializeAws_restJson1DeleteDeviceCommand
89
+ */
90
+ export declare const de_DeleteDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeviceCommandOutput>;
91
+ /**
92
+ * deserializeAws_restJson1DeleteEnvironmentCommand
93
+ */
94
+ export declare const de_DeleteEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentCommandOutput>;
95
+ /**
96
+ * deserializeAws_restJson1DeregisterDeviceCommand
97
+ */
98
+ export declare const de_DeregisterDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterDeviceCommandOutput>;
99
+ /**
100
+ * deserializeAws_restJson1GetDeviceCommand
101
+ */
102
+ export declare const de_GetDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeviceCommandOutput>;
103
+ /**
104
+ * deserializeAws_restJson1GetEnvironmentCommand
105
+ */
106
+ export declare const de_GetEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentCommandOutput>;
107
+ /**
108
+ * deserializeAws_restJson1GetSoftwareSetCommand
109
+ */
110
+ export declare const de_GetSoftwareSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSoftwareSetCommandOutput>;
111
+ /**
112
+ * deserializeAws_restJson1ListDevicesCommand
113
+ */
114
+ export declare const de_ListDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDevicesCommandOutput>;
115
+ /**
116
+ * deserializeAws_restJson1ListEnvironmentsCommand
117
+ */
118
+ export declare const de_ListEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentsCommandOutput>;
119
+ /**
120
+ * deserializeAws_restJson1ListSoftwareSetsCommand
121
+ */
122
+ export declare const de_ListSoftwareSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSoftwareSetsCommandOutput>;
123
+ /**
124
+ * deserializeAws_restJson1ListTagsForResourceCommand
125
+ */
126
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
127
+ /**
128
+ * deserializeAws_restJson1TagResourceCommand
129
+ */
130
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
131
+ /**
132
+ * deserializeAws_restJson1UntagResourceCommand
133
+ */
134
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
135
+ /**
136
+ * deserializeAws_restJson1UpdateDeviceCommand
137
+ */
138
+ export declare const de_UpdateDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDeviceCommandOutput>;
139
+ /**
140
+ * deserializeAws_restJson1UpdateEnvironmentCommand
141
+ */
142
+ export declare const de_UpdateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentCommandOutput>;
143
+ /**
144
+ * deserializeAws_restJson1UpdateSoftwareSetCommand
145
+ */
146
+ export declare const de_UpdateSoftwareSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSoftwareSetCommandOutput>;
@@ -0,0 +1,46 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
15
+ updateHttpClientConfig(key: never, value: never): void;
16
+ httpHandlerConfigs(): {};
17
+ }) | RequestHandler;
18
+ retryMode: string | import("@smithy/types").Provider<string>;
19
+ sha256: import("@smithy/types").HashConstructor;
20
+ streamCollector: import("@smithy/types").StreamCollector;
21
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ apiVersion: string;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: import("@smithy/types").Encoder;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: import("@smithy/types").Encoder;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ logger: import("@smithy/types").Logger;
32
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
+ logger?: import("@smithy/types").Logger | undefined;
36
+ }) => import("@smithy/types").EndpointV2;
37
+ tls?: boolean | undefined;
38
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ };
@@ -0,0 +1,46 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
15
+ updateHttpClientConfig(key: never, value: never): void;
16
+ httpHandlerConfigs(): {};
17
+ }) | RequestHandler;
18
+ retryMode: string | import("@smithy/types").Provider<string>;
19
+ sha256: import("@smithy/types").HashConstructor;
20
+ streamCollector: import("@smithy/types").StreamCollector;
21
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ apiVersion: string;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: import("@smithy/types").Encoder;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: import("@smithy/types").Encoder;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ logger: import("@smithy/types").Logger;
32
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
+ logger?: import("@smithy/types").Logger | undefined;
36
+ }) => import("@smithy/types").EndpointV2;
37
+ tls?: boolean | undefined;
38
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ };
@@ -0,0 +1,45 @@
1
+ import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
9
+ updateHttpClientConfig(key: never, value: never): void;
10
+ httpHandlerConfigs(): {};
11
+ }) | import("@smithy/fetch-http-handler").FetchHttpHandler;
12
+ apiVersion: string;
13
+ urlParser: import("@smithy/types").UrlParser;
14
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
+ streamCollector: import("@smithy/types").StreamCollector;
16
+ base64Decoder: import("@smithy/types").Decoder;
17
+ base64Encoder: import("@smithy/types").Encoder;
18
+ utf8Decoder: import("@smithy/types").Decoder;
19
+ utf8Encoder: import("@smithy/types").Encoder;
20
+ disableHostPrefix: boolean;
21
+ serviceId: string;
22
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ region: string | import("@smithy/types").Provider<any>;
25
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
26
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
27
+ maxAttempts: number | import("@smithy/types").Provider<number>;
28
+ retryMode: string | import("@smithy/types").Provider<string>;
29
+ logger: import("@smithy/types").Logger;
30
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
31
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
32
+ endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
33
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
34
+ logger?: import("@smithy/types").Logger | undefined;
35
+ }) => import("@smithy/types").EndpointV2;
36
+ tls?: boolean | undefined;
37
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
38
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
39
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
40
+ signingEscapePath?: boolean | undefined;
41
+ systemClockOffset?: number | undefined;
42
+ signingRegion?: string | undefined;
43
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
44
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
45
+ };
@@ -0,0 +1,19 @@
1
+ import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: import("@smithy/types").Encoder;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ logger: import("@smithy/types").Logger;
15
+ serviceId: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ utf8Decoder: import("@smithy/types").Decoder;
18
+ utf8Encoder: import("@smithy/types").Encoder;
19
+ };
@@ -0,0 +1,17 @@
1
+ import { WorkSpacesThinExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: WorkSpacesThinExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,279 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateEnvironmentCommandInput,
4
+ CreateEnvironmentCommandOutput,
5
+ } from "./commands/CreateEnvironmentCommand";
6
+ import {
7
+ DeleteDeviceCommandInput,
8
+ DeleteDeviceCommandOutput,
9
+ } from "./commands/DeleteDeviceCommand";
10
+ import {
11
+ DeleteEnvironmentCommandInput,
12
+ DeleteEnvironmentCommandOutput,
13
+ } from "./commands/DeleteEnvironmentCommand";
14
+ import {
15
+ DeregisterDeviceCommandInput,
16
+ DeregisterDeviceCommandOutput,
17
+ } from "./commands/DeregisterDeviceCommand";
18
+ import {
19
+ GetDeviceCommandInput,
20
+ GetDeviceCommandOutput,
21
+ } from "./commands/GetDeviceCommand";
22
+ import {
23
+ GetEnvironmentCommandInput,
24
+ GetEnvironmentCommandOutput,
25
+ } from "./commands/GetEnvironmentCommand";
26
+ import {
27
+ GetSoftwareSetCommandInput,
28
+ GetSoftwareSetCommandOutput,
29
+ } from "./commands/GetSoftwareSetCommand";
30
+ import {
31
+ ListDevicesCommandInput,
32
+ ListDevicesCommandOutput,
33
+ } from "./commands/ListDevicesCommand";
34
+ import {
35
+ ListEnvironmentsCommandInput,
36
+ ListEnvironmentsCommandOutput,
37
+ } from "./commands/ListEnvironmentsCommand";
38
+ import {
39
+ ListSoftwareSetsCommandInput,
40
+ ListSoftwareSetsCommandOutput,
41
+ } from "./commands/ListSoftwareSetsCommand";
42
+ import {
43
+ ListTagsForResourceCommandInput,
44
+ ListTagsForResourceCommandOutput,
45
+ } from "./commands/ListTagsForResourceCommand";
46
+ import {
47
+ TagResourceCommandInput,
48
+ TagResourceCommandOutput,
49
+ } from "./commands/TagResourceCommand";
50
+ import {
51
+ UntagResourceCommandInput,
52
+ UntagResourceCommandOutput,
53
+ } from "./commands/UntagResourceCommand";
54
+ import {
55
+ UpdateDeviceCommandInput,
56
+ UpdateDeviceCommandOutput,
57
+ } from "./commands/UpdateDeviceCommand";
58
+ import {
59
+ UpdateEnvironmentCommandInput,
60
+ UpdateEnvironmentCommandOutput,
61
+ } from "./commands/UpdateEnvironmentCommand";
62
+ import {
63
+ UpdateSoftwareSetCommandInput,
64
+ UpdateSoftwareSetCommandOutput,
65
+ } from "./commands/UpdateSoftwareSetCommand";
66
+ import { WorkSpacesThinClientClient } from "./WorkSpacesThinClientClient";
67
+ export interface WorkSpacesThin {
68
+ createEnvironment(
69
+ args: CreateEnvironmentCommandInput,
70
+ options?: __HttpHandlerOptions
71
+ ): Promise<CreateEnvironmentCommandOutput>;
72
+ createEnvironment(
73
+ args: CreateEnvironmentCommandInput,
74
+ cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
75
+ ): void;
76
+ createEnvironment(
77
+ args: CreateEnvironmentCommandInput,
78
+ options: __HttpHandlerOptions,
79
+ cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
80
+ ): void;
81
+ deleteDevice(
82
+ args: DeleteDeviceCommandInput,
83
+ options?: __HttpHandlerOptions
84
+ ): Promise<DeleteDeviceCommandOutput>;
85
+ deleteDevice(
86
+ args: DeleteDeviceCommandInput,
87
+ cb: (err: any, data?: DeleteDeviceCommandOutput) => void
88
+ ): void;
89
+ deleteDevice(
90
+ args: DeleteDeviceCommandInput,
91
+ options: __HttpHandlerOptions,
92
+ cb: (err: any, data?: DeleteDeviceCommandOutput) => void
93
+ ): void;
94
+ deleteEnvironment(
95
+ args: DeleteEnvironmentCommandInput,
96
+ options?: __HttpHandlerOptions
97
+ ): Promise<DeleteEnvironmentCommandOutput>;
98
+ deleteEnvironment(
99
+ args: DeleteEnvironmentCommandInput,
100
+ cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
101
+ ): void;
102
+ deleteEnvironment(
103
+ args: DeleteEnvironmentCommandInput,
104
+ options: __HttpHandlerOptions,
105
+ cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
106
+ ): void;
107
+ deregisterDevice(
108
+ args: DeregisterDeviceCommandInput,
109
+ options?: __HttpHandlerOptions
110
+ ): Promise<DeregisterDeviceCommandOutput>;
111
+ deregisterDevice(
112
+ args: DeregisterDeviceCommandInput,
113
+ cb: (err: any, data?: DeregisterDeviceCommandOutput) => void
114
+ ): void;
115
+ deregisterDevice(
116
+ args: DeregisterDeviceCommandInput,
117
+ options: __HttpHandlerOptions,
118
+ cb: (err: any, data?: DeregisterDeviceCommandOutput) => void
119
+ ): void;
120
+ getDevice(
121
+ args: GetDeviceCommandInput,
122
+ options?: __HttpHandlerOptions
123
+ ): Promise<GetDeviceCommandOutput>;
124
+ getDevice(
125
+ args: GetDeviceCommandInput,
126
+ cb: (err: any, data?: GetDeviceCommandOutput) => void
127
+ ): void;
128
+ getDevice(
129
+ args: GetDeviceCommandInput,
130
+ options: __HttpHandlerOptions,
131
+ cb: (err: any, data?: GetDeviceCommandOutput) => void
132
+ ): void;
133
+ getEnvironment(
134
+ args: GetEnvironmentCommandInput,
135
+ options?: __HttpHandlerOptions
136
+ ): Promise<GetEnvironmentCommandOutput>;
137
+ getEnvironment(
138
+ args: GetEnvironmentCommandInput,
139
+ cb: (err: any, data?: GetEnvironmentCommandOutput) => void
140
+ ): void;
141
+ getEnvironment(
142
+ args: GetEnvironmentCommandInput,
143
+ options: __HttpHandlerOptions,
144
+ cb: (err: any, data?: GetEnvironmentCommandOutput) => void
145
+ ): void;
146
+ getSoftwareSet(
147
+ args: GetSoftwareSetCommandInput,
148
+ options?: __HttpHandlerOptions
149
+ ): Promise<GetSoftwareSetCommandOutput>;
150
+ getSoftwareSet(
151
+ args: GetSoftwareSetCommandInput,
152
+ cb: (err: any, data?: GetSoftwareSetCommandOutput) => void
153
+ ): void;
154
+ getSoftwareSet(
155
+ args: GetSoftwareSetCommandInput,
156
+ options: __HttpHandlerOptions,
157
+ cb: (err: any, data?: GetSoftwareSetCommandOutput) => void
158
+ ): void;
159
+ listDevices(
160
+ args: ListDevicesCommandInput,
161
+ options?: __HttpHandlerOptions
162
+ ): Promise<ListDevicesCommandOutput>;
163
+ listDevices(
164
+ args: ListDevicesCommandInput,
165
+ cb: (err: any, data?: ListDevicesCommandOutput) => void
166
+ ): void;
167
+ listDevices(
168
+ args: ListDevicesCommandInput,
169
+ options: __HttpHandlerOptions,
170
+ cb: (err: any, data?: ListDevicesCommandOutput) => void
171
+ ): void;
172
+ listEnvironments(
173
+ args: ListEnvironmentsCommandInput,
174
+ options?: __HttpHandlerOptions
175
+ ): Promise<ListEnvironmentsCommandOutput>;
176
+ listEnvironments(
177
+ args: ListEnvironmentsCommandInput,
178
+ cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
179
+ ): void;
180
+ listEnvironments(
181
+ args: ListEnvironmentsCommandInput,
182
+ options: __HttpHandlerOptions,
183
+ cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
184
+ ): void;
185
+ listSoftwareSets(
186
+ args: ListSoftwareSetsCommandInput,
187
+ options?: __HttpHandlerOptions
188
+ ): Promise<ListSoftwareSetsCommandOutput>;
189
+ listSoftwareSets(
190
+ args: ListSoftwareSetsCommandInput,
191
+ cb: (err: any, data?: ListSoftwareSetsCommandOutput) => void
192
+ ): void;
193
+ listSoftwareSets(
194
+ args: ListSoftwareSetsCommandInput,
195
+ options: __HttpHandlerOptions,
196
+ cb: (err: any, data?: ListSoftwareSetsCommandOutput) => void
197
+ ): void;
198
+ listTagsForResource(
199
+ args: ListTagsForResourceCommandInput,
200
+ options?: __HttpHandlerOptions
201
+ ): Promise<ListTagsForResourceCommandOutput>;
202
+ listTagsForResource(
203
+ args: ListTagsForResourceCommandInput,
204
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
205
+ ): void;
206
+ listTagsForResource(
207
+ args: ListTagsForResourceCommandInput,
208
+ options: __HttpHandlerOptions,
209
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
210
+ ): void;
211
+ tagResource(
212
+ args: TagResourceCommandInput,
213
+ options?: __HttpHandlerOptions
214
+ ): Promise<TagResourceCommandOutput>;
215
+ tagResource(
216
+ args: TagResourceCommandInput,
217
+ cb: (err: any, data?: TagResourceCommandOutput) => void
218
+ ): void;
219
+ tagResource(
220
+ args: TagResourceCommandInput,
221
+ options: __HttpHandlerOptions,
222
+ cb: (err: any, data?: TagResourceCommandOutput) => void
223
+ ): void;
224
+ untagResource(
225
+ args: UntagResourceCommandInput,
226
+ options?: __HttpHandlerOptions
227
+ ): Promise<UntagResourceCommandOutput>;
228
+ untagResource(
229
+ args: UntagResourceCommandInput,
230
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
231
+ ): void;
232
+ untagResource(
233
+ args: UntagResourceCommandInput,
234
+ options: __HttpHandlerOptions,
235
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
236
+ ): void;
237
+ updateDevice(
238
+ args: UpdateDeviceCommandInput,
239
+ options?: __HttpHandlerOptions
240
+ ): Promise<UpdateDeviceCommandOutput>;
241
+ updateDevice(
242
+ args: UpdateDeviceCommandInput,
243
+ cb: (err: any, data?: UpdateDeviceCommandOutput) => void
244
+ ): void;
245
+ updateDevice(
246
+ args: UpdateDeviceCommandInput,
247
+ options: __HttpHandlerOptions,
248
+ cb: (err: any, data?: UpdateDeviceCommandOutput) => void
249
+ ): void;
250
+ updateEnvironment(
251
+ args: UpdateEnvironmentCommandInput,
252
+ options?: __HttpHandlerOptions
253
+ ): Promise<UpdateEnvironmentCommandOutput>;
254
+ updateEnvironment(
255
+ args: UpdateEnvironmentCommandInput,
256
+ cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
257
+ ): void;
258
+ updateEnvironment(
259
+ args: UpdateEnvironmentCommandInput,
260
+ options: __HttpHandlerOptions,
261
+ cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
262
+ ): void;
263
+ updateSoftwareSet(
264
+ args: UpdateSoftwareSetCommandInput,
265
+ options?: __HttpHandlerOptions
266
+ ): Promise<UpdateSoftwareSetCommandOutput>;
267
+ updateSoftwareSet(
268
+ args: UpdateSoftwareSetCommandInput,
269
+ cb: (err: any, data?: UpdateSoftwareSetCommandOutput) => void
270
+ ): void;
271
+ updateSoftwareSet(
272
+ args: UpdateSoftwareSetCommandInput,
273
+ options: __HttpHandlerOptions,
274
+ cb: (err: any, data?: UpdateSoftwareSetCommandOutput) => void
275
+ ): void;
276
+ }
277
+ export declare class WorkSpacesThin
278
+ extends WorkSpacesThinClientClient
279
+ implements WorkSpacesThin {}