@aws-sdk/client-verifiedpermissions 3.1087.0 → 3.1089.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/VerifiedPermissions.d.ts +111 -123
- package/dist-types/ts3.4/VerifiedPermissionsClient.d.ts +9 -31
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- 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/BatchGetPolicyCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/BatchIsAuthorizedCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/BatchIsAuthorizedWithTokenCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateIdentitySourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreatePolicyStoreAliasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreatePolicyStoreCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreatePolicyTemplateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteIdentitySourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeletePolicyStoreAliasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeletePolicyStoreCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeletePolicyTemplateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetIdentitySourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetPolicyStoreAliasCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetPolicyStoreCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetPolicyTemplateCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetSchemaCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/IsAuthorizedCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/IsAuthorizedWithTokenCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListIdentitySourcesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListPolicyStoreAliasesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListPolicyStoresCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListPolicyTemplatesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutSchemaCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateIdentitySourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdatePolicyStoreCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdatePolicyTemplateCommand.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 +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- package/dist-types/ts3.4/models/models_0.d.ts +7 -21
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetPolicyStoreAliasInput,
|
|
4
|
-
GetPolicyStoreAliasOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetPolicyStoreAliasInput, GetPolicyStoreAliasOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetPolicyStoreAliasCommandInput
|
|
8
|
-
extends GetPolicyStoreAliasInput {}
|
|
4
|
+
export interface GetPolicyStoreAliasCommandInput extends GetPolicyStoreAliasInput {}
|
|
9
5
|
export interface GetPolicyStoreAliasCommandOutput
|
|
10
|
-
extends GetPolicyStoreAliasOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetPolicyStoreAliasOutput, __MetadataBearer {}
|
|
12
7
|
declare const GetPolicyStoreAliasCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetPolicyStoreAliasCommandInput
|
|
9
|
+
input: GetPolicyStoreAliasCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetPolicyStoreAliasCommandInput,
|
|
17
12
|
GetPolicyStoreAliasCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetPolicyStoreAliasCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetPolicyStoreAliasCommandInput
|
|
18
|
+
input: GetPolicyStoreAliasCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetPolicyStoreAliasCommandInput,
|
|
26
21
|
GetPolicyStoreAliasCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetPolicyStoreInput, GetPolicyStoreOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetPolicyStoreCommandInput extends GetPolicyStoreInput {}
|
|
5
|
-
export interface GetPolicyStoreCommandOutput
|
|
6
|
-
extends GetPolicyStoreOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetPolicyStoreCommandOutput extends GetPolicyStoreOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetPolicyStoreCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetPolicyStoreCommandInput
|
|
8
|
+
input: GetPolicyStoreCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetPolicyStoreCommandInput,
|
|
13
11
|
GetPolicyStoreCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetPolicyStoreCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetPolicyStoreCommandInput
|
|
17
|
+
input: GetPolicyStoreCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetPolicyStoreCommandInput,
|
|
22
20
|
GetPolicyStoreCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetPolicyTemplateInput,
|
|
4
|
-
GetPolicyTemplateOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetPolicyTemplateInput, GetPolicyTemplateOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetPolicyTemplateCommandInput extends GetPolicyTemplateInput {}
|
|
8
|
-
export interface GetPolicyTemplateCommandOutput
|
|
9
|
-
extends GetPolicyTemplateOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetPolicyTemplateCommandOutput extends GetPolicyTemplateOutput, __MetadataBearer {}
|
|
11
6
|
declare const GetPolicyTemplateCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetPolicyTemplateCommandInput
|
|
8
|
+
input: GetPolicyTemplateCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetPolicyTemplateCommandInput,
|
|
16
11
|
GetPolicyTemplateCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetPolicyTemplateCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetPolicyTemplateCommandInput
|
|
17
|
+
input: GetPolicyTemplateCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetPolicyTemplateCommandInput,
|
|
25
20
|
GetPolicyTemplateCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetSchemaInput, GetSchemaOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetSchemaCommandInput extends GetSchemaInput {}
|
|
5
|
-
export interface GetSchemaCommandOutput
|
|
6
|
-
extends GetSchemaOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSchemaCommandOutput extends GetSchemaOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetSchemaCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetSchemaCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetSchemaCommandInput,
|
|
11
11
|
GetSchemaCommandOutput,
|
|
12
12
|
import("..").VerifiedPermissionsClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetSchemaCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetSchemaCommandInput,
|
|
18
20
|
GetSchemaCommandOutput,
|
|
19
21
|
import("..").VerifiedPermissionsClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { IsAuthorizedInput, IsAuthorizedOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface IsAuthorizedCommandInput extends IsAuthorizedInput {}
|
|
5
|
-
export interface IsAuthorizedCommandOutput
|
|
6
|
-
extends IsAuthorizedOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface IsAuthorizedCommandOutput extends IsAuthorizedOutput, __MetadataBearer {}
|
|
8
6
|
declare const IsAuthorizedCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: IsAuthorizedCommandInput
|
|
8
|
+
input: IsAuthorizedCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
IsAuthorizedCommandInput,
|
|
13
11
|
IsAuthorizedCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const IsAuthorizedCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: IsAuthorizedCommandInput
|
|
17
|
+
input: IsAuthorizedCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
IsAuthorizedCommandInput,
|
|
22
20
|
IsAuthorizedCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
IsAuthorizedWithTokenInput,
|
|
4
|
-
IsAuthorizedWithTokenOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { IsAuthorizedWithTokenInput, IsAuthorizedWithTokenOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface IsAuthorizedWithTokenCommandInput
|
|
8
|
-
extends IsAuthorizedWithTokenInput {}
|
|
4
|
+
export interface IsAuthorizedWithTokenCommandInput extends IsAuthorizedWithTokenInput {}
|
|
9
5
|
export interface IsAuthorizedWithTokenCommandOutput
|
|
10
|
-
extends IsAuthorizedWithTokenOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends IsAuthorizedWithTokenOutput, __MetadataBearer {}
|
|
12
7
|
declare const IsAuthorizedWithTokenCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: IsAuthorizedWithTokenCommandInput
|
|
9
|
+
input: IsAuthorizedWithTokenCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
IsAuthorizedWithTokenCommandInput,
|
|
17
12
|
IsAuthorizedWithTokenCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const IsAuthorizedWithTokenCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: IsAuthorizedWithTokenCommandInput
|
|
18
|
+
input: IsAuthorizedWithTokenCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
IsAuthorizedWithTokenCommandInput,
|
|
26
21
|
IsAuthorizedWithTokenCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListIdentitySourcesInput,
|
|
4
|
-
ListIdentitySourcesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListIdentitySourcesInput, ListIdentitySourcesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListIdentitySourcesCommandInput
|
|
8
|
-
extends ListIdentitySourcesInput {}
|
|
4
|
+
export interface ListIdentitySourcesCommandInput extends ListIdentitySourcesInput {}
|
|
9
5
|
export interface ListIdentitySourcesCommandOutput
|
|
10
|
-
extends ListIdentitySourcesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListIdentitySourcesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListIdentitySourcesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListIdentitySourcesCommandInput
|
|
9
|
+
input: ListIdentitySourcesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListIdentitySourcesCommandInput,
|
|
17
12
|
ListIdentitySourcesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListIdentitySourcesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListIdentitySourcesCommandInput
|
|
18
|
+
input: ListIdentitySourcesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListIdentitySourcesCommandInput,
|
|
26
21
|
ListIdentitySourcesCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListPoliciesInput, ListPoliciesOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListPoliciesCommandInput extends ListPoliciesInput {}
|
|
5
|
-
export interface ListPoliciesCommandOutput
|
|
6
|
-
extends ListPoliciesOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListPoliciesCommandOutput extends ListPoliciesOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListPoliciesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListPoliciesCommandInput
|
|
8
|
+
input: ListPoliciesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListPoliciesCommandInput,
|
|
13
11
|
ListPoliciesCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListPoliciesCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListPoliciesCommandInput
|
|
17
|
+
input: ListPoliciesCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListPoliciesCommandInput,
|
|
22
20
|
ListPoliciesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListPolicyStoreAliasesInput,
|
|
4
|
-
ListPolicyStoreAliasesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListPolicyStoreAliasesInput, ListPolicyStoreAliasesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListPolicyStoreAliasesCommandInput
|
|
8
|
-
extends ListPolicyStoreAliasesInput {}
|
|
4
|
+
export interface ListPolicyStoreAliasesCommandInput extends ListPolicyStoreAliasesInput {}
|
|
9
5
|
export interface ListPolicyStoreAliasesCommandOutput
|
|
10
|
-
extends ListPolicyStoreAliasesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListPolicyStoreAliasesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListPolicyStoreAliasesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListPolicyStoreAliasesCommandInput
|
|
9
|
+
input: ListPolicyStoreAliasesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListPolicyStoreAliasesCommandInput,
|
|
17
12
|
ListPolicyStoreAliasesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListPolicyStoresInput,
|
|
4
|
-
ListPolicyStoresOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListPolicyStoresInput, ListPolicyStoresOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListPolicyStoresCommandInput extends ListPolicyStoresInput {}
|
|
8
|
-
export interface ListPolicyStoresCommandOutput
|
|
9
|
-
extends ListPolicyStoresOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListPolicyStoresCommandOutput extends ListPolicyStoresOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListPolicyStoresCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListPolicyStoresCommandInput
|
|
8
|
+
input: ListPolicyStoresCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListPolicyStoresCommandInput,
|
|
16
11
|
ListPolicyStoresCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListPolicyTemplatesInput,
|
|
4
|
-
ListPolicyTemplatesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListPolicyTemplatesInput, ListPolicyTemplatesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListPolicyTemplatesCommandInput
|
|
8
|
-
extends ListPolicyTemplatesInput {}
|
|
4
|
+
export interface ListPolicyTemplatesCommandInput extends ListPolicyTemplatesInput {}
|
|
9
5
|
export interface ListPolicyTemplatesCommandOutput
|
|
10
|
-
extends ListPolicyTemplatesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListPolicyTemplatesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListPolicyTemplatesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListPolicyTemplatesCommandInput
|
|
9
|
+
input: ListPolicyTemplatesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListPolicyTemplatesCommandInput,
|
|
17
12
|
ListPolicyTemplatesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListPolicyTemplatesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListPolicyTemplatesCommandInput
|
|
18
|
+
input: ListPolicyTemplatesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListPolicyTemplatesCommandInput,
|
|
26
21
|
ListPolicyTemplatesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceInput,
|
|
4
|
-
ListTagsForResourceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceInput {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceOutput, __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,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { PutSchemaInput, PutSchemaOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface PutSchemaCommandInput extends PutSchemaInput {}
|
|
5
|
-
export interface PutSchemaCommandOutput
|
|
6
|
-
extends PutSchemaOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface PutSchemaCommandOutput extends PutSchemaOutput, __MetadataBearer {}
|
|
8
6
|
declare const PutSchemaCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: PutSchemaCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
PutSchemaCommandInput,
|
|
11
11
|
PutSchemaCommandOutput,
|
|
12
12
|
import("..").VerifiedPermissionsClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: PutSchemaCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
PutSchemaCommandInput,
|
|
18
20
|
PutSchemaCommandOutput,
|
|
19
21
|
import("..").VerifiedPermissionsClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceOutput, __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,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
5
|
-
export interface UntagResourceCommandOutput
|
|
6
|
-
extends UntagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const UntagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UntagResourceCommandInput,
|
|
13
11
|
UntagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UntagResourceCommandInput,
|
|
22
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateIdentitySourceInput,
|
|
4
|
-
UpdateIdentitySourceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateIdentitySourceInput, UpdateIdentitySourceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateIdentitySourceCommandInput
|
|
8
|
-
extends UpdateIdentitySourceInput {}
|
|
4
|
+
export interface UpdateIdentitySourceCommandInput extends UpdateIdentitySourceInput {}
|
|
9
5
|
export interface UpdateIdentitySourceCommandOutput
|
|
10
|
-
extends UpdateIdentitySourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateIdentitySourceOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateIdentitySourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateIdentitySourceCommandInput
|
|
9
|
+
input: UpdateIdentitySourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateIdentitySourceCommandInput,
|
|
17
12
|
UpdateIdentitySourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateIdentitySourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateIdentitySourceCommandInput
|
|
18
|
+
input: UpdateIdentitySourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateIdentitySourceCommandInput,
|
|
26
21
|
UpdateIdentitySourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdatePolicyInput, UpdatePolicyOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdatePolicyCommandInput extends UpdatePolicyInput {}
|
|
5
|
-
export interface UpdatePolicyCommandOutput
|
|
6
|
-
extends UpdatePolicyOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdatePolicyCommandOutput extends UpdatePolicyOutput, __MetadataBearer {}
|
|
8
6
|
declare const UpdatePolicyCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdatePolicyCommandInput
|
|
8
|
+
input: UpdatePolicyCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdatePolicyCommandInput,
|
|
13
11
|
UpdatePolicyCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdatePolicyCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdatePolicyCommandInput
|
|
17
|
+
input: UpdatePolicyCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdatePolicyCommandInput,
|
|
22
20
|
UpdatePolicyCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdatePolicyStoreInput,
|
|
4
|
-
UpdatePolicyStoreOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdatePolicyStoreInput, UpdatePolicyStoreOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdatePolicyStoreCommandInput extends UpdatePolicyStoreInput {}
|
|
8
|
-
export interface UpdatePolicyStoreCommandOutput
|
|
9
|
-
extends UpdatePolicyStoreOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdatePolicyStoreCommandOutput extends UpdatePolicyStoreOutput, __MetadataBearer {}
|
|
11
6
|
declare const UpdatePolicyStoreCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdatePolicyStoreCommandInput
|
|
8
|
+
input: UpdatePolicyStoreCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdatePolicyStoreCommandInput,
|
|
16
11
|
UpdatePolicyStoreCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdatePolicyStoreCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdatePolicyStoreCommandInput
|
|
17
|
+
input: UpdatePolicyStoreCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdatePolicyStoreCommandInput,
|
|
25
20
|
UpdatePolicyStoreCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdatePolicyTemplateInput,
|
|
4
|
-
UpdatePolicyTemplateOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdatePolicyTemplateInput, UpdatePolicyTemplateOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdatePolicyTemplateCommandInput
|
|
8
|
-
extends UpdatePolicyTemplateInput {}
|
|
4
|
+
export interface UpdatePolicyTemplateCommandInput extends UpdatePolicyTemplateInput {}
|
|
9
5
|
export interface UpdatePolicyTemplateCommandOutput
|
|
10
|
-
extends UpdatePolicyTemplateOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdatePolicyTemplateOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdatePolicyTemplateCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdatePolicyTemplateCommandInput
|
|
9
|
+
input: UpdatePolicyTemplateCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdatePolicyTemplateCommandInput,
|
|
17
12
|
UpdatePolicyTemplateCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdatePolicyTemplateCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdatePolicyTemplateCommandInput
|
|
18
|
+
input: UpdatePolicyTemplateCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdatePolicyTemplateCommandInput,
|
|
26
21
|
UpdatePolicyTemplateCommandOutput,
|
|
@@ -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 VerifiedPermissionsExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -43,14 +43,12 @@ export declare const DeletionProtection: {
|
|
|
43
43
|
readonly DISABLED: "DISABLED";
|
|
44
44
|
readonly ENABLED: "ENABLED";
|
|
45
45
|
};
|
|
46
|
-
export type DeletionProtection =
|
|
47
|
-
(typeof DeletionProtection)[keyof typeof DeletionProtection];
|
|
46
|
+
export type DeletionProtection = (typeof DeletionProtection)[keyof typeof DeletionProtection];
|
|
48
47
|
export declare const ValidationMode: {
|
|
49
48
|
readonly OFF: "OFF";
|
|
50
49
|
readonly STRICT: "STRICT";
|
|
51
50
|
};
|
|
52
|
-
export type ValidationMode =
|
|
53
|
-
(typeof ValidationMode)[keyof typeof ValidationMode];
|
|
51
|
+
export type ValidationMode = (typeof ValidationMode)[keyof typeof ValidationMode];
|
|
54
52
|
export declare const DeletionMode: {
|
|
55
53
|
readonly HARD_DELETE: "HardDelete";
|
|
56
54
|
readonly SOFT_DELETE: "SoftDelete";
|
|
@@ -5,17 +5,13 @@ import { VerifiedPermissionsServiceException as __BaseException } from "./Verifi
|
|
|
5
5
|
export declare class AccessDeniedException extends __BaseException {
|
|
6
6
|
readonly name: "AccessDeniedException";
|
|
7
7
|
readonly $fault: "client";
|
|
8
|
-
constructor(
|
|
9
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
-
);
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
11
9
|
}
|
|
12
10
|
export declare class InternalServerException extends __BaseException {
|
|
13
11
|
readonly name: "InternalServerException";
|
|
14
12
|
readonly $fault: "server";
|
|
15
13
|
$retryable: {};
|
|
16
|
-
constructor(
|
|
17
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
18
|
-
);
|
|
14
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
19
15
|
}
|
|
20
16
|
export declare class ThrottlingException extends __BaseException {
|
|
21
17
|
readonly name: "ThrottlingException";
|
|
@@ -25,26 +21,20 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
25
21
|
};
|
|
26
22
|
serviceCode?: string | undefined;
|
|
27
23
|
quotaCode?: string | undefined;
|
|
28
|
-
constructor(
|
|
29
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
30
|
-
);
|
|
24
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
31
25
|
}
|
|
32
26
|
export declare class ValidationException extends __BaseException {
|
|
33
27
|
readonly name: "ValidationException";
|
|
34
28
|
readonly $fault: "client";
|
|
35
29
|
fieldList?: ValidationExceptionField[] | undefined;
|
|
36
|
-
constructor(
|
|
37
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
38
|
-
);
|
|
30
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
39
31
|
}
|
|
40
32
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
41
33
|
readonly name: "ResourceNotFoundException";
|
|
42
34
|
readonly $fault: "client";
|
|
43
35
|
resourceId: string | undefined;
|
|
44
36
|
resourceType: ResourceType | undefined;
|
|
45
|
-
constructor(
|
|
46
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
47
|
-
);
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
48
38
|
}
|
|
49
39
|
export declare class ConflictException extends __BaseException {
|
|
50
40
|
readonly name: "ConflictException";
|
|
@@ -59,22 +49,16 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
59
49
|
resourceType: ResourceType | undefined;
|
|
60
50
|
serviceCode?: string | undefined;
|
|
61
51
|
quotaCode?: string | undefined;
|
|
62
|
-
constructor(
|
|
63
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
64
|
-
);
|
|
52
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
65
53
|
}
|
|
66
54
|
export declare class InvalidStateException extends __BaseException {
|
|
67
55
|
readonly name: "InvalidStateException";
|
|
68
56
|
readonly $fault: "client";
|
|
69
|
-
constructor(
|
|
70
|
-
opts: __ExceptionOptionType<InvalidStateException, __BaseException>
|
|
71
|
-
);
|
|
57
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
72
58
|
}
|
|
73
59
|
export declare class TooManyTagsException extends __BaseException {
|
|
74
60
|
readonly name: "TooManyTagsException";
|
|
75
61
|
readonly $fault: "client";
|
|
76
62
|
resourceName?: string | undefined;
|
|
77
|
-
constructor(
|
|
78
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
79
|
-
);
|
|
63
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
80
64
|
}
|