@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,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { WorkspacesInstancesClient } from "../WorkspacesInstancesClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface WorkspacesInstancesPaginationConfiguration extends PaginationConfiguration {
7
+ client: WorkspacesInstancesClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListInstanceTypesCommandInput, ListInstanceTypesCommandOutput } from "../commands/ListInstanceTypesCommand";
3
+ import { WorkspacesInstancesPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListInstanceTypes: (config: WorkspacesInstancesPaginationConfiguration, input: ListInstanceTypesCommandInput, ...rest: any[]) => Paginator<ListInstanceTypesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListRegionsCommandInput, ListRegionsCommandOutput } from "../commands/ListRegionsCommand";
3
+ import { WorkspacesInstancesPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListRegions: (config: WorkspacesInstancesPaginationConfiguration, input: ListRegionsCommandInput, ...rest: any[]) => Paginator<ListRegionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListWorkspaceInstancesCommandInput, ListWorkspaceInstancesCommandOutput } from "../commands/ListWorkspaceInstancesCommand";
3
+ import { WorkspacesInstancesPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListWorkspaceInstances: (config: WorkspacesInstancesPaginationConfiguration, input: ListWorkspaceInstancesCommandInput, ...rest: any[]) => Paginator<ListWorkspaceInstancesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListInstanceTypesPaginator";
3
+ export * from "./ListRegionsPaginator";
4
+ export * from "./ListWorkspaceInstancesPaginator";
@@ -0,0 +1,119 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { AssociateVolumeCommandInput, AssociateVolumeCommandOutput } from "../commands/AssociateVolumeCommand";
4
+ import { CreateVolumeCommandInput, CreateVolumeCommandOutput } from "../commands/CreateVolumeCommand";
5
+ import { CreateWorkspaceInstanceCommandInput, CreateWorkspaceInstanceCommandOutput } from "../commands/CreateWorkspaceInstanceCommand";
6
+ import { DeleteVolumeCommandInput, DeleteVolumeCommandOutput } from "../commands/DeleteVolumeCommand";
7
+ import { DeleteWorkspaceInstanceCommandInput, DeleteWorkspaceInstanceCommandOutput } from "../commands/DeleteWorkspaceInstanceCommand";
8
+ import { DisassociateVolumeCommandInput, DisassociateVolumeCommandOutput } from "../commands/DisassociateVolumeCommand";
9
+ import { GetWorkspaceInstanceCommandInput, GetWorkspaceInstanceCommandOutput } from "../commands/GetWorkspaceInstanceCommand";
10
+ import { ListInstanceTypesCommandInput, ListInstanceTypesCommandOutput } from "../commands/ListInstanceTypesCommand";
11
+ import { ListRegionsCommandInput, ListRegionsCommandOutput } from "../commands/ListRegionsCommand";
12
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
13
+ import { ListWorkspaceInstancesCommandInput, ListWorkspaceInstancesCommandOutput } from "../commands/ListWorkspaceInstancesCommand";
14
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
15
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
16
+ /**
17
+ * serializeAws_json1_0AssociateVolumeCommand
18
+ */
19
+ export declare const se_AssociateVolumeCommand: (input: AssociateVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ /**
21
+ * serializeAws_json1_0CreateVolumeCommand
22
+ */
23
+ export declare const se_CreateVolumeCommand: (input: CreateVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ /**
25
+ * serializeAws_json1_0CreateWorkspaceInstanceCommand
26
+ */
27
+ export declare const se_CreateWorkspaceInstanceCommand: (input: CreateWorkspaceInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ /**
29
+ * serializeAws_json1_0DeleteVolumeCommand
30
+ */
31
+ export declare const se_DeleteVolumeCommand: (input: DeleteVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ /**
33
+ * serializeAws_json1_0DeleteWorkspaceInstanceCommand
34
+ */
35
+ export declare const se_DeleteWorkspaceInstanceCommand: (input: DeleteWorkspaceInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ /**
37
+ * serializeAws_json1_0DisassociateVolumeCommand
38
+ */
39
+ export declare const se_DisassociateVolumeCommand: (input: DisassociateVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
+ /**
41
+ * serializeAws_json1_0GetWorkspaceInstanceCommand
42
+ */
43
+ export declare const se_GetWorkspaceInstanceCommand: (input: GetWorkspaceInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
+ /**
45
+ * serializeAws_json1_0ListInstanceTypesCommand
46
+ */
47
+ export declare const se_ListInstanceTypesCommand: (input: ListInstanceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
+ /**
49
+ * serializeAws_json1_0ListRegionsCommand
50
+ */
51
+ export declare const se_ListRegionsCommand: (input: ListRegionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
+ /**
53
+ * serializeAws_json1_0ListTagsForResourceCommand
54
+ */
55
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
+ /**
57
+ * serializeAws_json1_0ListWorkspaceInstancesCommand
58
+ */
59
+ export declare const se_ListWorkspaceInstancesCommand: (input: ListWorkspaceInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
+ /**
61
+ * serializeAws_json1_0TagResourceCommand
62
+ */
63
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
+ /**
65
+ * serializeAws_json1_0UntagResourceCommand
66
+ */
67
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
+ /**
69
+ * deserializeAws_json1_0AssociateVolumeCommand
70
+ */
71
+ export declare const de_AssociateVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateVolumeCommandOutput>;
72
+ /**
73
+ * deserializeAws_json1_0CreateVolumeCommand
74
+ */
75
+ export declare const de_CreateVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVolumeCommandOutput>;
76
+ /**
77
+ * deserializeAws_json1_0CreateWorkspaceInstanceCommand
78
+ */
79
+ export declare const de_CreateWorkspaceInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspaceInstanceCommandOutput>;
80
+ /**
81
+ * deserializeAws_json1_0DeleteVolumeCommand
82
+ */
83
+ export declare const de_DeleteVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVolumeCommandOutput>;
84
+ /**
85
+ * deserializeAws_json1_0DeleteWorkspaceInstanceCommand
86
+ */
87
+ export declare const de_DeleteWorkspaceInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkspaceInstanceCommandOutput>;
88
+ /**
89
+ * deserializeAws_json1_0DisassociateVolumeCommand
90
+ */
91
+ export declare const de_DisassociateVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateVolumeCommandOutput>;
92
+ /**
93
+ * deserializeAws_json1_0GetWorkspaceInstanceCommand
94
+ */
95
+ export declare const de_GetWorkspaceInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkspaceInstanceCommandOutput>;
96
+ /**
97
+ * deserializeAws_json1_0ListInstanceTypesCommand
98
+ */
99
+ export declare const de_ListInstanceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInstanceTypesCommandOutput>;
100
+ /**
101
+ * deserializeAws_json1_0ListRegionsCommand
102
+ */
103
+ export declare const de_ListRegionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRegionsCommandOutput>;
104
+ /**
105
+ * deserializeAws_json1_0ListTagsForResourceCommand
106
+ */
107
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
108
+ /**
109
+ * deserializeAws_json1_0ListWorkspaceInstancesCommand
110
+ */
111
+ export declare const de_ListWorkspaceInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkspaceInstancesCommandOutput>;
112
+ /**
113
+ * deserializeAws_json1_0TagResourceCommand
114
+ */
115
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
116
+ /**
117
+ * deserializeAws_json1_0UntagResourceCommand
118
+ */
119
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -0,0 +1,50 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: WorkspacesInstancesClientConfig) => {
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").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
+ apiVersion: string;
21
+ cacheMiddleware?: boolean | undefined;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: Uint8Array | string) => string;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: Uint8Array | string) => string;
27
+ disableHostPrefix: boolean;
28
+ serviceId: string;
29
+ profile?: string;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ customUserAgent?: string | import("@smithy/types").UserAgent;
33
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
35
+ 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;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean;
40
+ serviceConfiguredEndpoint?: never;
41
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
42
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WorkspacesInstancesHttpAuthSchemeProvider;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
46
+ signingEscapePath?: boolean;
47
+ systemClockOffset?: number;
48
+ signingRegion?: string;
49
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
50
+ };
@@ -0,0 +1,50 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: WorkspacesInstancesClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
12
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
+ maxAttempts: number | import("@smithy/types").Provider<number>;
14
+ region: string | import("@smithy/types").Provider<string>;
15
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
16
+ retryMode: string | import("@smithy/types").Provider<string>;
17
+ sha256: import("@smithy/types").HashConstructor;
18
+ streamCollector: import("@smithy/types").StreamCollector;
19
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
+ apiVersion: string;
23
+ cacheMiddleware?: boolean | undefined;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: (_input: Uint8Array | string) => string;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: (input: Uint8Array | string) => string;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ profile?: string;
32
+ logger: import("@smithy/types").Logger;
33
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ customUserAgent?: string | import("@smithy/types").UserAgent;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
+ 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;
37
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
38
+ logger?: import("@smithy/types").Logger;
39
+ }) => import("@smithy/types").EndpointV2;
40
+ tls?: boolean;
41
+ serviceConfiguredEndpoint?: never;
42
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WorkspacesInstancesHttpAuthSchemeProvider;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
46
+ signingEscapePath?: boolean;
47
+ systemClockOffset?: number;
48
+ signingRegion?: string;
49
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
50
+ };
@@ -0,0 +1,49 @@
1
+ import { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: WorkspacesInstancesClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ cacheMiddleware?: boolean;
11
+ urlParser: import("@smithy/types").UrlParser;
12
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
+ streamCollector: import("@smithy/types").StreamCollector;
14
+ base64Decoder: import("@smithy/types").Decoder;
15
+ base64Encoder: (_input: Uint8Array | string) => string;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: (input: Uint8Array | string) => string;
18
+ disableHostPrefix: boolean;
19
+ serviceId: string;
20
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ profile?: string;
24
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
+ maxAttempts: number | import("@smithy/types").Provider<number>;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
+ customUserAgent?: string | import("@smithy/types").UserAgent;
32
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
34
+ 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;
35
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
+ logger?: import("@smithy/types").Logger;
37
+ }) => import("@smithy/types").EndpointV2;
38
+ tls?: boolean;
39
+ serviceConfiguredEndpoint?: never;
40
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
41
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
42
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WorkspacesInstancesHttpAuthSchemeProvider;
43
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
44
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
45
+ signingEscapePath?: boolean;
46
+ systemClockOffset?: number;
47
+ signingRegion?: string;
48
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
49
+ };
@@ -0,0 +1,21 @@
1
+ import { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: WorkspacesInstancesClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: Uint8Array | string) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WorkspacesInstancesHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: Uint8Array | string) => string;
21
+ };
@@ -0,0 +1,17 @@
1
+ import { WorkspacesInstancesExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: WorkspacesInstancesExtensionConfiguration): 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,231 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ AssociateVolumeCommandInput,
4
+ AssociateVolumeCommandOutput,
5
+ } from "./commands/AssociateVolumeCommand";
6
+ import {
7
+ CreateVolumeCommandInput,
8
+ CreateVolumeCommandOutput,
9
+ } from "./commands/CreateVolumeCommand";
10
+ import {
11
+ CreateWorkspaceInstanceCommandInput,
12
+ CreateWorkspaceInstanceCommandOutput,
13
+ } from "./commands/CreateWorkspaceInstanceCommand";
14
+ import {
15
+ DeleteVolumeCommandInput,
16
+ DeleteVolumeCommandOutput,
17
+ } from "./commands/DeleteVolumeCommand";
18
+ import {
19
+ DeleteWorkspaceInstanceCommandInput,
20
+ DeleteWorkspaceInstanceCommandOutput,
21
+ } from "./commands/DeleteWorkspaceInstanceCommand";
22
+ import {
23
+ DisassociateVolumeCommandInput,
24
+ DisassociateVolumeCommandOutput,
25
+ } from "./commands/DisassociateVolumeCommand";
26
+ import {
27
+ GetWorkspaceInstanceCommandInput,
28
+ GetWorkspaceInstanceCommandOutput,
29
+ } from "./commands/GetWorkspaceInstanceCommand";
30
+ import {
31
+ ListInstanceTypesCommandInput,
32
+ ListInstanceTypesCommandOutput,
33
+ } from "./commands/ListInstanceTypesCommand";
34
+ import {
35
+ ListRegionsCommandInput,
36
+ ListRegionsCommandOutput,
37
+ } from "./commands/ListRegionsCommand";
38
+ import {
39
+ ListTagsForResourceCommandInput,
40
+ ListTagsForResourceCommandOutput,
41
+ } from "./commands/ListTagsForResourceCommand";
42
+ import {
43
+ ListWorkspaceInstancesCommandInput,
44
+ ListWorkspaceInstancesCommandOutput,
45
+ } from "./commands/ListWorkspaceInstancesCommand";
46
+ import {
47
+ TagResourceCommandInput,
48
+ TagResourceCommandOutput,
49
+ } from "./commands/TagResourceCommand";
50
+ import {
51
+ UntagResourceCommandInput,
52
+ UntagResourceCommandOutput,
53
+ } from "./commands/UntagResourceCommand";
54
+ import { WorkspacesInstancesClient } from "./WorkspacesInstancesClient";
55
+ export interface WorkspacesInstances {
56
+ associateVolume(
57
+ args: AssociateVolumeCommandInput,
58
+ options?: __HttpHandlerOptions
59
+ ): Promise<AssociateVolumeCommandOutput>;
60
+ associateVolume(
61
+ args: AssociateVolumeCommandInput,
62
+ cb: (err: any, data?: AssociateVolumeCommandOutput) => void
63
+ ): void;
64
+ associateVolume(
65
+ args: AssociateVolumeCommandInput,
66
+ options: __HttpHandlerOptions,
67
+ cb: (err: any, data?: AssociateVolumeCommandOutput) => void
68
+ ): void;
69
+ createVolume(
70
+ args: CreateVolumeCommandInput,
71
+ options?: __HttpHandlerOptions
72
+ ): Promise<CreateVolumeCommandOutput>;
73
+ createVolume(
74
+ args: CreateVolumeCommandInput,
75
+ cb: (err: any, data?: CreateVolumeCommandOutput) => void
76
+ ): void;
77
+ createVolume(
78
+ args: CreateVolumeCommandInput,
79
+ options: __HttpHandlerOptions,
80
+ cb: (err: any, data?: CreateVolumeCommandOutput) => void
81
+ ): void;
82
+ createWorkspaceInstance(
83
+ args: CreateWorkspaceInstanceCommandInput,
84
+ options?: __HttpHandlerOptions
85
+ ): Promise<CreateWorkspaceInstanceCommandOutput>;
86
+ createWorkspaceInstance(
87
+ args: CreateWorkspaceInstanceCommandInput,
88
+ cb: (err: any, data?: CreateWorkspaceInstanceCommandOutput) => void
89
+ ): void;
90
+ createWorkspaceInstance(
91
+ args: CreateWorkspaceInstanceCommandInput,
92
+ options: __HttpHandlerOptions,
93
+ cb: (err: any, data?: CreateWorkspaceInstanceCommandOutput) => void
94
+ ): void;
95
+ deleteVolume(
96
+ args: DeleteVolumeCommandInput,
97
+ options?: __HttpHandlerOptions
98
+ ): Promise<DeleteVolumeCommandOutput>;
99
+ deleteVolume(
100
+ args: DeleteVolumeCommandInput,
101
+ cb: (err: any, data?: DeleteVolumeCommandOutput) => void
102
+ ): void;
103
+ deleteVolume(
104
+ args: DeleteVolumeCommandInput,
105
+ options: __HttpHandlerOptions,
106
+ cb: (err: any, data?: DeleteVolumeCommandOutput) => void
107
+ ): void;
108
+ deleteWorkspaceInstance(
109
+ args: DeleteWorkspaceInstanceCommandInput,
110
+ options?: __HttpHandlerOptions
111
+ ): Promise<DeleteWorkspaceInstanceCommandOutput>;
112
+ deleteWorkspaceInstance(
113
+ args: DeleteWorkspaceInstanceCommandInput,
114
+ cb: (err: any, data?: DeleteWorkspaceInstanceCommandOutput) => void
115
+ ): void;
116
+ deleteWorkspaceInstance(
117
+ args: DeleteWorkspaceInstanceCommandInput,
118
+ options: __HttpHandlerOptions,
119
+ cb: (err: any, data?: DeleteWorkspaceInstanceCommandOutput) => void
120
+ ): void;
121
+ disassociateVolume(
122
+ args: DisassociateVolumeCommandInput,
123
+ options?: __HttpHandlerOptions
124
+ ): Promise<DisassociateVolumeCommandOutput>;
125
+ disassociateVolume(
126
+ args: DisassociateVolumeCommandInput,
127
+ cb: (err: any, data?: DisassociateVolumeCommandOutput) => void
128
+ ): void;
129
+ disassociateVolume(
130
+ args: DisassociateVolumeCommandInput,
131
+ options: __HttpHandlerOptions,
132
+ cb: (err: any, data?: DisassociateVolumeCommandOutput) => void
133
+ ): void;
134
+ getWorkspaceInstance(
135
+ args: GetWorkspaceInstanceCommandInput,
136
+ options?: __HttpHandlerOptions
137
+ ): Promise<GetWorkspaceInstanceCommandOutput>;
138
+ getWorkspaceInstance(
139
+ args: GetWorkspaceInstanceCommandInput,
140
+ cb: (err: any, data?: GetWorkspaceInstanceCommandOutput) => void
141
+ ): void;
142
+ getWorkspaceInstance(
143
+ args: GetWorkspaceInstanceCommandInput,
144
+ options: __HttpHandlerOptions,
145
+ cb: (err: any, data?: GetWorkspaceInstanceCommandOutput) => void
146
+ ): void;
147
+ listInstanceTypes(): Promise<ListInstanceTypesCommandOutput>;
148
+ listInstanceTypes(
149
+ args: ListInstanceTypesCommandInput,
150
+ options?: __HttpHandlerOptions
151
+ ): Promise<ListInstanceTypesCommandOutput>;
152
+ listInstanceTypes(
153
+ args: ListInstanceTypesCommandInput,
154
+ cb: (err: any, data?: ListInstanceTypesCommandOutput) => void
155
+ ): void;
156
+ listInstanceTypes(
157
+ args: ListInstanceTypesCommandInput,
158
+ options: __HttpHandlerOptions,
159
+ cb: (err: any, data?: ListInstanceTypesCommandOutput) => void
160
+ ): void;
161
+ listRegions(): Promise<ListRegionsCommandOutput>;
162
+ listRegions(
163
+ args: ListRegionsCommandInput,
164
+ options?: __HttpHandlerOptions
165
+ ): Promise<ListRegionsCommandOutput>;
166
+ listRegions(
167
+ args: ListRegionsCommandInput,
168
+ cb: (err: any, data?: ListRegionsCommandOutput) => void
169
+ ): void;
170
+ listRegions(
171
+ args: ListRegionsCommandInput,
172
+ options: __HttpHandlerOptions,
173
+ cb: (err: any, data?: ListRegionsCommandOutput) => void
174
+ ): void;
175
+ listTagsForResource(
176
+ args: ListTagsForResourceCommandInput,
177
+ options?: __HttpHandlerOptions
178
+ ): Promise<ListTagsForResourceCommandOutput>;
179
+ listTagsForResource(
180
+ args: ListTagsForResourceCommandInput,
181
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
182
+ ): void;
183
+ listTagsForResource(
184
+ args: ListTagsForResourceCommandInput,
185
+ options: __HttpHandlerOptions,
186
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
187
+ ): void;
188
+ listWorkspaceInstances(): Promise<ListWorkspaceInstancesCommandOutput>;
189
+ listWorkspaceInstances(
190
+ args: ListWorkspaceInstancesCommandInput,
191
+ options?: __HttpHandlerOptions
192
+ ): Promise<ListWorkspaceInstancesCommandOutput>;
193
+ listWorkspaceInstances(
194
+ args: ListWorkspaceInstancesCommandInput,
195
+ cb: (err: any, data?: ListWorkspaceInstancesCommandOutput) => void
196
+ ): void;
197
+ listWorkspaceInstances(
198
+ args: ListWorkspaceInstancesCommandInput,
199
+ options: __HttpHandlerOptions,
200
+ cb: (err: any, data?: ListWorkspaceInstancesCommandOutput) => void
201
+ ): void;
202
+ tagResource(
203
+ args: TagResourceCommandInput,
204
+ options?: __HttpHandlerOptions
205
+ ): Promise<TagResourceCommandOutput>;
206
+ tagResource(
207
+ args: TagResourceCommandInput,
208
+ cb: (err: any, data?: TagResourceCommandOutput) => void
209
+ ): void;
210
+ tagResource(
211
+ args: TagResourceCommandInput,
212
+ options: __HttpHandlerOptions,
213
+ cb: (err: any, data?: TagResourceCommandOutput) => void
214
+ ): void;
215
+ untagResource(
216
+ args: UntagResourceCommandInput,
217
+ options?: __HttpHandlerOptions
218
+ ): Promise<UntagResourceCommandOutput>;
219
+ untagResource(
220
+ args: UntagResourceCommandInput,
221
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
222
+ ): void;
223
+ untagResource(
224
+ args: UntagResourceCommandInput,
225
+ options: __HttpHandlerOptions,
226
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
227
+ ): void;
228
+ }
229
+ export declare class WorkspacesInstances
230
+ extends WorkspacesInstancesClient
231
+ implements WorkspacesInstances {}