@aws-sdk/client-rolesanywhere 3.306.0 → 3.310.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/dist-cjs/commands/CreateProfileCommand.js +2 -2
  2. package/dist-cjs/commands/CreateTrustAnchorCommand.js +2 -2
  3. package/dist-cjs/commands/DeleteCrlCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteProfileCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteTrustAnchorCommand.js +2 -2
  6. package/dist-cjs/commands/DisableCrlCommand.js +2 -2
  7. package/dist-cjs/commands/DisableProfileCommand.js +2 -2
  8. package/dist-cjs/commands/DisableTrustAnchorCommand.js +2 -2
  9. package/dist-cjs/commands/EnableCrlCommand.js +2 -2
  10. package/dist-cjs/commands/EnableProfileCommand.js +2 -2
  11. package/dist-cjs/commands/EnableTrustAnchorCommand.js +2 -2
  12. package/dist-cjs/commands/GetCrlCommand.js +2 -2
  13. package/dist-cjs/commands/GetProfileCommand.js +2 -2
  14. package/dist-cjs/commands/GetSubjectCommand.js +2 -2
  15. package/dist-cjs/commands/GetTrustAnchorCommand.js +2 -2
  16. package/dist-cjs/commands/ImportCrlCommand.js +2 -2
  17. package/dist-cjs/commands/ListCrlsCommand.js +2 -2
  18. package/dist-cjs/commands/ListProfilesCommand.js +2 -2
  19. package/dist-cjs/commands/ListSubjectsCommand.js +2 -2
  20. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  21. package/dist-cjs/commands/ListTrustAnchorsCommand.js +2 -2
  22. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  23. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  24. package/dist-cjs/commands/UpdateCrlCommand.js +2 -2
  25. package/dist-cjs/commands/UpdateProfileCommand.js +2 -2
  26. package/dist-cjs/commands/UpdateTrustAnchorCommand.js +2 -2
  27. package/dist-cjs/protocols/Aws_restJson1.js +299 -305
  28. package/dist-es/commands/CreateProfileCommand.js +3 -3
  29. package/dist-es/commands/CreateTrustAnchorCommand.js +3 -3
  30. package/dist-es/commands/DeleteCrlCommand.js +3 -3
  31. package/dist-es/commands/DeleteProfileCommand.js +3 -3
  32. package/dist-es/commands/DeleteTrustAnchorCommand.js +3 -3
  33. package/dist-es/commands/DisableCrlCommand.js +3 -3
  34. package/dist-es/commands/DisableProfileCommand.js +3 -3
  35. package/dist-es/commands/DisableTrustAnchorCommand.js +3 -3
  36. package/dist-es/commands/EnableCrlCommand.js +3 -3
  37. package/dist-es/commands/EnableProfileCommand.js +3 -3
  38. package/dist-es/commands/EnableTrustAnchorCommand.js +3 -3
  39. package/dist-es/commands/GetCrlCommand.js +3 -3
  40. package/dist-es/commands/GetProfileCommand.js +3 -3
  41. package/dist-es/commands/GetSubjectCommand.js +3 -3
  42. package/dist-es/commands/GetTrustAnchorCommand.js +3 -3
  43. package/dist-es/commands/ImportCrlCommand.js +3 -3
  44. package/dist-es/commands/ListCrlsCommand.js +3 -3
  45. package/dist-es/commands/ListProfilesCommand.js +3 -3
  46. package/dist-es/commands/ListSubjectsCommand.js +3 -3
  47. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  48. package/dist-es/commands/ListTrustAnchorsCommand.js +3 -3
  49. package/dist-es/commands/TagResourceCommand.js +3 -3
  50. package/dist-es/commands/UntagResourceCommand.js +3 -3
  51. package/dist-es/commands/UpdateCrlCommand.js +3 -3
  52. package/dist-es/commands/UpdateProfileCommand.js +3 -3
  53. package/dist-es/commands/UpdateTrustAnchorCommand.js +3 -3
  54. package/dist-es/protocols/Aws_restJson1.js +245 -251
  55. package/dist-types/protocols/Aws_restJson1.d.ts +208 -52
  56. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +52 -52
  57. package/package.json +35 -35
@@ -26,55 +26,211 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
26
26
  import { UpdateCrlCommandInput, UpdateCrlCommandOutput } from "../commands/UpdateCrlCommand";
27
27
  import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "../commands/UpdateProfileCommand";
28
28
  import { UpdateTrustAnchorCommandInput, UpdateTrustAnchorCommandOutput } from "../commands/UpdateTrustAnchorCommand";
