@aws-sdk/client-rolesanywhere 3.1086.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/RolesAnywhere.d.ts +105 -146
- package/dist-types/ts3.4/RolesAnywhereClient.d.ts +16 -56
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateTrustAnchorCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteAttributeMappingCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteCrlCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteTrustAnchorCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DisableCrlCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DisableProfileCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DisableTrustAnchorCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/EnableCrlCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/EnableProfileCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/EnableTrustAnchorCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetCrlCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetSubjectCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetTrustAnchorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ImportCrlCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ListCrlsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListSubjectsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTrustAnchorsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/PutAttributeMappingCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutNotificationSettingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ResetNotificationSettingsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateCrlCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateTrustAnchorCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +4 -12
- package/dist-types/ts3.4/models/models_0.d.ts +1 -6
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListCrlsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +39 -39
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ProfileDetailResponse,
|
|
4
|
-
ScalarProfileRequest,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ProfileDetailResponse, ScalarProfileRequest } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetProfileCommandInput extends ScalarProfileRequest {}
|
|
8
|
-
export interface GetProfileCommandOutput
|
|
9
|
-
extends ProfileDetailResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetProfileCommandOutput extends ProfileDetailResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetProfileCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetProfileCommandInput
|
|
8
|
+
input: GetProfileCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetProfileCommandInput,
|
|
16
11
|
GetProfileCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetProfileCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetProfileCommandInput
|
|
17
|
+
input: GetProfileCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetProfileCommandInput,
|
|
25
20
|
GetProfileCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ScalarSubjectRequest,
|
|
4
|
-
SubjectDetailResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ScalarSubjectRequest, SubjectDetailResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetSubjectCommandInput extends ScalarSubjectRequest {}
|
|
8
|
-
export interface GetSubjectCommandOutput
|
|
9
|
-
extends SubjectDetailResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSubjectCommandOutput extends SubjectDetailResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetSubjectCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetSubjectCommandInput
|
|
8
|
+
input: GetSubjectCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetSubjectCommandInput,
|
|
16
11
|
GetSubjectCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetSubjectCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetSubjectCommandInput
|
|
17
|
+
input: GetSubjectCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetSubjectCommandInput,
|
|
25
20
|
GetSubjectCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ScalarTrustAnchorRequest,
|
|
4
|
-
TrustAnchorDetailResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetTrustAnchorCommandInput extends ScalarTrustAnchorRequest {}
|
|
8
|
-
export interface GetTrustAnchorCommandOutput
|
|
9
|
-
extends TrustAnchorDetailResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetTrustAnchorCommandOutput extends TrustAnchorDetailResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetTrustAnchorCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetTrustAnchorCommandInput
|
|
8
|
+
input: GetTrustAnchorCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetTrustAnchorCommandInput,
|
|
16
11
|
GetTrustAnchorCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetTrustAnchorCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetTrustAnchorCommandInput
|
|
17
|
+
input: GetTrustAnchorCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetTrustAnchorCommandInput,
|
|
25
20
|
GetTrustAnchorCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CrlDetailResponse, ImportCrlRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ImportCrlCommandInput extends ImportCrlRequest {}
|
|
5
|
-
export interface ImportCrlCommandOutput
|
|
6
|
-
extends CrlDetailResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ImportCrlCommandOutput extends CrlDetailResponse, __MetadataBearer {}
|
|
8
6
|
declare const ImportCrlCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ImportCrlCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ImportCrlCommandInput,
|
|
11
11
|
ImportCrlCommandOutput,
|
|
12
12
|
import("..").RolesAnywhereClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: ImportCrlCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
ImportCrlCommandInput,
|
|
18
20
|
ImportCrlCommandOutput,
|
|
19
21
|
import("..").RolesAnywhereClientResolvedConfig,
|
|
@@ -2,11 +2,11 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListCrlsResponse, ListRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListCrlsCommandInput extends ListRequest {}
|
|
5
|
-
export interface ListCrlsCommandOutput
|
|
6
|
-
extends ListCrlsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListCrlsCommandOutput extends ListCrlsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListCrlsCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListCrlsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListCrlsCommandInput,
|
|
11
11
|
ListCrlsCommandOutput,
|
|
12
12
|
import("..").RolesAnywhereClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListProfilesResponse, ListRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListProfilesCommandInput extends ListRequest {}
|
|
5
|
-
export interface ListProfilesCommandOutput
|
|
6
|
-
extends ListProfilesResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListProfilesCommandOutput extends ListProfilesResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListProfilesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListProfilesCommandInput
|
|
8
|
+
input: ListProfilesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListProfilesCommandInput,
|
|
13
11
|
ListProfilesCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListRequest, ListSubjectsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListSubjectsCommandInput extends ListRequest {}
|
|
5
|
-
export interface ListSubjectsCommandOutput
|
|
6
|
-
extends ListSubjectsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListSubjectsCommandOutput extends ListSubjectsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListSubjectsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListSubjectsCommandInput
|
|
8
|
+
input: ListSubjectsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListSubjectsCommandInput,
|
|
13
11
|
ListSubjectsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListRequest, ListTrustAnchorsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListTrustAnchorsCommandInput extends ListRequest {}
|
|
5
|
-
export interface ListTrustAnchorsCommandOutput
|
|
6
|
-
extends ListTrustAnchorsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListTrustAnchorsCommandOutput extends ListTrustAnchorsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListTrustAnchorsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListTrustAnchorsCommandInput
|
|
8
|
+
input: ListTrustAnchorsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListTrustAnchorsCommandInput,
|
|
13
11
|
ListTrustAnchorsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutAttributeMappingRequest,
|
|
4
|
-
PutAttributeMappingResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutAttributeMappingRequest, PutAttributeMappingResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutAttributeMappingCommandInput
|
|
8
|
-
extends PutAttributeMappingRequest {}
|
|
4
|
+
export interface PutAttributeMappingCommandInput extends PutAttributeMappingRequest {}
|
|
9
5
|
export interface PutAttributeMappingCommandOutput
|
|
10
|
-
extends PutAttributeMappingResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutAttributeMappingResponse, __MetadataBearer {}
|
|
12
7
|
declare const PutAttributeMappingCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutAttributeMappingCommandInput
|
|
9
|
+
input: PutAttributeMappingCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutAttributeMappingCommandInput,
|
|
17
12
|
PutAttributeMappingCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PutAttributeMappingCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PutAttributeMappingCommandInput
|
|
18
|
+
input: PutAttributeMappingCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutAttributeMappingCommandInput,
|
|
26
21
|
PutAttributeMappingCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
PutNotificationSettingsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutNotificationSettingsCommandInput
|
|
8
|
-
extends PutNotificationSettingsRequest {}
|
|
7
|
+
export interface PutNotificationSettingsCommandInput extends PutNotificationSettingsRequest {}
|
|
9
8
|
export interface PutNotificationSettingsCommandOutput
|
|
10
|
-
extends PutNotificationSettingsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends PutNotificationSettingsResponse, __MetadataBearer {}
|
|
12
10
|
declare const PutNotificationSettingsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: PutNotificationSettingsCommandInput
|
|
12
|
+
input: PutNotificationSettingsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
PutNotificationSettingsCommandInput,
|
|
17
15
|
PutNotificationSettingsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const PutNotificationSettingsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: PutNotificationSettingsCommandInput
|
|
21
|
+
input: PutNotificationSettingsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
PutNotificationSettingsCommandInput,
|
|
26
24
|
PutNotificationSettingsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ResetNotificationSettingsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ResetNotificationSettingsCommandInput
|
|
8
|
-
extends ResetNotificationSettingsRequest {}
|
|
7
|
+
export interface ResetNotificationSettingsCommandInput extends ResetNotificationSettingsRequest {}
|
|
9
8
|
export interface ResetNotificationSettingsCommandOutput
|
|
10
|
-
extends ResetNotificationSettingsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ResetNotificationSettingsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ResetNotificationSettingsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ResetNotificationSettingsCommandInput
|
|
12
|
+
input: ResetNotificationSettingsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ResetNotificationSettingsCommandInput,
|
|
17
15
|
ResetNotificationSettingsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ResetNotificationSettingsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ResetNotificationSettingsCommandInput
|
|
21
|
+
input: ResetNotificationSettingsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ResetNotificationSettingsCommandInput,
|
|
26
24
|
ResetNotificationSettingsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CrlDetailResponse, UpdateCrlRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateCrlCommandInput extends UpdateCrlRequest {}
|
|
5
|
-
export interface UpdateCrlCommandOutput
|
|
6
|
-
extends CrlDetailResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateCrlCommandOutput extends CrlDetailResponse, __MetadataBearer {}
|
|
8
6
|
declare const UpdateCrlCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: UpdateCrlCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
UpdateCrlCommandInput,
|
|
11
11
|
UpdateCrlCommandOutput,
|
|
12
12
|
import("..").RolesAnywhereClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateCrlCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
UpdateCrlCommandInput,
|
|
18
20
|
UpdateCrlCommandOutput,
|
|
19
21
|
import("..").RolesAnywhereClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ProfileDetailResponse,
|
|
4
|
-
UpdateProfileRequest,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ProfileDetailResponse, UpdateProfileRequest } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateProfileCommandInput extends UpdateProfileRequest {}
|
|
8
|
-
export interface UpdateProfileCommandOutput
|
|
9
|
-
extends ProfileDetailResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateProfileCommandOutput extends ProfileDetailResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateProfileCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateProfileCommandInput
|
|
8
|
+
input: UpdateProfileCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateProfileCommandInput,
|
|
16
11
|
UpdateProfileCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateProfileCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateProfileCommandInput
|
|
17
|
+
input: UpdateProfileCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateProfileCommandInput,
|
|
25
20
|
UpdateProfileCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
TrustAnchorDetailResponse,
|
|
4
|
-
UpdateTrustAnchorRequest,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { TrustAnchorDetailResponse, UpdateTrustAnchorRequest } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateTrustAnchorCommandInput
|
|
8
|
-
extends UpdateTrustAnchorRequest {}
|
|
4
|
+
export interface UpdateTrustAnchorCommandInput extends UpdateTrustAnchorRequest {}
|
|
9
5
|
export interface UpdateTrustAnchorCommandOutput
|
|
10
|
-
extends TrustAnchorDetailResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends TrustAnchorDetailResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateTrustAnchorCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateTrustAnchorCommandInput
|
|
9
|
+
input: UpdateTrustAnchorCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateTrustAnchorCommandInput,
|
|
17
12
|
UpdateTrustAnchorCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateTrustAnchorCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateTrustAnchorCommandInput
|
|
18
|
+
input: UpdateTrustAnchorCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateTrustAnchorCommandInput,
|
|
26
21
|
UpdateTrustAnchorCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface RolesAnywhereExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -3,23 +3,19 @@ export declare const CertificateField: {
|
|
|
3
3
|
readonly x509SAN: "x509SAN";
|
|
4
4
|
readonly x509Subject: "x509Subject";
|
|
5
5
|
};
|
|
6
|
-
export type CertificateField =
|
|
7
|
-
(typeof CertificateField)[keyof typeof CertificateField];
|
|
6
|
+
export type CertificateField = (typeof CertificateField)[keyof typeof CertificateField];
|
|
8
7
|
export declare const NotificationChannel: {
|
|
9
8
|
readonly ALL: "ALL";
|
|
10
9
|
};
|
|
11
|
-
export type NotificationChannel =
|
|
12
|
-
(typeof NotificationChannel)[keyof typeof NotificationChannel];
|
|
10
|
+
export type NotificationChannel = (typeof NotificationChannel)[keyof typeof NotificationChannel];
|
|
13
11
|
export declare const NotificationEvent: {
|
|
14
12
|
readonly CA_CERTIFICATE_EXPIRY: "CA_CERTIFICATE_EXPIRY";
|
|
15
13
|
readonly END_ENTITY_CERTIFICATE_EXPIRY: "END_ENTITY_CERTIFICATE_EXPIRY";
|
|
16
14
|
};
|
|
17
|
-
export type NotificationEvent =
|
|
18
|
-
(typeof NotificationEvent)[keyof typeof NotificationEvent];
|
|
15
|
+
export type NotificationEvent = (typeof NotificationEvent)[keyof typeof NotificationEvent];
|
|
19
16
|
export declare const TrustAnchorType: {
|
|
20
17
|
readonly AWS_ACM_PCA: "AWS_ACM_PCA";
|
|
21
18
|
readonly CERTIFICATE_BUNDLE: "CERTIFICATE_BUNDLE";
|
|
22
19
|
readonly SELF_SIGNED_REPOSITORY: "SELF_SIGNED_REPOSITORY";
|
|
23
20
|
};
|
|
24
|
-
export type TrustAnchorType =
|
|
25
|
-
(typeof TrustAnchorType)[keyof typeof TrustAnchorType];
|
|
21
|
+
export type TrustAnchorType = (typeof TrustAnchorType)[keyof typeof TrustAnchorType];
|
|
@@ -3,28 +3,20 @@ import { RolesAnywhereServiceException as __BaseException } from "./RolesAnywher
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
6
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
7
|
}
|
|
10
8
|
export declare class ValidationException extends __BaseException {
|
|
11
9
|
readonly name: "ValidationException";
|
|
12
10
|
readonly $fault: "client";
|
|
13
|
-
constructor(
|
|
14
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
15
|
-
);
|
|
11
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
16
12
|
}
|
|
17
13
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
18
14
|
readonly name: "ResourceNotFoundException";
|
|
19
15
|
readonly $fault: "client";
|
|
20
|
-
constructor(
|
|
21
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
22
|
-
);
|
|
16
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
23
17
|
}
|
|
24
18
|
export declare class TooManyTagsException extends __BaseException {
|
|
25
19
|
readonly name: "TooManyTagsException";
|
|
26
20
|
readonly $fault: "client";
|
|
27
|
-
constructor(
|
|
28
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
29
|
-
);
|
|
21
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
30
22
|
}
|
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
CertificateField,
|
|
3
|
-
NotificationChannel,
|
|
4
|
-
NotificationEvent,
|
|
5
|
-
TrustAnchorType,
|
|
6
|
-
} from "./enums";
|
|
1
|
+
import { CertificateField, NotificationChannel, NotificationEvent, TrustAnchorType } from "./enums";
|
|
7
2
|
export interface MappingRule {
|
|
8
3
|
specifier: string | undefined;
|
|
9
4
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { RolesAnywhereClient } from "../RolesAnywhereClient";
|
|
3
|
-
export interface RolesAnywherePaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface RolesAnywherePaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: RolesAnywhereClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { Paginator } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListCrlsCommandInput,
|
|
4
|
-
ListCrlsCommandOutput,
|
|
5
|
-
} from "../commands/ListCrlsCommand";
|
|
2
|
+
import { ListCrlsCommandInput, ListCrlsCommandOutput } from "../commands/ListCrlsCommand";
|
|
6
3
|
import { RolesAnywherePaginationConfiguration } from "./Interfaces";
|
|
7
4
|
export declare const paginateListCrls: (
|
|
8
5
|
config: RolesAnywherePaginationConfiguration,
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: RolesAnywhereClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: RolesAnywhereClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: RolesAnywhereClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: RolesAnywhereClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|