@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.
- package/LICENSE +201 -0
- package/README.md +344 -0
- package/dist-cjs/WorkSpacesThin.js +43 -0
- package/dist-cjs/WorkSpacesThinClientClient.js +43 -0
- package/dist-cjs/commands/CreateEnvironmentCommand.js +52 -0
- package/dist-cjs/commands/DeleteDeviceCommand.js +51 -0
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +51 -0
- package/dist-cjs/commands/DeregisterDeviceCommand.js +51 -0
- package/dist-cjs/commands/GetDeviceCommand.js +52 -0
- package/dist-cjs/commands/GetEnvironmentCommand.js +52 -0
- package/dist-cjs/commands/GetSoftwareSetCommand.js +51 -0
- package/dist-cjs/commands/ListDevicesCommand.js +52 -0
- package/dist-cjs/commands/ListEnvironmentsCommand.js +52 -0
- package/dist-cjs/commands/ListSoftwareSetsCommand.js +51 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +52 -0
- package/dist-cjs/commands/TagResourceCommand.js +52 -0
- package/dist-cjs/commands/UntagResourceCommand.js +52 -0
- package/dist-cjs/commands/UpdateDeviceCommand.js +52 -0
- package/dist-cjs/commands/UpdateEnvironmentCommand.js +52 -0
- package/dist-cjs/commands/UpdateSoftwareSetCommand.js +51 -0
- package/dist-cjs/commands/index.js +19 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/WorkSpacesThinClientServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +287 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListDevicesPaginator.js +29 -0
- package/dist-cjs/pagination/ListEnvironmentsPaginator.js +29 -0
- package/dist-cjs/pagination/ListSoftwareSetsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1486 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/WorkSpacesThin.js +39 -0
- package/dist-es/WorkSpacesThinClientClient.js +39 -0
- package/dist-es/commands/CreateEnvironmentCommand.js +48 -0
- package/dist-es/commands/DeleteDeviceCommand.js +47 -0
- package/dist-es/commands/DeleteEnvironmentCommand.js +47 -0
- package/dist-es/commands/DeregisterDeviceCommand.js +47 -0
- package/dist-es/commands/GetDeviceCommand.js +48 -0
- package/dist-es/commands/GetEnvironmentCommand.js +48 -0
- package/dist-es/commands/GetSoftwareSetCommand.js +47 -0
- package/dist-es/commands/ListDevicesCommand.js +48 -0
- package/dist-es/commands/ListEnvironmentsCommand.js +48 -0
- package/dist-es/commands/ListSoftwareSetsCommand.js +47 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +48 -0
- package/dist-es/commands/TagResourceCommand.js +48 -0
- package/dist-es/commands/UntagResourceCommand.js +48 -0
- package/dist-es/commands/UpdateDeviceCommand.js +48 -0
- package/dist-es/commands/UpdateEnvironmentCommand.js +48 -0
- package/dist-es/commands/UpdateSoftwareSetCommand.js +47 -0
- package/dist-es/commands/index.js +16 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/WorkSpacesThinClientServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +258 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListDevicesPaginator.js +25 -0
- package/dist-es/pagination/ListEnvironmentsPaginator.js +25 -0
- package/dist-es/pagination/ListSoftwareSetsPaginator.js +25 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +1451 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/WorkSpacesThin.d.ts +133 -0
- package/dist-types/WorkSpacesThinClientClient.d.ts +196 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +146 -0
- package/dist-types/commands/DeleteDeviceCommand.d.ts +92 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +92 -0
- package/dist-types/commands/DeregisterDeviceCommand.d.ts +93 -0
- package/dist-types/commands/GetDeviceCommand.d.ts +113 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +121 -0
- package/dist-types/commands/GetSoftwareSetCommand.d.ts +101 -0
- package/dist-types/commands/ListDevicesCommand.d.ts +109 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +118 -0
- package/dist-types/commands/ListSoftwareSetsCommand.d.ts +96 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +84 -0
- package/dist-types/commands/TagResourceCommand.d.ts +83 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
- package/dist-types/commands/UpdateDeviceCommand.d.ts +112 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +134 -0
- package/dist-types/commands/UpdateSoftwareSetCommand.d.ts +87 -0
- package/dist-types/commands/index.d.ts +16 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +26 -0
- package/dist-types/models/WorkSpacesThinClientServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1506 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListDevicesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSoftwareSetsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/WorkSpacesThin.d.ts +279 -0
- package/dist-types/ts3.4/WorkSpacesThinClientClient.d.ts +217 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteDeviceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeregisterDeviceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSoftwareSetCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSoftwareSetsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateDeviceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateSoftwareSetCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +16 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/WorkSpacesThinClientServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +440 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDevicesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSoftwareSetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +104 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
UntagResourceRequest,
|
|
11
|
+
UntagResourceResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesThinClientClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
20
|
+
export interface UntagResourceCommandOutput
|
|
21
|
+
extends UntagResourceResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UntagResourceCommand extends $Command<
|
|
24
|
+
UntagResourceCommandInput,
|
|
25
|
+
UntagResourceCommandOutput,
|
|
26
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UntagResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UntagResourceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { UpdateDeviceRequest, UpdateDeviceResponse } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
14
|
+
} from "../WorkSpacesThinClientClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface UpdateDeviceCommandInput extends UpdateDeviceRequest {}
|
|
17
|
+
export interface UpdateDeviceCommandOutput
|
|
18
|
+
extends UpdateDeviceResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class UpdateDeviceCommand extends $Command<
|
|
21
|
+
UpdateDeviceCommandInput,
|
|
22
|
+
UpdateDeviceCommandOutput,
|
|
23
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: UpdateDeviceCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: UpdateDeviceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateDeviceCommandInput, UpdateDeviceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
UpdateEnvironmentRequest,
|
|
11
|
+
UpdateEnvironmentResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesThinClientClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateEnvironmentCommandInput
|
|
20
|
+
extends UpdateEnvironmentRequest {}
|
|
21
|
+
export interface UpdateEnvironmentCommandOutput
|
|
22
|
+
extends UpdateEnvironmentResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateEnvironmentCommand extends $Command<
|
|
25
|
+
UpdateEnvironmentCommandInput,
|
|
26
|
+
UpdateEnvironmentCommandOutput,
|
|
27
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateEnvironmentCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateEnvironmentCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
UpdateSoftwareSetRequest,
|
|
11
|
+
UpdateSoftwareSetResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesThinClientClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesThinClientClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateSoftwareSetCommandInput
|
|
20
|
+
extends UpdateSoftwareSetRequest {}
|
|
21
|
+
export interface UpdateSoftwareSetCommandOutput
|
|
22
|
+
extends UpdateSoftwareSetResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateSoftwareSetCommand extends $Command<
|
|
25
|
+
UpdateSoftwareSetCommandInput,
|
|
26
|
+
UpdateSoftwareSetCommandOutput,
|
|
27
|
+
WorkSpacesThinClientClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateSoftwareSetCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateSoftwareSetCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesThinClientClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<UpdateSoftwareSetCommandInput, UpdateSoftwareSetCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export * from "./CreateEnvironmentCommand";
|
|
2
|
+
export * from "./DeleteDeviceCommand";
|
|
3
|
+
export * from "./DeleteEnvironmentCommand";
|
|
4
|
+
export * from "./DeregisterDeviceCommand";
|
|
5
|
+
export * from "./GetDeviceCommand";
|
|
6
|
+
export * from "./GetEnvironmentCommand";
|
|
7
|
+
export * from "./GetSoftwareSetCommand";
|
|
8
|
+
export * from "./ListDevicesCommand";
|
|
9
|
+
export * from "./ListEnvironmentsCommand";
|
|
10
|
+
export * from "./ListSoftwareSetsCommand";
|
|
11
|
+
export * from "./ListTagsForResourceCommand";
|
|
12
|
+
export * from "./TagResourceCommand";
|
|
13
|
+
export * from "./UntagResourceCommand";
|
|
14
|
+
export * from "./UpdateDeviceCommand";
|
|
15
|
+
export * from "./UpdateEnvironmentCommand";
|
|
16
|
+
export * from "./UpdateSoftwareSetCommand";
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
23
|
+
options: T & ClientInputEndpointParameters
|
|
24
|
+
) => T &
|
|
25
|
+
ClientInputEndpointParameters & {
|
|
26
|
+
defaultSigningName: string;
|
|
27
|
+
};
|
|
28
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
+
Region?: string;
|
|
30
|
+
UseDualStack?: boolean;
|
|
31
|
+
UseFIPS?: boolean;
|
|
32
|
+
Endpoint?: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
export interface WorkSpacesThinExtensionConfiguration
|
|
5
|
+
extends HttpHandlerExtensionConfiguration,
|
|
6
|
+
DefaultExtensionConfiguration,
|
|
7
|
+
AwsRegionExtensionConfiguration {}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from "./WorkSpacesThinClientClient";
|
|
2
|
+
export * from "./WorkSpacesThin";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { WorkSpacesThinExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./pagination";
|
|
8
|
+
export * from "./models";
|
|
9
|
+
import "@aws-sdk/util-endpoints";
|
|
10
|
+
export { WorkSpacesThinClientServiceException } from "./models/WorkSpacesThinClientServiceException";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
6
|
+
export declare class WorkSpacesThinClientServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,440 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { WorkSpacesThinClientServiceException as __BaseException } from "./WorkSpacesThinClientServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare const ApplyTimeOf: {
|
|
11
|
+
readonly DEVICE: "DEVICE";
|
|
12
|
+
readonly UTC: "UTC";
|
|
13
|
+
};
|
|
14
|
+
export type ApplyTimeOf = (typeof ApplyTimeOf)[keyof typeof ApplyTimeOf];
|
|
15
|
+
export declare class ConflictException extends __BaseException {
|
|
16
|
+
readonly name: "ConflictException";
|
|
17
|
+
readonly $fault: "client";
|
|
18
|
+
resourceId?: string;
|
|
19
|
+
resourceType?: string;
|
|
20
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
21
|
+
}
|
|
22
|
+
export declare const DayOfWeek: {
|
|
23
|
+
readonly FRIDAY: "FRIDAY";
|
|
24
|
+
readonly MONDAY: "MONDAY";
|
|
25
|
+
readonly SATURDAY: "SATURDAY";
|
|
26
|
+
readonly SUNDAY: "SUNDAY";
|
|
27
|
+
readonly THURSDAY: "THURSDAY";
|
|
28
|
+
readonly TUESDAY: "TUESDAY";
|
|
29
|
+
readonly WEDNESDAY: "WEDNESDAY";
|
|
30
|
+
};
|
|
31
|
+
export type DayOfWeek = (typeof DayOfWeek)[keyof typeof DayOfWeek];
|
|
32
|
+
export declare const MaintenanceWindowType: {
|
|
33
|
+
readonly CUSTOM: "CUSTOM";
|
|
34
|
+
readonly SYSTEM: "SYSTEM";
|
|
35
|
+
};
|
|
36
|
+
export type MaintenanceWindowType =
|
|
37
|
+
(typeof MaintenanceWindowType)[keyof typeof MaintenanceWindowType];
|
|
38
|
+
export interface MaintenanceWindow {
|
|
39
|
+
type?: MaintenanceWindowType;
|
|
40
|
+
startTimeHour?: number;
|
|
41
|
+
startTimeMinute?: number;
|
|
42
|
+
endTimeHour?: number;
|
|
43
|
+
endTimeMinute?: number;
|
|
44
|
+
daysOfTheWeek?: DayOfWeek[];
|
|
45
|
+
applyTimeOf?: ApplyTimeOf;
|
|
46
|
+
}
|
|
47
|
+
export declare const SoftwareSetUpdateMode: {
|
|
48
|
+
readonly USE_DESIRED: "USE_DESIRED";
|
|
49
|
+
readonly USE_LATEST: "USE_LATEST";
|
|
50
|
+
};
|
|
51
|
+
export type SoftwareSetUpdateMode =
|
|
52
|
+
(typeof SoftwareSetUpdateMode)[keyof typeof SoftwareSetUpdateMode];
|
|
53
|
+
export declare const SoftwareSetUpdateSchedule: {
|
|
54
|
+
readonly APPLY_IMMEDIATELY: "APPLY_IMMEDIATELY";
|
|
55
|
+
readonly USE_MAINTENANCE_WINDOW: "USE_MAINTENANCE_WINDOW";
|
|
56
|
+
};
|
|
57
|
+
export type SoftwareSetUpdateSchedule =
|
|
58
|
+
(typeof SoftwareSetUpdateSchedule)[keyof typeof SoftwareSetUpdateSchedule];
|
|
59
|
+
export interface CreateEnvironmentRequest {
|
|
60
|
+
name?: string;
|
|
61
|
+
desktopArn: string | undefined;
|
|
62
|
+
desktopEndpoint?: string;
|
|
63
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
64
|
+
maintenanceWindow?: MaintenanceWindow;
|
|
65
|
+
softwareSetUpdateMode?: SoftwareSetUpdateMode;
|
|
66
|
+
desiredSoftwareSetId?: string;
|
|
67
|
+
kmsKeyArn?: string;
|
|
68
|
+
clientToken?: string;
|
|
69
|
+
tags?: Record<string, string>;
|
|
70
|
+
}
|
|
71
|
+
export declare const DesktopType: {
|
|
72
|
+
readonly APPSTREAM: "appstream";
|
|
73
|
+
readonly WORKSPACES: "workspaces";
|
|
74
|
+
readonly WORKSPACES_WEB: "workspaces-web";
|
|
75
|
+
};
|
|
76
|
+
export type DesktopType = (typeof DesktopType)[keyof typeof DesktopType];
|
|
77
|
+
export interface EmbeddedTag {
|
|
78
|
+
resourceArn?: string;
|
|
79
|
+
internalId?: string;
|
|
80
|
+
}
|
|
81
|
+
export interface EnvironmentSummary {
|
|
82
|
+
id?: string;
|
|
83
|
+
name?: string;
|
|
84
|
+
desktopArn?: string;
|
|
85
|
+
desktopEndpoint?: string;
|
|
86
|
+
desktopType?: DesktopType;
|
|
87
|
+
activationCode?: string;
|
|
88
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
89
|
+
maintenanceWindow?: MaintenanceWindow;
|
|
90
|
+
softwareSetUpdateMode?: SoftwareSetUpdateMode;
|
|
91
|
+
desiredSoftwareSetId?: string;
|
|
92
|
+
pendingSoftwareSetId?: string;
|
|
93
|
+
createdAt?: Date;
|
|
94
|
+
updatedAt?: Date;
|
|
95
|
+
arn?: string;
|
|
96
|
+
tags?: EmbeddedTag;
|
|
97
|
+
}
|
|
98
|
+
export interface CreateEnvironmentResponse {
|
|
99
|
+
environment?: EnvironmentSummary;
|
|
100
|
+
}
|
|
101
|
+
export declare class InternalServerException extends __BaseException {
|
|
102
|
+
readonly name: "InternalServerException";
|
|
103
|
+
readonly $fault: "server";
|
|
104
|
+
retryAfterSeconds?: number;
|
|
105
|
+
constructor(
|
|
106
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
107
|
+
);
|
|
108
|
+
}
|
|
109
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
110
|
+
readonly name: "ResourceNotFoundException";
|
|
111
|
+
readonly $fault: "client";
|
|
112
|
+
resourceId?: string;
|
|
113
|
+
resourceType?: string;
|
|
114
|
+
constructor(
|
|
115
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
116
|
+
);
|
|
117
|
+
}
|
|
118
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
119
|
+
readonly name: "ServiceQuotaExceededException";
|
|
120
|
+
readonly $fault: "client";
|
|
121
|
+
resourceId?: string;
|
|
122
|
+
resourceType?: string;
|
|
123
|
+
serviceCode?: string;
|
|
124
|
+
quotaCode?: string;
|
|
125
|
+
constructor(
|
|
126
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
127
|
+
);
|
|
128
|
+
}
|
|
129
|
+
export declare class ThrottlingException extends __BaseException {
|
|
130
|
+
readonly name: "ThrottlingException";
|
|
131
|
+
readonly $fault: "client";
|
|
132
|
+
serviceCode?: string;
|
|
133
|
+
quotaCode?: string;
|
|
134
|
+
retryAfterSeconds?: number;
|
|
135
|
+
constructor(
|
|
136
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
137
|
+
);
|
|
138
|
+
}
|
|
139
|
+
export interface ValidationExceptionField {
|
|
140
|
+
name: string | undefined;
|
|
141
|
+
message: string | undefined;
|
|
142
|
+
}
|
|
143
|
+
export declare const ValidationExceptionReason: {
|
|
144
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
145
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
146
|
+
readonly OTHER: "other";
|
|
147
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
148
|
+
};
|
|
149
|
+
export type ValidationExceptionReason =
|
|
150
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
151
|
+
export declare class ValidationException extends __BaseException {
|
|
152
|
+
readonly name: "ValidationException";
|
|
153
|
+
readonly $fault: "client";
|
|
154
|
+
reason?: ValidationExceptionReason;
|
|
155
|
+
fieldList?: ValidationExceptionField[];
|
|
156
|
+
constructor(
|
|
157
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
158
|
+
);
|
|
159
|
+
}
|
|
160
|
+
export interface DeleteDeviceRequest {
|
|
161
|
+
id: string | undefined;
|
|
162
|
+
clientToken?: string;
|
|
163
|
+
}
|
|
164
|
+
export interface DeleteDeviceResponse {}
|
|
165
|
+
export interface DeleteEnvironmentRequest {
|
|
166
|
+
id: string | undefined;
|
|
167
|
+
clientToken?: string;
|
|
168
|
+
}
|
|
169
|
+
export interface DeleteEnvironmentResponse {}
|
|
170
|
+
export declare const TargetDeviceStatus: {
|
|
171
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
172
|
+
readonly DEREGISTERED: "DEREGISTERED";
|
|
173
|
+
};
|
|
174
|
+
export type TargetDeviceStatus =
|
|
175
|
+
(typeof TargetDeviceStatus)[keyof typeof TargetDeviceStatus];
|
|
176
|
+
export interface DeregisterDeviceRequest {
|
|
177
|
+
id: string | undefined;
|
|
178
|
+
targetDeviceStatus?: TargetDeviceStatus;
|
|
179
|
+
clientToken?: string;
|
|
180
|
+
}
|
|
181
|
+
export interface DeregisterDeviceResponse {}
|
|
182
|
+
export declare const DeviceSoftwareSetComplianceStatus: {
|
|
183
|
+
readonly COMPLIANT: "COMPLIANT";
|
|
184
|
+
readonly NONE: "NONE";
|
|
185
|
+
readonly NOT_COMPLIANT: "NOT_COMPLIANT";
|
|
186
|
+
};
|
|
187
|
+
export type DeviceSoftwareSetComplianceStatus =
|
|
188
|
+
(typeof DeviceSoftwareSetComplianceStatus)[keyof typeof DeviceSoftwareSetComplianceStatus];
|
|
189
|
+
export declare const SoftwareSetUpdateStatus: {
|
|
190
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
191
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
192
|
+
readonly UP_TO_DATE: "UP_TO_DATE";
|
|
193
|
+
};
|
|
194
|
+
export type SoftwareSetUpdateStatus =
|
|
195
|
+
(typeof SoftwareSetUpdateStatus)[keyof typeof SoftwareSetUpdateStatus];
|
|
196
|
+
export declare const DeviceStatus: {
|
|
197
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
198
|
+
readonly DEREGISTERED: "DEREGISTERED";
|
|
199
|
+
readonly DEREGISTERING: "DEREGISTERING";
|
|
200
|
+
readonly REGISTERED: "REGISTERED";
|
|
201
|
+
};
|
|
202
|
+
export type DeviceStatus = (typeof DeviceStatus)[keyof typeof DeviceStatus];
|
|
203
|
+
export interface Device {
|
|
204
|
+
id?: string;
|
|
205
|
+
serialNumber?: string;
|
|
206
|
+
name?: string;
|
|
207
|
+
model?: string;
|
|
208
|
+
environmentId?: string;
|
|
209
|
+
status?: DeviceStatus;
|
|
210
|
+
currentSoftwareSetId?: string;
|
|
211
|
+
currentSoftwareSetVersion?: string;
|
|
212
|
+
desiredSoftwareSetId?: string;
|
|
213
|
+
pendingSoftwareSetId?: string;
|
|
214
|
+
pendingSoftwareSetVersion?: string;
|
|
215
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
216
|
+
softwareSetComplianceStatus?: DeviceSoftwareSetComplianceStatus;
|
|
217
|
+
softwareSetUpdateStatus?: SoftwareSetUpdateStatus;
|
|
218
|
+
lastConnectedAt?: Date;
|
|
219
|
+
lastPostureAt?: Date;
|
|
220
|
+
createdAt?: Date;
|
|
221
|
+
updatedAt?: Date;
|
|
222
|
+
arn?: string;
|
|
223
|
+
kmsKeyArn?: string;
|
|
224
|
+
tags?: EmbeddedTag;
|
|
225
|
+
}
|
|
226
|
+
export interface DeviceSummary {
|
|
227
|
+
id?: string;
|
|
228
|
+
serialNumber?: string;
|
|
229
|
+
name?: string;
|
|
230
|
+
model?: string;
|
|
231
|
+
environmentId?: string;
|
|
232
|
+
status?: DeviceStatus;
|
|
233
|
+
currentSoftwareSetId?: string;
|
|
234
|
+
desiredSoftwareSetId?: string;
|
|
235
|
+
pendingSoftwareSetId?: string;
|
|
236
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
237
|
+
lastConnectedAt?: Date;
|
|
238
|
+
lastPostureAt?: Date;
|
|
239
|
+
createdAt?: Date;
|
|
240
|
+
updatedAt?: Date;
|
|
241
|
+
arn?: string;
|
|
242
|
+
tags?: EmbeddedTag;
|
|
243
|
+
}
|
|
244
|
+
export declare const EnvironmentSoftwareSetComplianceStatus: {
|
|
245
|
+
readonly COMPLIANT: "COMPLIANT";
|
|
246
|
+
readonly NOT_COMPLIANT: "NOT_COMPLIANT";
|
|
247
|
+
readonly NO_REGISTERED_DEVICES: "NO_REGISTERED_DEVICES";
|
|
248
|
+
};
|
|
249
|
+
export type EnvironmentSoftwareSetComplianceStatus =
|
|
250
|
+
(typeof EnvironmentSoftwareSetComplianceStatus)[keyof typeof EnvironmentSoftwareSetComplianceStatus];
|
|
251
|
+
export interface Environment {
|
|
252
|
+
id?: string;
|
|
253
|
+
name?: string;
|
|
254
|
+
desktopArn?: string;
|
|
255
|
+
desktopEndpoint?: string;
|
|
256
|
+
desktopType?: DesktopType;
|
|
257
|
+
activationCode?: string;
|
|
258
|
+
registeredDevicesCount?: number;
|
|
259
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
260
|
+
maintenanceWindow?: MaintenanceWindow;
|
|
261
|
+
softwareSetUpdateMode?: SoftwareSetUpdateMode;
|
|
262
|
+
desiredSoftwareSetId?: string;
|
|
263
|
+
pendingSoftwareSetId?: string;
|
|
264
|
+
pendingSoftwareSetVersion?: string;
|
|
265
|
+
softwareSetComplianceStatus?: EnvironmentSoftwareSetComplianceStatus;
|
|
266
|
+
createdAt?: Date;
|
|
267
|
+
updatedAt?: Date;
|
|
268
|
+
arn?: string;
|
|
269
|
+
kmsKeyArn?: string;
|
|
270
|
+
tags?: EmbeddedTag;
|
|
271
|
+
}
|
|
272
|
+
export interface GetDeviceRequest {
|
|
273
|
+
id: string | undefined;
|
|
274
|
+
}
|
|
275
|
+
export interface GetDeviceResponse {
|
|
276
|
+
device?: Device;
|
|
277
|
+
}
|
|
278
|
+
export interface GetEnvironmentRequest {
|
|
279
|
+
id: string | undefined;
|
|
280
|
+
}
|
|
281
|
+
export interface GetEnvironmentResponse {
|
|
282
|
+
environment?: Environment;
|
|
283
|
+
}
|
|
284
|
+
export interface GetSoftwareSetRequest {
|
|
285
|
+
id: string | undefined;
|
|
286
|
+
}
|
|
287
|
+
export interface Software {
|
|
288
|
+
name?: string;
|
|
289
|
+
version?: string;
|
|
290
|
+
}
|
|
291
|
+
export declare const SoftwareSetValidationStatus: {
|
|
292
|
+
readonly NOT_VALIDATED: "NOT_VALIDATED";
|
|
293
|
+
readonly VALIDATED: "VALIDATED";
|
|
294
|
+
};
|
|
295
|
+
export type SoftwareSetValidationStatus =
|
|
296
|
+
(typeof SoftwareSetValidationStatus)[keyof typeof SoftwareSetValidationStatus];
|
|
297
|
+
export interface SoftwareSet {
|
|
298
|
+
id?: string;
|
|
299
|
+
version?: string;
|
|
300
|
+
releasedAt?: Date;
|
|
301
|
+
supportedUntil?: Date;
|
|
302
|
+
validationStatus?: SoftwareSetValidationStatus;
|
|
303
|
+
software?: Software[];
|
|
304
|
+
arn?: string;
|
|
305
|
+
}
|
|
306
|
+
export interface GetSoftwareSetResponse {
|
|
307
|
+
softwareSet?: SoftwareSet;
|
|
308
|
+
}
|
|
309
|
+
export declare class InternalServiceException extends __BaseException {
|
|
310
|
+
readonly name: "InternalServiceException";
|
|
311
|
+
readonly $fault: "server";
|
|
312
|
+
retryAfterSeconds?: number;
|
|
313
|
+
constructor(
|
|
314
|
+
opts: __ExceptionOptionType<InternalServiceException, __BaseException>
|
|
315
|
+
);
|
|
316
|
+
}
|
|
317
|
+
export interface ListDevicesRequest {
|
|
318
|
+
nextToken?: string;
|
|
319
|
+
maxResults?: number;
|
|
320
|
+
}
|
|
321
|
+
export interface ListDevicesResponse {
|
|
322
|
+
devices?: DeviceSummary[];
|
|
323
|
+
nextToken?: string;
|
|
324
|
+
}
|
|
325
|
+
export interface ListEnvironmentsRequest {
|
|
326
|
+
nextToken?: string;
|
|
327
|
+
maxResults?: number;
|
|
328
|
+
}
|
|
329
|
+
export interface ListEnvironmentsResponse {
|
|
330
|
+
environments?: EnvironmentSummary[];
|
|
331
|
+
nextToken?: string;
|
|
332
|
+
}
|
|
333
|
+
export interface ListSoftwareSetsRequest {
|
|
334
|
+
nextToken?: string;
|
|
335
|
+
maxResults?: number;
|
|
336
|
+
}
|
|
337
|
+
export interface SoftwareSetSummary {
|
|
338
|
+
id?: string;
|
|
339
|
+
version?: string;
|
|
340
|
+
releasedAt?: Date;
|
|
341
|
+
supportedUntil?: Date;
|
|
342
|
+
validationStatus?: SoftwareSetValidationStatus;
|
|
343
|
+
arn?: string;
|
|
344
|
+
}
|
|
345
|
+
export interface ListSoftwareSetsResponse {
|
|
346
|
+
softwareSets?: SoftwareSetSummary[];
|
|
347
|
+
nextToken?: string;
|
|
348
|
+
}
|
|
349
|
+
export interface ListTagsForResourceRequest {
|
|
350
|
+
resourceArn: string | undefined;
|
|
351
|
+
}
|
|
352
|
+
export interface ListTagsForResourceResponse {
|
|
353
|
+
tags?: Record<string, string>;
|
|
354
|
+
}
|
|
355
|
+
export interface TagResourceRequest {
|
|
356
|
+
resourceArn: string | undefined;
|
|
357
|
+
tags: Record<string, string> | undefined;
|
|
358
|
+
}
|
|
359
|
+
export interface TagResourceResponse {}
|
|
360
|
+
export interface UntagResourceRequest {
|
|
361
|
+
resourceArn: string | undefined;
|
|
362
|
+
tagKeys: string[] | undefined;
|
|
363
|
+
}
|
|
364
|
+
export interface UntagResourceResponse {}
|
|
365
|
+
export interface UpdateDeviceRequest {
|
|
366
|
+
id: string | undefined;
|
|
367
|
+
name?: string;
|
|
368
|
+
desiredSoftwareSetId?: string;
|
|
369
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
370
|
+
kmsKeyArn?: string;
|
|
371
|
+
}
|
|
372
|
+
export interface UpdateDeviceResponse {
|
|
373
|
+
device?: DeviceSummary;
|
|
374
|
+
}
|
|
375
|
+
export interface UpdateEnvironmentRequest {
|
|
376
|
+
id: string | undefined;
|
|
377
|
+
name?: string;
|
|
378
|
+
desktopArn?: string;
|
|
379
|
+
desktopEndpoint?: string;
|
|
380
|
+
softwareSetUpdateSchedule?: SoftwareSetUpdateSchedule;
|
|
381
|
+
maintenanceWindow?: MaintenanceWindow;
|
|
382
|
+
softwareSetUpdateMode?: SoftwareSetUpdateMode;
|
|
383
|
+
desiredSoftwareSetId?: string;
|
|
384
|
+
}
|
|
385
|
+
export interface UpdateEnvironmentResponse {
|
|
386
|
+
environment?: EnvironmentSummary;
|
|
387
|
+
}
|
|
388
|
+
export interface UpdateSoftwareSetRequest {
|
|
389
|
+
id: string | undefined;
|
|
390
|
+
validationStatus: SoftwareSetValidationStatus | undefined;
|
|
391
|
+
}
|
|
392
|
+
export interface UpdateSoftwareSetResponse {}
|
|
393
|
+
export declare const CreateEnvironmentRequestFilterSensitiveLog: (
|
|
394
|
+
obj: CreateEnvironmentRequest
|
|
395
|
+
) => any;
|
|
396
|
+
export declare const EmbeddedTagFilterSensitiveLog: (obj: EmbeddedTag) => any;
|
|
397
|
+
export declare const EnvironmentSummaryFilterSensitiveLog: (
|
|
398
|
+
obj: EnvironmentSummary
|
|
399
|
+
) => any;
|
|
400
|
+
export declare const CreateEnvironmentResponseFilterSensitiveLog: (
|
|
401
|
+
obj: CreateEnvironmentResponse
|
|
402
|
+
) => any;
|
|
403
|
+
export declare const DeviceFilterSensitiveLog: (obj: Device) => any;
|
|
404
|
+
export declare const DeviceSummaryFilterSensitiveLog: (
|
|
405
|
+
obj: DeviceSummary
|
|
406
|
+
) => any;
|
|
407
|
+
export declare const EnvironmentFilterSensitiveLog: (obj: Environment) => any;
|
|
408
|
+
export declare const GetDeviceResponseFilterSensitiveLog: (
|
|
409
|
+
obj: GetDeviceResponse
|
|
410
|
+
) => any;
|
|
411
|
+
export declare const GetEnvironmentResponseFilterSensitiveLog: (
|
|
412
|
+
obj: GetEnvironmentResponse
|
|
413
|
+
) => any;
|
|
414
|
+
export declare const ListDevicesResponseFilterSensitiveLog: (
|
|
415
|
+
obj: ListDevicesResponse
|
|
416
|
+
) => any;
|
|
417
|
+
export declare const ListEnvironmentsResponseFilterSensitiveLog: (
|
|
418
|
+
obj: ListEnvironmentsResponse
|
|
419
|
+
) => any;
|
|
420
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
421
|
+
obj: ListTagsForResourceResponse
|
|
422
|
+
) => any;
|
|
423
|
+
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
424
|
+
obj: TagResourceRequest
|
|
425
|
+
) => any;
|
|
426
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
427
|
+
obj: UntagResourceRequest
|
|
428
|
+
) => any;
|
|
429
|
+
export declare const UpdateDeviceRequestFilterSensitiveLog: (
|
|
430
|
+
obj: UpdateDeviceRequest
|
|
431
|
+
) => any;
|
|
432
|
+
export declare const UpdateDeviceResponseFilterSensitiveLog: (
|
|
433
|
+
obj: UpdateDeviceResponse
|
|
434
|
+
) => any;
|
|
435
|
+
export declare const UpdateEnvironmentRequestFilterSensitiveLog: (
|
|
436
|
+
obj: UpdateEnvironmentRequest
|
|
437
|
+
) => any;
|
|
438
|
+
export declare const UpdateEnvironmentResponseFilterSensitiveLog: (
|
|
439
|
+
obj: UpdateEnvironmentResponse
|
|
440
|
+
) => any;
|