@aws-sdk/client-ivs-realtime 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/IVSRealTime.d.ts +134 -157
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +11 -38
- 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/CreateEncoderConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateIngestConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateParticipantTokenCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateStageCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateStorageConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteEncoderConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteIngestConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeletePublicKeyCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteStageCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteStorageConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetCompositionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetEncoderConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetIngestConfigurationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetParticipantCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetStageCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetStageSessionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetStorageConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ImportPublicKeyCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListCompositionsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListEncoderConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListIngestConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListParticipantEventsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListParticipantReplicasCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListParticipantsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListPublicKeysCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListStageSessionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListStagesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListStorageConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StartCompositionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartParticipantReplicationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StopCompositionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StopParticipantReplicationCommand.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/UpdateIngestConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateStageCommand.d.ts +3 -5
- 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 +10 -20
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/models/models_0.d.ts +4 -12
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListStagesPaginator.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/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetPublicKeyRequest, GetPublicKeyResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetPublicKeyCommandInput extends GetPublicKeyRequest {}
|
|
5
|
-
export interface GetPublicKeyCommandOutput
|
|
6
|
-
extends GetPublicKeyResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetPublicKeyCommandOutput extends GetPublicKeyResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetPublicKeyCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetPublicKeyCommandInput
|
|
8
|
+
input: GetPublicKeyCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetPublicKeyCommandInput,
|
|
13
11
|
GetPublicKeyCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetPublicKeyCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetPublicKeyCommandInput
|
|
17
|
+
input: GetPublicKeyCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetPublicKeyCommandInput,
|
|
22
20
|
GetPublicKeyCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetStageRequest, GetStageResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetStageCommandInput extends GetStageRequest {}
|
|
5
|
-
export interface GetStageCommandOutput
|
|
6
|
-
extends GetStageResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetStageCommandOutput extends GetStageResponse, __MetadataBearer {}
|
|
8
6
|
declare const GetStageCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetStageCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetStageCommandInput,
|
|
11
11
|
GetStageCommandOutput,
|
|
12
12
|
import("..").IVSRealTimeClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetStageCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetStageCommandInput,
|
|
18
20
|
GetStageCommandOutput,
|
|
19
21
|
import("..").IVSRealTimeClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetStageSessionRequest,
|
|
4
|
-
GetStageSessionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetStageSessionRequest, GetStageSessionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetStageSessionCommandInput extends GetStageSessionRequest {}
|
|
8
|
-
export interface GetStageSessionCommandOutput
|
|
9
|
-
extends GetStageSessionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetStageSessionCommandOutput extends GetStageSessionResponse, __MetadataBearer {}
|
|
11
6
|
declare const GetStageSessionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetStageSessionCommandInput
|
|
8
|
+
input: GetStageSessionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetStageSessionCommandInput,
|
|
16
11
|
GetStageSessionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetStageSessionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetStageSessionCommandInput
|
|
17
|
+
input: GetStageSessionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetStageSessionCommandInput,
|
|
25
20
|
GetStageSessionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetStorageConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetStorageConfigurationCommandInput
|
|
8
|
-
extends GetStorageConfigurationRequest {}
|
|
7
|
+
export interface GetStorageConfigurationCommandInput extends GetStorageConfigurationRequest {}
|
|
9
8
|
export interface GetStorageConfigurationCommandOutput
|
|
10
|
-
extends GetStorageConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetStorageConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetStorageConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetStorageConfigurationCommandInput
|
|
12
|
+
input: GetStorageConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetStorageConfigurationCommandInput,
|
|
17
15
|
GetStorageConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetStorageConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetStorageConfigurationCommandInput
|
|
21
|
+
input: GetStorageConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetStorageConfigurationCommandInput,
|
|
26
24
|
GetStorageConfigurationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ImportPublicKeyRequest,
|
|
4
|
-
ImportPublicKeyResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ImportPublicKeyRequest, ImportPublicKeyResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ImportPublicKeyCommandInput extends ImportPublicKeyRequest {}
|
|
8
|
-
export interface ImportPublicKeyCommandOutput
|
|
9
|
-
extends ImportPublicKeyResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ImportPublicKeyCommandOutput extends ImportPublicKeyResponse, __MetadataBearer {}
|
|
11
6
|
declare const ImportPublicKeyCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ImportPublicKeyCommandInput
|
|
8
|
+
input: ImportPublicKeyCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ImportPublicKeyCommandInput,
|
|
16
11
|
ImportPublicKeyCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ImportPublicKeyCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ImportPublicKeyCommandInput
|
|
17
|
+
input: ImportPublicKeyCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ImportPublicKeyCommandInput,
|
|
25
20
|
ImportPublicKeyCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListCompositionsRequest,
|
|
4
|
-
ListCompositionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListCompositionsRequest, ListCompositionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListCompositionsCommandInput extends ListCompositionsRequest {}
|
|
8
|
-
export interface ListCompositionsCommandOutput
|
|
9
|
-
extends ListCompositionsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListCompositionsCommandOutput extends ListCompositionsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListCompositionsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListCompositionsCommandInput
|
|
8
|
+
input: ListCompositionsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListCompositionsCommandInput,
|
|
16
11
|
ListCompositionsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListEncoderConfigurationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListEncoderConfigurationsCommandInput
|
|
8
|
-
extends ListEncoderConfigurationsRequest {}
|
|
7
|
+
export interface ListEncoderConfigurationsCommandInput extends ListEncoderConfigurationsRequest {}
|
|
9
8
|
export interface ListEncoderConfigurationsCommandOutput
|
|
10
|
-
extends ListEncoderConfigurationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListEncoderConfigurationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListEncoderConfigurationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListEncoderConfigurationsCommandInput
|
|
12
|
+
input: ListEncoderConfigurationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListEncoderConfigurationsCommandInput,
|
|
17
15
|
ListEncoderConfigurationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListIngestConfigurationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListIngestConfigurationsCommandInput
|
|
8
|
-
extends ListIngestConfigurationsRequest {}
|
|
7
|
+
export interface ListIngestConfigurationsCommandInput extends ListIngestConfigurationsRequest {}
|
|
9
8
|
export interface ListIngestConfigurationsCommandOutput
|
|
10
|
-
extends ListIngestConfigurationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListIngestConfigurationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListIngestConfigurationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListIngestConfigurationsCommandInput
|
|
12
|
+
input: ListIngestConfigurationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListIngestConfigurationsCommandInput,
|
|
17
15
|
ListIngestConfigurationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListParticipantEventsRequest,
|
|
4
|
-
ListParticipantEventsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListParticipantEventsRequest, ListParticipantEventsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListParticipantEventsCommandInput
|
|
8
|
-
extends ListParticipantEventsRequest {}
|
|
4
|
+
export interface ListParticipantEventsCommandInput extends ListParticipantEventsRequest {}
|
|
9
5
|
export interface ListParticipantEventsCommandOutput
|
|
10
|
-
extends ListParticipantEventsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListParticipantEventsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListParticipantEventsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListParticipantEventsCommandInput
|
|
9
|
+
input: ListParticipantEventsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListParticipantEventsCommandInput,
|
|
17
12
|
ListParticipantEventsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListParticipantEventsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListParticipantEventsCommandInput
|
|
18
|
+
input: ListParticipantEventsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListParticipantEventsCommandInput,
|
|
26
21
|
ListParticipantEventsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListParticipantReplicasResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListParticipantReplicasCommandInput
|
|
8
|
-
extends ListParticipantReplicasRequest {}
|
|
7
|
+
export interface ListParticipantReplicasCommandInput extends ListParticipantReplicasRequest {}
|
|
9
8
|
export interface ListParticipantReplicasCommandOutput
|
|
10
|
-
extends ListParticipantReplicasResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListParticipantReplicasResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListParticipantReplicasCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListParticipantReplicasCommandInput
|
|
12
|
+
input: ListParticipantReplicasCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListParticipantReplicasCommandInput,
|
|
17
15
|
ListParticipantReplicasCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListParticipantReplicasCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListParticipantReplicasCommandInput
|
|
21
|
+
input: ListParticipantReplicasCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListParticipantReplicasCommandInput,
|
|
26
24
|
ListParticipantReplicasCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListParticipantsRequest,
|
|
4
|
-
ListParticipantsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListParticipantsRequest, ListParticipantsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListParticipantsCommandInput extends ListParticipantsRequest {}
|
|
8
|
-
export interface ListParticipantsCommandOutput
|
|
9
|
-
extends ListParticipantsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListParticipantsCommandOutput extends ListParticipantsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListParticipantsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListParticipantsCommandInput
|
|
8
|
+
input: ListParticipantsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListParticipantsCommandInput,
|
|
16
11
|
ListParticipantsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const ListParticipantsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: ListParticipantsCommandInput
|
|
17
|
+
input: ListParticipantsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
ListParticipantsCommandInput,
|
|
25
20
|
ListParticipantsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListPublicKeysRequest,
|
|
4
|
-
ListPublicKeysResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListPublicKeysRequest, ListPublicKeysResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListPublicKeysCommandInput extends ListPublicKeysRequest {}
|
|
8
|
-
export interface ListPublicKeysCommandOutput
|
|
9
|
-
extends ListPublicKeysResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListPublicKeysCommandOutput extends ListPublicKeysResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListPublicKeysCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListPublicKeysCommandInput
|
|
8
|
+
input: ListPublicKeysCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListPublicKeysCommandInput,
|
|
16
11
|
ListPublicKeysCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListStageSessionsRequest,
|
|
4
|
-
ListStageSessionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListStageSessionsRequest, ListStageSessionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListStageSessionsCommandInput
|
|
8
|
-
extends ListStageSessionsRequest {}
|
|
4
|
+
export interface ListStageSessionsCommandInput extends ListStageSessionsRequest {}
|
|
9
5
|
export interface ListStageSessionsCommandOutput
|
|
10
|
-
extends ListStageSessionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListStageSessionsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListStageSessionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListStageSessionsCommandInput
|
|
9
|
+
input: ListStageSessionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListStageSessionsCommandInput,
|
|
17
12
|
ListStageSessionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListStageSessionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListStageSessionsCommandInput
|
|
18
|
+
input: ListStageSessionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListStageSessionsCommandInput,
|
|
26
21
|
ListStageSessionsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListStagesRequest, ListStagesResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListStagesCommandInput extends ListStagesRequest {}
|
|
5
|
-
export interface ListStagesCommandOutput
|
|
6
|
-
extends ListStagesResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListStagesCommandOutput extends ListStagesResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListStagesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListStagesCommandInput
|
|
8
|
+
input: ListStagesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListStagesCommandInput,
|
|
13
11
|
ListStagesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListStorageConfigurationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListStorageConfigurationsCommandInput
|
|
8
|
-
extends ListStorageConfigurationsRequest {}
|
|
7
|
+
export interface ListStorageConfigurationsCommandInput extends ListStorageConfigurationsRequest {}
|
|
9
8
|
export interface ListStorageConfigurationsCommandOutput
|
|
10
|
-
extends ListStorageConfigurationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListStorageConfigurationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListStorageConfigurationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListStorageConfigurationsCommandInput
|
|
12
|
+
input: ListStorageConfigurationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListStorageConfigurationsCommandInput,
|
|
17
15
|
ListStorageConfigurationsCommandOutput,
|
|
@@ -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,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartCompositionRequest,
|
|
4
|
-
StartCompositionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartCompositionRequest, StartCompositionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartCompositionCommandInput extends StartCompositionRequest {}
|
|
8
|
-
export interface StartCompositionCommandOutput
|
|
9
|
-
extends StartCompositionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartCompositionCommandOutput extends StartCompositionResponse, __MetadataBearer {}
|
|
11
6
|
declare const StartCompositionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartCompositionCommandInput
|
|
8
|
+
input: StartCompositionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartCompositionCommandInput,
|
|
16
11
|
StartCompositionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartCompositionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartCompositionCommandInput
|
|
17
|
+
input: StartCompositionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartCompositionCommandInput,
|
|
25
20
|
StartCompositionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StartParticipantReplicationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartParticipantReplicationCommandInput
|
|
8
|
-
extends StartParticipantReplicationRequest {}
|
|
7
|
+
export interface StartParticipantReplicationCommandInput extends StartParticipantReplicationRequest {}
|
|
9
8
|
export interface StartParticipantReplicationCommandOutput
|
|
10
|
-
extends StartParticipantReplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StartParticipantReplicationResponse, __MetadataBearer {}
|
|
12
10
|
declare const StartParticipantReplicationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StartParticipantReplicationCommandInput
|
|
12
|
+
input: StartParticipantReplicationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StartParticipantReplicationCommandInput,
|
|
17
15
|
StartParticipantReplicationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StartParticipantReplicationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StartParticipantReplicationCommandInput
|
|
21
|
+
input: StartParticipantReplicationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StartParticipantReplicationCommandInput,
|
|
26
24
|
StartParticipantReplicationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StopCompositionRequest,
|
|
4
|
-
StopCompositionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StopCompositionRequest, StopCompositionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StopCompositionCommandInput extends StopCompositionRequest {}
|
|
8
|
-
export interface StopCompositionCommandOutput
|
|
9
|
-
extends StopCompositionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StopCompositionCommandOutput extends StopCompositionResponse, __MetadataBearer {}
|
|
11
6
|
declare const StopCompositionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StopCompositionCommandInput
|
|
8
|
+
input: StopCompositionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StopCompositionCommandInput,
|
|
16
11
|
StopCompositionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StopCompositionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StopCompositionCommandInput
|
|
17
|
+
input: StopCompositionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StopCompositionCommandInput,
|
|
25
20
|
StopCompositionCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
StopParticipantReplicationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface StopParticipantReplicationCommandInput
|
|
8
|
-
extends StopParticipantReplicationRequest {}
|
|
7
|
+
export interface StopParticipantReplicationCommandInput extends StopParticipantReplicationRequest {}
|
|
9
8
|
export interface StopParticipantReplicationCommandOutput
|
|
10
|
-
extends StopParticipantReplicationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends StopParticipantReplicationResponse, __MetadataBearer {}
|
|
12
10
|
declare const StopParticipantReplicationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: StopParticipantReplicationCommandInput
|
|
12
|
+
input: StopParticipantReplicationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
StopParticipantReplicationCommandInput,
|
|
17
15
|
StopParticipantReplicationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const StopParticipantReplicationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: StopParticipantReplicationCommandInput
|
|
21
|
+
input: StopParticipantReplicationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
StopParticipantReplicationCommandInput,
|
|
26
24
|
StopParticipantReplicationCommandOutput,
|
|
@@ -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,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateIngestConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateIngestConfigurationCommandInput
|
|
8
|
-
extends UpdateIngestConfigurationRequest {}
|
|
7
|
+
export interface UpdateIngestConfigurationCommandInput extends UpdateIngestConfigurationRequest {}
|
|
9
8
|
export interface UpdateIngestConfigurationCommandOutput
|
|
10
|
-
extends UpdateIngestConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateIngestConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateIngestConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateIngestConfigurationCommandInput
|
|
12
|
+
input: UpdateIngestConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateIngestConfigurationCommandInput,
|
|
17
15
|
UpdateIngestConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateIngestConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateIngestConfigurationCommandInput
|
|
21
|
+
input: UpdateIngestConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateIngestConfigurationCommandInput,
|
|
26
24
|
UpdateIngestConfigurationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateStageRequest, UpdateStageResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateStageCommandInput extends UpdateStageRequest {}
|
|
5
|
-
export interface UpdateStageCommandOutput
|
|
6
|
-
extends UpdateStageResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateStageCommandOutput extends UpdateStageResponse, __MetadataBearer {}
|
|
8
6
|
declare const UpdateStageCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateStageCommandInput
|
|
8
|
+
input: UpdateStageCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateStageCommandInput,
|
|
13
11
|
UpdateStageCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateStageCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateStageCommandInput
|
|
17
|
+
input: UpdateStageCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateStageCommandInput,
|
|
22
20
|
UpdateStageCommandOutput,
|
|
@@ -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: {
|