@aws-sdk/client-rolesanywhere 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 +843 -1274
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/RolesAnywhereClient.js +2 -0
- package/dist-es/commands/CreateProfileCommand.js +3 -10
- package/dist-es/commands/CreateTrustAnchorCommand.js +3 -10
- package/dist-es/commands/DeleteAttributeMappingCommand.js +3 -9
- package/dist-es/commands/DeleteCrlCommand.js +3 -9
- package/dist-es/commands/DeleteProfileCommand.js +3 -9
- package/dist-es/commands/DeleteTrustAnchorCommand.js +3 -9
- package/dist-es/commands/DisableCrlCommand.js +3 -9
- package/dist-es/commands/DisableProfileCommand.js +3 -9
- package/dist-es/commands/DisableTrustAnchorCommand.js +3 -9
- package/dist-es/commands/EnableCrlCommand.js +3 -9
- package/dist-es/commands/EnableProfileCommand.js +3 -9
- package/dist-es/commands/EnableTrustAnchorCommand.js +3 -9
- package/dist-es/commands/GetCrlCommand.js +3 -9
- package/dist-es/commands/GetProfileCommand.js +3 -9
- package/dist-es/commands/GetSubjectCommand.js +3 -9
- package/dist-es/commands/GetTrustAnchorCommand.js +3 -9
- package/dist-es/commands/ImportCrlCommand.js +3 -10
- package/dist-es/commands/ListCrlsCommand.js +3 -9
- package/dist-es/commands/ListProfilesCommand.js +3 -9
- package/dist-es/commands/ListSubjectsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/ListTrustAnchorsCommand.js +3 -9
- package/dist-es/commands/PutAttributeMappingCommand.js +3 -9
- package/dist-es/commands/PutNotificationSettingsCommand.js +3 -9
- package/dist-es/commands/ResetNotificationSettingsCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -10
- package/dist-es/commands/UpdateCrlCommand.js +3 -9
- package/dist-es/commands/UpdateProfileCommand.js +3 -9
- package/dist-es/commands/UpdateTrustAnchorCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -41
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +776 -0
- package/dist-types/RolesAnywhereClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +4 -29
- 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 +103 -0
- package/dist-types/ts3.4/RolesAnywhereClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -20
- 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 +109 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_restJson1.js +0 -1009
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -272
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -365
|
@@ -1,272 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateProfileCommandInput, CreateProfileCommandOutput } from "../commands/CreateProfileCommand";
|
|
4
|
-
import { CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput } from "../commands/CreateTrustAnchorCommand";
|
|
5
|
-
import { DeleteAttributeMappingCommandInput, DeleteAttributeMappingCommandOutput } from "../commands/DeleteAttributeMappingCommand";
|
|
6
|
-
import { DeleteCrlCommandInput, DeleteCrlCommandOutput } from "../commands/DeleteCrlCommand";
|
|
7
|
-
import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "../commands/DeleteProfileCommand";
|
|
8
|
-
import { DeleteTrustAnchorCommandInput, DeleteTrustAnchorCommandOutput } from "../commands/DeleteTrustAnchorCommand";
|
|
9
|
-
import { DisableCrlCommandInput, DisableCrlCommandOutput } from "../commands/DisableCrlCommand";
|
|
10
|
-
import { DisableProfileCommandInput, DisableProfileCommandOutput } from "../commands/DisableProfileCommand";
|
|
11
|
-
import { DisableTrustAnchorCommandInput, DisableTrustAnchorCommandOutput } from "../commands/DisableTrustAnchorCommand";
|
|
12
|
-
import { EnableCrlCommandInput, EnableCrlCommandOutput } from "../commands/EnableCrlCommand";
|
|
13
|
-
import { EnableProfileCommandInput, EnableProfileCommandOutput } from "../commands/EnableProfileCommand";
|
|
14
|
-
import { EnableTrustAnchorCommandInput, EnableTrustAnchorCommandOutput } from "../commands/EnableTrustAnchorCommand";
|
|
15
|
-
import { GetCrlCommandInput, GetCrlCommandOutput } from "../commands/GetCrlCommand";
|
|
16
|
-
import { GetProfileCommandInput, GetProfileCommandOutput } from "../commands/GetProfileCommand";
|
|
17
|
-
import { GetSubjectCommandInput, GetSubjectCommandOutput } from "../commands/GetSubjectCommand";
|
|
18
|
-
import { GetTrustAnchorCommandInput, GetTrustAnchorCommandOutput } from "../commands/GetTrustAnchorCommand";
|
|
19
|
-
import { ImportCrlCommandInput, ImportCrlCommandOutput } from "../commands/ImportCrlCommand";
|
|
20
|
-
import { ListCrlsCommandInput, ListCrlsCommandOutput } from "../commands/ListCrlsCommand";
|
|
21
|
-
import { ListProfilesCommandInput, ListProfilesCommandOutput } from "../commands/ListProfilesCommand";
|
|
22
|
-
import { ListSubjectsCommandInput, ListSubjectsCommandOutput } from "../commands/ListSubjectsCommand";
|
|
23
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
24
|
-
import { ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput } from "../commands/ListTrustAnchorsCommand";
|
|
25
|
-
import { PutAttributeMappingCommandInput, PutAttributeMappingCommandOutput } from "../commands/PutAttributeMappingCommand";
|
|
26
|
-
import { PutNotificationSettingsCommandInput, PutNotificationSettingsCommandOutput } from "../commands/PutNotificationSettingsCommand";
|
|
27
|
-
import { ResetNotificationSettingsCommandInput, ResetNotificationSettingsCommandOutput } from "../commands/ResetNotificationSettingsCommand";
|
|
28
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
29
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
30
|
-
import { UpdateCrlCommandInput, UpdateCrlCommandOutput } from "../commands/UpdateCrlCommand";
|
|
31
|
-
import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "../commands/UpdateProfileCommand";
|
|
32
|
-
import { UpdateTrustAnchorCommandInput, UpdateTrustAnchorCommandOutput } from "../commands/UpdateTrustAnchorCommand";
|
|
33
|
-
/**
|
|
34
|
-
* serializeAws_restJson1CreateProfileCommand
|
|
35
|
-
*/
|
|
36
|
-
export declare const se_CreateProfileCommand: (input: CreateProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
-
/**
|
|
38
|
-
* serializeAws_restJson1CreateTrustAnchorCommand
|
|
39
|
-
*/
|
|
40
|
-
export declare const se_CreateTrustAnchorCommand: (input: CreateTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
-
/**
|
|
42
|
-
* serializeAws_restJson1DeleteAttributeMappingCommand
|
|
43
|
-
*/
|
|
44
|
-
export declare const se_DeleteAttributeMappingCommand: (input: DeleteAttributeMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
|
-
/**
|
|
46
|
-
* serializeAws_restJson1DeleteCrlCommand
|
|
47
|
-
*/
|
|
48
|
-
export declare const se_DeleteCrlCommand: (input: DeleteCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
|
-
/**
|
|
50
|
-
* serializeAws_restJson1DeleteProfileCommand
|
|
51
|
-
*/
|
|
52
|
-
export declare const se_DeleteProfileCommand: (input: DeleteProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
|
-
/**
|
|
54
|
-
* serializeAws_restJson1DeleteTrustAnchorCommand
|
|
55
|
-
*/
|
|
56
|
-
export declare const se_DeleteTrustAnchorCommand: (input: DeleteTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
-
/**
|
|
58
|
-
* serializeAws_restJson1DisableCrlCommand
|
|
59
|
-
*/
|
|
60
|
-
export declare const se_DisableCrlCommand: (input: DisableCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
-
/**
|
|
62
|
-
* serializeAws_restJson1DisableProfileCommand
|
|
63
|
-
*/
|
|
64
|
-
export declare const se_DisableProfileCommand: (input: DisableProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
-
/**
|
|
66
|
-
* serializeAws_restJson1DisableTrustAnchorCommand
|
|
67
|
-
*/
|
|
68
|
-
export declare const se_DisableTrustAnchorCommand: (input: DisableTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
|
-
/**
|
|
70
|
-
* serializeAws_restJson1EnableCrlCommand
|
|
71
|
-
*/
|
|
72
|
-
export declare const se_EnableCrlCommand: (input: EnableCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* serializeAws_restJson1EnableProfileCommand
|
|
75
|
-
*/
|
|
76
|
-
export declare const se_EnableProfileCommand: (input: EnableProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
-
/**
|
|
78
|
-
* serializeAws_restJson1EnableTrustAnchorCommand
|
|
79
|
-
*/
|
|
80
|
-
export declare const se_EnableTrustAnchorCommand: (input: EnableTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
-
/**
|
|
82
|
-
* serializeAws_restJson1GetCrlCommand
|
|
83
|
-
*/
|
|
84
|
-
export declare const se_GetCrlCommand: (input: GetCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
|
-
/**
|
|
86
|
-
* serializeAws_restJson1GetProfileCommand
|
|
87
|
-
*/
|
|
88
|
-
export declare const se_GetProfileCommand: (input: GetProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
-
/**
|
|
90
|
-
* serializeAws_restJson1GetSubjectCommand
|
|
91
|
-
*/
|
|
92
|
-
export declare const se_GetSubjectCommand: (input: GetSubjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
-
/**
|
|
94
|
-
* serializeAws_restJson1GetTrustAnchorCommand
|
|
95
|
-
*/
|
|
96
|
-
export declare const se_GetTrustAnchorCommand: (input: GetTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
-
/**
|
|
98
|
-
* serializeAws_restJson1ImportCrlCommand
|
|
99
|
-
*/
|
|
100
|
-
export declare const se_ImportCrlCommand: (input: ImportCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
101
|
-
/**
|
|
102
|
-
* serializeAws_restJson1ListCrlsCommand
|
|
103
|
-
*/
|
|
104
|
-
export declare const se_ListCrlsCommand: (input: ListCrlsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
|
-
/**
|
|
106
|
-
* serializeAws_restJson1ListProfilesCommand
|
|
107
|
-
*/
|
|
108
|
-
export declare const se_ListProfilesCommand: (input: ListProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
|
-
/**
|
|
110
|
-
* serializeAws_restJson1ListSubjectsCommand
|
|
111
|
-
*/
|
|
112
|
-
export declare const se_ListSubjectsCommand: (input: ListSubjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
|
-
/**
|
|
114
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
115
|
-
*/
|
|
116
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
-
/**
|
|
118
|
-
* serializeAws_restJson1ListTrustAnchorsCommand
|
|
119
|
-
*/
|
|
120
|
-
export declare const se_ListTrustAnchorsCommand: (input: ListTrustAnchorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
121
|
-
/**
|
|
122
|
-
* serializeAws_restJson1PutAttributeMappingCommand
|
|
123
|
-
*/
|
|
124
|
-
export declare const se_PutAttributeMappingCommand: (input: PutAttributeMappingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
|
-
/**
|
|
126
|
-
* serializeAws_restJson1PutNotificationSettingsCommand
|
|
127
|
-
*/
|
|
128
|
-
export declare const se_PutNotificationSettingsCommand: (input: PutNotificationSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
|
-
/**
|
|
130
|
-
* serializeAws_restJson1ResetNotificationSettingsCommand
|
|
131
|
-
*/
|
|
132
|
-
export declare const se_ResetNotificationSettingsCommand: (input: ResetNotificationSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
133
|
-
/**
|
|
134
|
-
* serializeAws_restJson1TagResourceCommand
|
|
135
|
-
*/
|
|
136
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
|
-
/**
|
|
138
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
139
|
-
*/
|
|
140
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
141
|
-
/**
|
|
142
|
-
* serializeAws_restJson1UpdateCrlCommand
|
|
143
|
-
*/
|
|
144
|
-
export declare const se_UpdateCrlCommand: (input: UpdateCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
145
|
-
/**
|
|
146
|
-
* serializeAws_restJson1UpdateProfileCommand
|
|
147
|
-
*/
|
|
148
|
-
export declare const se_UpdateProfileCommand: (input: UpdateProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
149
|
-
/**
|
|
150
|
-
* serializeAws_restJson1UpdateTrustAnchorCommand
|
|
151
|
-
*/
|
|
152
|
-
export declare const se_UpdateTrustAnchorCommand: (input: UpdateTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
153
|
-
/**
|
|
154
|
-
* deserializeAws_restJson1CreateProfileCommand
|
|
155
|
-
*/
|
|
156
|
-
export declare const de_CreateProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProfileCommandOutput>;
|
|
157
|
-
/**
|
|
158
|
-
* deserializeAws_restJson1CreateTrustAnchorCommand
|
|
159
|
-
*/
|
|
160
|
-
export declare const de_CreateTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTrustAnchorCommandOutput>;
|
|
161
|
-
/**
|
|
162
|
-
* deserializeAws_restJson1DeleteAttributeMappingCommand
|
|
163
|
-
*/
|
|
164
|
-
export declare const de_DeleteAttributeMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAttributeMappingCommandOutput>;
|
|
165
|
-
/**
|
|
166
|
-
* deserializeAws_restJson1DeleteCrlCommand
|
|
167
|
-
*/
|
|
168
|
-
export declare const de_DeleteCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCrlCommandOutput>;
|
|
169
|
-
/**
|
|
170
|
-
* deserializeAws_restJson1DeleteProfileCommand
|
|
171
|
-
*/
|
|
172
|
-
export declare const de_DeleteProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProfileCommandOutput>;
|
|
173
|
-
/**
|
|
174
|
-
* deserializeAws_restJson1DeleteTrustAnchorCommand
|
|
175
|
-
*/
|
|
176
|
-
export declare const de_DeleteTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTrustAnchorCommandOutput>;
|
|
177
|
-
/**
|
|
178
|
-
* deserializeAws_restJson1DisableCrlCommand
|
|
179
|
-
*/
|
|
180
|
-
export declare const de_DisableCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableCrlCommandOutput>;
|
|
181
|
-
/**
|
|
182
|
-
* deserializeAws_restJson1DisableProfileCommand
|
|
183
|
-
*/
|
|
184
|
-
export declare const de_DisableProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableProfileCommandOutput>;
|
|
185
|
-
/**
|
|
186
|
-
* deserializeAws_restJson1DisableTrustAnchorCommand
|
|
187
|
-
*/
|
|
188
|
-
export declare const de_DisableTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableTrustAnchorCommandOutput>;
|
|
189
|
-
/**
|
|
190
|
-
* deserializeAws_restJson1EnableCrlCommand
|
|
191
|
-
*/
|
|
192
|
-
export declare const de_EnableCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableCrlCommandOutput>;
|
|
193
|
-
/**
|
|
194
|
-
* deserializeAws_restJson1EnableProfileCommand
|
|
195
|
-
*/
|
|
196
|
-
export declare const de_EnableProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableProfileCommandOutput>;
|
|
197
|
-
/**
|
|
198
|
-
* deserializeAws_restJson1EnableTrustAnchorCommand
|
|
199
|
-
*/
|
|
200
|
-
export declare const de_EnableTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableTrustAnchorCommandOutput>;
|
|
201
|
-
/**
|
|
202
|
-
* deserializeAws_restJson1GetCrlCommand
|
|
203
|
-
*/
|
|
204
|
-
export declare const de_GetCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCrlCommandOutput>;
|
|
205
|
-
/**
|
|
206
|
-
* deserializeAws_restJson1GetProfileCommand
|
|
207
|
-
*/
|
|
208
|
-
export declare const de_GetProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProfileCommandOutput>;
|
|
209
|
-
/**
|
|
210
|
-
* deserializeAws_restJson1GetSubjectCommand
|
|
211
|
-
*/
|
|
212
|
-
export declare const de_GetSubjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSubjectCommandOutput>;
|
|
213
|
-
/**
|
|
214
|
-
* deserializeAws_restJson1GetTrustAnchorCommand
|
|
215
|
-
*/
|
|
216
|
-
export declare const de_GetTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTrustAnchorCommandOutput>;
|
|
217
|
-
/**
|
|
218
|
-
* deserializeAws_restJson1ImportCrlCommand
|
|
219
|
-
*/
|
|
220
|
-
export declare const de_ImportCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportCrlCommandOutput>;
|
|
221
|
-
/**
|
|
222
|
-
* deserializeAws_restJson1ListCrlsCommand
|
|
223
|
-
*/
|
|
224
|
-
export declare const de_ListCrlsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCrlsCommandOutput>;
|
|
225
|
-
/**
|
|
226
|
-
* deserializeAws_restJson1ListProfilesCommand
|
|
227
|
-
*/
|
|
228
|
-
export declare const de_ListProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProfilesCommandOutput>;
|
|
229
|
-
/**
|
|
230
|
-
* deserializeAws_restJson1ListSubjectsCommand
|
|
231
|
-
*/
|
|
232
|
-
export declare const de_ListSubjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSubjectsCommandOutput>;
|
|
233
|
-
/**
|
|
234
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
235
|
-
*/
|
|
236
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
237
|
-
/**
|
|
238
|
-
* deserializeAws_restJson1ListTrustAnchorsCommand
|
|
239
|
-
*/
|
|
240
|
-
export declare const de_ListTrustAnchorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTrustAnchorsCommandOutput>;
|
|
241
|
-
/**
|
|
242
|
-
* deserializeAws_restJson1PutAttributeMappingCommand
|
|
243
|
-
*/
|
|
244
|
-
export declare const de_PutAttributeMappingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAttributeMappingCommandOutput>;
|
|
245
|
-
/**
|
|
246
|
-
* deserializeAws_restJson1PutNotificationSettingsCommand
|
|
247
|
-
*/
|
|
248
|
-
export declare const de_PutNotificationSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutNotificationSettingsCommandOutput>;
|
|
249
|
-
/**
|
|
250
|
-
* deserializeAws_restJson1ResetNotificationSettingsCommand
|
|
251
|
-
*/
|
|
252
|
-
export declare const de_ResetNotificationSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResetNotificationSettingsCommandOutput>;
|
|
253
|
-
/**
|
|
254
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
255
|
-
*/
|
|
256
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
257
|
-
/**
|
|
258
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
259
|
-
*/
|
|
260
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
261
|
-
/**
|
|
262
|
-
* deserializeAws_restJson1UpdateCrlCommand
|
|
263
|
-
*/
|
|
264
|
-
export declare const de_UpdateCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCrlCommandOutput>;
|
|
265
|
-
/**
|
|
266
|
-
* deserializeAws_restJson1UpdateProfileCommand
|
|
267
|
-
*/
|
|
268
|
-
export declare const de_UpdateProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProfileCommandOutput>;
|
|
269
|
-
/**
|
|
270
|
-
* deserializeAws_restJson1UpdateTrustAnchorCommand
|
|
271
|
-
*/
|
|
272
|
-
export declare const de_UpdateTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTrustAnchorCommandOutput>;
|
|
@@ -1,365 +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
|
-
CreateProfileCommandInput,
|
|
8
|
-
CreateProfileCommandOutput,
|
|
9
|
-
} from "../commands/CreateProfileCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateTrustAnchorCommandInput,
|
|
12
|
-
CreateTrustAnchorCommandOutput,
|
|
13
|
-
} from "../commands/CreateTrustAnchorCommand";
|
|
14
|
-
import {
|
|
15
|
-
DeleteAttributeMappingCommandInput,
|
|
16
|
-
DeleteAttributeMappingCommandOutput,
|
|
17
|
-
} from "../commands/DeleteAttributeMappingCommand";
|
|
18
|
-
import {
|
|
19
|
-
DeleteCrlCommandInput,
|
|
20
|
-
DeleteCrlCommandOutput,
|
|
21
|
-
} from "../commands/DeleteCrlCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteProfileCommandInput,
|
|
24
|
-
DeleteProfileCommandOutput,
|
|
25
|
-
} from "../commands/DeleteProfileCommand";
|
|
26
|
-
import {
|
|
27
|
-
DeleteTrustAnchorCommandInput,
|
|
28
|
-
DeleteTrustAnchorCommandOutput,
|
|
29
|
-
} from "../commands/DeleteTrustAnchorCommand";
|
|
30
|
-
import {
|
|
31
|
-
DisableCrlCommandInput,
|
|
32
|
-
DisableCrlCommandOutput,
|
|
33
|
-
} from "../commands/DisableCrlCommand";
|
|
34
|
-
import {
|
|
35
|
-
DisableProfileCommandInput,
|
|
36
|
-
DisableProfileCommandOutput,
|
|
37
|
-
} from "../commands/DisableProfileCommand";
|
|
38
|
-
import {
|
|
39
|
-
DisableTrustAnchorCommandInput,
|
|
40
|
-
DisableTrustAnchorCommandOutput,
|
|
41
|
-
} from "../commands/DisableTrustAnchorCommand";
|
|
42
|
-
import {
|
|
43
|
-
EnableCrlCommandInput,
|
|
44
|
-
EnableCrlCommandOutput,
|
|
45
|
-
} from "../commands/EnableCrlCommand";
|
|
46
|
-
import {
|
|
47
|
-
EnableProfileCommandInput,
|
|
48
|
-
EnableProfileCommandOutput,
|
|
49
|
-
} from "../commands/EnableProfileCommand";
|
|
50
|
-
import {
|
|
51
|
-
EnableTrustAnchorCommandInput,
|
|
52
|
-
EnableTrustAnchorCommandOutput,
|
|
53
|
-
} from "../commands/EnableTrustAnchorCommand";
|
|
54
|
-
import {
|
|
55
|
-
GetCrlCommandInput,
|
|
56
|
-
GetCrlCommandOutput,
|
|
57
|
-
} from "../commands/GetCrlCommand";
|
|
58
|
-
import {
|
|
59
|
-
GetProfileCommandInput,
|
|
60
|
-
GetProfileCommandOutput,
|
|
61
|
-
} from "../commands/GetProfileCommand";
|
|
62
|
-
import {
|
|
63
|
-
GetSubjectCommandInput,
|
|
64
|
-
GetSubjectCommandOutput,
|
|
65
|
-
} from "../commands/GetSubjectCommand";
|
|
66
|
-
import {
|
|
67
|
-
GetTrustAnchorCommandInput,
|
|
68
|
-
GetTrustAnchorCommandOutput,
|
|
69
|
-
} from "../commands/GetTrustAnchorCommand";
|
|
70
|
-
import {
|
|
71
|
-
ImportCrlCommandInput,
|
|
72
|
-
ImportCrlCommandOutput,
|
|
73
|
-
} from "../commands/ImportCrlCommand";
|
|
74
|
-
import {
|
|
75
|
-
ListCrlsCommandInput,
|
|
76
|
-
ListCrlsCommandOutput,
|
|
77
|
-
} from "../commands/ListCrlsCommand";
|
|
78
|
-
import {
|
|
79
|
-
ListProfilesCommandInput,
|
|
80
|
-
ListProfilesCommandOutput,
|
|
81
|
-
} from "../commands/ListProfilesCommand";
|
|
82
|
-
import {
|
|
83
|
-
ListSubjectsCommandInput,
|
|
84
|
-
ListSubjectsCommandOutput,
|
|
85
|
-
} from "../commands/ListSubjectsCommand";
|
|
86
|
-
import {
|
|
87
|
-
ListTagsForResourceCommandInput,
|
|
88
|
-
ListTagsForResourceCommandOutput,
|
|
89
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
90
|
-
import {
|
|
91
|
-
ListTrustAnchorsCommandInput,
|
|
92
|
-
ListTrustAnchorsCommandOutput,
|
|
93
|
-
} from "../commands/ListTrustAnchorsCommand";
|
|
94
|
-
import {
|
|
95
|
-
PutAttributeMappingCommandInput,
|
|
96
|
-
PutAttributeMappingCommandOutput,
|
|
97
|
-
} from "../commands/PutAttributeMappingCommand";
|
|
98
|
-
import {
|
|
99
|
-
PutNotificationSettingsCommandInput,
|
|
100
|
-
PutNotificationSettingsCommandOutput,
|
|
101
|
-
} from "../commands/PutNotificationSettingsCommand";
|
|
102
|
-
import {
|
|
103
|
-
ResetNotificationSettingsCommandInput,
|
|
104
|
-
ResetNotificationSettingsCommandOutput,
|
|
105
|
-
} from "../commands/ResetNotificationSettingsCommand";
|
|
106
|
-
import {
|
|
107
|
-
TagResourceCommandInput,
|
|
108
|
-
TagResourceCommandOutput,
|
|
109
|
-
} from "../commands/TagResourceCommand";
|
|
110
|
-
import {
|
|
111
|
-
UntagResourceCommandInput,
|
|
112
|
-
UntagResourceCommandOutput,
|
|
113
|
-
} from "../commands/UntagResourceCommand";
|
|
114
|
-
import {
|
|
115
|
-
UpdateCrlCommandInput,
|
|
116
|
-
UpdateCrlCommandOutput,
|
|
117
|
-
} from "../commands/UpdateCrlCommand";
|
|
118
|
-
import {
|
|
119
|
-
UpdateProfileCommandInput,
|
|
120
|
-
UpdateProfileCommandOutput,
|
|
121
|
-
} from "../commands/UpdateProfileCommand";
|
|
122
|
-
import {
|
|
123
|
-
UpdateTrustAnchorCommandInput,
|
|
124
|
-
UpdateTrustAnchorCommandOutput,
|
|
125
|
-
} from "../commands/UpdateTrustAnchorCommand";
|
|
126
|
-
export declare const se_CreateProfileCommand: (
|
|
127
|
-
input: CreateProfileCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_CreateTrustAnchorCommand: (
|
|
131
|
-
input: CreateTrustAnchorCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_DeleteAttributeMappingCommand: (
|
|
135
|
-
input: DeleteAttributeMappingCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_DeleteCrlCommand: (
|
|
139
|
-
input: DeleteCrlCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_DeleteProfileCommand: (
|
|
143
|
-
input: DeleteProfileCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_DeleteTrustAnchorCommand: (
|
|
147
|
-
input: DeleteTrustAnchorCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_DisableCrlCommand: (
|
|
151
|
-
input: DisableCrlCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_DisableProfileCommand: (
|
|
155
|
-
input: DisableProfileCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const se_DisableTrustAnchorCommand: (
|
|
159
|
-
input: DisableTrustAnchorCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_EnableCrlCommand: (
|
|
163
|
-
input: EnableCrlCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_EnableProfileCommand: (
|
|
167
|
-
input: EnableProfileCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_EnableTrustAnchorCommand: (
|
|
171
|
-
input: EnableTrustAnchorCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const se_GetCrlCommand: (
|
|
175
|
-
input: GetCrlCommandInput,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<__HttpRequest>;
|
|
178
|
-
export declare const se_GetProfileCommand: (
|
|
179
|
-
input: GetProfileCommandInput,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<__HttpRequest>;
|
|
182
|
-
export declare const se_GetSubjectCommand: (
|
|
183
|
-
input: GetSubjectCommandInput,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<__HttpRequest>;
|
|
186
|
-
export declare const se_GetTrustAnchorCommand: (
|
|
187
|
-
input: GetTrustAnchorCommandInput,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<__HttpRequest>;
|
|
190
|
-
export declare const se_ImportCrlCommand: (
|
|
191
|
-
input: ImportCrlCommandInput,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<__HttpRequest>;
|
|
194
|
-
export declare const se_ListCrlsCommand: (
|
|
195
|
-
input: ListCrlsCommandInput,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<__HttpRequest>;
|
|
198
|
-
export declare const se_ListProfilesCommand: (
|
|
199
|
-
input: ListProfilesCommandInput,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<__HttpRequest>;
|
|
202
|
-
export declare const se_ListSubjectsCommand: (
|
|
203
|
-
input: ListSubjectsCommandInput,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<__HttpRequest>;
|
|
206
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
207
|
-
input: ListTagsForResourceCommandInput,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<__HttpRequest>;
|
|
210
|
-
export declare const se_ListTrustAnchorsCommand: (
|
|
211
|
-
input: ListTrustAnchorsCommandInput,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<__HttpRequest>;
|
|
214
|
-
export declare const se_PutAttributeMappingCommand: (
|
|
215
|
-
input: PutAttributeMappingCommandInput,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<__HttpRequest>;
|
|
218
|
-
export declare const se_PutNotificationSettingsCommand: (
|
|
219
|
-
input: PutNotificationSettingsCommandInput,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<__HttpRequest>;
|
|
222
|
-
export declare const se_ResetNotificationSettingsCommand: (
|
|
223
|
-
input: ResetNotificationSettingsCommandInput,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<__HttpRequest>;
|
|
226
|
-
export declare const se_TagResourceCommand: (
|
|
227
|
-
input: TagResourceCommandInput,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<__HttpRequest>;
|
|
230
|
-
export declare const se_UntagResourceCommand: (
|
|
231
|
-
input: UntagResourceCommandInput,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<__HttpRequest>;
|
|
234
|
-
export declare const se_UpdateCrlCommand: (
|
|
235
|
-
input: UpdateCrlCommandInput,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<__HttpRequest>;
|
|
238
|
-
export declare const se_UpdateProfileCommand: (
|
|
239
|
-
input: UpdateProfileCommandInput,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<__HttpRequest>;
|
|
242
|
-
export declare const se_UpdateTrustAnchorCommand: (
|
|
243
|
-
input: UpdateTrustAnchorCommandInput,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<__HttpRequest>;
|
|
246
|
-
export declare const de_CreateProfileCommand: (
|
|
247
|
-
output: __HttpResponse,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<CreateProfileCommandOutput>;
|
|
250
|
-
export declare const de_CreateTrustAnchorCommand: (
|
|
251
|
-
output: __HttpResponse,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<CreateTrustAnchorCommandOutput>;
|
|
254
|
-
export declare const de_DeleteAttributeMappingCommand: (
|
|
255
|
-
output: __HttpResponse,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<DeleteAttributeMappingCommandOutput>;
|
|
258
|
-
export declare const de_DeleteCrlCommand: (
|
|
259
|
-
output: __HttpResponse,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<DeleteCrlCommandOutput>;
|
|
262
|
-
export declare const de_DeleteProfileCommand: (
|
|
263
|
-
output: __HttpResponse,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<DeleteProfileCommandOutput>;
|
|
266
|
-
export declare const de_DeleteTrustAnchorCommand: (
|
|
267
|
-
output: __HttpResponse,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<DeleteTrustAnchorCommandOutput>;
|
|
270
|
-
export declare const de_DisableCrlCommand: (
|
|
271
|
-
output: __HttpResponse,
|
|
272
|
-
context: __SerdeContext
|
|
273
|
-
) => Promise<DisableCrlCommandOutput>;
|
|
274
|
-
export declare const de_DisableProfileCommand: (
|
|
275
|
-
output: __HttpResponse,
|
|
276
|
-
context: __SerdeContext
|
|
277
|
-
) => Promise<DisableProfileCommandOutput>;
|
|
278
|
-
export declare const de_DisableTrustAnchorCommand: (
|
|
279
|
-
output: __HttpResponse,
|
|
280
|
-
context: __SerdeContext
|
|
281
|
-
) => Promise<DisableTrustAnchorCommandOutput>;
|
|
282
|
-
export declare const de_EnableCrlCommand: (
|
|
283
|
-
output: __HttpResponse,
|
|
284
|
-
context: __SerdeContext
|
|
285
|
-
) => Promise<EnableCrlCommandOutput>;
|
|
286
|
-
export declare const de_EnableProfileCommand: (
|
|
287
|
-
output: __HttpResponse,
|
|
288
|
-
context: __SerdeContext
|
|
289
|
-
) => Promise<EnableProfileCommandOutput>;
|
|
290
|
-
export declare const de_EnableTrustAnchorCommand: (
|
|
291
|
-
output: __HttpResponse,
|
|
292
|
-
context: __SerdeContext
|
|
293
|
-
) => Promise<EnableTrustAnchorCommandOutput>;
|
|
294
|
-
export declare const de_GetCrlCommand: (
|
|
295
|
-
output: __HttpResponse,
|
|
296
|
-
context: __SerdeContext
|
|
297
|
-
) => Promise<GetCrlCommandOutput>;
|
|
298
|
-
export declare const de_GetProfileCommand: (
|
|
299
|
-
output: __HttpResponse,
|
|
300
|
-
context: __SerdeContext
|
|
301
|
-
) => Promise<GetProfileCommandOutput>;
|
|
302
|
-
export declare const de_GetSubjectCommand: (
|
|
303
|
-
output: __HttpResponse,
|
|
304
|
-
context: __SerdeContext
|
|
305
|
-
) => Promise<GetSubjectCommandOutput>;
|
|
306
|
-
export declare const de_GetTrustAnchorCommand: (
|
|
307
|
-
output: __HttpResponse,
|
|
308
|
-
context: __SerdeContext
|
|
309
|
-
) => Promise<GetTrustAnchorCommandOutput>;
|
|
310
|
-
export declare const de_ImportCrlCommand: (
|
|
311
|
-
output: __HttpResponse,
|
|
312
|
-
context: __SerdeContext
|
|
313
|
-
) => Promise<ImportCrlCommandOutput>;
|
|
314
|
-
export declare const de_ListCrlsCommand: (
|
|
315
|
-
output: __HttpResponse,
|
|
316
|
-
context: __SerdeContext
|
|
317
|
-
) => Promise<ListCrlsCommandOutput>;
|
|
318
|
-
export declare const de_ListProfilesCommand: (
|
|
319
|
-
output: __HttpResponse,
|
|
320
|
-
context: __SerdeContext
|
|
321
|
-
) => Promise<ListProfilesCommandOutput>;
|
|
322
|
-
export declare const de_ListSubjectsCommand: (
|
|
323
|
-
output: __HttpResponse,
|
|
324
|
-
context: __SerdeContext
|
|
325
|
-
) => Promise<ListSubjectsCommandOutput>;
|
|
326
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
327
|
-
output: __HttpResponse,
|
|
328
|
-
context: __SerdeContext
|
|
329
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
330
|
-
export declare const de_ListTrustAnchorsCommand: (
|
|
331
|
-
output: __HttpResponse,
|
|
332
|
-
context: __SerdeContext
|
|
333
|
-
) => Promise<ListTrustAnchorsCommandOutput>;
|
|
334
|
-
export declare const de_PutAttributeMappingCommand: (
|
|
335
|
-
output: __HttpResponse,
|
|
336
|
-
context: __SerdeContext
|
|
337
|
-
) => Promise<PutAttributeMappingCommandOutput>;
|
|
338
|
-
export declare const de_PutNotificationSettingsCommand: (
|
|
339
|
-
output: __HttpResponse,
|
|
340
|
-
context: __SerdeContext
|
|
341
|
-
) => Promise<PutNotificationSettingsCommandOutput>;
|
|
342
|
-
export declare const de_ResetNotificationSettingsCommand: (
|
|
343
|
-
output: __HttpResponse,
|
|
344
|
-
context: __SerdeContext
|
|
345
|
-
) => Promise<ResetNotificationSettingsCommandOutput>;
|
|
346
|
-
export declare const de_TagResourceCommand: (
|
|
347
|
-
output: __HttpResponse,
|
|
348
|
-
context: __SerdeContext
|
|
349
|
-
) => Promise<TagResourceCommandOutput>;
|
|
350
|
-
export declare const de_UntagResourceCommand: (
|
|
351
|
-
output: __HttpResponse,
|
|
352
|
-
context: __SerdeContext
|
|
353
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
354
|
-
export declare const de_UpdateCrlCommand: (
|
|
355
|
-
output: __HttpResponse,
|
|
356
|
-
context: __SerdeContext
|
|
357
|
-
) => Promise<UpdateCrlCommandOutput>;
|
|
358
|
-
export declare const de_UpdateProfileCommand: (
|
|
359
|
-
output: __HttpResponse,
|
|
360
|
-
context: __SerdeContext
|
|
361
|
-
) => Promise<UpdateProfileCommandOutput>;
|
|
362
|
-
export declare const de_UpdateTrustAnchorCommand: (
|
|
363
|
-
output: __HttpResponse,
|
|
364
|
-
context: __SerdeContext
|
|
365
|
-
) => Promise<UpdateTrustAnchorCommandOutput>;
|