@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,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 { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface DeleteTrustAnchorCommandInput extends ScalarTrustAnchorRequest {
6
- }
7
- export interface DeleteTrustAnchorCommandOutput extends TrustAnchorDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteTrustAnchorCommand extends $Command<DeleteTrustAnchorCommandInput, DeleteTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: DeleteTrustAnchorCommandInput;
12
- constructor(input: DeleteTrustAnchorCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTrustAnchorCommandInput, DeleteTrustAnchorCommandOutput>;
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
+ 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
+
23
+ export declare class DeleteTrustAnchorCommand extends $Command<
24
+ DeleteTrustAnchorCommandInput,
25
+ DeleteTrustAnchorCommandOutput,
26
+ RolesAnywhereClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteTrustAnchorCommandInput;
29
+ constructor(input: DeleteTrustAnchorCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: RolesAnywhereClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteTrustAnchorCommandInput, DeleteTrustAnchorCommandOutput>;
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 DisableCrlCommandInput extends ScalarCrlRequest {
6
- }
7
- export interface DisableCrlCommandOutput extends CrlDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DisableCrlCommand extends $Command<DisableCrlCommandInput, DisableCrlCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: DisableCrlCommandInput;
12
- constructor(input: DisableCrlCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableCrlCommandInput, DisableCrlCommandOutput>;
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 DisableCrlCommandInput extends ScalarCrlRequest {}
15
+ export interface DisableCrlCommandOutput
16
+ extends CrlDetailResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DisableCrlCommand extends $Command<
20
+ DisableCrlCommandInput,
21
+ DisableCrlCommandOutput,
22
+ RolesAnywhereClientResolvedConfig
23
+ > {
24
+ readonly input: DisableCrlCommandInput;
25
+ constructor(input: DisableCrlCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RolesAnywhereClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DisableCrlCommandInput, DisableCrlCommandOutput>;
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 DisableProfileCommandInput extends ScalarProfileRequest {
6
- }
7
- export interface DisableProfileCommandOutput extends ProfileDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DisableProfileCommand extends $Command<DisableProfileCommandInput, DisableProfileCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: DisableProfileCommandInput;
12
- constructor(input: DisableProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableProfileCommandInput, DisableProfileCommandOutput>;
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 DisableProfileCommandInput extends ScalarProfileRequest {}
18
+ export interface DisableProfileCommandOutput
19
+ extends ProfileDetailResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DisableProfileCommand extends $Command<
23
+ DisableProfileCommandInput,
24
+ DisableProfileCommandOutput,
25
+ RolesAnywhereClientResolvedConfig
26
+ > {
27
+ readonly input: DisableProfileCommandInput;
28
+ constructor(input: DisableProfileCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RolesAnywhereClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DisableProfileCommandInput, DisableProfileCommandOutput>;
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 { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface DisableTrustAnchorCommandInput extends ScalarTrustAnchorRequest {
6
- }
7
- export interface DisableTrustAnchorCommandOutput extends TrustAnchorDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DisableTrustAnchorCommand extends $Command<DisableTrustAnchorCommandInput, DisableTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: DisableTrustAnchorCommandInput;
12
- constructor(input: DisableTrustAnchorCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableTrustAnchorCommandInput, DisableTrustAnchorCommandOutput>;
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
+ ScalarTrustAnchorRequest,
10
+ TrustAnchorDetailResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RolesAnywhereClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RolesAnywhereClient";
17
+ export interface DisableTrustAnchorCommandInput
18
+ extends ScalarTrustAnchorRequest {}
19
+ export interface DisableTrustAnchorCommandOutput
20
+ extends TrustAnchorDetailResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DisableTrustAnchorCommand extends $Command<
24
+ DisableTrustAnchorCommandInput,
25
+ DisableTrustAnchorCommandOutput,
26
+ RolesAnywhereClientResolvedConfig
27
+ > {
28
+ readonly input: DisableTrustAnchorCommandInput;
29
+ constructor(input: DisableTrustAnchorCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: RolesAnywhereClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DisableTrustAnchorCommandInput, DisableTrustAnchorCommandOutput>;
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 EnableCrlCommandInput extends ScalarCrlRequest {
6
- }
7
- export interface EnableCrlCommandOutput extends CrlDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class EnableCrlCommand extends $Command<EnableCrlCommandInput, EnableCrlCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: EnableCrlCommandInput;
12
- constructor(input: EnableCrlCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableCrlCommandInput, EnableCrlCommandOutput>;
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 EnableCrlCommandInput extends ScalarCrlRequest {}
15
+ export interface EnableCrlCommandOutput
16
+ extends CrlDetailResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class EnableCrlCommand extends $Command<
20
+ EnableCrlCommandInput,
21
+ EnableCrlCommandOutput,
22
+ RolesAnywhereClientResolvedConfig
23
+ > {
24
+ readonly input: EnableCrlCommandInput;
25
+ constructor(input: EnableCrlCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RolesAnywhereClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<EnableCrlCommandInput, EnableCrlCommandOutput>;
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 EnableProfileCommandInput extends ScalarProfileRequest {
6
- }
7
- export interface EnableProfileCommandOutput extends ProfileDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class EnableProfileCommand extends $Command<EnableProfileCommandInput, EnableProfileCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: EnableProfileCommandInput;
12
- constructor(input: EnableProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableProfileCommandInput, EnableProfileCommandOutput>;
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 EnableProfileCommandInput extends ScalarProfileRequest {}
18
+ export interface EnableProfileCommandOutput
19
+ extends ProfileDetailResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class EnableProfileCommand extends $Command<
23
+ EnableProfileCommandInput,
24
+ EnableProfileCommandOutput,
25
+ RolesAnywhereClientResolvedConfig
26
+ > {
27
+ readonly input: EnableProfileCommandInput;
28
+ constructor(input: EnableProfileCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RolesAnywhereClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<EnableProfileCommandInput, EnableProfileCommandOutput>;
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 { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface EnableTrustAnchorCommandInput extends ScalarTrustAnchorRequest {
6
- }
7
- export interface EnableTrustAnchorCommandOutput extends TrustAnchorDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class EnableTrustAnchorCommand extends $Command<EnableTrustAnchorCommandInput, EnableTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: EnableTrustAnchorCommandInput;
12
- constructor(input: EnableTrustAnchorCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableTrustAnchorCommandInput, EnableTrustAnchorCommandOutput>;
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
+ ScalarTrustAnchorRequest,
10
+ TrustAnchorDetailResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RolesAnywhereClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RolesAnywhereClient";
17
+ export interface EnableTrustAnchorCommandInput
18
+ extends ScalarTrustAnchorRequest {}
19
+ export interface EnableTrustAnchorCommandOutput
20
+ extends TrustAnchorDetailResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class EnableTrustAnchorCommand extends $Command<
24
+ EnableTrustAnchorCommandInput,
25
+ EnableTrustAnchorCommandOutput,
26
+ RolesAnywhereClientResolvedConfig
27
+ > {
28
+ readonly input: EnableTrustAnchorCommandInput;
29
+ constructor(input: EnableTrustAnchorCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: RolesAnywhereClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<EnableTrustAnchorCommandInput, EnableTrustAnchorCommandOutput>;
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 GetCrlCommandInput extends ScalarCrlRequest {
6
- }
7
- export interface GetCrlCommandOutput extends CrlDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetCrlCommand extends $Command<GetCrlCommandInput, GetCrlCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: GetCrlCommandInput;
12
- constructor(input: GetCrlCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCrlCommandInput, GetCrlCommandOutput>;
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 GetCrlCommandInput extends ScalarCrlRequest {}
15
+ export interface GetCrlCommandOutput
16
+ extends CrlDetailResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetCrlCommand extends $Command<
20
+ GetCrlCommandInput,
21
+ GetCrlCommandOutput,
22
+ RolesAnywhereClientResolvedConfig
23
+ > {
24
+ readonly input: GetCrlCommandInput;
25
+ constructor(input: GetCrlCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RolesAnywhereClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetCrlCommandInput, GetCrlCommandOutput>;
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 GetProfileCommandInput extends ScalarProfileRequest {
6
- }
7
- export interface GetProfileCommandOutput extends ProfileDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetProfileCommand extends $Command<GetProfileCommandInput, GetProfileCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: GetProfileCommandInput;
12
- constructor(input: GetProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProfileCommandInput, GetProfileCommandOutput>;
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 GetProfileCommandInput extends ScalarProfileRequest {}
18
+ export interface GetProfileCommandOutput
19
+ extends ProfileDetailResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetProfileCommand extends $Command<
23
+ GetProfileCommandInput,
24
+ GetProfileCommandOutput,
25
+ RolesAnywhereClientResolvedConfig
26
+ > {
27
+ readonly input: GetProfileCommandInput;
28
+ constructor(input: GetProfileCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RolesAnywhereClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetProfileCommandInput, GetProfileCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { ScalarSubjectRequest, SubjectDetailResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface GetSubjectCommandInput extends ScalarSubjectRequest {
6
- }
7
- export interface GetSubjectCommandOutput extends SubjectDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetSubjectCommand extends $Command<GetSubjectCommandInput, GetSubjectCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: GetSubjectCommandInput;
12
- constructor(input: GetSubjectCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSubjectCommandInput, GetSubjectCommandOutput>;
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
+ ScalarSubjectRequest,
10
+ SubjectDetailResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RolesAnywhereClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RolesAnywhereClient";
17
+ export interface GetSubjectCommandInput extends ScalarSubjectRequest {}
18
+ export interface GetSubjectCommandOutput
19
+ extends SubjectDetailResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetSubjectCommand extends $Command<
23
+ GetSubjectCommandInput,
24
+ GetSubjectCommandOutput,
25
+ RolesAnywhereClientResolvedConfig
26
+ > {
27
+ readonly input: GetSubjectCommandInput;
28
+ constructor(input: GetSubjectCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RolesAnywhereClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetSubjectCommandInput, GetSubjectCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface GetTrustAnchorCommandInput extends ScalarTrustAnchorRequest {
6
- }
7
- export interface GetTrustAnchorCommandOutput extends TrustAnchorDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetTrustAnchorCommand extends $Command<GetTrustAnchorCommandInput, GetTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: GetTrustAnchorCommandInput;
12
- constructor(input: GetTrustAnchorCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTrustAnchorCommandInput, GetTrustAnchorCommandOutput>;
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
+ ScalarTrustAnchorRequest,
10
+ TrustAnchorDetailResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RolesAnywhereClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RolesAnywhereClient";
17
+ export interface GetTrustAnchorCommandInput extends ScalarTrustAnchorRequest {}
18
+ export interface GetTrustAnchorCommandOutput
19
+ extends TrustAnchorDetailResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetTrustAnchorCommand extends $Command<
23
+ GetTrustAnchorCommandInput,
24
+ GetTrustAnchorCommandOutput,
25
+ RolesAnywhereClientResolvedConfig
26
+ > {
27
+ readonly input: GetTrustAnchorCommandInput;
28
+ constructor(input: GetTrustAnchorCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RolesAnywhereClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetTrustAnchorCommandInput, GetTrustAnchorCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }