@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
@@ -1,99 +1,286 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand";
10
- import { CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput } from "./commands/CreateTrustAnchorCommand";
11
- import { DeleteCrlCommandInput, DeleteCrlCommandOutput } from "./commands/DeleteCrlCommand";
12
- import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "./commands/DeleteProfileCommand";
13
- import { DeleteTrustAnchorCommandInput, DeleteTrustAnchorCommandOutput } from "./commands/DeleteTrustAnchorCommand";
14
- import { DisableCrlCommandInput, DisableCrlCommandOutput } from "./commands/DisableCrlCommand";
15
- import { DisableProfileCommandInput, DisableProfileCommandOutput } from "./commands/DisableProfileCommand";
16
- import { DisableTrustAnchorCommandInput, DisableTrustAnchorCommandOutput } from "./commands/DisableTrustAnchorCommand";
17
- import { EnableCrlCommandInput, EnableCrlCommandOutput } from "./commands/EnableCrlCommand";
18
- import { EnableProfileCommandInput, EnableProfileCommandOutput } from "./commands/EnableProfileCommand";
19
- import { EnableTrustAnchorCommandInput, EnableTrustAnchorCommandOutput } from "./commands/EnableTrustAnchorCommand";
20
- import { GetCrlCommandInput, GetCrlCommandOutput } from "./commands/GetCrlCommand";
21
- import { GetProfileCommandInput, GetProfileCommandOutput } from "./commands/GetProfileCommand";
22
- import { GetSubjectCommandInput, GetSubjectCommandOutput } from "./commands/GetSubjectCommand";
23
- import { GetTrustAnchorCommandInput, GetTrustAnchorCommandOutput } from "./commands/GetTrustAnchorCommand";
24
- import { ImportCrlCommandInput, ImportCrlCommandOutput } from "./commands/ImportCrlCommand";
25
- import { ListCrlsCommandInput, ListCrlsCommandOutput } from "./commands/ListCrlsCommand";
26
- import { ListProfilesCommandInput, ListProfilesCommandOutput } from "./commands/ListProfilesCommand";
27
- import { ListSubjectsCommandInput, ListSubjectsCommandOutput } from "./commands/ListSubjectsCommand";
28
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
29
- import { ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput } from "./commands/ListTrustAnchorsCommand";
30
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
31
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
32
- import { UpdateCrlCommandInput, UpdateCrlCommandOutput } from "./commands/UpdateCrlCommand";
33
- import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "./commands/UpdateProfileCommand";
34
- import { UpdateTrustAnchorCommandInput, UpdateTrustAnchorCommandOutput } from "./commands/UpdateTrustAnchorCommand";
35
- export declare type ServiceInputTypes = CreateProfileCommandInput | CreateTrustAnchorCommandInput | DeleteCrlCommandInput | DeleteProfileCommandInput | DeleteTrustAnchorCommandInput | DisableCrlCommandInput | DisableProfileCommandInput | DisableTrustAnchorCommandInput | EnableCrlCommandInput | EnableProfileCommandInput | EnableTrustAnchorCommandInput | GetCrlCommandInput | GetProfileCommandInput | GetSubjectCommandInput | GetTrustAnchorCommandInput | ImportCrlCommandInput | ListCrlsCommandInput | ListProfilesCommandInput | ListSubjectsCommandInput | ListTagsForResourceCommandInput | ListTrustAnchorsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCrlCommandInput | UpdateProfileCommandInput | UpdateTrustAnchorCommandInput;
36
- export declare type ServiceOutputTypes = CreateProfileCommandOutput | CreateTrustAnchorCommandOutput | DeleteCrlCommandOutput | DeleteProfileCommandOutput | DeleteTrustAnchorCommandOutput | DisableCrlCommandOutput | DisableProfileCommandOutput | DisableTrustAnchorCommandOutput | EnableCrlCommandOutput | EnableProfileCommandOutput | EnableTrustAnchorCommandOutput | GetCrlCommandOutput | GetProfileCommandOutput | GetSubjectCommandOutput | GetTrustAnchorCommandOutput | ImportCrlCommandOutput | ListCrlsCommandOutput | ListProfilesCommandOutput | ListSubjectsCommandOutput | ListTagsForResourceCommandOutput | ListTrustAnchorsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCrlCommandOutput | UpdateProfileCommandOutput | UpdateTrustAnchorCommandOutput;
37
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
38
-
39
- requestHandler?: __HttpHandler;
40
-
41
- sha256?: __HashConstructor;
42
-
43
- urlParser?: __UrlParser;
44
-
45
- bodyLengthChecker?: __BodyLengthCalculator;
46
-
47
- streamCollector?: __StreamCollector;
48
-
49
- base64Decoder?: __Decoder;
50
-
51
- base64Encoder?: __Encoder;
52
-
53
- utf8Decoder?: __Decoder;
54
-
55
- utf8Encoder?: __Encoder;
56
-
57
- runtime?: string;
58
-
59
- disableHostPrefix?: boolean;
60
-
61
- maxAttempts?: number | __Provider<number>;
62
-
63
- retryMode?: string | __Provider<string>;
64
-
65
- logger?: __Logger;
66
-
67
- useDualstackEndpoint?: boolean | __Provider<boolean>;
68
-
69
- useFipsEndpoint?: boolean | __Provider<boolean>;
70
-
71
- serviceId?: string;
72
-
73
- region?: string | __Provider<string>;
74
-
75
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
76
-
77
- regionInfoProvider?: RegionInfoProvider;
78
-
79
- defaultUserAgentProvider?: Provider<__UserAgent>;
80
-
81
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
82
- }
83
- declare type RolesAnywhereClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
84
-
85
- export interface RolesAnywhereClientConfig extends RolesAnywhereClientConfigType {
86
- }
87
- declare type RolesAnywhereClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
88
-
89
- export interface RolesAnywhereClientResolvedConfig extends RolesAnywhereClientResolvedConfigType {
90
- }
91
-
92
- export declare class RolesAnywhereClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, RolesAnywhereClientResolvedConfig> {
93
-
94
- readonly config: RolesAnywhereClientResolvedConfig;
95
- constructor(configuration: RolesAnywhereClientConfig);
96
-
97
- destroy(): void;
98
- }
99
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateProfileCommandInput,
47
+ CreateProfileCommandOutput,
48
+ } from "./commands/CreateProfileCommand";
49
+ import {
50
+ CreateTrustAnchorCommandInput,
51
+ CreateTrustAnchorCommandOutput,
52
+ } from "./commands/CreateTrustAnchorCommand";
53
+ import {
54
+ DeleteCrlCommandInput,
55
+ DeleteCrlCommandOutput,
56
+ } from "./commands/DeleteCrlCommand";
57
+ import {
58
+ DeleteProfileCommandInput,
59
+ DeleteProfileCommandOutput,
60
+ } from "./commands/DeleteProfileCommand";
61
+ import {
62
+ DeleteTrustAnchorCommandInput,
63
+ DeleteTrustAnchorCommandOutput,
64
+ } from "./commands/DeleteTrustAnchorCommand";
65
+ import {
66
+ DisableCrlCommandInput,
67
+ DisableCrlCommandOutput,
68
+ } from "./commands/DisableCrlCommand";
69
+ import {
70
+ DisableProfileCommandInput,
71
+ DisableProfileCommandOutput,
72
+ } from "./commands/DisableProfileCommand";
73
+ import {
74
+ DisableTrustAnchorCommandInput,
75
+ DisableTrustAnchorCommandOutput,
76
+ } from "./commands/DisableTrustAnchorCommand";
77
+ import {
78
+ EnableCrlCommandInput,
79
+ EnableCrlCommandOutput,
80
+ } from "./commands/EnableCrlCommand";
81
+ import {
82
+ EnableProfileCommandInput,
83
+ EnableProfileCommandOutput,
84
+ } from "./commands/EnableProfileCommand";
85
+ import {
86
+ EnableTrustAnchorCommandInput,
87
+ EnableTrustAnchorCommandOutput,
88
+ } from "./commands/EnableTrustAnchorCommand";
89
+ import {
90
+ GetCrlCommandInput,
91
+ GetCrlCommandOutput,
92
+ } from "./commands/GetCrlCommand";
93
+ import {
94
+ GetProfileCommandInput,
95
+ GetProfileCommandOutput,
96
+ } from "./commands/GetProfileCommand";
97
+ import {
98
+ GetSubjectCommandInput,
99
+ GetSubjectCommandOutput,
100
+ } from "./commands/GetSubjectCommand";
101
+ import {
102
+ GetTrustAnchorCommandInput,
103
+ GetTrustAnchorCommandOutput,
104
+ } from "./commands/GetTrustAnchorCommand";
105
+ import {
106
+ ImportCrlCommandInput,
107
+ ImportCrlCommandOutput,
108
+ } from "./commands/ImportCrlCommand";
109
+ import {
110
+ ListCrlsCommandInput,
111
+ ListCrlsCommandOutput,
112
+ } from "./commands/ListCrlsCommand";
113
+ import {
114
+ ListProfilesCommandInput,
115
+ ListProfilesCommandOutput,
116
+ } from "./commands/ListProfilesCommand";
117
+ import {
118
+ ListSubjectsCommandInput,
119
+ ListSubjectsCommandOutput,
120
+ } from "./commands/ListSubjectsCommand";
121
+ import {
122
+ ListTagsForResourceCommandInput,
123
+ ListTagsForResourceCommandOutput,
124
+ } from "./commands/ListTagsForResourceCommand";
125
+ import {
126
+ ListTrustAnchorsCommandInput,
127
+ ListTrustAnchorsCommandOutput,
128
+ } from "./commands/ListTrustAnchorsCommand";
129
+ import {
130
+ TagResourceCommandInput,
131
+ TagResourceCommandOutput,
132
+ } from "./commands/TagResourceCommand";
133
+ import {
134
+ UntagResourceCommandInput,
135
+ UntagResourceCommandOutput,
136
+ } from "./commands/UntagResourceCommand";
137
+ import {
138
+ UpdateCrlCommandInput,
139
+ UpdateCrlCommandOutput,
140
+ } from "./commands/UpdateCrlCommand";
141
+ import {
142
+ UpdateProfileCommandInput,
143
+ UpdateProfileCommandOutput,
144
+ } from "./commands/UpdateProfileCommand";
145
+ import {
146
+ UpdateTrustAnchorCommandInput,
147
+ UpdateTrustAnchorCommandOutput,
148
+ } from "./commands/UpdateTrustAnchorCommand";
149
+ export declare type ServiceInputTypes =
150
+ | CreateProfileCommandInput
151
+ | CreateTrustAnchorCommandInput
152
+ | DeleteCrlCommandInput
153
+ | DeleteProfileCommandInput
154
+ | DeleteTrustAnchorCommandInput
155
+ | DisableCrlCommandInput
156
+ | DisableProfileCommandInput
157
+ | DisableTrustAnchorCommandInput
158
+ | EnableCrlCommandInput
159
+ | EnableProfileCommandInput
160
+ | EnableTrustAnchorCommandInput
161
+ | GetCrlCommandInput
162
+ | GetProfileCommandInput
163
+ | GetSubjectCommandInput
164
+ | GetTrustAnchorCommandInput
165
+ | ImportCrlCommandInput
166
+ | ListCrlsCommandInput
167
+ | ListProfilesCommandInput
168
+ | ListSubjectsCommandInput
169
+ | ListTagsForResourceCommandInput
170
+ | ListTrustAnchorsCommandInput
171
+ | TagResourceCommandInput
172
+ | UntagResourceCommandInput
173
+ | UpdateCrlCommandInput
174
+ | UpdateProfileCommandInput
175
+ | UpdateTrustAnchorCommandInput;
176
+ export declare type ServiceOutputTypes =
177
+ | CreateProfileCommandOutput
178
+ | CreateTrustAnchorCommandOutput
179
+ | DeleteCrlCommandOutput
180
+ | DeleteProfileCommandOutput
181
+ | DeleteTrustAnchorCommandOutput
182
+ | DisableCrlCommandOutput
183
+ | DisableProfileCommandOutput
184
+ | DisableTrustAnchorCommandOutput
185
+ | EnableCrlCommandOutput
186
+ | EnableProfileCommandOutput
187
+ | EnableTrustAnchorCommandOutput
188
+ | GetCrlCommandOutput
189
+ | GetProfileCommandOutput
190
+ | GetSubjectCommandOutput
191
+ | GetTrustAnchorCommandOutput
192
+ | ImportCrlCommandOutput
193
+ | ListCrlsCommandOutput
194
+ | ListProfilesCommandOutput
195
+ | ListSubjectsCommandOutput
196
+ | ListTagsForResourceCommandOutput
197
+ | ListTrustAnchorsCommandOutput
198
+ | TagResourceCommandOutput
199
+ | UntagResourceCommandOutput
200
+ | UpdateCrlCommandOutput
201
+ | UpdateProfileCommandOutput
202
+ | UpdateTrustAnchorCommandOutput;
203
+ export interface ClientDefaults
204
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
205
+ requestHandler?: __HttpHandler;
206
+
207
+ sha256?: __HashConstructor;
208
+
209
+ urlParser?: __UrlParser;
210
+
211
+ bodyLengthChecker?: __BodyLengthCalculator;
212
+
213
+ streamCollector?: __StreamCollector;
214
+
215
+ base64Decoder?: __Decoder;
216
+
217
+ base64Encoder?: __Encoder;
218
+
219
+ utf8Decoder?: __Decoder;
220
+
221
+ utf8Encoder?: __Encoder;
222
+
223
+ runtime?: string;
224
+
225
+ disableHostPrefix?: boolean;
226
+
227
+ maxAttempts?: number | __Provider<number>;
228
+
229
+ retryMode?: string | __Provider<string>;
230
+
231
+ logger?: __Logger;
232
+
233
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
234
+
235
+ useFipsEndpoint?: boolean | __Provider<boolean>;
236
+
237
+ serviceId?: string;
238
+
239
+ region?: string | __Provider<string>;
240
+
241
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
242
+
243
+ regionInfoProvider?: RegionInfoProvider;
244
+
245
+ defaultUserAgentProvider?: Provider<__UserAgent>;
246
+
247
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
248
+ }
249
+ declare type RolesAnywhereClientConfigType = Partial<
250
+ __SmithyConfiguration<__HttpHandlerOptions>
251
+ > &
252
+ ClientDefaults &
253
+ RegionInputConfig &
254
+ EndpointsInputConfig &
255
+ RetryInputConfig &
256
+ HostHeaderInputConfig &
257
+ AwsAuthInputConfig &
258
+ UserAgentInputConfig;
259
+
260
+ export interface RolesAnywhereClientConfig
261
+ extends RolesAnywhereClientConfigType {}
262
+ declare type RolesAnywhereClientResolvedConfigType =
263
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
264
+ Required<ClientDefaults> &
265
+ RegionResolvedConfig &
266
+ EndpointsResolvedConfig &
267
+ RetryResolvedConfig &
268
+ HostHeaderResolvedConfig &
269
+ AwsAuthResolvedConfig &
270
+ UserAgentResolvedConfig;
271
+
272
+ export interface RolesAnywhereClientResolvedConfig
273
+ extends RolesAnywhereClientResolvedConfigType {}
274
+
275
+ export declare class RolesAnywhereClient extends __Client<
276
+ __HttpHandlerOptions,
277
+ ServiceInputTypes,
278
+ ServiceOutputTypes,
279
+ RolesAnywhereClientResolvedConfig
280
+ > {
281
+ readonly config: RolesAnywhereClientResolvedConfig;
282
+ constructor(configuration: RolesAnywhereClientConfig);
283
+
284
+ destroy(): void;
285
+ }
286
+ export {};
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CreateProfileRequest, ProfileDetailResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface CreateProfileCommandInput extends CreateProfileRequest {
6
- }
7
- export interface CreateProfileCommandOutput extends ProfileDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateProfileCommand extends $Command<CreateProfileCommandInput, CreateProfileCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: CreateProfileCommandInput;
12
- constructor(input: CreateProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateProfileCommandInput, CreateProfileCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CreateProfileRequest,
10
+ ProfileDetailResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RolesAnywhereClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RolesAnywhereClient";
17
+ export interface CreateProfileCommandInput extends CreateProfileRequest {}
18
+ export interface CreateProfileCommandOutput
19
+ extends ProfileDetailResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateProfileCommand extends $Command<
23
+ CreateProfileCommandInput,
24
+ CreateProfileCommandOutput,
25
+ RolesAnywhereClientResolvedConfig
26
+ > {
27
+ readonly input: CreateProfileCommandInput;
28
+ constructor(input: CreateProfileCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RolesAnywhereClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateProfileCommandInput, CreateProfileCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CreateTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface CreateTrustAnchorCommandInput extends CreateTrustAnchorRequest {
6
- }
7
- export interface CreateTrustAnchorCommandOutput extends TrustAnchorDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateTrustAnchorCommand extends $Command<CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: CreateTrustAnchorCommandInput;
12
- constructor(input: CreateTrustAnchorCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CreateTrustAnchorRequest,
10
+ TrustAnchorDetailResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RolesAnywhereClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RolesAnywhereClient";
17
+ export interface CreateTrustAnchorCommandInput
18
+ extends CreateTrustAnchorRequest {}
19
+ export interface CreateTrustAnchorCommandOutput
20
+ extends TrustAnchorDetailResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateTrustAnchorCommand extends $Command<
24
+ CreateTrustAnchorCommandInput,
25
+ CreateTrustAnchorCommandOutput,
26
+ RolesAnywhereClientResolvedConfig
27
+ > {
28
+ readonly input: CreateTrustAnchorCommandInput;
29
+ constructor(input: CreateTrustAnchorCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: RolesAnywhereClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CrlDetailResponse, ScalarCrlRequest } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface DeleteCrlCommandInput extends ScalarCrlRequest {
6
- }
7
- export interface DeleteCrlCommandOutput extends CrlDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteCrlCommand extends $Command<DeleteCrlCommandInput, DeleteCrlCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: DeleteCrlCommandInput;
12
- constructor(input: DeleteCrlCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCrlCommandInput, DeleteCrlCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { CrlDetailResponse, ScalarCrlRequest } from "../models/models_0";
9
+ import {
10
+ RolesAnywhereClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RolesAnywhereClient";
14
+ export interface DeleteCrlCommandInput extends ScalarCrlRequest {}
15
+ export interface DeleteCrlCommandOutput
16
+ extends CrlDetailResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeleteCrlCommand extends $Command<
20
+ DeleteCrlCommandInput,
21
+ DeleteCrlCommandOutput,
22
+ RolesAnywhereClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteCrlCommandInput;
25
+ constructor(input: DeleteCrlCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RolesAnywhereClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteCrlCommandInput, DeleteCrlCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ProfileDetailResponse, ScalarProfileRequest } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface DeleteProfileCommandInput extends ScalarProfileRequest {
6
- }
7
- export interface DeleteProfileCommandOutput extends ProfileDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteProfileCommand extends $Command<DeleteProfileCommandInput, DeleteProfileCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: DeleteProfileCommandInput;
12
- constructor(input: DeleteProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteProfileCommandInput, DeleteProfileCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ProfileDetailResponse,
10
+ ScalarProfileRequest,
11
+ } from "../models/models_0";
12
+ import {
13
+ RolesAnywhereClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RolesAnywhereClient";
17
+ export interface DeleteProfileCommandInput extends ScalarProfileRequest {}
18
+ export interface DeleteProfileCommandOutput
19
+ extends ProfileDetailResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteProfileCommand extends $Command<
23
+ DeleteProfileCommandInput,
24
+ DeleteProfileCommandOutput,
25
+ RolesAnywhereClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteProfileCommandInput;
28
+ constructor(input: DeleteProfileCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RolesAnywhereClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteProfileCommandInput, DeleteProfileCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }