@aws-sdk/client-workspaces-instances 3.835.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 (151) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +309 -0
  3. package/dist-cjs/WorkspacesInstances.js +37 -0
  4. package/dist-cjs/WorkspacesInstancesClient.js +52 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/AssociateVolumeCommand.js +26 -0
  8. package/dist-cjs/commands/CreateVolumeCommand.js +27 -0
  9. package/dist-cjs/commands/CreateWorkspaceInstanceCommand.js +27 -0
  10. package/dist-cjs/commands/DeleteVolumeCommand.js +26 -0
  11. package/dist-cjs/commands/DeleteWorkspaceInstanceCommand.js +26 -0
  12. package/dist-cjs/commands/DisassociateVolumeCommand.js +26 -0
  13. package/dist-cjs/commands/GetWorkspaceInstanceCommand.js +26 -0
  14. package/dist-cjs/commands/ListInstanceTypesCommand.js +27 -0
  15. package/dist-cjs/commands/ListRegionsCommand.js +27 -0
  16. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  17. package/dist-cjs/commands/ListWorkspaceInstancesCommand.js +27 -0
  18. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  19. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  20. package/dist-cjs/commands/index.js +16 -0
  21. package/dist-cjs/endpoint/EndpointParameters.js +15 -0
  22. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  23. package/dist-cjs/endpoint/ruleset.js +7 -0
  24. package/dist-cjs/extensionConfiguration.js +2 -0
  25. package/dist-cjs/index.js +11 -0
  26. package/dist-cjs/models/WorkspacesInstancesServiceException.js +12 -0
  27. package/dist-cjs/models/index.js +4 -0
  28. package/dist-cjs/models/models_0.js +329 -0
  29. package/dist-cjs/pagination/Interfaces.js +2 -0
  30. package/dist-cjs/pagination/ListInstanceTypesPaginator.js +7 -0
  31. package/dist-cjs/pagination/ListRegionsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListWorkspaceInstancesPaginator.js +7 -0
  33. package/dist-cjs/pagination/index.js +7 -0
  34. package/dist-cjs/protocols/Aws_json1_0.js +486 -0
  35. package/dist-cjs/runtimeConfig.browser.js +39 -0
  36. package/dist-cjs/runtimeConfig.js +56 -0
  37. package/dist-cjs/runtimeConfig.native.js +15 -0
  38. package/dist-cjs/runtimeConfig.shared.js +34 -0
  39. package/dist-cjs/runtimeExtensions.js +13 -0
  40. package/dist-es/WorkspacesInstances.js +33 -0
  41. package/dist-es/WorkspacesInstancesClient.js +48 -0
  42. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  43. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  44. package/dist-es/commands/AssociateVolumeCommand.js +22 -0
  45. package/dist-es/commands/CreateVolumeCommand.js +23 -0
  46. package/dist-es/commands/CreateWorkspaceInstanceCommand.js +23 -0
  47. package/dist-es/commands/DeleteVolumeCommand.js +22 -0
  48. package/dist-es/commands/DeleteWorkspaceInstanceCommand.js +22 -0
  49. package/dist-es/commands/DisassociateVolumeCommand.js +22 -0
  50. package/dist-es/commands/GetWorkspaceInstanceCommand.js +22 -0
  51. package/dist-es/commands/ListInstanceTypesCommand.js +23 -0
  52. package/dist-es/commands/ListRegionsCommand.js +23 -0
  53. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  54. package/dist-es/commands/ListWorkspaceInstancesCommand.js +23 -0
  55. package/dist-es/commands/TagResourceCommand.js +22 -0
  56. package/dist-es/commands/UntagResourceCommand.js +22 -0
  57. package/dist-es/commands/index.js +13 -0
  58. package/dist-es/endpoint/EndpointParameters.js +11 -0
  59. package/dist-es/endpoint/endpointResolver.js +14 -0
  60. package/dist-es/endpoint/ruleset.js +4 -0
  61. package/dist-es/extensionConfiguration.js +1 -0
  62. package/dist-es/index.js +6 -0
  63. package/dist-es/models/WorkspacesInstancesServiceException.js +8 -0
  64. package/dist-es/models/index.js +1 -0
  65. package/dist-es/models/models_0.js +305 -0
  66. package/dist-es/pagination/Interfaces.js +1 -0
  67. package/dist-es/pagination/ListInstanceTypesPaginator.js +4 -0
  68. package/dist-es/pagination/ListRegionsPaginator.js +4 -0
  69. package/dist-es/pagination/ListWorkspaceInstancesPaginator.js +4 -0
  70. package/dist-es/pagination/index.js +4 -0
  71. package/dist-es/protocols/Aws_json1_0.js +457 -0
  72. package/dist-es/runtimeConfig.browser.js +34 -0
  73. package/dist-es/runtimeConfig.js +51 -0
  74. package/dist-es/runtimeConfig.native.js +11 -0
  75. package/dist-es/runtimeConfig.shared.js +30 -0
  76. package/dist-es/runtimeExtensions.js +9 -0
  77. package/dist-types/WorkspacesInstances.d.ts +104 -0
  78. package/dist-types/WorkspacesInstancesClient.d.ts +200 -0
  79. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  80. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  81. package/dist-types/commands/AssociateVolumeCommand.d.ts +90 -0
  82. package/dist-types/commands/CreateVolumeCommand.d.ts +109 -0
  83. package/dist-types/commands/CreateWorkspaceInstanceCommand.d.ts +273 -0
  84. package/dist-types/commands/DeleteVolumeCommand.d.ts +88 -0
  85. package/dist-types/commands/DeleteWorkspaceInstanceCommand.d.ts +88 -0
  86. package/dist-types/commands/DisassociateVolumeCommand.d.ts +91 -0
  87. package/dist-types/commands/GetWorkspaceInstanceCommand.d.ts +104 -0
  88. package/dist-types/commands/ListInstanceTypesCommand.d.ts +90 -0
  89. package/dist-types/commands/ListRegionsCommand.d.ts +90 -0
  90. package/dist-types/commands/ListTagsForResourceCommand.d.ts +92 -0
  91. package/dist-types/commands/ListWorkspaceInstancesCommand.d.ts +97 -0
  92. package/dist-types/commands/TagResourceCommand.d.ts +91 -0
  93. package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
  94. package/dist-types/commands/index.d.ts +13 -0
  95. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  96. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  97. package/dist-types/endpoint/ruleset.d.ts +2 -0
  98. package/dist-types/extensionConfiguration.d.ts +9 -0
  99. package/dist-types/index.d.ts +14 -0
  100. package/dist-types/models/WorkspacesInstancesServiceException.d.ts +14 -0
  101. package/dist-types/models/index.d.ts +1 -0
  102. package/dist-types/models/models_0.d.ts +1787 -0
  103. package/dist-types/pagination/Interfaces.d.ts +8 -0
  104. package/dist-types/pagination/ListInstanceTypesPaginator.d.ts +7 -0
  105. package/dist-types/pagination/ListRegionsPaginator.d.ts +7 -0
  106. package/dist-types/pagination/ListWorkspaceInstancesPaginator.d.ts +7 -0
  107. package/dist-types/pagination/index.d.ts +4 -0
  108. package/dist-types/protocols/Aws_json1_0.d.ts +119 -0
  109. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  110. package/dist-types/runtimeConfig.d.ts +50 -0
  111. package/dist-types/runtimeConfig.native.d.ts +49 -0
  112. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  113. package/dist-types/runtimeExtensions.d.ts +17 -0
  114. package/dist-types/ts3.4/WorkspacesInstances.d.ts +231 -0
  115. package/dist-types/ts3.4/WorkspacesInstancesClient.d.ts +200 -0
  116. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  117. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  118. package/dist-types/ts3.4/commands/AssociateVolumeCommand.d.ts +50 -0
  119. package/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +47 -0
  120. package/dist-types/ts3.4/commands/CreateWorkspaceInstanceCommand.d.ts +51 -0
  121. package/dist-types/ts3.4/commands/DeleteVolumeCommand.d.ts +47 -0
  122. package/dist-types/ts3.4/commands/DeleteWorkspaceInstanceCommand.d.ts +51 -0
  123. package/dist-types/ts3.4/commands/DisassociateVolumeCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/GetWorkspaceInstanceCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/ListInstanceTypesCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/ListRegionsCommand.d.ts +47 -0
  127. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/ListWorkspaceInstancesCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  130. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  131. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  132. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  133. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  134. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  135. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  136. package/dist-types/ts3.4/index.d.ts +9 -0
  137. package/dist-types/ts3.4/models/WorkspacesInstancesServiceException.d.ts +9 -0
  138. package/dist-types/ts3.4/models/index.d.ts +1 -0
  139. package/dist-types/ts3.4/models/models_0.d.ts +558 -0
  140. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  141. package/dist-types/ts3.4/pagination/ListInstanceTypesPaginator.d.ts +11 -0
  142. package/dist-types/ts3.4/pagination/ListRegionsPaginator.d.ts +11 -0
  143. package/dist-types/ts3.4/pagination/ListWorkspaceInstancesPaginator.d.ts +11 -0
  144. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  145. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +161 -0
  146. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
  147. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  148. package/dist-types/ts3.4/runtimeConfig.native.d.ts +97 -0
  149. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  150. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  151. package/package.json +101 -0
@@ -0,0 +1,305 @@
1
+ import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
+ import { WorkspacesInstancesServiceException as __BaseException } from "./WorkspacesInstancesServiceException";
3
+ export class AccessDeniedException extends __BaseException {
4
+ name = "AccessDeniedException";
5
+ $fault = "client";
6
+ Message;
7
+ constructor(opts) {
8
+ super({
9
+ name: "AccessDeniedException",
10
+ $fault: "client",
11
+ ...opts,
12
+ });
13
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
14
+ this.Message = opts.Message;
15
+ }
16
+ }
17
+ export const AmdSevSnpEnum = {
18
+ DISABLED: "disabled",
19
+ ENABLED: "enabled",
20
+ };
21
+ export class ConflictException extends __BaseException {
22
+ name = "ConflictException";
23
+ $fault = "client";
24
+ Message;
25
+ ResourceId;
26
+ ResourceType;
27
+ constructor(opts) {
28
+ super({
29
+ name: "ConflictException",
30
+ $fault: "client",
31
+ ...opts,
32
+ });
33
+ Object.setPrototypeOf(this, ConflictException.prototype);
34
+ this.Message = opts.Message;
35
+ this.ResourceId = opts.ResourceId;
36
+ this.ResourceType = opts.ResourceType;
37
+ }
38
+ }
39
+ export class InternalServerException extends __BaseException {
40
+ name = "InternalServerException";
41
+ $fault = "server";
42
+ $retryable = {};
43
+ Message;
44
+ RetryAfterSeconds;
45
+ constructor(opts) {
46
+ super({
47
+ name: "InternalServerException",
48
+ $fault: "server",
49
+ ...opts,
50
+ });
51
+ Object.setPrototypeOf(this, InternalServerException.prototype);
52
+ this.Message = opts.Message;
53
+ this.RetryAfterSeconds = opts.RetryAfterSeconds;
54
+ }
55
+ }
56
+ export class ResourceNotFoundException extends __BaseException {
57
+ name = "ResourceNotFoundException";
58
+ $fault = "client";
59
+ Message;
60
+ ResourceId;
61
+ ResourceType;
62
+ constructor(opts) {
63
+ super({
64
+ name: "ResourceNotFoundException",
65
+ $fault: "client",
66
+ ...opts,
67
+ });
68
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
69
+ this.Message = opts.Message;
70
+ this.ResourceId = opts.ResourceId;
71
+ this.ResourceType = opts.ResourceType;
72
+ }
73
+ }
74
+ export class ThrottlingException extends __BaseException {
75
+ name = "ThrottlingException";
76
+ $fault = "client";
77
+ $retryable = {
78
+ throttling: true,
79
+ };
80
+ Message;
81
+ ServiceCode;
82
+ QuotaCode;
83
+ RetryAfterSeconds;
84
+ constructor(opts) {
85
+ super({
86
+ name: "ThrottlingException",
87
+ $fault: "client",
88
+ ...opts,
89
+ });
90
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
91
+ this.Message = opts.Message;
92
+ this.ServiceCode = opts.ServiceCode;
93
+ this.QuotaCode = opts.QuotaCode;
94
+ this.RetryAfterSeconds = opts.RetryAfterSeconds;
95
+ }
96
+ }
97
+ export const ValidationExceptionReason = {
98
+ CANNOT_PARSE: "CANNOT_PARSE",
99
+ DEPENDENCY_FAILURE: "DEPENDENCY_FAILURE",
100
+ FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
101
+ OTHER: "OTHER",
102
+ UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
103
+ UNSUPPORTED_OPERATION: "UNSUPPORTED_OPERATION",
104
+ };
105
+ export class ValidationException extends __BaseException {
106
+ name = "ValidationException";
107
+ $fault = "client";
108
+ Message;
109
+ Reason;
110
+ FieldList;
111
+ constructor(opts) {
112
+ super({
113
+ name: "ValidationException",
114
+ $fault: "client",
115
+ ...opts,
116
+ });
117
+ Object.setPrototypeOf(this, ValidationException.prototype);
118
+ this.Message = opts.Message;
119
+ this.Reason = opts.Reason;
120
+ this.FieldList = opts.FieldList;
121
+ }
122
+ }
123
+ export const AutoRecoveryEnum = {
124
+ DEFAULT: "default",
125
+ DISABLED: "disabled",
126
+ };
127
+ export const BandwidthWeightingEnum = {
128
+ DEFAULT: "default",
129
+ EBS_1: "ebs-1",
130
+ VPC_1: "vpc-1",
131
+ };
132
+ export const VolumeTypeEnum = {
133
+ GP2: "gp2",
134
+ GP3: "gp3",
135
+ IO1: "io1",
136
+ IO2: "io2",
137
+ SC1: "sc1",
138
+ ST1: "st1",
139
+ STANDARD: "standard",
140
+ };
141
+ export const CapacityReservationPreferenceEnum = {
142
+ CAPACITY_RESERVATIONS_ONLY: "capacity-reservations-only",
143
+ NONE: "none",
144
+ OPEN: "open",
145
+ };
146
+ export const CpuCreditsEnum = {
147
+ STANDARD: "standard",
148
+ UNLIMITED: "unlimited",
149
+ };
150
+ export const ResourceTypeEnum = {
151
+ INSTANCE: "instance",
152
+ NETWORK_INTERFACE: "network-interface",
153
+ SPOT_INSTANCES_REQUEST: "spot-instances-request",
154
+ VOLUME: "volume",
155
+ };
156
+ export class ServiceQuotaExceededException extends __BaseException {
157
+ name = "ServiceQuotaExceededException";
158
+ $fault = "client";
159
+ Message;
160
+ ResourceId;
161
+ ResourceType;
162
+ ServiceCode;
163
+ QuotaCode;
164
+ constructor(opts) {
165
+ super({
166
+ name: "ServiceQuotaExceededException",
167
+ $fault: "client",
168
+ ...opts,
169
+ });
170
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
171
+ this.Message = opts.Message;
172
+ this.ResourceId = opts.ResourceId;
173
+ this.ResourceType = opts.ResourceType;
174
+ this.ServiceCode = opts.ServiceCode;
175
+ this.QuotaCode = opts.QuotaCode;
176
+ }
177
+ }
178
+ export const MarketTypeEnum = {
179
+ CAPACITY_BLOCK: "capacity-block",
180
+ SPOT: "spot",
181
+ };
182
+ export const InstanceInterruptionBehaviorEnum = {
183
+ HIBERNATE: "hibernate",
184
+ STOP: "stop",
185
+ };
186
+ export const SpotInstanceTypeEnum = {
187
+ ONE_TIME: "one-time",
188
+ PERSISTENT: "persistent",
189
+ };
190
+ export const HttpEndpointEnum = {
191
+ DISABLED: "disabled",
192
+ ENABLED: "enabled",
193
+ };
194
+ export const HttpProtocolIpv6Enum = {
195
+ DISABLED: "disabled",
196
+ ENABLED: "enabled",
197
+ };
198
+ export const HttpTokensEnum = {
199
+ OPTIONAL: "optional",
200
+ REQUIRED: "required",
201
+ };
202
+ export const InstanceMetadataTagsEnum = {
203
+ DISABLED: "disabled",
204
+ ENABLED: "enabled",
205
+ };
206
+ export const InterfaceTypeEnum = {
207
+ EFA: "efa",
208
+ EFA_ONLY: "efa-only",
209
+ INTERFACE: "interface",
210
+ };
211
+ export const TenancyEnum = {
212
+ DEDICATED: "dedicated",
213
+ DEFAULT: "default",
214
+ HOST: "host",
215
+ };
216
+ export const HostnameTypeEnum = {
217
+ IP_NAME: "ip-name",
218
+ RESOURCE_NAME: "resource-name",
219
+ };
220
+ export const DisassociateModeEnum = {
221
+ FORCE: "FORCE",
222
+ NO_FORCE: "NO_FORCE",
223
+ };
224
+ export const ProvisionStateEnum = {
225
+ ALLOCATED: "ALLOCATED",
226
+ ALLOCATING: "ALLOCATING",
227
+ DEALLOCATED: "DEALLOCATED",
228
+ DEALLOCATING: "DEALLOCATING",
229
+ ERROR_ALLOCATING: "ERROR_ALLOCATING",
230
+ ERROR_DEALLOCATING: "ERROR_DEALLOCATING",
231
+ };
232
+ export const EbsBlockDeviceFilterSensitiveLog = (obj) => ({
233
+ ...obj,
234
+ ...(obj.KmsKeyId && { KmsKeyId: SENSITIVE_STRING }),
235
+ });
236
+ export const BlockDeviceMappingRequestFilterSensitiveLog = (obj) => ({
237
+ ...obj,
238
+ ...(obj.Ebs && { Ebs: EbsBlockDeviceFilterSensitiveLog(obj.Ebs) }),
239
+ });
240
+ export const CreateVolumeRequestFilterSensitiveLog = (obj) => ({
241
+ ...obj,
242
+ ...(obj.ClientToken && { ClientToken: SENSITIVE_STRING }),
243
+ ...(obj.KmsKeyId && { KmsKeyId: SENSITIVE_STRING }),
244
+ });
245
+ export const InstanceIpv6AddressFilterSensitiveLog = (obj) => ({
246
+ ...obj,
247
+ ...(obj.Ipv6Address && { Ipv6Address: SENSITIVE_STRING }),
248
+ });
249
+ export const PrivateIpAddressSpecificationFilterSensitiveLog = (obj) => ({
250
+ ...obj,
251
+ ...(obj.PrivateIpAddress && { PrivateIpAddress: SENSITIVE_STRING }),
252
+ });
253
+ export const InstanceNetworkInterfaceSpecificationFilterSensitiveLog = (obj) => ({
254
+ ...obj,
255
+ ...(obj.Ipv6Addresses && {
256
+ Ipv6Addresses: obj.Ipv6Addresses.map((item) => InstanceIpv6AddressFilterSensitiveLog(item)),
257
+ }),
258
+ ...(obj.PrivateIpAddress && { PrivateIpAddress: SENSITIVE_STRING }),
259
+ ...(obj.PrivateIpAddresses && {
260
+ PrivateIpAddresses: obj.PrivateIpAddresses.map((item) => PrivateIpAddressSpecificationFilterSensitiveLog(item)),
261
+ }),
262
+ });
263
+ export const ManagedInstanceRequestFilterSensitiveLog = (obj) => ({
264
+ ...obj,
265
+ ...(obj.BlockDeviceMappings && {
266
+ BlockDeviceMappings: obj.BlockDeviceMappings.map((item) => BlockDeviceMappingRequestFilterSensitiveLog(item)),
267
+ }),
268
+ ...(obj.Ipv6Addresses && {
269
+ Ipv6Addresses: obj.Ipv6Addresses.map((item) => InstanceIpv6AddressFilterSensitiveLog(item)),
270
+ }),
271
+ ...(obj.NetworkInterfaces && {
272
+ NetworkInterfaces: obj.NetworkInterfaces.map((item) => InstanceNetworkInterfaceSpecificationFilterSensitiveLog(item)),
273
+ }),
274
+ ...(obj.PrivateIpAddress && { PrivateIpAddress: SENSITIVE_STRING }),
275
+ ...(obj.UserData && { UserData: SENSITIVE_STRING }),
276
+ });
277
+ export const CreateWorkspaceInstanceRequestFilterSensitiveLog = (obj) => ({
278
+ ...obj,
279
+ ...(obj.ClientToken && { ClientToken: SENSITIVE_STRING }),
280
+ ...(obj.ManagedInstance && { ManagedInstance: ManagedInstanceRequestFilterSensitiveLog(obj.ManagedInstance) }),
281
+ });
282
+ export const ListInstanceTypesRequestFilterSensitiveLog = (obj) => ({
283
+ ...obj,
284
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
285
+ });
286
+ export const ListInstanceTypesResponseFilterSensitiveLog = (obj) => ({
287
+ ...obj,
288
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
289
+ });
290
+ export const ListRegionsRequestFilterSensitiveLog = (obj) => ({
291
+ ...obj,
292
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
293
+ });
294
+ export const ListRegionsResponseFilterSensitiveLog = (obj) => ({
295
+ ...obj,
296
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
297
+ });
298
+ export const ListWorkspaceInstancesRequestFilterSensitiveLog = (obj) => ({
299
+ ...obj,
300
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
301
+ });
302
+ export const ListWorkspaceInstancesResponseFilterSensitiveLog = (obj) => ({
303
+ ...obj,
304
+ ...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
305
+ });
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListInstanceTypesCommand, } from "../commands/ListInstanceTypesCommand";
3
+ import { WorkspacesInstancesClient } from "../WorkspacesInstancesClient";
4
+ export const paginateListInstanceTypes = createPaginator(WorkspacesInstancesClient, ListInstanceTypesCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListRegionsCommand } from "../commands/ListRegionsCommand";
3
+ import { WorkspacesInstancesClient } from "../WorkspacesInstancesClient";
4
+ export const paginateListRegions = createPaginator(WorkspacesInstancesClient, ListRegionsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListWorkspaceInstancesCommand, } from "../commands/ListWorkspaceInstancesCommand";
3
+ import { WorkspacesInstancesClient } from "../WorkspacesInstancesClient";
4
+ export const paginateListWorkspaceInstances = createPaginator(WorkspacesInstancesClient, ListWorkspaceInstancesCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListInstanceTypesPaginator";
3
+ export * from "./ListRegionsPaginator";
4
+ export * from "./ListWorkspaceInstancesPaginator";