@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/RolesAnywhere.d.ts +446 -135
- package/dist-types/ts3.4/RolesAnywhereClient.d.ts +261 -99
- package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateTrustAnchorCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteCrlCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteTrustAnchorCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DisableCrlCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DisableProfileCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DisableTrustAnchorCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/EnableCrlCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/EnableProfileCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/EnableTrustAnchorCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetCrlCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetSubjectCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetTrustAnchorCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ImportCrlCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListCrlsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListSubjectsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTrustAnchorsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateCrlCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateTrustAnchorCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +26 -26
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/RolesAnywhereServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +332 -430
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListCrlsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListProfilesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSubjectsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTrustAnchorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -80
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,99 +1,261 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
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
|
+
sha256?: __HashConstructor;
|
|
207
|
+
urlParser?: __UrlParser;
|
|
208
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
209
|
+
streamCollector?: __StreamCollector;
|
|
210
|
+
base64Decoder?: __Decoder;
|
|
211
|
+
base64Encoder?: __Encoder;
|
|
212
|
+
utf8Decoder?: __Decoder;
|
|
213
|
+
utf8Encoder?: __Encoder;
|
|
214
|
+
runtime?: string;
|
|
215
|
+
disableHostPrefix?: boolean;
|
|
216
|
+
maxAttempts?: number | __Provider<number>;
|
|
217
|
+
retryMode?: string | __Provider<string>;
|
|
218
|
+
logger?: __Logger;
|
|
219
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
220
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
221
|
+
serviceId?: string;
|
|
222
|
+
region?: string | __Provider<string>;
|
|
223
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
224
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
225
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
226
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
227
|
+
}
|
|
228
|
+
declare type RolesAnywhereClientConfigType = Partial<
|
|
229
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
230
|
+
> &
|
|
231
|
+
ClientDefaults &
|
|
232
|
+
RegionInputConfig &
|
|
233
|
+
EndpointsInputConfig &
|
|
234
|
+
RetryInputConfig &
|
|
235
|
+
HostHeaderInputConfig &
|
|
236
|
+
AwsAuthInputConfig &
|
|
237
|
+
UserAgentInputConfig;
|
|
238
|
+
export interface RolesAnywhereClientConfig
|
|
239
|
+
extends RolesAnywhereClientConfigType {}
|
|
240
|
+
declare type RolesAnywhereClientResolvedConfigType =
|
|
241
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
242
|
+
Required<ClientDefaults> &
|
|
243
|
+
RegionResolvedConfig &
|
|
244
|
+
EndpointsResolvedConfig &
|
|
245
|
+
RetryResolvedConfig &
|
|
246
|
+
HostHeaderResolvedConfig &
|
|
247
|
+
AwsAuthResolvedConfig &
|
|
248
|
+
UserAgentResolvedConfig;
|
|
249
|
+
export interface RolesAnywhereClientResolvedConfig
|
|
250
|
+
extends RolesAnywhereClientResolvedConfigType {}
|
|
251
|
+
export declare class RolesAnywhereClient extends __Client<
|
|
252
|
+
__HttpHandlerOptions,
|
|
253
|
+
ServiceInputTypes,
|
|
254
|
+
ServiceOutputTypes,
|
|
255
|
+
RolesAnywhereClientResolvedConfig
|
|
256
|
+
> {
|
|
257
|
+
readonly config: RolesAnywhereClientResolvedConfig;
|
|
258
|
+
constructor(configuration: RolesAnywhereClientConfig);
|
|
259
|
+
destroy(): void;
|
|
260
|
+
}
|
|
261
|
+
export {};
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class CreateProfileCommand extends $Command<
|
|
22
|
+
CreateProfileCommandInput,
|
|
23
|
+
CreateProfileCommandOutput,
|
|
24
|
+
RolesAnywhereClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: CreateProfileCommandInput;
|
|
27
|
+
constructor(input: CreateProfileCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: RolesAnywhereClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<CreateProfileCommandInput, CreateProfileCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class CreateTrustAnchorCommand extends $Command<
|
|
23
|
+
CreateTrustAnchorCommandInput,
|
|
24
|
+
CreateTrustAnchorCommandOutput,
|
|
25
|
+
RolesAnywhereClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateTrustAnchorCommandInput;
|
|
28
|
+
constructor(input: CreateTrustAnchorCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RolesAnywhereClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class DeleteCrlCommand extends $Command<
|
|
19
|
+
DeleteCrlCommandInput,
|
|
20
|
+
DeleteCrlCommandOutput,
|
|
21
|
+
RolesAnywhereClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteCrlCommandInput;
|
|
24
|
+
constructor(input: DeleteCrlCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: RolesAnywhereClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteCrlCommandInput, DeleteCrlCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
export declare class DeleteProfileCommand extends $Command<
|
|
22
|
+
DeleteProfileCommandInput,
|
|
23
|
+
DeleteProfileCommandOutput,
|
|
24
|
+
RolesAnywhereClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DeleteProfileCommandInput;
|
|
27
|
+
constructor(input: DeleteProfileCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: RolesAnywhereClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteProfileCommandInput, DeleteProfileCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
ScalarTrustAnchorRequest,
|
|
10
|
+
TrustAnchorDetailResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
RolesAnywhereClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../RolesAnywhereClient";
|
|
17
|
+
export interface DeleteTrustAnchorCommandInput
|
|
18
|
+
extends ScalarTrustAnchorRequest {}
|
|
19
|
+
export interface DeleteTrustAnchorCommandOutput
|
|
20
|
+
extends TrustAnchorDetailResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteTrustAnchorCommand extends $Command<
|
|
23
|
+
DeleteTrustAnchorCommandInput,
|
|
24
|
+
DeleteTrustAnchorCommandOutput,
|
|
25
|
+
RolesAnywhereClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteTrustAnchorCommandInput;
|
|
28
|
+
constructor(input: DeleteTrustAnchorCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: RolesAnywhereClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteTrustAnchorCommandInput, DeleteTrustAnchorCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|