@aws-sdk/client-rolesanywhere 3.169.0 → 3.171.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 (47) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/RolesAnywhere.d.ts +446 -135
  3. package/dist-types/ts3.4/RolesAnywhereClient.d.ts +261 -99
  4. package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateTrustAnchorCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/DeleteCrlCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/DeleteTrustAnchorCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DisableCrlCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DisableProfileCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DisableTrustAnchorCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/EnableCrlCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/EnableProfileCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/EnableTrustAnchorCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/GetCrlCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/GetSubjectCommand.d.ts +35 -17
  18. package/dist-types/ts3.4/commands/GetTrustAnchorCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ImportCrlCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/ListCrlsCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ListSubjectsCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  24. package/dist-types/ts3.4/commands/ListTrustAnchorsCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/UpdateCrlCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +35 -17
  29. package/dist-types/ts3.4/commands/UpdateTrustAnchorCommand.d.ts +36 -17
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -26
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  32. package/dist-types/ts3.4/index.d.ts +6 -6
  33. package/dist-types/ts3.4/models/RolesAnywhereServiceException.d.ts +7 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +332 -430
  36. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  37. package/dist-types/ts3.4/pagination/ListCrlsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListProfilesPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListSubjectsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListTrustAnchorsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  42. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -80
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  47. package/package.json +34 -34
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { RolesAnywhere } from "../RolesAnywhere";
3
- import { RolesAnywhereClient } from "../RolesAnywhereClient";
4
- export interface RolesAnywherePaginationConfiguration extends PaginationConfiguration {
5
- client: RolesAnywhere | RolesAnywhereClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { RolesAnywhere } from "../RolesAnywhere";
3
+ import { RolesAnywhereClient } from "../RolesAnywhereClient";
4
+ export interface RolesAnywherePaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: RolesAnywhere | RolesAnywhereClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListCrlsCommandInput, ListCrlsCommandOutput } from "../commands/ListCrlsCommand";
3
- import { RolesAnywherePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListCrls(config: RolesAnywherePaginationConfiguration, input: ListCrlsCommandInput, ...additionalArguments: any): Paginator<ListCrlsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListCrlsCommandInput,
4
+ ListCrlsCommandOutput,
5
+ } from "../commands/ListCrlsCommand";
6
+ import { RolesAnywherePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListCrls(
8
+ config: RolesAnywherePaginationConfiguration,
9
+ input: ListCrlsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListCrlsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListProfilesCommandInput, ListProfilesCommandOutput } from "../commands/ListProfilesCommand";
3
- import { RolesAnywherePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListProfiles(config: RolesAnywherePaginationConfiguration, input: ListProfilesCommandInput, ...additionalArguments: any): Paginator<ListProfilesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListProfilesCommandInput,
4
+ ListProfilesCommandOutput,
5
+ } from "../commands/ListProfilesCommand";
6
+ import { RolesAnywherePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListProfiles(
8
+ config: RolesAnywherePaginationConfiguration,
9
+ input: ListProfilesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListProfilesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListSubjectsCommandInput, ListSubjectsCommandOutput } from "../commands/ListSubjectsCommand";
3
- import { RolesAnywherePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListSubjects(config: RolesAnywherePaginationConfiguration, input: ListSubjectsCommandInput, ...additionalArguments: any): Paginator<ListSubjectsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSubjectsCommandInput,
4
+ ListSubjectsCommandOutput,
5
+ } from "../commands/ListSubjectsCommand";
6
+ import { RolesAnywherePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSubjects(
8
+ config: RolesAnywherePaginationConfiguration,
9
+ input: ListSubjectsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSubjectsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput } from "../commands/ListTrustAnchorsCommand";
3
- import { RolesAnywherePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListTrustAnchors(config: RolesAnywherePaginationConfiguration, input: ListTrustAnchorsCommandInput, ...additionalArguments: any): Paginator<ListTrustAnchorsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListTrustAnchorsCommandInput,
4
+ ListTrustAnchorsCommandOutput,
5
+ } from "../commands/ListTrustAnchorsCommand";
6
+ import { RolesAnywherePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListTrustAnchors(
8
+ config: RolesAnywherePaginationConfiguration,
9
+ input: ListTrustAnchorsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListTrustAnchorsCommandOutput>;
@@ -1,5 +1,5 @@
1
- export * from "./Interfaces";
2
- export * from "./ListCrlsPaginator";
3
- export * from "./ListProfilesPaginator";
4
- export * from "./ListSubjectsPaginator";
5
- export * from "./ListTrustAnchorsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListCrlsPaginator";
3
+ export * from "./ListProfilesPaginator";
4
+ export * from "./ListSubjectsPaginator";
5
+ export * from "./ListTrustAnchorsPaginator";
@@ -1,80 +1,317 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CreateProfileCommandInput, CreateProfileCommandOutput } from "../commands/CreateProfileCommand";
4
- import { CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput } from "../commands/CreateTrustAnchorCommand";
5
- import { DeleteCrlCommandInput, DeleteCrlCommandOutput } from "../commands/DeleteCrlCommand";
6
- import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "../commands/DeleteProfileCommand";
7
- import { DeleteTrustAnchorCommandInput, DeleteTrustAnchorCommandOutput } from "../commands/DeleteTrustAnchorCommand";
8
- import { DisableCrlCommandInput, DisableCrlCommandOutput } from "../commands/DisableCrlCommand";
9
- import { DisableProfileCommandInput, DisableProfileCommandOutput } from "../commands/DisableProfileCommand";
10
- import { DisableTrustAnchorCommandInput, DisableTrustAnchorCommandOutput } from "../commands/DisableTrustAnchorCommand";
11
- import { EnableCrlCommandInput, EnableCrlCommandOutput } from "../commands/EnableCrlCommand";
12
- import { EnableProfileCommandInput, EnableProfileCommandOutput } from "../commands/EnableProfileCommand";
13
- import { EnableTrustAnchorCommandInput, EnableTrustAnchorCommandOutput } from "../commands/EnableTrustAnchorCommand";
14
- import { GetCrlCommandInput, GetCrlCommandOutput } from "../commands/GetCrlCommand";
15
- import { GetProfileCommandInput, GetProfileCommandOutput } from "../commands/GetProfileCommand";
16
- import { GetSubjectCommandInput, GetSubjectCommandOutput } from "../commands/GetSubjectCommand";
17
- import { GetTrustAnchorCommandInput, GetTrustAnchorCommandOutput } from "../commands/GetTrustAnchorCommand";
18
- import { ImportCrlCommandInput, ImportCrlCommandOutput } from "../commands/ImportCrlCommand";
19
- import { ListCrlsCommandInput, ListCrlsCommandOutput } from "../commands/ListCrlsCommand";
20
- import { ListProfilesCommandInput, ListProfilesCommandOutput } from "../commands/ListProfilesCommand";
21
- import { ListSubjectsCommandInput, ListSubjectsCommandOutput } from "../commands/ListSubjectsCommand";
22
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
23
- import { ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput } from "../commands/ListTrustAnchorsCommand";
24
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
25
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
26
- import { UpdateCrlCommandInput, UpdateCrlCommandOutput } from "../commands/UpdateCrlCommand";
27
- import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "../commands/UpdateProfileCommand";
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>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CreateProfileCommandInput,
8
+ CreateProfileCommandOutput,
9
+ } from "../commands/CreateProfileCommand";
10
+ import {
11
+ CreateTrustAnchorCommandInput,
12
+ CreateTrustAnchorCommandOutput,
13
+ } from "../commands/CreateTrustAnchorCommand";
14
+ import {
15
+ DeleteCrlCommandInput,
16
+ DeleteCrlCommandOutput,
17
+ } from "../commands/DeleteCrlCommand";
18
+ import {
19
+ DeleteProfileCommandInput,
20
+ DeleteProfileCommandOutput,
21
+ } from "../commands/DeleteProfileCommand";
22
+ import {
23
+ DeleteTrustAnchorCommandInput,
24
+ DeleteTrustAnchorCommandOutput,
25
+ } from "../commands/DeleteTrustAnchorCommand";
26
+ import {
27
+ DisableCrlCommandInput,
28
+ DisableCrlCommandOutput,
29
+ } from "../commands/DisableCrlCommand";
30
+ import {
31
+ DisableProfileCommandInput,
32
+ DisableProfileCommandOutput,
33
+ } from "../commands/DisableProfileCommand";
34
+ import {
35
+ DisableTrustAnchorCommandInput,
36
+ DisableTrustAnchorCommandOutput,
37
+ } from "../commands/DisableTrustAnchorCommand";
38
+ import {
39
+ EnableCrlCommandInput,
40
+ EnableCrlCommandOutput,
41
+ } from "../commands/EnableCrlCommand";
42
+ import {
43
+ EnableProfileCommandInput,
44
+ EnableProfileCommandOutput,
45
+ } from "../commands/EnableProfileCommand";
46
+ import {
47
+ EnableTrustAnchorCommandInput,
48
+ EnableTrustAnchorCommandOutput,
49
+ } from "../commands/EnableTrustAnchorCommand";
50
+ import {
51
+ GetCrlCommandInput,
52
+ GetCrlCommandOutput,
53
+ } from "../commands/GetCrlCommand";
54
+ import {
55
+ GetProfileCommandInput,
56
+ GetProfileCommandOutput,
57
+ } from "../commands/GetProfileCommand";
58
+ import {
59
+ GetSubjectCommandInput,
60
+ GetSubjectCommandOutput,
61
+ } from "../commands/GetSubjectCommand";
62
+ import {
63
+ GetTrustAnchorCommandInput,
64
+ GetTrustAnchorCommandOutput,
65
+ } from "../commands/GetTrustAnchorCommand";
66
+ import {
67
+ ImportCrlCommandInput,
68
+ ImportCrlCommandOutput,
69
+ } from "../commands/ImportCrlCommand";
70
+ import {
71
+ ListCrlsCommandInput,
72
+ ListCrlsCommandOutput,
73
+ } from "../commands/ListCrlsCommand";
74
+ import {
75
+ ListProfilesCommandInput,
76
+ ListProfilesCommandOutput,
77
+ } from "../commands/ListProfilesCommand";
78
+ import {
79
+ ListSubjectsCommandInput,
80
+ ListSubjectsCommandOutput,
81
+ } from "../commands/ListSubjectsCommand";
82
+ import {
83
+ ListTagsForResourceCommandInput,
84
+ ListTagsForResourceCommandOutput,
85
+ } from "../commands/ListTagsForResourceCommand";
86
+ import {
87
+ ListTrustAnchorsCommandInput,
88
+ ListTrustAnchorsCommandOutput,
89
+ } from "../commands/ListTrustAnchorsCommand";
90
+ import {
91
+ TagResourceCommandInput,
92
+ TagResourceCommandOutput,
93
+ } from "../commands/TagResourceCommand";
94
+ import {
95
+ UntagResourceCommandInput,
96
+ UntagResourceCommandOutput,
97
+ } from "../commands/UntagResourceCommand";
98
+ import {
99
+ UpdateCrlCommandInput,
100
+ UpdateCrlCommandOutput,
101
+ } from "../commands/UpdateCrlCommand";
102
+ import {
103
+ UpdateProfileCommandInput,
104
+ UpdateProfileCommandOutput,
105
+ } from "../commands/UpdateProfileCommand";
106
+ import {
107
+ UpdateTrustAnchorCommandInput,
108
+ UpdateTrustAnchorCommandOutput,
109
+ } from "../commands/UpdateTrustAnchorCommand";
110
+ export declare const serializeAws_restJson1CreateProfileCommand: (
111
+ input: CreateProfileCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1CreateTrustAnchorCommand: (
115
+ input: CreateTrustAnchorCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1DeleteCrlCommand: (
119
+ input: DeleteCrlCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1DeleteProfileCommand: (
123
+ input: DeleteProfileCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1DeleteTrustAnchorCommand: (
127
+ input: DeleteTrustAnchorCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1DisableCrlCommand: (
131
+ input: DisableCrlCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1DisableProfileCommand: (
135
+ input: DisableProfileCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1DisableTrustAnchorCommand: (
139
+ input: DisableTrustAnchorCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1EnableCrlCommand: (
143
+ input: EnableCrlCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1EnableProfileCommand: (
147
+ input: EnableProfileCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1EnableTrustAnchorCommand: (
151
+ input: EnableTrustAnchorCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1GetCrlCommand: (
155
+ input: GetCrlCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1GetProfileCommand: (
159
+ input: GetProfileCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1GetSubjectCommand: (
163
+ input: GetSubjectCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1GetTrustAnchorCommand: (
167
+ input: GetTrustAnchorCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1ImportCrlCommand: (
171
+ input: ImportCrlCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1ListCrlsCommand: (
175
+ input: ListCrlsCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1ListProfilesCommand: (
179
+ input: ListProfilesCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1ListSubjectsCommand: (
183
+ input: ListSubjectsCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
187
+ input: ListTagsForResourceCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1ListTrustAnchorsCommand: (
191
+ input: ListTrustAnchorsCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1TagResourceCommand: (
195
+ input: TagResourceCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_restJson1UntagResourceCommand: (
199
+ input: UntagResourceCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_restJson1UpdateCrlCommand: (
203
+ input: UpdateCrlCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const serializeAws_restJson1UpdateProfileCommand: (
207
+ input: UpdateProfileCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const serializeAws_restJson1UpdateTrustAnchorCommand: (
211
+ input: UpdateTrustAnchorCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const deserializeAws_restJson1CreateProfileCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<CreateProfileCommandOutput>;
218
+ export declare const deserializeAws_restJson1CreateTrustAnchorCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<CreateTrustAnchorCommandOutput>;
222
+ export declare const deserializeAws_restJson1DeleteCrlCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<DeleteCrlCommandOutput>;
226
+ export declare const deserializeAws_restJson1DeleteProfileCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<DeleteProfileCommandOutput>;
230
+ export declare const deserializeAws_restJson1DeleteTrustAnchorCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<DeleteTrustAnchorCommandOutput>;
234
+ export declare const deserializeAws_restJson1DisableCrlCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<DisableCrlCommandOutput>;
238
+ export declare const deserializeAws_restJson1DisableProfileCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<DisableProfileCommandOutput>;
242
+ export declare const deserializeAws_restJson1DisableTrustAnchorCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<DisableTrustAnchorCommandOutput>;
246
+ export declare const deserializeAws_restJson1EnableCrlCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<EnableCrlCommandOutput>;
250
+ export declare const deserializeAws_restJson1EnableProfileCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<EnableProfileCommandOutput>;
254
+ export declare const deserializeAws_restJson1EnableTrustAnchorCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<EnableTrustAnchorCommandOutput>;
258
+ export declare const deserializeAws_restJson1GetCrlCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<GetCrlCommandOutput>;
262
+ export declare const deserializeAws_restJson1GetProfileCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<GetProfileCommandOutput>;
266
+ export declare const deserializeAws_restJson1GetSubjectCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<GetSubjectCommandOutput>;
270
+ export declare const deserializeAws_restJson1GetTrustAnchorCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<GetTrustAnchorCommandOutput>;
274
+ export declare const deserializeAws_restJson1ImportCrlCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<ImportCrlCommandOutput>;
278
+ export declare const deserializeAws_restJson1ListCrlsCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<ListCrlsCommandOutput>;
282
+ export declare const deserializeAws_restJson1ListProfilesCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<ListProfilesCommandOutput>;
286
+ export declare const deserializeAws_restJson1ListSubjectsCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<ListSubjectsCommandOutput>;
290
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<ListTagsForResourceCommandOutput>;
294
+ export declare const deserializeAws_restJson1ListTrustAnchorsCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<ListTrustAnchorsCommandOutput>;
298
+ export declare const deserializeAws_restJson1TagResourceCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<TagResourceCommandOutput>;
302
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<UntagResourceCommandOutput>;
306
+ export declare const deserializeAws_restJson1UpdateCrlCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<UpdateCrlCommandOutput>;
310
+ export declare const deserializeAws_restJson1UpdateProfileCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<UpdateProfileCommandOutput>;
314
+ export declare const deserializeAws_restJson1UpdateTrustAnchorCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<UpdateTrustAnchorCommandOutput>;
@@ -1,38 +1,65 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { RolesAnywhereClientConfig } from "./RolesAnywhereClient";
3
-
4
- export declare const getRuntimeConfig: (config: RolesAnywhereClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { RolesAnywhereClientConfig } from "./RolesAnywhereClient";
3
+ export declare const getRuntimeConfig: (config: RolesAnywhereClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<any>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };