@aws-sdk/client-rolesanywhere 3.168.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 +16 -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,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, ImportCrlRequest } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface ImportCrlCommandInput extends ImportCrlRequest {
6
- }
7
- export interface ImportCrlCommandOutput extends CrlDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ImportCrlCommand extends $Command<ImportCrlCommandInput, ImportCrlCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: ImportCrlCommandInput;
12
- constructor(input: ImportCrlCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ImportCrlCommandInput, ImportCrlCommandOutput>;
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, ImportCrlRequest } from "../models/models_0";
9
+ import {
10
+ RolesAnywhereClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RolesAnywhereClient";
14
+ export interface ImportCrlCommandInput extends ImportCrlRequest {}
15
+ export interface ImportCrlCommandOutput
16
+ extends CrlDetailResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ImportCrlCommand extends $Command<
20
+ ImportCrlCommandInput,
21
+ ImportCrlCommandOutput,
22
+ RolesAnywhereClientResolvedConfig
23
+ > {
24
+ readonly input: ImportCrlCommandInput;
25
+ constructor(input: ImportCrlCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RolesAnywhereClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ImportCrlCommandInput, ImportCrlCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { ListCrlsResponse, ListRequest } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface ListCrlsCommandInput extends ListRequest {
6
- }
7
- export interface ListCrlsCommandOutput extends ListCrlsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListCrlsCommand extends $Command<ListCrlsCommandInput, ListCrlsCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: ListCrlsCommandInput;
12
- constructor(input: ListCrlsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCrlsCommandInput, ListCrlsCommandOutput>;
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 { ListCrlsResponse, ListRequest } from "../models/models_0";
9
+ import {
10
+ RolesAnywhereClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RolesAnywhereClient";
14
+ export interface ListCrlsCommandInput extends ListRequest {}
15
+ export interface ListCrlsCommandOutput
16
+ extends ListCrlsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListCrlsCommand extends $Command<
20
+ ListCrlsCommandInput,
21
+ ListCrlsCommandOutput,
22
+ RolesAnywhereClientResolvedConfig
23
+ > {
24
+ readonly input: ListCrlsCommandInput;
25
+ constructor(input: ListCrlsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RolesAnywhereClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListCrlsCommandInput, ListCrlsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { ListProfilesResponse, ListRequest } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface ListProfilesCommandInput extends ListRequest {
6
- }
7
- export interface ListProfilesCommandOutput extends ListProfilesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListProfilesCommand extends $Command<ListProfilesCommandInput, ListProfilesCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: ListProfilesCommandInput;
12
- constructor(input: ListProfilesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProfilesCommandInput, ListProfilesCommandOutput>;
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 { ListProfilesResponse, ListRequest } from "../models/models_0";
9
+ import {
10
+ RolesAnywhereClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RolesAnywhereClient";
14
+ export interface ListProfilesCommandInput extends ListRequest {}
15
+ export interface ListProfilesCommandOutput
16
+ extends ListProfilesResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListProfilesCommand extends $Command<
20
+ ListProfilesCommandInput,
21
+ ListProfilesCommandOutput,
22
+ RolesAnywhereClientResolvedConfig
23
+ > {
24
+ readonly input: ListProfilesCommandInput;
25
+ constructor(input: ListProfilesCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RolesAnywhereClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListProfilesCommandInput, ListProfilesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { ListRequest, ListSubjectsResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface ListSubjectsCommandInput extends ListRequest {
6
- }
7
- export interface ListSubjectsCommandOutput extends ListSubjectsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListSubjectsCommand extends $Command<ListSubjectsCommandInput, ListSubjectsCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: ListSubjectsCommandInput;
12
- constructor(input: ListSubjectsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSubjectsCommandInput, ListSubjectsCommandOutput>;
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 { ListRequest, ListSubjectsResponse } from "../models/models_0";
9
+ import {
10
+ RolesAnywhereClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RolesAnywhereClient";
14
+ export interface ListSubjectsCommandInput extends ListRequest {}
15
+ export interface ListSubjectsCommandOutput
16
+ extends ListSubjectsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListSubjectsCommand extends $Command<
20
+ ListSubjectsCommandInput,
21
+ ListSubjectsCommandOutput,
22
+ RolesAnywhereClientResolvedConfig
23
+ > {
24
+ readonly input: ListSubjectsCommandInput;
25
+ constructor(input: ListSubjectsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RolesAnywhereClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListSubjectsCommandInput, ListSubjectsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RolesAnywhereClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RolesAnywhereClient";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ RolesAnywhereClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: RolesAnywhereClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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 { ListRequest, ListTrustAnchorsResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface ListTrustAnchorsCommandInput extends ListRequest {
6
- }
7
- export interface ListTrustAnchorsCommandOutput extends ListTrustAnchorsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTrustAnchorsCommand extends $Command<ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: ListTrustAnchorsCommandInput;
12
- constructor(input: ListTrustAnchorsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput>;
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 { ListRequest, ListTrustAnchorsResponse } from "../models/models_0";
9
+ import {
10
+ RolesAnywhereClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RolesAnywhereClient";
14
+ export interface ListTrustAnchorsCommandInput extends ListRequest {}
15
+ export interface ListTrustAnchorsCommandOutput
16
+ extends ListTrustAnchorsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListTrustAnchorsCommand extends $Command<
20
+ ListTrustAnchorsCommandInput,
21
+ ListTrustAnchorsCommandOutput,
22
+ RolesAnywhereClientResolvedConfig
23
+ > {
24
+ readonly input: ListTrustAnchorsCommandInput;
25
+ constructor(input: ListTrustAnchorsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RolesAnywhereClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
9
+ import {
10
+ RolesAnywhereClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RolesAnywhereClient";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ RolesAnywhereClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RolesAnywhereClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
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
+ UntagResourceRequest,
10
+ UntagResourceResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ RolesAnywhereClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RolesAnywhereClient";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ RolesAnywhereClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RolesAnywhereClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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, UpdateCrlRequest } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface UpdateCrlCommandInput extends UpdateCrlRequest {
6
- }
7
- export interface UpdateCrlCommandOutput extends CrlDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateCrlCommand extends $Command<UpdateCrlCommandInput, UpdateCrlCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: UpdateCrlCommandInput;
12
- constructor(input: UpdateCrlCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCrlCommandInput, UpdateCrlCommandOutput>;
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, UpdateCrlRequest } from "../models/models_0";
9
+ import {
10
+ RolesAnywhereClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../RolesAnywhereClient";
14
+ export interface UpdateCrlCommandInput extends UpdateCrlRequest {}
15
+ export interface UpdateCrlCommandOutput
16
+ extends CrlDetailResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class UpdateCrlCommand extends $Command<
20
+ UpdateCrlCommandInput,
21
+ UpdateCrlCommandOutput,
22
+ RolesAnywhereClientResolvedConfig
23
+ > {
24
+ readonly input: UpdateCrlCommandInput;
25
+ constructor(input: UpdateCrlCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: RolesAnywhereClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<UpdateCrlCommandInput, UpdateCrlCommandOutput>;
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, UpdateProfileRequest } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface UpdateProfileCommandInput extends UpdateProfileRequest {
6
- }
7
- export interface UpdateProfileCommandOutput extends ProfileDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateProfileCommand extends $Command<UpdateProfileCommandInput, UpdateProfileCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: UpdateProfileCommandInput;
12
- constructor(input: UpdateProfileCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateProfileCommandInput, UpdateProfileCommandOutput>;
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
+ UpdateProfileRequest,
11
+ } from "../models/models_0";
12
+ import {
13
+ RolesAnywhereClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RolesAnywhereClient";
17
+ export interface UpdateProfileCommandInput extends UpdateProfileRequest {}
18
+ export interface UpdateProfileCommandOutput
19
+ extends ProfileDetailResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateProfileCommand extends $Command<
23
+ UpdateProfileCommandInput,
24
+ UpdateProfileCommandOutput,
25
+ RolesAnywhereClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateProfileCommandInput;
28
+ constructor(input: UpdateProfileCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: RolesAnywhereClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateProfileCommandInput, UpdateProfileCommandOutput>;
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 { TrustAnchorDetailResponse, UpdateTrustAnchorRequest } from "../models/models_0";
4
- import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient";
5
- export interface UpdateTrustAnchorCommandInput extends UpdateTrustAnchorRequest {
6
- }
7
- export interface UpdateTrustAnchorCommandOutput extends TrustAnchorDetailResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateTrustAnchorCommand extends $Command<UpdateTrustAnchorCommandInput, UpdateTrustAnchorCommandOutput, RolesAnywhereClientResolvedConfig> {
11
- readonly input: UpdateTrustAnchorCommandInput;
12
- constructor(input: UpdateTrustAnchorCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RolesAnywhereClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateTrustAnchorCommandInput, UpdateTrustAnchorCommandOutput>;
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
+ TrustAnchorDetailResponse,
10
+ UpdateTrustAnchorRequest,
11
+ } from "../models/models_0";
12
+ import {
13
+ RolesAnywhereClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../RolesAnywhereClient";
17
+ export interface UpdateTrustAnchorCommandInput
18
+ extends UpdateTrustAnchorRequest {}
19
+ export interface UpdateTrustAnchorCommandOutput
20
+ extends TrustAnchorDetailResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateTrustAnchorCommand extends $Command<
24
+ UpdateTrustAnchorCommandInput,
25
+ UpdateTrustAnchorCommandOutput,
26
+ RolesAnywhereClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateTrustAnchorCommandInput;
29
+ constructor(input: UpdateTrustAnchorCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: RolesAnywhereClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateTrustAnchorCommandInput, UpdateTrustAnchorCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }