@aws-sdk/client-rolesanywhere 3.169.0 → 3.170.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 +8 -0
  2. package/dist-types/ts3.4/RolesAnywhere.d.ts +472 -135
  3. package/dist-types/ts3.4/RolesAnywhereClient.d.ts +286 -99
  4. package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateTrustAnchorCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/DeleteCrlCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DeleteTrustAnchorCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DisableCrlCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DisableProfileCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DisableTrustAnchorCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/EnableCrlCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/EnableProfileCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/EnableTrustAnchorCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/GetCrlCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/GetSubjectCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/GetTrustAnchorCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ImportCrlCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/ListCrlsCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/ListSubjectsCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/ListTrustAnchorsCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateCrlCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/UpdateTrustAnchorCommand.d.ts +38 -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 +8 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +463 -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 +66 -38
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  47. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-rolesanywhere
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-rolesanywhere
@@ -1,135 +1,472 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand";
3
- import { CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput } from "./commands/CreateTrustAnchorCommand";
4
- import { DeleteCrlCommandInput, DeleteCrlCommandOutput } from "./commands/DeleteCrlCommand";
5
- import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "./commands/DeleteProfileCommand";
6
- import { DeleteTrustAnchorCommandInput, DeleteTrustAnchorCommandOutput } from "./commands/DeleteTrustAnchorCommand";
7
- import { DisableCrlCommandInput, DisableCrlCommandOutput } from "./commands/DisableCrlCommand";
8
- import { DisableProfileCommandInput, DisableProfileCommandOutput } from "./commands/DisableProfileCommand";
9
- import { DisableTrustAnchorCommandInput, DisableTrustAnchorCommandOutput } from "./commands/DisableTrustAnchorCommand";
10
- import { EnableCrlCommandInput, EnableCrlCommandOutput } from "./commands/EnableCrlCommand";
11
- import { EnableProfileCommandInput, EnableProfileCommandOutput } from "./commands/EnableProfileCommand";
12
- import { EnableTrustAnchorCommandInput, EnableTrustAnchorCommandOutput } from "./commands/EnableTrustAnchorCommand";
13
- import { GetCrlCommandInput, GetCrlCommandOutput } from "./commands/GetCrlCommand";
14
- import { GetProfileCommandInput, GetProfileCommandOutput } from "./commands/GetProfileCommand";
15
- import { GetSubjectCommandInput, GetSubjectCommandOutput } from "./commands/GetSubjectCommand";
16
- import { GetTrustAnchorCommandInput, GetTrustAnchorCommandOutput } from "./commands/GetTrustAnchorCommand";
17
- import { ImportCrlCommandInput, ImportCrlCommandOutput } from "./commands/ImportCrlCommand";
18
- import { ListCrlsCommandInput, ListCrlsCommandOutput } from "./commands/ListCrlsCommand";
19
- import { ListProfilesCommandInput, ListProfilesCommandOutput } from "./commands/ListProfilesCommand";
20
- import { ListSubjectsCommandInput, ListSubjectsCommandOutput } from "./commands/ListSubjectsCommand";
21
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
22
- import { ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput } from "./commands/ListTrustAnchorsCommand";
23
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
24
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
25
- import { UpdateCrlCommandInput, UpdateCrlCommandOutput } from "./commands/UpdateCrlCommand";
26
- import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "./commands/UpdateProfileCommand";
27
- import { UpdateTrustAnchorCommandInput, UpdateTrustAnchorCommandOutput } from "./commands/UpdateTrustAnchorCommand";
28
- import { RolesAnywhereClient } from "./RolesAnywhereClient";
29
-
30
- export declare class RolesAnywhere extends RolesAnywhereClient {
31
-
32
- createProfile(args: CreateProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateProfileCommandOutput>;
33
- createProfile(args: CreateProfileCommandInput, cb: (err: any, data?: CreateProfileCommandOutput) => void): void;
34
- createProfile(args: CreateProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProfileCommandOutput) => void): void;
35
-
36
- createTrustAnchor(args: CreateTrustAnchorCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrustAnchorCommandOutput>;
37
- createTrustAnchor(args: CreateTrustAnchorCommandInput, cb: (err: any, data?: CreateTrustAnchorCommandOutput) => void): void;
38
- createTrustAnchor(args: CreateTrustAnchorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrustAnchorCommandOutput) => void): void;
39
-
40
- deleteCrl(args: DeleteCrlCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCrlCommandOutput>;
41
- deleteCrl(args: DeleteCrlCommandInput, cb: (err: any, data?: DeleteCrlCommandOutput) => void): void;
42
- deleteCrl(args: DeleteCrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCrlCommandOutput) => void): void;
43
-
44
- deleteProfile(args: DeleteProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProfileCommandOutput>;
45
- deleteProfile(args: DeleteProfileCommandInput, cb: (err: any, data?: DeleteProfileCommandOutput) => void): void;
46
- deleteProfile(args: DeleteProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProfileCommandOutput) => void): void;
47
-
48
- deleteTrustAnchor(args: DeleteTrustAnchorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrustAnchorCommandOutput>;
49
- deleteTrustAnchor(args: DeleteTrustAnchorCommandInput, cb: (err: any, data?: DeleteTrustAnchorCommandOutput) => void): void;
50
- deleteTrustAnchor(args: DeleteTrustAnchorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrustAnchorCommandOutput) => void): void;
51
-
52
- disableCrl(args: DisableCrlCommandInput, options?: __HttpHandlerOptions): Promise<DisableCrlCommandOutput>;
53
- disableCrl(args: DisableCrlCommandInput, cb: (err: any, data?: DisableCrlCommandOutput) => void): void;
54
- disableCrl(args: DisableCrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableCrlCommandOutput) => void): void;
55
-
56
- disableProfile(args: DisableProfileCommandInput, options?: __HttpHandlerOptions): Promise<DisableProfileCommandOutput>;
57
- disableProfile(args: DisableProfileCommandInput, cb: (err: any, data?: DisableProfileCommandOutput) => void): void;
58
- disableProfile(args: DisableProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableProfileCommandOutput) => void): void;
59
-
60
- disableTrustAnchor(args: DisableTrustAnchorCommandInput, options?: __HttpHandlerOptions): Promise<DisableTrustAnchorCommandOutput>;
61
- disableTrustAnchor(args: DisableTrustAnchorCommandInput, cb: (err: any, data?: DisableTrustAnchorCommandOutput) => void): void;
62
- disableTrustAnchor(args: DisableTrustAnchorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableTrustAnchorCommandOutput) => void): void;
63
-
64
- enableCrl(args: EnableCrlCommandInput, options?: __HttpHandlerOptions): Promise<EnableCrlCommandOutput>;
65
- enableCrl(args: EnableCrlCommandInput, cb: (err: any, data?: EnableCrlCommandOutput) => void): void;
66
- enableCrl(args: EnableCrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableCrlCommandOutput) => void): void;
67
-
68
- enableProfile(args: EnableProfileCommandInput, options?: __HttpHandlerOptions): Promise<EnableProfileCommandOutput>;
69
- enableProfile(args: EnableProfileCommandInput, cb: (err: any, data?: EnableProfileCommandOutput) => void): void;
70
- enableProfile(args: EnableProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableProfileCommandOutput) => void): void;
71
-
72
- enableTrustAnchor(args: EnableTrustAnchorCommandInput, options?: __HttpHandlerOptions): Promise<EnableTrustAnchorCommandOutput>;
73
- enableTrustAnchor(args: EnableTrustAnchorCommandInput, cb: (err: any, data?: EnableTrustAnchorCommandOutput) => void): void;
74
- enableTrustAnchor(args: EnableTrustAnchorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableTrustAnchorCommandOutput) => void): void;
75
-
76
- getCrl(args: GetCrlCommandInput, options?: __HttpHandlerOptions): Promise<GetCrlCommandOutput>;
77
- getCrl(args: GetCrlCommandInput, cb: (err: any, data?: GetCrlCommandOutput) => void): void;
78
- getCrl(args: GetCrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCrlCommandOutput) => void): void;
79
-
80
- getProfile(args: GetProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetProfileCommandOutput>;
81
- getProfile(args: GetProfileCommandInput, cb: (err: any, data?: GetProfileCommandOutput) => void): void;
82
- getProfile(args: GetProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProfileCommandOutput) => void): void;
83
-
84
- getSubject(args: GetSubjectCommandInput, options?: __HttpHandlerOptions): Promise<GetSubjectCommandOutput>;
85
- getSubject(args: GetSubjectCommandInput, cb: (err: any, data?: GetSubjectCommandOutput) => void): void;
86
- getSubject(args: GetSubjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSubjectCommandOutput) => void): void;
87
-
88
- getTrustAnchor(args: GetTrustAnchorCommandInput, options?: __HttpHandlerOptions): Promise<GetTrustAnchorCommandOutput>;
89
- getTrustAnchor(args: GetTrustAnchorCommandInput, cb: (err: any, data?: GetTrustAnchorCommandOutput) => void): void;
90
- getTrustAnchor(args: GetTrustAnchorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrustAnchorCommandOutput) => void): void;
91
-
92
- importCrl(args: ImportCrlCommandInput, options?: __HttpHandlerOptions): Promise<ImportCrlCommandOutput>;
93
- importCrl(args: ImportCrlCommandInput, cb: (err: any, data?: ImportCrlCommandOutput) => void): void;
94
- importCrl(args: ImportCrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportCrlCommandOutput) => void): void;
95
-
96
- listCrls(args: ListCrlsCommandInput, options?: __HttpHandlerOptions): Promise<ListCrlsCommandOutput>;
97
- listCrls(args: ListCrlsCommandInput, cb: (err: any, data?: ListCrlsCommandOutput) => void): void;
98
- listCrls(args: ListCrlsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCrlsCommandOutput) => void): void;
99
-
100
- listProfiles(args: ListProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListProfilesCommandOutput>;
101
- listProfiles(args: ListProfilesCommandInput, cb: (err: any, data?: ListProfilesCommandOutput) => void): void;
102
- listProfiles(args: ListProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfilesCommandOutput) => void): void;
103
-
104
- listSubjects(args: ListSubjectsCommandInput, options?: __HttpHandlerOptions): Promise<ListSubjectsCommandOutput>;
105
- listSubjects(args: ListSubjectsCommandInput, cb: (err: any, data?: ListSubjectsCommandOutput) => void): void;
106
- listSubjects(args: ListSubjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSubjectsCommandOutput) => void): void;
107
-
108
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
109
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
110
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
111
-
112
- listTrustAnchors(args: ListTrustAnchorsCommandInput, options?: __HttpHandlerOptions): Promise<ListTrustAnchorsCommandOutput>;
113
- listTrustAnchors(args: ListTrustAnchorsCommandInput, cb: (err: any, data?: ListTrustAnchorsCommandOutput) => void): void;
114
- listTrustAnchors(args: ListTrustAnchorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrustAnchorsCommandOutput) => void): void;
115
-
116
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
117
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
118
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
119
-
120
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
121
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
122
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
123
-
124
- updateCrl(args: UpdateCrlCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCrlCommandOutput>;
125
- updateCrl(args: UpdateCrlCommandInput, cb: (err: any, data?: UpdateCrlCommandOutput) => void): void;
126
- updateCrl(args: UpdateCrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCrlCommandOutput) => void): void;
127
-
128
- updateProfile(args: UpdateProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProfileCommandOutput>;
129
- updateProfile(args: UpdateProfileCommandInput, cb: (err: any, data?: UpdateProfileCommandOutput) => void): void;
130
- updateProfile(args: UpdateProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProfileCommandOutput) => void): void;
131
-
132
- updateTrustAnchor(args: UpdateTrustAnchorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrustAnchorCommandOutput>;
133
- updateTrustAnchor(args: UpdateTrustAnchorCommandInput, cb: (err: any, data?: UpdateTrustAnchorCommandOutput) => void): void;
134
- updateTrustAnchor(args: UpdateTrustAnchorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrustAnchorCommandOutput) => void): void;
135
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CreateProfileCommandInput,
4
+ CreateProfileCommandOutput,
5
+ } from "./commands/CreateProfileCommand";
6
+ import {
7
+ CreateTrustAnchorCommandInput,
8
+ CreateTrustAnchorCommandOutput,
9
+ } from "./commands/CreateTrustAnchorCommand";
10
+ import {
11
+ DeleteCrlCommandInput,
12
+ DeleteCrlCommandOutput,
13
+ } from "./commands/DeleteCrlCommand";
14
+ import {
15
+ DeleteProfileCommandInput,
16
+ DeleteProfileCommandOutput,
17
+ } from "./commands/DeleteProfileCommand";
18
+ import {
19
+ DeleteTrustAnchorCommandInput,
20
+ DeleteTrustAnchorCommandOutput,
21
+ } from "./commands/DeleteTrustAnchorCommand";
22
+ import {
23
+ DisableCrlCommandInput,
24
+ DisableCrlCommandOutput,
25
+ } from "./commands/DisableCrlCommand";
26
+ import {
27
+ DisableProfileCommandInput,
28
+ DisableProfileCommandOutput,
29
+ } from "./commands/DisableProfileCommand";
30
+ import {
31
+ DisableTrustAnchorCommandInput,
32
+ DisableTrustAnchorCommandOutput,
33
+ } from "./commands/DisableTrustAnchorCommand";
34
+ import {
35
+ EnableCrlCommandInput,
36
+ EnableCrlCommandOutput,
37
+ } from "./commands/EnableCrlCommand";
38
+ import {
39
+ EnableProfileCommandInput,
40
+ EnableProfileCommandOutput,
41
+ } from "./commands/EnableProfileCommand";
42
+ import {
43
+ EnableTrustAnchorCommandInput,
44
+ EnableTrustAnchorCommandOutput,
45
+ } from "./commands/EnableTrustAnchorCommand";
46
+ import {
47
+ GetCrlCommandInput,
48
+ GetCrlCommandOutput,
49
+ } from "./commands/GetCrlCommand";
50
+ import {
51
+ GetProfileCommandInput,
52
+ GetProfileCommandOutput,
53
+ } from "./commands/GetProfileCommand";
54
+ import {
55
+ GetSubjectCommandInput,
56
+ GetSubjectCommandOutput,
57
+ } from "./commands/GetSubjectCommand";
58
+ import {
59
+ GetTrustAnchorCommandInput,
60
+ GetTrustAnchorCommandOutput,
61
+ } from "./commands/GetTrustAnchorCommand";
62
+ import {
63
+ ImportCrlCommandInput,
64
+ ImportCrlCommandOutput,
65
+ } from "./commands/ImportCrlCommand";
66
+ import {
67
+ ListCrlsCommandInput,
68
+ ListCrlsCommandOutput,
69
+ } from "./commands/ListCrlsCommand";
70
+ import {
71
+ ListProfilesCommandInput,
72
+ ListProfilesCommandOutput,
73
+ } from "./commands/ListProfilesCommand";
74
+ import {
75
+ ListSubjectsCommandInput,
76
+ ListSubjectsCommandOutput,
77
+ } from "./commands/ListSubjectsCommand";
78
+ import {
79
+ ListTagsForResourceCommandInput,
80
+ ListTagsForResourceCommandOutput,
81
+ } from "./commands/ListTagsForResourceCommand";
82
+ import {
83
+ ListTrustAnchorsCommandInput,
84
+ ListTrustAnchorsCommandOutput,
85
+ } from "./commands/ListTrustAnchorsCommand";
86
+ import {
87
+ TagResourceCommandInput,
88
+ TagResourceCommandOutput,
89
+ } from "./commands/TagResourceCommand";
90
+ import {
91
+ UntagResourceCommandInput,
92
+ UntagResourceCommandOutput,
93
+ } from "./commands/UntagResourceCommand";
94
+ import {
95
+ UpdateCrlCommandInput,
96
+ UpdateCrlCommandOutput,
97
+ } from "./commands/UpdateCrlCommand";
98
+ import {
99
+ UpdateProfileCommandInput,
100
+ UpdateProfileCommandOutput,
101
+ } from "./commands/UpdateProfileCommand";
102
+ import {
103
+ UpdateTrustAnchorCommandInput,
104
+ UpdateTrustAnchorCommandOutput,
105
+ } from "./commands/UpdateTrustAnchorCommand";
106
+ import { RolesAnywhereClient } from "./RolesAnywhereClient";
107
+
108
+ export declare class RolesAnywhere extends RolesAnywhereClient {
109
+ createProfile(
110
+ args: CreateProfileCommandInput,
111
+ options?: __HttpHandlerOptions
112
+ ): Promise<CreateProfileCommandOutput>;
113
+ createProfile(
114
+ args: CreateProfileCommandInput,
115
+ cb: (err: any, data?: CreateProfileCommandOutput) => void
116
+ ): void;
117
+ createProfile(
118
+ args: CreateProfileCommandInput,
119
+ options: __HttpHandlerOptions,
120
+ cb: (err: any, data?: CreateProfileCommandOutput) => void
121
+ ): void;
122
+
123
+ createTrustAnchor(
124
+ args: CreateTrustAnchorCommandInput,
125
+ options?: __HttpHandlerOptions
126
+ ): Promise<CreateTrustAnchorCommandOutput>;
127
+ createTrustAnchor(
128
+ args: CreateTrustAnchorCommandInput,
129
+ cb: (err: any, data?: CreateTrustAnchorCommandOutput) => void
130
+ ): void;
131
+ createTrustAnchor(
132
+ args: CreateTrustAnchorCommandInput,
133
+ options: __HttpHandlerOptions,
134
+ cb: (err: any, data?: CreateTrustAnchorCommandOutput) => void
135
+ ): void;
136
+
137
+ deleteCrl(
138
+ args: DeleteCrlCommandInput,
139
+ options?: __HttpHandlerOptions
140
+ ): Promise<DeleteCrlCommandOutput>;
141
+ deleteCrl(
142
+ args: DeleteCrlCommandInput,
143
+ cb: (err: any, data?: DeleteCrlCommandOutput) => void
144
+ ): void;
145
+ deleteCrl(
146
+ args: DeleteCrlCommandInput,
147
+ options: __HttpHandlerOptions,
148
+ cb: (err: any, data?: DeleteCrlCommandOutput) => void
149
+ ): void;
150
+
151
+ deleteProfile(
152
+ args: DeleteProfileCommandInput,
153
+ options?: __HttpHandlerOptions
154
+ ): Promise<DeleteProfileCommandOutput>;
155
+ deleteProfile(
156
+ args: DeleteProfileCommandInput,
157
+ cb: (err: any, data?: DeleteProfileCommandOutput) => void
158
+ ): void;
159
+ deleteProfile(
160
+ args: DeleteProfileCommandInput,
161
+ options: __HttpHandlerOptions,
162
+ cb: (err: any, data?: DeleteProfileCommandOutput) => void
163
+ ): void;
164
+
165
+ deleteTrustAnchor(
166
+ args: DeleteTrustAnchorCommandInput,
167
+ options?: __HttpHandlerOptions
168
+ ): Promise<DeleteTrustAnchorCommandOutput>;
169
+ deleteTrustAnchor(
170
+ args: DeleteTrustAnchorCommandInput,
171
+ cb: (err: any, data?: DeleteTrustAnchorCommandOutput) => void
172
+ ): void;
173
+ deleteTrustAnchor(
174
+ args: DeleteTrustAnchorCommandInput,
175
+ options: __HttpHandlerOptions,
176
+ cb: (err: any, data?: DeleteTrustAnchorCommandOutput) => void
177
+ ): void;
178
+
179
+ disableCrl(
180
+ args: DisableCrlCommandInput,
181
+ options?: __HttpHandlerOptions
182
+ ): Promise<DisableCrlCommandOutput>;
183
+ disableCrl(
184
+ args: DisableCrlCommandInput,
185
+ cb: (err: any, data?: DisableCrlCommandOutput) => void
186
+ ): void;
187
+ disableCrl(
188
+ args: DisableCrlCommandInput,
189
+ options: __HttpHandlerOptions,
190
+ cb: (err: any, data?: DisableCrlCommandOutput) => void
191
+ ): void;
192
+
193
+ disableProfile(
194
+ args: DisableProfileCommandInput,
195
+ options?: __HttpHandlerOptions
196
+ ): Promise<DisableProfileCommandOutput>;
197
+ disableProfile(
198
+ args: DisableProfileCommandInput,
199
+ cb: (err: any, data?: DisableProfileCommandOutput) => void
200
+ ): void;
201
+ disableProfile(
202
+ args: DisableProfileCommandInput,
203
+ options: __HttpHandlerOptions,
204
+ cb: (err: any, data?: DisableProfileCommandOutput) => void
205
+ ): void;
206
+
207
+ disableTrustAnchor(
208
+ args: DisableTrustAnchorCommandInput,
209
+ options?: __HttpHandlerOptions
210
+ ): Promise<DisableTrustAnchorCommandOutput>;
211
+ disableTrustAnchor(
212
+ args: DisableTrustAnchorCommandInput,
213
+ cb: (err: any, data?: DisableTrustAnchorCommandOutput) => void
214
+ ): void;
215
+ disableTrustAnchor(
216
+ args: DisableTrustAnchorCommandInput,
217
+ options: __HttpHandlerOptions,
218
+ cb: (err: any, data?: DisableTrustAnchorCommandOutput) => void
219
+ ): void;
220
+
221
+ enableCrl(
222
+ args: EnableCrlCommandInput,
223
+ options?: __HttpHandlerOptions
224
+ ): Promise<EnableCrlCommandOutput>;
225
+ enableCrl(
226
+ args: EnableCrlCommandInput,
227
+ cb: (err: any, data?: EnableCrlCommandOutput) => void
228
+ ): void;
229
+ enableCrl(
230
+ args: EnableCrlCommandInput,
231
+ options: __HttpHandlerOptions,
232
+ cb: (err: any, data?: EnableCrlCommandOutput) => void
233
+ ): void;
234
+
235
+ enableProfile(
236
+ args: EnableProfileCommandInput,
237
+ options?: __HttpHandlerOptions
238
+ ): Promise<EnableProfileCommandOutput>;
239
+ enableProfile(
240
+ args: EnableProfileCommandInput,
241
+ cb: (err: any, data?: EnableProfileCommandOutput) => void
242
+ ): void;
243
+ enableProfile(
244
+ args: EnableProfileCommandInput,
245
+ options: __HttpHandlerOptions,
246
+ cb: (err: any, data?: EnableProfileCommandOutput) => void
247
+ ): void;
248
+
249
+ enableTrustAnchor(
250
+ args: EnableTrustAnchorCommandInput,
251
+ options?: __HttpHandlerOptions
252
+ ): Promise<EnableTrustAnchorCommandOutput>;
253
+ enableTrustAnchor(
254
+ args: EnableTrustAnchorCommandInput,
255
+ cb: (err: any, data?: EnableTrustAnchorCommandOutput) => void
256
+ ): void;
257
+ enableTrustAnchor(
258
+ args: EnableTrustAnchorCommandInput,
259
+ options: __HttpHandlerOptions,
260
+ cb: (err: any, data?: EnableTrustAnchorCommandOutput) => void
261
+ ): void;
262
+
263
+ getCrl(
264
+ args: GetCrlCommandInput,
265
+ options?: __HttpHandlerOptions
266
+ ): Promise<GetCrlCommandOutput>;
267
+ getCrl(
268
+ args: GetCrlCommandInput,
269
+ cb: (err: any, data?: GetCrlCommandOutput) => void
270
+ ): void;
271
+ getCrl(
272
+ args: GetCrlCommandInput,
273
+ options: __HttpHandlerOptions,
274
+ cb: (err: any, data?: GetCrlCommandOutput) => void
275
+ ): void;
276
+
277
+ getProfile(
278
+ args: GetProfileCommandInput,
279
+ options?: __HttpHandlerOptions
280
+ ): Promise<GetProfileCommandOutput>;
281
+ getProfile(
282
+ args: GetProfileCommandInput,
283
+ cb: (err: any, data?: GetProfileCommandOutput) => void
284
+ ): void;
285
+ getProfile(
286
+ args: GetProfileCommandInput,
287
+ options: __HttpHandlerOptions,
288
+ cb: (err: any, data?: GetProfileCommandOutput) => void
289
+ ): void;
290
+
291
+ getSubject(
292
+ args: GetSubjectCommandInput,
293
+ options?: __HttpHandlerOptions
294
+ ): Promise<GetSubjectCommandOutput>;
295
+ getSubject(
296
+ args: GetSubjectCommandInput,
297
+ cb: (err: any, data?: GetSubjectCommandOutput) => void
298
+ ): void;
299
+ getSubject(
300
+ args: GetSubjectCommandInput,
301
+ options: __HttpHandlerOptions,
302
+ cb: (err: any, data?: GetSubjectCommandOutput) => void
303
+ ): void;
304
+
305
+ getTrustAnchor(
306
+ args: GetTrustAnchorCommandInput,
307
+ options?: __HttpHandlerOptions
308
+ ): Promise<GetTrustAnchorCommandOutput>;
309
+ getTrustAnchor(
310
+ args: GetTrustAnchorCommandInput,
311
+ cb: (err: any, data?: GetTrustAnchorCommandOutput) => void
312
+ ): void;
313
+ getTrustAnchor(
314
+ args: GetTrustAnchorCommandInput,
315
+ options: __HttpHandlerOptions,
316
+ cb: (err: any, data?: GetTrustAnchorCommandOutput) => void
317
+ ): void;
318
+
319
+ importCrl(
320
+ args: ImportCrlCommandInput,
321
+ options?: __HttpHandlerOptions
322
+ ): Promise<ImportCrlCommandOutput>;
323
+ importCrl(
324
+ args: ImportCrlCommandInput,
325
+ cb: (err: any, data?: ImportCrlCommandOutput) => void
326
+ ): void;
327
+ importCrl(
328
+ args: ImportCrlCommandInput,
329
+ options: __HttpHandlerOptions,
330
+ cb: (err: any, data?: ImportCrlCommandOutput) => void
331
+ ): void;
332
+
333
+ listCrls(
334
+ args: ListCrlsCommandInput,
335
+ options?: __HttpHandlerOptions
336
+ ): Promise<ListCrlsCommandOutput>;
337
+ listCrls(
338
+ args: ListCrlsCommandInput,
339
+ cb: (err: any, data?: ListCrlsCommandOutput) => void
340
+ ): void;
341
+ listCrls(
342
+ args: ListCrlsCommandInput,
343
+ options: __HttpHandlerOptions,
344
+ cb: (err: any, data?: ListCrlsCommandOutput) => void
345
+ ): void;
346
+
347
+ listProfiles(
348
+ args: ListProfilesCommandInput,
349
+ options?: __HttpHandlerOptions
350
+ ): Promise<ListProfilesCommandOutput>;
351
+ listProfiles(
352
+ args: ListProfilesCommandInput,
353
+ cb: (err: any, data?: ListProfilesCommandOutput) => void
354
+ ): void;
355
+ listProfiles(
356
+ args: ListProfilesCommandInput,
357
+ options: __HttpHandlerOptions,
358
+ cb: (err: any, data?: ListProfilesCommandOutput) => void
359
+ ): void;
360
+
361
+ listSubjects(
362
+ args: ListSubjectsCommandInput,
363
+ options?: __HttpHandlerOptions
364
+ ): Promise<ListSubjectsCommandOutput>;
365
+ listSubjects(
366
+ args: ListSubjectsCommandInput,
367
+ cb: (err: any, data?: ListSubjectsCommandOutput) => void
368
+ ): void;
369
+ listSubjects(
370
+ args: ListSubjectsCommandInput,
371
+ options: __HttpHandlerOptions,
372
+ cb: (err: any, data?: ListSubjectsCommandOutput) => void
373
+ ): void;
374
+
375
+ listTagsForResource(
376
+ args: ListTagsForResourceCommandInput,
377
+ options?: __HttpHandlerOptions
378
+ ): Promise<ListTagsForResourceCommandOutput>;
379
+ listTagsForResource(
380
+ args: ListTagsForResourceCommandInput,
381
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
382
+ ): void;
383
+ listTagsForResource(
384
+ args: ListTagsForResourceCommandInput,
385
+ options: __HttpHandlerOptions,
386
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
387
+ ): void;
388
+
389
+ listTrustAnchors(
390
+ args: ListTrustAnchorsCommandInput,
391
+ options?: __HttpHandlerOptions
392
+ ): Promise<ListTrustAnchorsCommandOutput>;
393
+ listTrustAnchors(
394
+ args: ListTrustAnchorsCommandInput,
395
+ cb: (err: any, data?: ListTrustAnchorsCommandOutput) => void
396
+ ): void;
397
+ listTrustAnchors(
398
+ args: ListTrustAnchorsCommandInput,
399
+ options: __HttpHandlerOptions,
400
+ cb: (err: any, data?: ListTrustAnchorsCommandOutput) => void
401
+ ): void;
402
+
403
+ tagResource(
404
+ args: TagResourceCommandInput,
405
+ options?: __HttpHandlerOptions
406
+ ): Promise<TagResourceCommandOutput>;
407
+ tagResource(
408
+ args: TagResourceCommandInput,
409
+ cb: (err: any, data?: TagResourceCommandOutput) => void
410
+ ): void;
411
+ tagResource(
412
+ args: TagResourceCommandInput,
413
+ options: __HttpHandlerOptions,
414
+ cb: (err: any, data?: TagResourceCommandOutput) => void
415
+ ): void;
416
+
417
+ untagResource(
418
+ args: UntagResourceCommandInput,
419
+ options?: __HttpHandlerOptions
420
+ ): Promise<UntagResourceCommandOutput>;
421
+ untagResource(
422
+ args: UntagResourceCommandInput,
423
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
424
+ ): void;
425
+ untagResource(
426
+ args: UntagResourceCommandInput,
427
+ options: __HttpHandlerOptions,
428
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
429
+ ): void;
430
+
431
+ updateCrl(
432
+ args: UpdateCrlCommandInput,
433
+ options?: __HttpHandlerOptions
434
+ ): Promise<UpdateCrlCommandOutput>;
435
+ updateCrl(
436
+ args: UpdateCrlCommandInput,
437
+ cb: (err: any, data?: UpdateCrlCommandOutput) => void
438
+ ): void;
439
+ updateCrl(
440
+ args: UpdateCrlCommandInput,
441
+ options: __HttpHandlerOptions,
442
+ cb: (err: any, data?: UpdateCrlCommandOutput) => void
443
+ ): void;
444
+
445
+ updateProfile(
446
+ args: UpdateProfileCommandInput,
447
+ options?: __HttpHandlerOptions
448
+ ): Promise<UpdateProfileCommandOutput>;
449
+ updateProfile(
450
+ args: UpdateProfileCommandInput,
451
+ cb: (err: any, data?: UpdateProfileCommandOutput) => void
452
+ ): void;
453
+ updateProfile(
454
+ args: UpdateProfileCommandInput,
455
+ options: __HttpHandlerOptions,
456
+ cb: (err: any, data?: UpdateProfileCommandOutput) => void
457
+ ): void;
458
+
459
+ updateTrustAnchor(
460
+ args: UpdateTrustAnchorCommandInput,
461
+ options?: __HttpHandlerOptions
462
+ ): Promise<UpdateTrustAnchorCommandOutput>;
463
+ updateTrustAnchor(
464
+ args: UpdateTrustAnchorCommandInput,
465
+ cb: (err: any, data?: UpdateTrustAnchorCommandOutput) => void
466
+ ): void;
467
+ updateTrustAnchor(
468
+ args: UpdateTrustAnchorCommandInput,
469
+ options: __HttpHandlerOptions,
470
+ cb: (err: any, data?: UpdateTrustAnchorCommandOutput) => void
471
+ ): void;
472
+ }