@aws-sdk/client-signer 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/Signer.d.ts +63 -72
- package/dist-types/ts3.4/SignerClient.d.ts +17 -33
- 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 +8 -18
- package/dist-types/ts3.4/commands/AddProfilePermissionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CancelSigningProfileCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DescribeSigningJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetRevocationStatusCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSigningPlatformCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSigningProfileCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListProfilePermissionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListSigningJobsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListSigningPlatformsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListSigningProfilesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutSigningProfileCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RemoveProfilePermissionCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RevokeSignatureCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/RevokeSigningProfileCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/SignPayloadCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartSigningJobCommand.d.ts +4 -9
- 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/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/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/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/dist-types/ts3.4/waiters/waitForSuccessfulSigningJob.d.ts +3 -5
- package/package.json +39 -39
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeSigningJobRequest,
|
|
4
|
-
DescribeSigningJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeSigningJobRequest, DescribeSigningJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeSigningJobCommandInput
|
|
8
|
-
extends DescribeSigningJobRequest {}
|
|
4
|
+
export interface DescribeSigningJobCommandInput extends DescribeSigningJobRequest {}
|
|
9
5
|
export interface DescribeSigningJobCommandOutput
|
|
10
|
-
extends DescribeSigningJobResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeSigningJobResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeSigningJobCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeSigningJobCommandInput
|
|
9
|
+
input: DescribeSigningJobCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeSigningJobCommandInput,
|
|
17
12
|
DescribeSigningJobCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeSigningJobCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeSigningJobCommandInput
|
|
18
|
+
input: DescribeSigningJobCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeSigningJobCommandInput,
|
|
26
21
|
DescribeSigningJobCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetRevocationStatusRequest,
|
|
4
|
-
GetRevocationStatusResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetRevocationStatusRequest, GetRevocationStatusResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetRevocationStatusCommandInput
|
|
8
|
-
extends GetRevocationStatusRequest {}
|
|
4
|
+
export interface GetRevocationStatusCommandInput extends GetRevocationStatusRequest {}
|
|
9
5
|
export interface GetRevocationStatusCommandOutput
|
|
10
|
-
extends GetRevocationStatusResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetRevocationStatusResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetRevocationStatusCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetRevocationStatusCommandInput
|
|
9
|
+
input: GetRevocationStatusCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetRevocationStatusCommandInput,
|
|
17
12
|
GetRevocationStatusCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetRevocationStatusCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetRevocationStatusCommandInput
|
|
18
|
+
input: GetRevocationStatusCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetRevocationStatusCommandInput,
|
|
26
21
|
GetRevocationStatusCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSigningPlatformRequest,
|
|
4
|
-
GetSigningPlatformResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSigningPlatformRequest, GetSigningPlatformResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetSigningPlatformCommandInput
|
|
8
|
-
extends GetSigningPlatformRequest {}
|
|
4
|
+
export interface GetSigningPlatformCommandInput extends GetSigningPlatformRequest {}
|
|
9
5
|
export interface GetSigningPlatformCommandOutput
|
|
10
|
-
extends GetSigningPlatformResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetSigningPlatformResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetSigningPlatformCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetSigningPlatformCommandInput
|
|
9
|
+
input: GetSigningPlatformCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetSigningPlatformCommandInput,
|
|
17
12
|
GetSigningPlatformCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetSigningPlatformCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetSigningPlatformCommandInput
|
|
18
|
+
input: GetSigningPlatformCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetSigningPlatformCommandInput,
|
|
26
21
|
GetSigningPlatformCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSigningProfileRequest,
|
|
4
|
-
GetSigningProfileResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSigningProfileRequest, GetSigningProfileResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetSigningProfileCommandInput
|
|
8
|
-
extends GetSigningProfileRequest {}
|
|
4
|
+
export interface GetSigningProfileCommandInput extends GetSigningProfileRequest {}
|
|
9
5
|
export interface GetSigningProfileCommandOutput
|
|
10
|
-
extends GetSigningProfileResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetSigningProfileResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetSigningProfileCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetSigningProfileCommandInput
|
|
9
|
+
input: GetSigningProfileCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetSigningProfileCommandInput,
|
|
17
12
|
GetSigningProfileCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetSigningProfileCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetSigningProfileCommandInput
|
|
18
|
+
input: GetSigningProfileCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetSigningProfileCommandInput,
|
|
26
21
|
GetSigningProfileCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListProfilePermissionsRequest,
|
|
4
|
-
ListProfilePermissionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListProfilePermissionsRequest, ListProfilePermissionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListProfilePermissionsCommandInput
|
|
8
|
-
extends ListProfilePermissionsRequest {}
|
|
4
|
+
export interface ListProfilePermissionsCommandInput extends ListProfilePermissionsRequest {}
|
|
9
5
|
export interface ListProfilePermissionsCommandOutput
|
|
10
|
-
extends ListProfilePermissionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListProfilePermissionsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListProfilePermissionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListProfilePermissionsCommandInput
|
|
9
|
+
input: ListProfilePermissionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListProfilePermissionsCommandInput,
|
|
17
12
|
ListProfilePermissionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListProfilePermissionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListProfilePermissionsCommandInput
|
|
18
|
+
input: ListProfilePermissionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListProfilePermissionsCommandInput,
|
|
26
21
|
ListProfilePermissionsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSigningJobsRequest,
|
|
4
|
-
ListSigningJobsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSigningJobsRequest, ListSigningJobsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListSigningJobsCommandInput extends ListSigningJobsRequest {}
|
|
8
|
-
export interface ListSigningJobsCommandOutput
|
|
9
|
-
extends ListSigningJobsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListSigningJobsCommandOutput extends ListSigningJobsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListSigningJobsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListSigningJobsCommandInput
|
|
8
|
+
input: ListSigningJobsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListSigningJobsCommandInput,
|
|
16
11
|
ListSigningJobsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSigningPlatformsRequest,
|
|
4
|
-
ListSigningPlatformsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSigningPlatformsRequest, ListSigningPlatformsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSigningPlatformsCommandInput
|
|
8
|
-
extends ListSigningPlatformsRequest {}
|
|
4
|
+
export interface ListSigningPlatformsCommandInput extends ListSigningPlatformsRequest {}
|
|
9
5
|
export interface ListSigningPlatformsCommandOutput
|
|
10
|
-
extends ListSigningPlatformsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListSigningPlatformsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListSigningPlatformsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListSigningPlatformsCommandInput
|
|
9
|
+
input: ListSigningPlatformsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListSigningPlatformsCommandInput,
|
|
17
12
|
ListSigningPlatformsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSigningProfilesRequest,
|
|
4
|
-
ListSigningProfilesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSigningProfilesRequest, ListSigningProfilesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSigningProfilesCommandInput
|
|
8
|
-
extends ListSigningProfilesRequest {}
|
|
4
|
+
export interface ListSigningProfilesCommandInput extends ListSigningProfilesRequest {}
|
|
9
5
|
export interface ListSigningProfilesCommandOutput
|
|
10
|
-
extends ListSigningProfilesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListSigningProfilesResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListSigningProfilesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListSigningProfilesCommandInput
|
|
9
|
+
input: ListSigningProfilesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListSigningProfilesCommandInput,
|
|
17
12
|
ListSigningProfilesCommandOutput,
|
|
@@ -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,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutSigningProfileRequest,
|
|
4
|
-
PutSigningProfileResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutSigningProfileRequest, PutSigningProfileResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutSigningProfileCommandInput
|
|
8
|
-
extends PutSigningProfileRequest {}
|
|
4
|
+
export interface PutSigningProfileCommandInput extends PutSigningProfileRequest {}
|
|
9
5
|
export interface PutSigningProfileCommandOutput
|
|
10
|
-
extends PutSigningProfileResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutSigningProfileResponse, __MetadataBearer {}
|
|
12
7
|
declare const PutSigningProfileCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutSigningProfileCommandInput
|
|
9
|
+
input: PutSigningProfileCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutSigningProfileCommandInput,
|
|
17
12
|
PutSigningProfileCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PutSigningProfileCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PutSigningProfileCommandInput
|
|
18
|
+
input: PutSigningProfileCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutSigningProfileCommandInput,
|
|
26
21
|
PutSigningProfileCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
RemoveProfilePermissionResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface RemoveProfilePermissionCommandInput
|
|
8
|
-
extends RemoveProfilePermissionRequest {}
|
|
7
|
+
export interface RemoveProfilePermissionCommandInput extends RemoveProfilePermissionRequest {}
|
|
9
8
|
export interface RemoveProfilePermissionCommandOutput
|
|
10
|
-
extends RemoveProfilePermissionResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends RemoveProfilePermissionResponse, __MetadataBearer {}
|
|
12
10
|
declare const RemoveProfilePermissionCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: RemoveProfilePermissionCommandInput
|
|
12
|
+
input: RemoveProfilePermissionCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
RemoveProfilePermissionCommandInput,
|
|
17
15
|
RemoveProfilePermissionCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const RemoveProfilePermissionCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: RemoveProfilePermissionCommandInput
|
|
21
|
+
input: RemoveProfilePermissionCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
RemoveProfilePermissionCommandInput,
|
|
26
24
|
RemoveProfilePermissionCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface RevokeSignatureCommandInput extends RevokeSignatureRequest {}
|
|
|
5
5
|
export interface RevokeSignatureCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const RevokeSignatureCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: RevokeSignatureCommandInput
|
|
8
|
+
input: RevokeSignatureCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
RevokeSignatureCommandInput,
|
|
11
11
|
RevokeSignatureCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const RevokeSignatureCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: RevokeSignatureCommandInput
|
|
17
|
+
input: RevokeSignatureCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
RevokeSignatureCommandInput,
|
|
20
20
|
RevokeSignatureCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { RevokeSigningProfileRequest } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface RevokeSigningProfileCommandInput
|
|
5
|
-
extends RevokeSigningProfileRequest {}
|
|
4
|
+
export interface RevokeSigningProfileCommandInput extends RevokeSigningProfileRequest {}
|
|
6
5
|
export interface RevokeSigningProfileCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const RevokeSigningProfileCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: RevokeSigningProfileCommandInput
|
|
8
|
+
input: RevokeSigningProfileCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
RevokeSigningProfileCommandInput,
|
|
12
11
|
RevokeSigningProfileCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const RevokeSigningProfileCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: RevokeSigningProfileCommandInput
|
|
17
|
+
input: RevokeSigningProfileCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
RevokeSigningProfileCommandInput,
|
|
21
20
|
RevokeSigningProfileCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { SignPayloadRequest, SignPayloadResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface SignPayloadCommandInput extends SignPayloadRequest {}
|
|
5
|
-
export interface SignPayloadCommandOutput
|
|
6
|
-
extends SignPayloadResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SignPayloadCommandOutput extends SignPayloadResponse, __MetadataBearer {}
|
|
8
6
|
declare const SignPayloadCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: SignPayloadCommandInput
|
|
8
|
+
input: SignPayloadCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
SignPayloadCommandInput,
|
|
13
11
|
SignPayloadCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const SignPayloadCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: SignPayloadCommandInput
|
|
17
|
+
input: SignPayloadCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
SignPayloadCommandInput,
|
|
22
20
|
SignPayloadCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartSigningJobRequest,
|
|
4
|
-
StartSigningJobResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartSigningJobRequest, StartSigningJobResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartSigningJobCommandInput extends StartSigningJobRequest {}
|
|
8
|
-
export interface StartSigningJobCommandOutput
|
|
9
|
-
extends StartSigningJobResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartSigningJobCommandOutput extends StartSigningJobResponse, __MetadataBearer {}
|
|
11
6
|
declare const StartSigningJobCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartSigningJobCommandInput
|
|
8
|
+
input: StartSigningJobCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartSigningJobCommandInput,
|
|
16
11
|
StartSigningJobCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartSigningJobCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartSigningJobCommandInput
|
|
17
|
+
input: StartSigningJobCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartSigningJobCommandInput,
|
|
25
20
|
StartSigningJobCommandOutput,
|
|
@@ -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,
|
|
@@ -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 SignerExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -6,8 +6,7 @@ export declare const EncryptionAlgorithm: {
|
|
|
6
6
|
readonly ECDSA: "ECDSA";
|
|
7
7
|
readonly RSA: "RSA";
|
|
8
8
|
};
|
|
9
|
-
export type EncryptionAlgorithm =
|
|
10
|
-
(typeof EncryptionAlgorithm)[keyof typeof EncryptionAlgorithm];
|
|
9
|
+
export type EncryptionAlgorithm = (typeof EncryptionAlgorithm)[keyof typeof EncryptionAlgorithm];
|
|
11
10
|
export declare const HashAlgorithm: {
|
|
12
11
|
readonly SHA1: "SHA1";
|
|
13
12
|
readonly SHA256: "SHA256";
|
|
@@ -36,5 +35,4 @@ export declare const SigningProfileStatus: {
|
|
|
36
35
|
readonly Canceled: "Canceled";
|
|
37
36
|
readonly Revoked: "Revoked";
|
|
38
37
|
};
|
|
39
|
-
export type SigningProfileStatus =
|
|
40
|
-
(typeof SigningProfileStatus)[keyof typeof SigningProfileStatus];
|
|
38
|
+
export type SigningProfileStatus = (typeof SigningProfileStatus)[keyof typeof SigningProfileStatus];
|
|
@@ -4,9 +4,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
code?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class ConflictException extends __BaseException {
|
|
12
10
|
readonly name: "ConflictException";
|
|
@@ -18,49 +16,37 @@ export declare class InternalServiceErrorException extends __BaseException {
|
|
|
18
16
|
readonly name: "InternalServiceErrorException";
|
|
19
17
|
readonly $fault: "server";
|
|
20
18
|
code?: string | undefined;
|
|
21
|
-
constructor(
|
|
22
|
-
opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
|
|
23
|
-
);
|
|
19
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
24
20
|
}
|
|
25
21
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
26
22
|
readonly name: "ResourceNotFoundException";
|
|
27
23
|
readonly $fault: "client";
|
|
28
24
|
code?: string | undefined;
|
|
29
|
-
constructor(
|
|
30
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
31
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
32
26
|
}
|
|
33
27
|
export declare class ServiceLimitExceededException extends __BaseException {
|
|
34
28
|
readonly name: "ServiceLimitExceededException";
|
|
35
29
|
readonly $fault: "client";
|
|
36
30
|
code?: string | undefined;
|
|
37
|
-
constructor(
|
|
38
|
-
opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>
|
|
39
|
-
);
|
|
31
|
+
constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
|
|
40
32
|
}
|
|
41
33
|
export declare class TooManyRequestsException extends __BaseException {
|
|
42
34
|
readonly name: "TooManyRequestsException";
|
|
43
35
|
readonly $fault: "client";
|
|
44
36
|
code?: string | undefined;
|
|
45
|
-
constructor(
|
|
46
|
-
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
47
|
-
);
|
|
37
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
48
38
|
}
|
|
49
39
|
export declare class ValidationException extends __BaseException {
|
|
50
40
|
readonly name: "ValidationException";
|
|
51
41
|
readonly $fault: "client";
|
|
52
42
|
code?: string | undefined;
|
|
53
|
-
constructor(
|
|
54
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
55
|
-
);
|
|
43
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
56
44
|
}
|
|
57
45
|
export declare class BadRequestException extends __BaseException {
|
|
58
46
|
readonly name: "BadRequestException";
|
|
59
47
|
readonly $fault: "client";
|
|
60
48
|
code?: string | undefined;
|
|
61
|
-
constructor(
|
|
62
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
63
|
-
);
|
|
49
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
64
50
|
}
|
|
65
51
|
export declare class NotFoundException extends __BaseException {
|
|
66
52
|
readonly name: "NotFoundException";
|
|
@@ -72,7 +58,5 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
72
58
|
readonly name: "ThrottlingException";
|
|
73
59
|
readonly $fault: "client";
|
|
74
60
|
code?: string | undefined;
|
|
75
|
-
constructor(
|
|
76
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
77
|
-
);
|
|
61
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
78
62
|
}
|