@aws-sdk/client-workspaces-thin-client 3.928.0 → 3.930.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 +825 -1061
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/WorkSpacesThinClientClient.js +2 -0
- package/dist-es/commands/CreateEnvironmentCommand.js +3 -10
- package/dist-es/commands/DeleteDeviceCommand.js +3 -9
- package/dist-es/commands/DeleteEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeregisterDeviceCommand.js +3 -9
- package/dist-es/commands/GetDeviceCommand.js +3 -10
- package/dist-es/commands/GetEnvironmentCommand.js +3 -10
- package/dist-es/commands/GetSoftwareSetCommand.js +3 -9
- package/dist-es/commands/ListDevicesCommand.js +3 -10
- package/dist-es/commands/ListEnvironmentsCommand.js +3 -10
- package/dist-es/commands/ListSoftwareSetsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -10
- package/dist-es/commands/UpdateDeviceCommand.js +3 -10
- package/dist-es/commands/UpdateEnvironmentCommand.js +3 -10
- package/dist-es/commands/UpdateSoftwareSetCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -81
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +777 -0
- package/dist-types/WorkSpacesThinClientClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -68
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +81 -0
- package/dist-types/ts3.4/WorkSpacesThinClientClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +88 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -838
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -146
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -197
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
|
|
4
|
-
import { DeleteDeviceCommandInput, DeleteDeviceCommandOutput } from "../commands/DeleteDeviceCommand";
|
|
5
|
-
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
|
|
6
|
-
import { DeregisterDeviceCommandInput, DeregisterDeviceCommandOutput } from "../commands/DeregisterDeviceCommand";
|
|
7
|
-
import { GetDeviceCommandInput, GetDeviceCommandOutput } from "../commands/GetDeviceCommand";
|
|
8
|
-
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
|
|
9
|
-
import { GetSoftwareSetCommandInput, GetSoftwareSetCommandOutput } from "../commands/GetSoftwareSetCommand";
|
|
10
|
-
import { ListDevicesCommandInput, ListDevicesCommandOutput } from "../commands/ListDevicesCommand";
|
|
11
|
-
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
|
|
12
|
-
import { ListSoftwareSetsCommandInput, ListSoftwareSetsCommandOutput } from "../commands/ListSoftwareSetsCommand";
|
|
13
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
14
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
15
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
16
|
-
import { UpdateDeviceCommandInput, UpdateDeviceCommandOutput } from "../commands/UpdateDeviceCommand";
|
|
17
|
-
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "../commands/UpdateEnvironmentCommand";
|
|
18
|
-
import { UpdateSoftwareSetCommandInput, UpdateSoftwareSetCommandOutput } from "../commands/UpdateSoftwareSetCommand";
|
|
19
|
-
/**
|
|
20
|
-
* serializeAws_restJson1CreateEnvironmentCommand
|
|
21
|
-
*/
|
|
22
|
-
export declare const se_CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
-
/**
|
|
24
|
-
* serializeAws_restJson1DeleteDeviceCommand
|
|
25
|
-
*/
|
|
26
|
-
export declare const se_DeleteDeviceCommand: (input: DeleteDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
-
/**
|
|
28
|
-
* serializeAws_restJson1DeleteEnvironmentCommand
|
|
29
|
-
*/
|
|
30
|
-
export declare const se_DeleteEnvironmentCommand: (input: DeleteEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
-
/**
|
|
32
|
-
* serializeAws_restJson1DeregisterDeviceCommand
|
|
33
|
-
*/
|
|
34
|
-
export declare const se_DeregisterDeviceCommand: (input: DeregisterDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
-
/**
|
|
36
|
-
* serializeAws_restJson1GetDeviceCommand
|
|
37
|
-
*/
|
|
38
|
-
export declare const se_GetDeviceCommand: (input: GetDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
-
/**
|
|
40
|
-
* serializeAws_restJson1GetEnvironmentCommand
|
|
41
|
-
*/
|
|
42
|
-
export declare const se_GetEnvironmentCommand: (input: GetEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
-
/**
|
|
44
|
-
* serializeAws_restJson1GetSoftwareSetCommand
|
|
45
|
-
*/
|
|
46
|
-
export declare const se_GetSoftwareSetCommand: (input: GetSoftwareSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
-
/**
|
|
48
|
-
* serializeAws_restJson1ListDevicesCommand
|
|
49
|
-
*/
|
|
50
|
-
export declare const se_ListDevicesCommand: (input: ListDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
-
/**
|
|
52
|
-
* serializeAws_restJson1ListEnvironmentsCommand
|
|
53
|
-
*/
|
|
54
|
-
export declare const se_ListEnvironmentsCommand: (input: ListEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
-
/**
|
|
56
|
-
* serializeAws_restJson1ListSoftwareSetsCommand
|
|
57
|
-
*/
|
|
58
|
-
export declare const se_ListSoftwareSetsCommand: (input: ListSoftwareSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
-
/**
|
|
60
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
61
|
-
*/
|
|
62
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
-
/**
|
|
64
|
-
* serializeAws_restJson1TagResourceCommand
|
|
65
|
-
*/
|
|
66
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
-
/**
|
|
68
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
69
|
-
*/
|
|
70
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
-
/**
|
|
72
|
-
* serializeAws_restJson1UpdateDeviceCommand
|
|
73
|
-
*/
|
|
74
|
-
export declare const se_UpdateDeviceCommand: (input: UpdateDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
-
/**
|
|
76
|
-
* serializeAws_restJson1UpdateEnvironmentCommand
|
|
77
|
-
*/
|
|
78
|
-
export declare const se_UpdateEnvironmentCommand: (input: UpdateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
-
/**
|
|
80
|
-
* serializeAws_restJson1UpdateSoftwareSetCommand
|
|
81
|
-
*/
|
|
82
|
-
export declare const se_UpdateSoftwareSetCommand: (input: UpdateSoftwareSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
-
/**
|
|
84
|
-
* deserializeAws_restJson1CreateEnvironmentCommand
|
|
85
|
-
*/
|
|
86
|
-
export declare const de_CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
|
|
87
|
-
/**
|
|
88
|
-
* deserializeAws_restJson1DeleteDeviceCommand
|
|
89
|
-
*/
|
|
90
|
-
export declare const de_DeleteDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeviceCommandOutput>;
|
|
91
|
-
/**
|
|
92
|
-
* deserializeAws_restJson1DeleteEnvironmentCommand
|
|
93
|
-
*/
|
|
94
|
-
export declare const de_DeleteEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentCommandOutput>;
|
|
95
|
-
/**
|
|
96
|
-
* deserializeAws_restJson1DeregisterDeviceCommand
|
|
97
|
-
*/
|
|
98
|
-
export declare const de_DeregisterDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterDeviceCommandOutput>;
|
|
99
|
-
/**
|
|
100
|
-
* deserializeAws_restJson1GetDeviceCommand
|
|
101
|
-
*/
|
|
102
|
-
export declare const de_GetDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeviceCommandOutput>;
|
|
103
|
-
/**
|
|
104
|
-
* deserializeAws_restJson1GetEnvironmentCommand
|
|
105
|
-
*/
|
|
106
|
-
export declare const de_GetEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentCommandOutput>;
|
|
107
|
-
/**
|
|
108
|
-
* deserializeAws_restJson1GetSoftwareSetCommand
|
|
109
|
-
*/
|
|
110
|
-
export declare const de_GetSoftwareSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSoftwareSetCommandOutput>;
|
|
111
|
-
/**
|
|
112
|
-
* deserializeAws_restJson1ListDevicesCommand
|
|
113
|
-
*/
|
|
114
|
-
export declare const de_ListDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDevicesCommandOutput>;
|
|
115
|
-
/**
|
|
116
|
-
* deserializeAws_restJson1ListEnvironmentsCommand
|
|
117
|
-
*/
|
|
118
|
-
export declare const de_ListEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentsCommandOutput>;
|
|
119
|
-
/**
|
|
120
|
-
* deserializeAws_restJson1ListSoftwareSetsCommand
|
|
121
|
-
*/
|
|
122
|
-
export declare const de_ListSoftwareSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSoftwareSetsCommandOutput>;
|
|
123
|
-
/**
|
|
124
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
125
|
-
*/
|
|
126
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
127
|
-
/**
|
|
128
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
129
|
-
*/
|
|
130
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
131
|
-
/**
|
|
132
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
133
|
-
*/
|
|
134
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
135
|
-
/**
|
|
136
|
-
* deserializeAws_restJson1UpdateDeviceCommand
|
|
137
|
-
*/
|
|
138
|
-
export declare const de_UpdateDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDeviceCommandOutput>;
|
|
139
|
-
/**
|
|
140
|
-
* deserializeAws_restJson1UpdateEnvironmentCommand
|
|
141
|
-
*/
|
|
142
|
-
export declare const de_UpdateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnvironmentCommandOutput>;
|
|
143
|
-
/**
|
|
144
|
-
* deserializeAws_restJson1UpdateSoftwareSetCommand
|
|
145
|
-
*/
|
|
146
|
-
export declare const de_UpdateSoftwareSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSoftwareSetCommandOutput>;
|
|
@@ -1,197 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateEnvironmentCommandInput,
|
|
8
|
-
CreateEnvironmentCommandOutput,
|
|
9
|
-
} from "../commands/CreateEnvironmentCommand";
|
|
10
|
-
import {
|
|
11
|
-
DeleteDeviceCommandInput,
|
|
12
|
-
DeleteDeviceCommandOutput,
|
|
13
|
-
} from "../commands/DeleteDeviceCommand";
|
|
14
|
-
import {
|
|
15
|
-
DeleteEnvironmentCommandInput,
|
|
16
|
-
DeleteEnvironmentCommandOutput,
|
|
17
|
-
} from "../commands/DeleteEnvironmentCommand";
|
|
18
|
-
import {
|
|
19
|
-
DeregisterDeviceCommandInput,
|
|
20
|
-
DeregisterDeviceCommandOutput,
|
|
21
|
-
} from "../commands/DeregisterDeviceCommand";
|
|
22
|
-
import {
|
|
23
|
-
GetDeviceCommandInput,
|
|
24
|
-
GetDeviceCommandOutput,
|
|
25
|
-
} from "../commands/GetDeviceCommand";
|
|
26
|
-
import {
|
|
27
|
-
GetEnvironmentCommandInput,
|
|
28
|
-
GetEnvironmentCommandOutput,
|
|
29
|
-
} from "../commands/GetEnvironmentCommand";
|
|
30
|
-
import {
|
|
31
|
-
GetSoftwareSetCommandInput,
|
|
32
|
-
GetSoftwareSetCommandOutput,
|
|
33
|
-
} from "../commands/GetSoftwareSetCommand";
|
|
34
|
-
import {
|
|
35
|
-
ListDevicesCommandInput,
|
|
36
|
-
ListDevicesCommandOutput,
|
|
37
|
-
} from "../commands/ListDevicesCommand";
|
|
38
|
-
import {
|
|
39
|
-
ListEnvironmentsCommandInput,
|
|
40
|
-
ListEnvironmentsCommandOutput,
|
|
41
|
-
} from "../commands/ListEnvironmentsCommand";
|
|
42
|
-
import {
|
|
43
|
-
ListSoftwareSetsCommandInput,
|
|
44
|
-
ListSoftwareSetsCommandOutput,
|
|
45
|
-
} from "../commands/ListSoftwareSetsCommand";
|
|
46
|
-
import {
|
|
47
|
-
ListTagsForResourceCommandInput,
|
|
48
|
-
ListTagsForResourceCommandOutput,
|
|
49
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
50
|
-
import {
|
|
51
|
-
TagResourceCommandInput,
|
|
52
|
-
TagResourceCommandOutput,
|
|
53
|
-
} from "../commands/TagResourceCommand";
|
|
54
|
-
import {
|
|
55
|
-
UntagResourceCommandInput,
|
|
56
|
-
UntagResourceCommandOutput,
|
|
57
|
-
} from "../commands/UntagResourceCommand";
|
|
58
|
-
import {
|
|
59
|
-
UpdateDeviceCommandInput,
|
|
60
|
-
UpdateDeviceCommandOutput,
|
|
61
|
-
} from "../commands/UpdateDeviceCommand";
|
|
62
|
-
import {
|
|
63
|
-
UpdateEnvironmentCommandInput,
|
|
64
|
-
UpdateEnvironmentCommandOutput,
|
|
65
|
-
} from "../commands/UpdateEnvironmentCommand";
|
|
66
|
-
import {
|
|
67
|
-
UpdateSoftwareSetCommandInput,
|
|
68
|
-
UpdateSoftwareSetCommandOutput,
|
|
69
|
-
} from "../commands/UpdateSoftwareSetCommand";
|
|
70
|
-
export declare const se_CreateEnvironmentCommand: (
|
|
71
|
-
input: CreateEnvironmentCommandInput,
|
|
72
|
-
context: __SerdeContext
|
|
73
|
-
) => Promise<__HttpRequest>;
|
|
74
|
-
export declare const se_DeleteDeviceCommand: (
|
|
75
|
-
input: DeleteDeviceCommandInput,
|
|
76
|
-
context: __SerdeContext
|
|
77
|
-
) => Promise<__HttpRequest>;
|
|
78
|
-
export declare const se_DeleteEnvironmentCommand: (
|
|
79
|
-
input: DeleteEnvironmentCommandInput,
|
|
80
|
-
context: __SerdeContext
|
|
81
|
-
) => Promise<__HttpRequest>;
|
|
82
|
-
export declare const se_DeregisterDeviceCommand: (
|
|
83
|
-
input: DeregisterDeviceCommandInput,
|
|
84
|
-
context: __SerdeContext
|
|
85
|
-
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const se_GetDeviceCommand: (
|
|
87
|
-
input: GetDeviceCommandInput,
|
|
88
|
-
context: __SerdeContext
|
|
89
|
-
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const se_GetEnvironmentCommand: (
|
|
91
|
-
input: GetEnvironmentCommandInput,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const se_GetSoftwareSetCommand: (
|
|
95
|
-
input: GetSoftwareSetCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_ListDevicesCommand: (
|
|
99
|
-
input: ListDevicesCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_ListEnvironmentsCommand: (
|
|
103
|
-
input: ListEnvironmentsCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_ListSoftwareSetsCommand: (
|
|
107
|
-
input: ListSoftwareSetsCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
111
|
-
input: ListTagsForResourceCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_TagResourceCommand: (
|
|
115
|
-
input: TagResourceCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_UntagResourceCommand: (
|
|
119
|
-
input: UntagResourceCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_UpdateDeviceCommand: (
|
|
123
|
-
input: UpdateDeviceCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_UpdateEnvironmentCommand: (
|
|
127
|
-
input: UpdateEnvironmentCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_UpdateSoftwareSetCommand: (
|
|
131
|
-
input: UpdateSoftwareSetCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const de_CreateEnvironmentCommand: (
|
|
135
|
-
output: __HttpResponse,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<CreateEnvironmentCommandOutput>;
|
|
138
|
-
export declare const de_DeleteDeviceCommand: (
|
|
139
|
-
output: __HttpResponse,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<DeleteDeviceCommandOutput>;
|
|
142
|
-
export declare const de_DeleteEnvironmentCommand: (
|
|
143
|
-
output: __HttpResponse,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<DeleteEnvironmentCommandOutput>;
|
|
146
|
-
export declare const de_DeregisterDeviceCommand: (
|
|
147
|
-
output: __HttpResponse,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<DeregisterDeviceCommandOutput>;
|
|
150
|
-
export declare const de_GetDeviceCommand: (
|
|
151
|
-
output: __HttpResponse,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<GetDeviceCommandOutput>;
|
|
154
|
-
export declare const de_GetEnvironmentCommand: (
|
|
155
|
-
output: __HttpResponse,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<GetEnvironmentCommandOutput>;
|
|
158
|
-
export declare const de_GetSoftwareSetCommand: (
|
|
159
|
-
output: __HttpResponse,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<GetSoftwareSetCommandOutput>;
|
|
162
|
-
export declare const de_ListDevicesCommand: (
|
|
163
|
-
output: __HttpResponse,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<ListDevicesCommandOutput>;
|
|
166
|
-
export declare const de_ListEnvironmentsCommand: (
|
|
167
|
-
output: __HttpResponse,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<ListEnvironmentsCommandOutput>;
|
|
170
|
-
export declare const de_ListSoftwareSetsCommand: (
|
|
171
|
-
output: __HttpResponse,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<ListSoftwareSetsCommandOutput>;
|
|
174
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
175
|
-
output: __HttpResponse,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
178
|
-
export declare const de_TagResourceCommand: (
|
|
179
|
-
output: __HttpResponse,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<TagResourceCommandOutput>;
|
|
182
|
-
export declare const de_UntagResourceCommand: (
|
|
183
|
-
output: __HttpResponse,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
186
|
-
export declare const de_UpdateDeviceCommand: (
|
|
187
|
-
output: __HttpResponse,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<UpdateDeviceCommandOutput>;
|
|
190
|
-
export declare const de_UpdateEnvironmentCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<UpdateEnvironmentCommandOutput>;
|
|
194
|
-
export declare const de_UpdateSoftwareSetCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<UpdateSoftwareSetCommandOutput>;
|