29
- export declare const serializeAws_restJson1CreateProfileCommand: (input: CreateProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1CreateTrustAnchorCommand: (input: CreateTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1DeleteCrlCommand: (input: DeleteCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1DeleteProfileCommand: (input: DeleteProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1DeleteTrustAnchorCommand: (input: DeleteTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1DisableCrlCommand: (input: DisableCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1DisableProfileCommand: (input: DisableProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1DisableTrustAnchorCommand: (input: DisableTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1EnableCrlCommand: (input: EnableCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1EnableProfileCommand: (input: EnableProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1EnableTrustAnchorCommand: (input: EnableTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1GetCrlCommand: (input: GetCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1GetProfileCommand: (input: GetProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1GetSubjectCommand: (input: GetSubjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1GetTrustAnchorCommand: (input: GetTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1ImportCrlCommand: (input: ImportCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1ListCrlsCommand: (input: ListCrlsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1ListProfilesCommand: (input: ListProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1ListSubjectsCommand: (input: ListSubjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1ListTrustAnchorsCommand: (input: ListTrustAnchorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_restJson1UpdateCrlCommand: (input: UpdateCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_restJson1UpdateProfileCommand: (input: UpdateProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_restJson1UpdateTrustAnchorCommand: (input: UpdateTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const deserializeAws_restJson1CreateProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProfileCommandOutput>;
56
- export declare const deserializeAws_restJson1CreateTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTrustAnchorCommandOutput>;
57
- export declare const deserializeAws_restJson1DeleteCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCrlCommandOutput>;
58
- export declare const deserializeAws_restJson1DeleteProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProfileCommandOutput>;
59
- export declare const deserializeAws_restJson1DeleteTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTrustAnchorCommandOutput>;
60
- export declare const deserializeAws_restJson1DisableCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableCrlCommandOutput>;
61
- export declare const deserializeAws_restJson1DisableProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableProfileCommandOutput>;
62
- export declare const deserializeAws_restJson1DisableTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableTrustAnchorCommandOutput>;
63
- export declare const deserializeAws_restJson1EnableCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableCrlCommandOutput>;
64
- export declare const deserializeAws_restJson1EnableProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableProfileCommandOutput>;
65
- export declare const deserializeAws_restJson1EnableTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableTrustAnchorCommandOutput>;
66
- export declare const deserializeAws_restJson1GetCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCrlCommandOutput>;
67
- export declare const deserializeAws_restJson1GetProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProfileCommandOutput>;
68
- export declare const deserializeAws_restJson1GetSubjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSubjectCommandOutput>;
69
- export declare const deserializeAws_restJson1GetTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTrustAnchorCommandOutput>;
70
- export declare const deserializeAws_restJson1ImportCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportCrlCommandOutput>;
71
- export declare const deserializeAws_restJson1ListCrlsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCrlsCommandOutput>;
72
- export declare const deserializeAws_restJson1ListProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProfilesCommandOutput>;
73
- export declare const deserializeAws_restJson1ListSubjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSubjectsCommandOutput>;
74
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
75
- export declare const deserializeAws_restJson1ListTrustAnchorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTrustAnchorsCommandOutput>;
76
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
77
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
78
- export declare const deserializeAws_restJson1UpdateCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCrlCommandOutput>;
79
- export declare const deserializeAws_restJson1UpdateProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProfileCommandOutput>;
80
- export declare const deserializeAws_restJson1UpdateTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTrustAnchorCommandOutput>;
29
+ /**
30
+ * serializeAws_restJson1CreateProfileCommand
31
+ */
32
+ export declare const se_CreateProfileCommand: (input: CreateProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ /**
34
+ * serializeAws_restJson1CreateTrustAnchorCommand
35
+ */
36
+ export declare const se_CreateTrustAnchorCommand: (input: CreateTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
+ /**
38
+ * serializeAws_restJson1DeleteCrlCommand
39
+ */
40
+ export declare const se_DeleteCrlCommand: (input: DeleteCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ /**
42
+ * serializeAws_restJson1DeleteProfileCommand
43
+ */
44
+ export declare const se_DeleteProfileCommand: (input: DeleteProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
+ /**
46
+ * serializeAws_restJson1DeleteTrustAnchorCommand
47
+ */
48
+ export declare const se_DeleteTrustAnchorCommand: (input: DeleteTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
+ /**
50
+ * serializeAws_restJson1DisableCrlCommand
51
+ */
52
+ export declare const se_DisableCrlCommand: (input: DisableCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ /**
54
+ * serializeAws_restJson1DisableProfileCommand
55
+ */
56
+ export declare const se_DisableProfileCommand: (input: DisableProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
+ /**
58
+ * serializeAws_restJson1DisableTrustAnchorCommand
59
+ */
60
+ export declare const se_DisableTrustAnchorCommand: (input: DisableTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
+ /**
62
+ * serializeAws_restJson1EnableCrlCommand
63
+ */
64
+ export declare const se_EnableCrlCommand: (input: EnableCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
+ /**
66
+ * serializeAws_restJson1EnableProfileCommand
67
+ */
68
+ export declare const se_EnableProfileCommand: (input: EnableProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
+ /**
70
+ * serializeAws_restJson1EnableTrustAnchorCommand
71
+ */
72
+ export declare const se_EnableTrustAnchorCommand: (input: EnableTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
+ /**
74
+ * serializeAws_restJson1GetCrlCommand
75
+ */
76
+ export declare const se_GetCrlCommand: (input: GetCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
+ /**
78
+ * serializeAws_restJson1GetProfileCommand
79
+ */
80
+ export declare const se_GetProfileCommand: (input: GetProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
+ /**
82
+ * serializeAws_restJson1GetSubjectCommand
83
+ */
84
+ export declare const se_GetSubjectCommand: (input: GetSubjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
+ /**
86
+ * serializeAws_restJson1GetTrustAnchorCommand
87
+ */
88
+ export declare const se_GetTrustAnchorCommand: (input: GetTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
+ /**
90
+ * serializeAws_restJson1ImportCrlCommand
91
+ */
92
+ export declare const se_ImportCrlCommand: (input: ImportCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
+ /**
94
+ * serializeAws_restJson1ListCrlsCommand
95
+ */
96
+ export declare const se_ListCrlsCommand: (input: ListCrlsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
+ /**
98
+ * serializeAws_restJson1ListProfilesCommand
99
+ */
100
+ export declare const se_ListProfilesCommand: (input: ListProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
+ /**
102
+ * serializeAws_restJson1ListSubjectsCommand
103
+ */
104
+ export declare const se_ListSubjectsCommand: (input: ListSubjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
+ /**
106
+ * serializeAws_restJson1ListTagsForResourceCommand
107
+ */
108
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
109
+ /**
110
+ * serializeAws_restJson1ListTrustAnchorsCommand
111
+ */
112
+ export declare const se_ListTrustAnchorsCommand: (input: ListTrustAnchorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
+ /**
114
+ * serializeAws_restJson1TagResourceCommand
115
+ */
116
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
117
+ /**
118
+ * serializeAws_restJson1UntagResourceCommand
119
+ */
120
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
121
+ /**
122
+ * serializeAws_restJson1UpdateCrlCommand
123
+ */
124
+ export declare const se_UpdateCrlCommand: (input: UpdateCrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
125
+ /**
126
+ * serializeAws_restJson1UpdateProfileCommand
127
+ */
128
+ export declare const se_UpdateProfileCommand: (input: UpdateProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
129
+ /**
130
+ * serializeAws_restJson1UpdateTrustAnchorCommand
131
+ */
132
+ export declare const se_UpdateTrustAnchorCommand: (input: UpdateTrustAnchorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
133
+ /**
134
+ * deserializeAws_restJson1CreateProfileCommand
135
+ */
136
+ export declare const de_CreateProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProfileCommandOutput>;
137
+ /**
138
+ * deserializeAws_restJson1CreateTrustAnchorCommand
139
+ */
140
+ export declare const de_CreateTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTrustAnchorCommandOutput>;
141
+ /**
142
+ * deserializeAws_restJson1DeleteCrlCommand
143
+ */
144
+ export declare const de_DeleteCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCrlCommandOutput>;
145
+ /**
146
+ * deserializeAws_restJson1DeleteProfileCommand
147
+ */
148
+ export declare const de_DeleteProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProfileCommandOutput>;
149
+ /**
150
+ * deserializeAws_restJson1DeleteTrustAnchorCommand
151
+ */
152
+ export declare const de_DeleteTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTrustAnchorCommandOutput>;
153
+ /**
154
+ * deserializeAws_restJson1DisableCrlCommand
155
+ */
156
+ export declare const de_DisableCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableCrlCommandOutput>;
157
+ /**
158
+ * deserializeAws_restJson1DisableProfileCommand
159
+ */
160
+ export declare const de_DisableProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableProfileCommandOutput>;
161
+ /**
162
+ * deserializeAws_restJson1DisableTrustAnchorCommand
163
+ */
164
+ export declare const de_DisableTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableTrustAnchorCommandOutput>;
165
+ /**
166
+ * deserializeAws_restJson1EnableCrlCommand
167
+ */
168
+ export declare const de_EnableCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableCrlCommandOutput>;
169
+ /**
170
+ * deserializeAws_restJson1EnableProfileCommand
171
+ */
172
+ export declare const de_EnableProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableProfileCommandOutput>;
173
+ /**
174
+ * deserializeAws_restJson1EnableTrustAnchorCommand
175
+ */
176
+ export declare const de_EnableTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableTrustAnchorCommandOutput>;
177
+ /**
178
+ * deserializeAws_restJson1GetCrlCommand
179
+ */
180
+ export declare const de_GetCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCrlCommandOutput>;
181
+ /**
182
+ * deserializeAws_restJson1GetProfileCommand
183
+ */
184
+ export declare const de_GetProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProfileCommandOutput>;
185
+ /**
186
+ * deserializeAws_restJson1GetSubjectCommand
187
+ */
188
+ export declare const de_GetSubjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSubjectCommandOutput>;
189
+ /**
190
+ * deserializeAws_restJson1GetTrustAnchorCommand
191
+ */
192
+ export declare const de_GetTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTrustAnchorCommandOutput>;
193
+ /**
194
+ * deserializeAws_restJson1ImportCrlCommand
195
+ */
196
+ export declare const de_ImportCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ImportCrlCommandOutput>;
197
+ /**
198
+ * deserializeAws_restJson1ListCrlsCommand
199
+ */
200
+ export declare const de_ListCrlsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCrlsCommandOutput>;
201
+ /**
202
+ * deserializeAws_restJson1ListProfilesCommand
203
+ */
204
+ export declare const de_ListProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProfilesCommandOutput>;
205
+ /**
206
+ * deserializeAws_restJson1ListSubjectsCommand
207
+ */
208
+ export declare const de_ListSubjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSubjectsCommandOutput>;
209
+ /**
210
+ * deserializeAws_restJson1ListTagsForResourceCommand
211
+ */
212
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
213
+ /**
214
+ * deserializeAws_restJson1ListTrustAnchorsCommand
215
+ */
216
+ export declare const de_ListTrustAnchorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTrustAnchorsCommandOutput>;
217
+ /**
218
+ * deserializeAws_restJson1TagResourceCommand
219
+ */
220
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
221
+ /**
222
+ * deserializeAws_restJson1UntagResourceCommand
223
+ */
224
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
225
+ /**
226
+ * deserializeAws_restJson1UpdateCrlCommand
227
+ */
228
+ export declare const de_UpdateCrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCrlCommandOutput>;
229
+ /**
230
+ * deserializeAws_restJson1UpdateProfileCommand
231
+ */
232
+ export declare const de_UpdateProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProfileCommandOutput>;
233
+ /**
234
+ * deserializeAws_restJson1UpdateTrustAnchorCommand
235
+ */
236
+ export declare const de_UpdateTrustAnchorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTrustAnchorCommandOutput>;
@@ -107,211 +107,211 @@ import {
107
107
  UpdateTrustAnchorCommandInput,
108
108
  UpdateTrustAnchorCommandOutput,
109
109
  } from "../commands/UpdateTrustAnchorCommand";
110
- export declare const serializeAws_restJson1CreateProfileCommand: (
110
+ export declare const se_CreateProfileCommand: (
111
111
  input: CreateProfileCommandInput,
112
112
  context: __SerdeContext
113
113
  ) => Promise<__HttpRequest>;
114
- export declare const serializeAws_restJson1CreateTrustAnchorCommand: (
114
+ export declare const se_CreateTrustAnchorCommand: (
115
115
  input: CreateTrustAnchorCommandInput,
116
116
  context: __SerdeContext
117
117
  ) => Promise<__HttpRequest>;
118
- export declare const serializeAws_restJson1DeleteCrlCommand: (
118
+ export declare const se_DeleteCrlCommand: (
119
119
  input: DeleteCrlCommandInput,
120
120
  context: __SerdeContext
121
121
  ) => Promise<__HttpRequest>;
122
- export declare const serializeAws_restJson1DeleteProfileCommand: (
122
+ export declare const se_DeleteProfileCommand: (
123
123
  input: DeleteProfileCommandInput,
124
124
  context: __SerdeContext
125
125
  ) => Promise<__HttpRequest>;
126
- export declare const serializeAws_restJson1DeleteTrustAnchorCommand: (
126
+ export declare const se_DeleteTrustAnchorCommand: (
127
127
  input: DeleteTrustAnchorCommandInput,
128
128
  context: __SerdeContext
129
129
  ) => Promise<__HttpRequest>;
130
- export declare const serializeAws_restJson1DisableCrlCommand: (
130
+ export declare const se_DisableCrlCommand: (
131
131
  input: DisableCrlCommandInput,
132
132
  context: __SerdeContext
133
133
  ) => Promise<__HttpRequest>;
134
- export declare const serializeAws_restJson1DisableProfileCommand: (
134
+ export declare const se_DisableProfileCommand: (
135
135
  input: DisableProfileCommandInput,
136
136
  context: __SerdeContext
137
137
  ) => Promise<__HttpRequest>;
138
- export declare const serializeAws_restJson1DisableTrustAnchorCommand: (
138
+ export declare const se_DisableTrustAnchorCommand: (
139
139
  input: DisableTrustAnchorCommandInput,
140
140
  context: __SerdeContext
141
141
  ) => Promise<__HttpRequest>;
142
- export declare const serializeAws_restJson1EnableCrlCommand: (
142
+ export declare const se_EnableCrlCommand: (
143
143
  input: EnableCrlCommandInput,
144
144
  context: __SerdeContext
145
145
  ) => Promise<__HttpRequest>;
146
- export declare const serializeAws_restJson1EnableProfileCommand: (
146
+ export declare const se_EnableProfileCommand: (
147
147
  input: EnableProfileCommandInput,
148
148
  context: __SerdeContext
149
149
  ) => Promise<__HttpRequest>;
150
- export declare const serializeAws_restJson1EnableTrustAnchorCommand: (
150
+ export declare const se_EnableTrustAnchorCommand: (
151
151
  input: EnableTrustAnchorCommandInput,
152
152
  context: __SerdeContext
153
153
  ) => Promise<__HttpRequest>;
154
- export declare const serializeAws_restJson1GetCrlCommand: (
154
+ export declare const se_GetCrlCommand: (
155
155
  input: GetCrlCommandInput,
156
156
  context: __SerdeContext
157
157
  ) => Promise<__HttpRequest>;
158
- export declare const serializeAws_restJson1GetProfileCommand: (
158
+ export declare const se_GetProfileCommand: (
159
159
  input: GetProfileCommandInput,
160
160
  context: __SerdeContext
161
161
  ) => Promise<__HttpRequest>;
162
- export declare const serializeAws_restJson1GetSubjectCommand: (
162
+ export declare const se_GetSubjectCommand: (
163
163
  input: GetSubjectCommandInput,
164
164
  context: __SerdeContext
165
165
  ) => Promise<__HttpRequest>;
166
- export declare const serializeAws_restJson1GetTrustAnchorCommand: (
166
+ export declare const se_GetTrustAnchorCommand: (
167
167
  input: GetTrustAnchorCommandInput,
168
168
  context: __SerdeContext
169
169
  ) => Promise<__HttpRequest>;
170
- export declare const serializeAws_restJson1ImportCrlCommand: (
170
+ export declare const se_ImportCrlCommand: (
171
171
  input: ImportCrlCommandInput,
172
172
  context: __SerdeContext
173
173
  ) => Promise<__HttpRequest>;
174
- export declare const serializeAws_restJson1ListCrlsCommand: (
174
+ export declare const se_ListCrlsCommand: (
175
175
  input: ListCrlsCommandInput,
176
176
  context: __SerdeContext
177
177
  ) => Promise<__HttpRequest>;
178
- export declare const serializeAws_restJson1ListProfilesCommand: (
178
+ export declare const se_ListProfilesCommand: (
179
179
  input: ListProfilesCommandInput,
180
180
  context: __SerdeContext
181
181
  ) => Promise<__HttpRequest>;
182
- export declare const serializeAws_restJson1ListSubjectsCommand: (
182
+ export declare const se_ListSubjectsCommand: (
183
183
  input: ListSubjectsCommandInput,
184
184
  context: __SerdeContext
185
185
  ) => Promise<__HttpRequest>;
186
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (
186
+ export declare const se_ListTagsForResourceCommand: (
187
187
  input: ListTagsForResourceCommandInput,
188
188
  context: __SerdeContext
189
189
  ) => Promise<__HttpRequest>;
190
- export declare const serializeAws_restJson1ListTrustAnchorsCommand: (
190
+ export declare const se_ListTrustAnchorsCommand: (
191
191
  input: ListTrustAnchorsCommandInput,
192
192
  context: __SerdeContext
193
193
  ) => Promise<__HttpRequest>;
194
- export declare const serializeAws_restJson1TagResourceCommand: (
194
+ export declare const se_TagResourceCommand: (
195
195
  input: TagResourceCommandInput,
196
196
  context: __SerdeContext
197
197
  ) => Promise<__HttpRequest>;
198
- export declare const serializeAws_restJson1UntagResourceCommand: (
198
+ export declare const se_UntagResourceCommand: (
199
199
  input: UntagResourceCommandInput,
200
200
  context: __SerdeContext
201
201
  ) => Promise<__HttpRequest>;
202
- export declare const serializeAws_restJson1UpdateCrlCommand: (
202
+ export declare const se_UpdateCrlCommand: (
203
203
  input: UpdateCrlCommandInput,
204
204
  context: __SerdeContext
205
205
  ) => Promise<__HttpRequest>;
206
- export declare const serializeAws_restJson1UpdateProfileCommand: (
206
+ export declare const se_UpdateProfileCommand: (
207
207
  input: UpdateProfileCommandInput,
208
208
  context: __SerdeContext
209
209
  ) => Promise<__HttpRequest>;
210
- export declare const serializeAws_restJson1UpdateTrustAnchorCommand: (
210
+ export declare const se_UpdateTrustAnchorCommand: (
211
211
  input: UpdateTrustAnchorCommandInput,
212
212
  context: __SerdeContext
213
213
  ) => Promise<__HttpRequest>;
214
- export declare const deserializeAws_restJson1CreateProfileCommand: (
214
+ export declare const de_CreateProfileCommand: (
215
215
  output: __HttpResponse,
216
216
  context: __SerdeContext
217
217
  ) => Promise<CreateProfileCommandOutput>;
218
- export declare const deserializeAws_restJson1CreateTrustAnchorCommand: (
218
+ export declare const de_CreateTrustAnchorCommand: (
219
219
  output: __HttpResponse,
220
220
  context: __SerdeContext
221
221
  ) => Promise<CreateTrustAnchorCommandOutput>;
222
- export declare const deserializeAws_restJson1DeleteCrlCommand: (
222
+ export declare const de_DeleteCrlCommand: (
223
223
  output: __HttpResponse,
224
224
  context: __SerdeContext
225
225
  ) => Promise<DeleteCrlCommandOutput>;
226
- export declare const deserializeAws_restJson1DeleteProfileCommand: (
226
+ export declare const de_DeleteProfileCommand: (
227
227
  output: __HttpResponse,
228
228
  context: __SerdeContext
229
229
  ) => Promise<DeleteProfileCommandOutput>;
230
- export declare const deserializeAws_restJson1DeleteTrustAnchorCommand: (
230
+ export declare const de_DeleteTrustAnchorCommand: (
231
231
  output: __HttpResponse,
232
232
  context: __SerdeContext
233
233
  ) => Promise<DeleteTrustAnchorCommandOutput>;
234
- export declare const deserializeAws_restJson1DisableCrlCommand: (
234
+ export declare const de_DisableCrlCommand: (
235
235
  output: __HttpResponse,
236
236
  context: __SerdeContext
237
237
  ) => Promise<DisableCrlCommandOutput>;
238
- export declare const deserializeAws_restJson1DisableProfileCommand: (
238
+ export declare const de_DisableProfileCommand: (
239
239
  output: __HttpResponse,
240
240
  context: __SerdeContext
241
241
  ) => Promise<DisableProfileCommandOutput>;
242
- export declare const deserializeAws_restJson1DisableTrustAnchorCommand: (
242
+ export declare const de_DisableTrustAnchorCommand: (
243
243
  output: __HttpResponse,
244
244
  context: __SerdeContext
245
245
  ) => Promise<DisableTrustAnchorCommandOutput>;
246
- export declare const deserializeAws_restJson1EnableCrlCommand: (
246
+ export declare const de_EnableCrlCommand: (
247
247
  output: __HttpResponse,
248
248
  context: __SerdeContext
249
249
  ) => Promise<EnableCrlCommandOutput>;
250
- export declare const deserializeAws_restJson1EnableProfileCommand: (
250
+ export declare const de_EnableProfileCommand: (
251
251
  output: __HttpResponse,
252
252
  context: __SerdeContext
253
253
  ) => Promise<EnableProfileCommandOutput>;
254
- export declare const deserializeAws_restJson1EnableTrustAnchorCommand: (
254
+ export declare const de_EnableTrustAnchorCommand: (
255
255
  output: __HttpResponse,
256
256
  context: __SerdeContext
257
257
  ) => Promise<EnableTrustAnchorCommandOutput>;
258
- export declare const deserializeAws_restJson1GetCrlCommand: (
258
+ export declare const de_GetCrlCommand: (
259
259
  output: __HttpResponse,
260
260
  context: __SerdeContext
261
261
  ) => Promise<GetCrlCommandOutput>;
262
- export declare const deserializeAws_restJson1GetProfileCommand: (
262
+ export declare const de_GetProfileCommand: (
263
263
  output: __HttpResponse,
264
264
  context: __SerdeContext
265
265
  ) => Promise<GetProfileCommandOutput>;
266
- export declare const deserializeAws_restJson1GetSubjectCommand: (
266
+ export declare const de_GetSubjectCommand: (
267
267
  output: __HttpResponse,
268
268
  context: __SerdeContext
269
269
  ) => Promise<GetSubjectCommandOutput>;
270
- export declare const deserializeAws_restJson1GetTrustAnchorCommand: (
270
+ export declare const de_GetTrustAnchorCommand: (
271
271
  output: __HttpResponse,
272
272
  context: __SerdeContext
273
273
  ) => Promise<GetTrustAnchorCommandOutput>;
274
- export declare const deserializeAws_restJson1ImportCrlCommand: (
274
+ export declare const de_ImportCrlCommand: (
275
275
  output: __HttpResponse,
276
276
  context: __SerdeContext
277
277
  ) => Promise<ImportCrlCommandOutput>;
278
- export declare const deserializeAws_restJson1ListCrlsCommand: (
278
+ export declare const de_ListCrlsCommand: (
279
279
  output: __HttpResponse,
280
280
  context: __SerdeContext
281
281
  ) => Promise<ListCrlsCommandOutput>;
282
- export declare const deserializeAws_restJson1ListProfilesCommand: (
282
+ export declare const de_ListProfilesCommand: (
283
283
  output: __HttpResponse,
284
284
  context: __SerdeContext
285
285
  ) => Promise<ListProfilesCommandOutput>;
286
- export declare const deserializeAws_restJson1ListSubjectsCommand: (
286
+ export declare const de_ListSubjectsCommand: (
287
287
  output: __HttpResponse,
288
288
  context: __SerdeContext
289
289
  ) => Promise<ListSubjectsCommandOutput>;
290
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
290
+ export declare const de_ListTagsForResourceCommand: (
291
291
  output: __HttpResponse,
292
292
  context: __SerdeContext
293
293
  ) => Promise<ListTagsForResourceCommandOutput>;
294
- export declare const deserializeAws_restJson1ListTrustAnchorsCommand: (
294
+ export declare const de_ListTrustAnchorsCommand: (
295
295
  output: __HttpResponse,
296
296
  context: __SerdeContext
297
297
  ) => Promise<ListTrustAnchorsCommandOutput>;
298
- export declare const deserializeAws_restJson1TagResourceCommand: (
298
+ export declare const de_TagResourceCommand: (
299
299
  output: __HttpResponse,
300
300
  context: __SerdeContext
301
301
  ) => Promise<TagResourceCommandOutput>;
302
- export declare const deserializeAws_restJson1UntagResourceCommand: (
302
+ export declare const de_UntagResourceCommand: (
303
303
  output: __HttpResponse,
304
304
  context: __SerdeContext
305
305
  ) => Promise<UntagResourceCommandOutput>;
306
- export declare const deserializeAws_restJson1UpdateCrlCommand: (
306
+ export declare const de_UpdateCrlCommand: (
307
307
  output: __HttpResponse,
308
308
  context: __SerdeContext
309
309
  ) => Promise<UpdateCrlCommandOutput>;
310
- export declare const deserializeAws_restJson1UpdateProfileCommand: (
310
+ export declare const de_UpdateProfileCommand: (
311
311
  output: __HttpResponse,
312
312
  context: __SerdeContext
313
313
  ) => Promise<UpdateProfileCommandOutput>;
314
- export declare const deserializeAws_restJson1UpdateTrustAnchorCommand: (
314
+ export declare const de_UpdateTrustAnchorCommand: (
315
315
  output: __HttpResponse,
316
316
  context: __SerdeContext
317
317
  ) => Promise<UpdateTrustAnchorCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rolesanywhere",
3
3
  "description": "AWS SDK for JavaScript Rolesanywhere Client for Node.js, Browser and React Native",
4
- "version": "3.306.0",
4
+ "version": "3.310.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,42 +21,42 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.306.0",
25
- "@aws-sdk/config-resolver": "3.306.0",
26
- "@aws-sdk/credential-provider-node": "3.306.0",
27
- "@aws-sdk/fetch-http-handler": "3.306.0",
28
- "@aws-sdk/hash-node": "3.306.0",
29
- "@aws-sdk/invalid-dependency": "3.306.0",
30
- "@aws-sdk/middleware-content-length": "3.306.0",
31
- "@aws-sdk/middleware-endpoint": "3.306.0",
32
- "@aws-sdk/middleware-host-header": "3.306.0",
33
- "@aws-sdk/middleware-logger": "3.306.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.306.0",
35
- "@aws-sdk/middleware-retry": "3.306.0",
36
- "@aws-sdk/middleware-serde": "3.306.0",
37
- "@aws-sdk/middleware-signing": "3.306.0",
38
- "@aws-sdk/middleware-stack": "3.306.0",
39
- "@aws-sdk/middleware-user-agent": "3.306.0",
40
- "@aws-sdk/node-config-provider": "3.306.0",
41
- "@aws-sdk/node-http-handler": "3.306.0",
42
- "@aws-sdk/protocol-http": "3.306.0",
43
- "@aws-sdk/smithy-client": "3.306.0",
44
- "@aws-sdk/types": "3.306.0",
45
- "@aws-sdk/url-parser": "3.306.0",
46
- "@aws-sdk/util-base64": "3.303.0",
47
- "@aws-sdk/util-body-length-browser": "3.303.0",
48
- "@aws-sdk/util-body-length-node": "3.303.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.306.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.306.0",
51
- "@aws-sdk/util-endpoints": "3.306.0",
52
- "@aws-sdk/util-retry": "3.306.0",
53
- "@aws-sdk/util-user-agent-browser": "3.306.0",
54
- "@aws-sdk/util-user-agent-node": "3.306.0",
55
- "@aws-sdk/util-utf8": "3.303.0",
24
+ "@aws-sdk/client-sts": "3.310.0",
25
+ "@aws-sdk/config-resolver": "3.310.0",
26
+ "@aws-sdk/credential-provider-node": "3.310.0",
27
+ "@aws-sdk/fetch-http-handler": "3.310.0",
28
+ "@aws-sdk/hash-node": "3.310.0",
29
+ "@aws-sdk/invalid-dependency": "3.310.0",
30
+ "@aws-sdk/middleware-content-length": "3.310.0",
31
+ "@aws-sdk/middleware-endpoint": "3.310.0",
32
+ "@aws-sdk/middleware-host-header": "3.310.0",
33
+ "@aws-sdk/middleware-logger": "3.310.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.310.0",
35
+ "@aws-sdk/middleware-retry": "3.310.0",
36
+ "@aws-sdk/middleware-serde": "3.310.0",
37
+ "@aws-sdk/middleware-signing": "3.310.0",
38
+ "@aws-sdk/middleware-stack": "3.310.0",
39
+ "@aws-sdk/middleware-user-agent": "3.310.0",
40
+ "@aws-sdk/node-config-provider": "3.310.0",
41
+ "@aws-sdk/node-http-handler": "3.310.0",
42
+ "@aws-sdk/protocol-http": "3.310.0",
43
+ "@aws-sdk/smithy-client": "3.310.0",
44
+ "@aws-sdk/types": "3.310.0",
45
+ "@aws-sdk/url-parser": "3.310.0",
46
+ "@aws-sdk/util-base64": "3.310.0",
47
+ "@aws-sdk/util-body-length-browser": "3.310.0",
48
+ "@aws-sdk/util-body-length-node": "3.310.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.310.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.310.0",
51
+ "@aws-sdk/util-endpoints": "3.310.0",
52
+ "@aws-sdk/util-retry": "3.310.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.310.0",
54
+ "@aws-sdk/util-user-agent-node": "3.310.0",
55
+ "@aws-sdk/util-utf8": "3.310.0",
56
56
  "tslib": "^2.5.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.303.0",
59
+ "@aws-sdk/service-client-documentation-generator": "3.310.0",
60
60
  "@tsconfig/node14": "1.0.3",
61
61
  "@types/node": "^14.14.31",
62
62
  "concurrently": "7.0.0",
@@ -76,7 +76,7 @@
76
76
  }
77
77
  },
78
78
  "files": [
79
- "dist-*"
79
+ "dist-*/**"
80
80
  ],
81
81
  "author": {
82
82
  "name": "AWS SDK for JavaScript Team",