@aws-sdk/client-workspaces-thin-client 3.1087.0 → 3.1089.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/WorkSpacesThinClient.d.ts +54 -63
- package/dist-types/ts3.4/WorkSpacesThinClientClient.d.ts +8 -27
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDeviceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeregisterDeviceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetSoftwareSetCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListSoftwareSetsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDeviceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateSoftwareSetCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListDevicesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetDeviceRequest, GetDeviceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetDeviceCommandInput extends GetDeviceRequest {}
|
|
5
|
-
export interface GetDeviceCommandOutput
|
|
6
|
-
extends GetDeviceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetDeviceCommandOutput extends GetDeviceResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetDeviceCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetDeviceCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetDeviceCommandInput,
|
|
11
11
|
GetDeviceCommandOutput,
|
|
12
12
|
import("..").WorkSpacesThinClientClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetDeviceCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetDeviceCommandInput,
|
|
18
20
|
GetDeviceCommandOutput,
|
|
19
21
|
import("..").WorkSpacesThinClientClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetEnvironmentRequest,
|
|
4
|
-
GetEnvironmentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {}
|
|
8
|
-
export interface GetEnvironmentCommandOutput
|
|
9
|
-
extends GetEnvironmentResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetEnvironmentCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetEnvironmentCommandInput
|
|
8
|
+
input: GetEnvironmentCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetEnvironmentCommandInput,
|
|
16
11
|
GetEnvironmentCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetEnvironmentCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetEnvironmentCommandInput
|
|
17
|
+
input: GetEnvironmentCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetEnvironmentCommandInput,
|
|
25
20
|
GetEnvironmentCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSoftwareSetRequest,
|
|
4
|
-
GetSoftwareSetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSoftwareSetRequest, GetSoftwareSetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetSoftwareSetCommandInput extends GetSoftwareSetRequest {}
|
|
8
|
-
export interface GetSoftwareSetCommandOutput
|
|
9
|
-
extends GetSoftwareSetResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSoftwareSetCommandOutput extends GetSoftwareSetResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetSoftwareSetCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetSoftwareSetCommandInput
|
|
8
|
+
input: GetSoftwareSetCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetSoftwareSetCommandInput,
|
|
16
11
|
GetSoftwareSetCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetSoftwareSetCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetSoftwareSetCommandInput
|
|
17
|
+
input: GetSoftwareSetCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetSoftwareSetCommandInput,
|
|
25
20
|
GetSoftwareSetCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListDevicesRequest, ListDevicesResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListDevicesCommandInput extends ListDevicesRequest {}
|
|
5
|
-
export interface ListDevicesCommandOutput
|
|
6
|
-
extends ListDevicesResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListDevicesCommandOutput extends ListDevicesResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListDevicesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListDevicesCommandInput
|
|
8
|
+
input: ListDevicesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListDevicesCommandInput,
|
|
13
11
|
ListDevicesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListEnvironmentsRequest,
|
|
4
|
-
ListEnvironmentsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListEnvironmentsCommandInput extends ListEnvironmentsRequest {}
|
|
8
|
-
export interface ListEnvironmentsCommandOutput
|
|
9
|
-
extends ListEnvironmentsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListEnvironmentsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListEnvironmentsCommandInput
|
|
8
|
+
input: ListEnvironmentsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListEnvironmentsCommandInput,
|
|
16
11
|
ListEnvironmentsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSoftwareSetsRequest,
|
|
4
|
-
ListSoftwareSetsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSoftwareSetsRequest, ListSoftwareSetsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListSoftwareSetsCommandInput extends ListSoftwareSetsRequest {}
|
|
8
|
-
export interface ListSoftwareSetsCommandOutput
|
|
9
|
-
extends ListSoftwareSetsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListSoftwareSetsCommandOutput extends ListSoftwareSetsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListSoftwareSetsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListSoftwareSetsCommandInput
|
|
8
|
+
input: ListSoftwareSetsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListSoftwareSetsCommandInput,
|
|
16
11
|
ListSoftwareSetsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateDeviceRequest, UpdateDeviceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateDeviceCommandInput extends UpdateDeviceRequest {}
|
|
5
|
-
export interface UpdateDeviceCommandOutput
|
|
6
|
-
extends UpdateDeviceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateDeviceCommandOutput extends UpdateDeviceResponse, __MetadataBearer {}
|
|
8
6
|
declare const UpdateDeviceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateDeviceCommandInput
|
|
8
|
+
input: UpdateDeviceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateDeviceCommandInput,
|
|
13
11
|
UpdateDeviceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateDeviceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateDeviceCommandInput
|
|
17
|
+
input: UpdateDeviceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateDeviceCommandInput,
|
|
22
20
|
UpdateDeviceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateEnvironmentRequest,
|
|
4
|
-
UpdateEnvironmentResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateEnvironmentRequest, UpdateEnvironmentResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateEnvironmentCommandInput
|
|
8
|
-
extends UpdateEnvironmentRequest {}
|
|
4
|
+
export interface UpdateEnvironmentCommandInput extends UpdateEnvironmentRequest {}
|
|
9
5
|
export interface UpdateEnvironmentCommandOutput
|
|
10
|
-
extends UpdateEnvironmentResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateEnvironmentResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateEnvironmentCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateEnvironmentCommandInput
|
|
9
|
+
input: UpdateEnvironmentCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateEnvironmentCommandInput,
|
|
17
12
|
UpdateEnvironmentCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateEnvironmentCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateEnvironmentCommandInput
|
|
18
|
+
input: UpdateEnvironmentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateEnvironmentCommandInput,
|
|
26
21
|
UpdateEnvironmentCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateSoftwareSetRequest,
|
|
4
|
-
UpdateSoftwareSetResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateSoftwareSetRequest, UpdateSoftwareSetResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateSoftwareSetCommandInput
|
|
8
|
-
extends UpdateSoftwareSetRequest {}
|
|
4
|
+
export interface UpdateSoftwareSetCommandInput extends UpdateSoftwareSetRequest {}
|
|
9
5
|
export interface UpdateSoftwareSetCommandOutput
|
|
10
|
-
extends UpdateSoftwareSetResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateSoftwareSetResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateSoftwareSetCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateSoftwareSetCommandInput
|
|
9
|
+
input: UpdateSoftwareSetCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateSoftwareSetCommandInput,
|
|
17
12
|
UpdateSoftwareSetCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateSoftwareSetCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateSoftwareSetCommandInput
|
|
18
|
+
input: UpdateSoftwareSetCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateSoftwareSetCommandInput,
|
|
26
21
|
UpdateSoftwareSetCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface WorkSpacesThinClientExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -49,8 +49,7 @@ export declare const TargetDeviceStatus: {
|
|
|
49
49
|
readonly ARCHIVED: "ARCHIVED";
|
|
50
50
|
readonly DEREGISTERED: "DEREGISTERED";
|
|
51
51
|
};
|
|
52
|
-
export type TargetDeviceStatus =
|
|
53
|
-
(typeof TargetDeviceStatus)[keyof typeof TargetDeviceStatus];
|
|
52
|
+
export type TargetDeviceStatus = (typeof TargetDeviceStatus)[keyof typeof TargetDeviceStatus];
|
|
54
53
|
export declare const DeviceSoftwareSetComplianceStatus: {
|
|
55
54
|
readonly COMPLIANT: "COMPLIANT";
|
|
56
55
|
readonly NONE: "NONE";
|
|
@@ -5,9 +5,7 @@ import { WorkSpacesThinClientServiceException as __BaseException } from "./WorkS
|
|
|
5
5
|
export declare class AccessDeniedException extends __BaseException {
|
|
6
6
|
readonly name: "AccessDeniedException";
|
|
7
7
|
readonly $fault: "client";
|
|
8
|
-
constructor(
|
|
9
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
-
);
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
11
9
|
}
|
|
12
10
|
export declare class ConflictException extends __BaseException {
|
|
13
11
|
readonly name: "ConflictException";
|
|
@@ -20,18 +18,14 @@ export declare class InternalServerException extends __BaseException {
|
|
|
20
18
|
readonly name: "InternalServerException";
|
|
21
19
|
readonly $fault: "server";
|
|
22
20
|
retryAfterSeconds?: number | undefined;
|
|
23
|
-
constructor(
|
|
24
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
25
|
-
);
|
|
21
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
26
22
|
}
|
|
27
23
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
28
24
|
readonly name: "ResourceNotFoundException";
|
|
29
25
|
readonly $fault: "client";
|
|
30
26
|
resourceId?: string | undefined;
|
|
31
27
|
resourceType?: string | undefined;
|
|
32
|
-
constructor(
|
|
33
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
34
|
-
);
|
|
28
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
35
29
|
}
|
|
36
30
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
37
31
|
readonly name: "ServiceQuotaExceededException";
|
|
@@ -40,9 +34,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
40
34
|
resourceType?: string | undefined;
|
|
41
35
|
serviceCode?: string | undefined;
|
|
42
36
|
quotaCode?: string | undefined;
|
|
43
|
-
constructor(
|
|
44
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
45
|
-
);
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
46
38
|
}
|
|
47
39
|
export declare class ThrottlingException extends __BaseException {
|
|
48
40
|
readonly name: "ThrottlingException";
|
|
@@ -50,16 +42,12 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
50
42
|
serviceCode?: string | undefined;
|
|
51
43
|
quotaCode?: string | undefined;
|
|
52
44
|
retryAfterSeconds?: number | undefined;
|
|
53
|
-
constructor(
|
|
54
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
55
|
-
);
|
|
45
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
56
46
|
}
|
|
57
47
|
export declare class ValidationException extends __BaseException {
|
|
58
48
|
readonly name: "ValidationException";
|
|
59
49
|
readonly $fault: "client";
|
|
60
50
|
reason?: ValidationExceptionReason | undefined;
|
|
61
51
|
fieldList?: ValidationExceptionField[] | undefined;
|
|
62
|
-
constructor(
|
|
63
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
64
|
-
);
|
|
52
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
65
53
|
}
|
|
@@ -128,9 +128,7 @@ export interface Environment {
|
|
|
128
128
|
desiredSoftwareSetId?: string | undefined;
|
|
129
129
|
pendingSoftwareSetId?: string | undefined;
|
|
130
130
|
pendingSoftwareSetVersion?: string | undefined;
|
|
131
|
-
softwareSetComplianceStatus?:
|
|
132
|
-
| EnvironmentSoftwareSetComplianceStatus
|
|
133
|
-
| undefined;
|
|
131
|
+
softwareSetComplianceStatus?: EnvironmentSoftwareSetComplianceStatus | undefined;
|
|
134
132
|
createdAt?: Date | undefined;
|
|
135
133
|
updatedAt?: Date | undefined;
|
|
136
134
|
arn?: string | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { WorkSpacesThinClientClient } from "../WorkSpacesThinClientClient";
|
|
3
|
-
export interface WorkSpacesThinClientPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface WorkSpacesThinClientPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: WorkSpacesThinClientClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDevicesCommandInput,
|
|
4
|
-
ListDevicesCommandOutput,
|
|
5
|
-
} from "../commands/ListDevicesCommand";
|
|
2
|
+
import { ListDevicesCommandInput, ListDevicesCommandOutput } from "../commands/ListDevicesCommand";
|
|
6
3
|
import { WorkSpacesThinClientPaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListDevices: (
|
|
8
5
|
config: WorkSpacesThinClientPaginationConfiguration,
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: WorkSpacesThinClientClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +45,8 @@ export declare const getRuntimeConfig: (
|
|
|
55
45
|
logger: import("@smithy/types").Logger;
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
50
|
endpoint?:
|
|
66
51
|
| ((
|
|
67
52
|
| string
|
|
@@ -83,7 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
83
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
69
|
context?: {
|
|
85
70
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
71
|
+
},
|
|
87
72
|
) => import("@smithy/types").EndpointV2;
|
|
88
73
|
tls?: boolean;
|
|
89
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
96
81
|
signer?:
|
|
97
82
|
| import("@smithy/types").RequestSigner
|
|
98
83
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
86
|
signingEscapePath?: boolean;
|
|
102
87
|
systemClockOffset?: number;
|
|
103
88
|
signingRegion?: string;
|
|
104
89
|
signerConstructor?: new (
|
|
105
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
92
|
) => import("@smithy/types").RequestSigner;
|
|
108
93
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: WorkSpacesThinClientClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -12,23 +10,17 @@ export declare const getRuntimeConfig: (
|
|
|
12
10
|
credentialDefaultProvider:
|
|
13
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
12
|
| ((
|
|
15
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
16
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
15
|
defaultUserAgentProvider: (
|
|
18
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
19
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
requestHandler:
|
|
23
|
-
| RequestHandler
|
|
24
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
25
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
22
|
streamCollector: (
|
|
27
|
-
stream:
|
|
28
|
-
| import("stream").Readable
|
|
29
|
-
| import("stream/web").ReadableStream
|
|
30
|
-
| ReadableStream
|
|
31
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
32
24
|
) => Promise<Uint8Array>;
|
|
33
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
34
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -55,9 +47,7 @@ export declare const getRuntimeConfig: (
|
|
|
55
47
|
logger: import("@smithy/types").Logger;
|
|
56
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
retryStrategy?:
|
|
59
|
-
| import("@smithy/types").RetryStrategy
|
|
60
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
61
51
|
endpoint?:
|
|
62
52
|
| ((
|
|
63
53
|
| string
|
|
@@ -79,7 +69,7 @@ export declare const getRuntimeConfig: (
|
|
|
79
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
80
70
|
context?: {
|
|
81
71
|
logger?: import("@smithy/types").Logger;
|
|
82
|
-
}
|
|
72
|
+
},
|
|
83
73
|
) => import("@smithy/types").EndpointV2;
|
|
84
74
|
tls?: boolean;
|
|
85
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -91,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
91
81
|
signer?:
|
|
92
82
|
| import("@smithy/types").RequestSigner
|
|
93
83
|
| ((
|
|
94
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
95
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
96
86
|
signingEscapePath?: boolean;
|
|
97
87
|
systemClockOffset?: number;
|
|
98
88
|
signingRegion?: string;
|
|
99
89
|
signerConstructor?: new (
|
|
100
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
101
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
102
92
|
) => import("@smithy/types").RequestSigner;
|
|
103
93
|
};
|