@aws-sdk/client-mediastore 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/MediaStore.d.ts +361 -110
- package/dist-types/ts3.4/MediaStoreClient.d.ts +230 -94
- package/dist-types/ts3.4/commands/CreateContainerCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteContainerCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteContainerPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteCorsPolicyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteLifecyclePolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteMetricPolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeContainerCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetContainerPolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetCorsPolicyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetLifecyclePolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetMetricPolicyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListContainersCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutContainerPolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutCorsPolicyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PutLifecyclePolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutMetricPolicyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StartAccessLoggingCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/StopAccessLoggingCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +21 -21
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/MediaStoreServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +334 -51
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListContainersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +257 -65
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteMetricPolicyInput,
|
|
15
|
+
DeleteMetricPolicyOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteMetricPolicyCommandInput
|
|
18
|
+
extends DeleteMetricPolicyInput {}
|
|
19
|
+
export interface DeleteMetricPolicyCommandOutput
|
|
20
|
+
extends DeleteMetricPolicyOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteMetricPolicyCommand extends $Command<
|
|
23
|
+
DeleteMetricPolicyCommandInput,
|
|
24
|
+
DeleteMetricPolicyCommandOutput,
|
|
25
|
+
MediaStoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteMetricPolicyCommandInput;
|
|
28
|
+
constructor(input: DeleteMetricPolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteMetricPolicyCommandInput, DeleteMetricPolicyCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeContainerInput,
|
|
15
|
+
DescribeContainerOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeContainerCommandInput extends DescribeContainerInput {}
|
|
18
|
+
export interface DescribeContainerCommandOutput
|
|
19
|
+
extends DescribeContainerOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeContainerCommand extends $Command<
|
|
22
|
+
DescribeContainerCommandInput,
|
|
23
|
+
DescribeContainerCommandOutput,
|
|
24
|
+
MediaStoreClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeContainerCommandInput;
|
|
27
|
+
constructor(input: DescribeContainerCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeContainerCommandInput, DescribeContainerCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import {
|
|
14
|
+
GetContainerPolicyInput,
|
|
15
|
+
GetContainerPolicyOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetContainerPolicyCommandInput
|
|
18
|
+
extends GetContainerPolicyInput {}
|
|
19
|
+
export interface GetContainerPolicyCommandOutput
|
|
20
|
+
extends GetContainerPolicyOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetContainerPolicyCommand extends $Command<
|
|
23
|
+
GetContainerPolicyCommandInput,
|
|
24
|
+
GetContainerPolicyCommandOutput,
|
|
25
|
+
MediaStoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetContainerPolicyCommandInput;
|
|
28
|
+
constructor(input: GetContainerPolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetContainerPolicyCommandInput, GetContainerPolicyCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import { GetCorsPolicyInput, GetCorsPolicyOutput } from "../models/models_0";
|
|
14
|
+
export interface GetCorsPolicyCommandInput extends GetCorsPolicyInput {}
|
|
15
|
+
export interface GetCorsPolicyCommandOutput
|
|
16
|
+
extends GetCorsPolicyOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetCorsPolicyCommand extends $Command<
|
|
19
|
+
GetCorsPolicyCommandInput,
|
|
20
|
+
GetCorsPolicyCommandOutput,
|
|
21
|
+
MediaStoreClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetCorsPolicyCommandInput;
|
|
24
|
+
constructor(input: GetCorsPolicyCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetCorsPolicyCommandInput, GetCorsPolicyCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import {
|
|
14
|
+
GetLifecyclePolicyInput,
|
|
15
|
+
GetLifecyclePolicyOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetLifecyclePolicyCommandInput
|
|
18
|
+
extends GetLifecyclePolicyInput {}
|
|
19
|
+
export interface GetLifecyclePolicyCommandOutput
|
|
20
|
+
extends GetLifecyclePolicyOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetLifecyclePolicyCommand extends $Command<
|
|
23
|
+
GetLifecyclePolicyCommandInput,
|
|
24
|
+
GetLifecyclePolicyCommandOutput,
|
|
25
|
+
MediaStoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetLifecyclePolicyCommandInput;
|
|
28
|
+
constructor(input: GetLifecyclePolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import {
|
|
14
|
+
GetMetricPolicyInput,
|
|
15
|
+
GetMetricPolicyOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetMetricPolicyCommandInput extends GetMetricPolicyInput {}
|
|
18
|
+
export interface GetMetricPolicyCommandOutput
|
|
19
|
+
extends GetMetricPolicyOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetMetricPolicyCommand extends $Command<
|
|
22
|
+
GetMetricPolicyCommandInput,
|
|
23
|
+
GetMetricPolicyCommandOutput,
|
|
24
|
+
MediaStoreClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetMetricPolicyCommandInput;
|
|
27
|
+
constructor(input: GetMetricPolicyCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetMetricPolicyCommandInput, GetMetricPolicyCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import { ListContainersInput, ListContainersOutput } from "../models/models_0";
|
|
14
|
+
export interface ListContainersCommandInput extends ListContainersInput {}
|
|
15
|
+
export interface ListContainersCommandOutput
|
|
16
|
+
extends ListContainersOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListContainersCommand extends $Command<
|
|
19
|
+
ListContainersCommandInput,
|
|
20
|
+
ListContainersCommandOutput,
|
|
21
|
+
MediaStoreClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListContainersCommandInput;
|
|
24
|
+
constructor(input: ListContainersCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListContainersCommandInput, ListContainersCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceInput,
|
|
15
|
+
ListTagsForResourceOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceInput {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
MediaStoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import {
|
|
14
|
+
PutContainerPolicyInput,
|
|
15
|
+
PutContainerPolicyOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutContainerPolicyCommandInput
|
|
18
|
+
extends PutContainerPolicyInput {}
|
|
19
|
+
export interface PutContainerPolicyCommandOutput
|
|
20
|
+
extends PutContainerPolicyOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class PutContainerPolicyCommand extends $Command<
|
|
23
|
+
PutContainerPolicyCommandInput,
|
|
24
|
+
PutContainerPolicyCommandOutput,
|
|
25
|
+
MediaStoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: PutContainerPolicyCommandInput;
|
|
28
|
+
constructor(input: PutContainerPolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<PutContainerPolicyCommandInput, PutContainerPolicyCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import { PutCorsPolicyInput, PutCorsPolicyOutput } from "../models/models_0";
|
|
14
|
+
export interface PutCorsPolicyCommandInput extends PutCorsPolicyInput {}
|
|
15
|
+
export interface PutCorsPolicyCommandOutput
|
|
16
|
+
extends PutCorsPolicyOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class PutCorsPolicyCommand extends $Command<
|
|
19
|
+
PutCorsPolicyCommandInput,
|
|
20
|
+
PutCorsPolicyCommandOutput,
|
|
21
|
+
MediaStoreClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: PutCorsPolicyCommandInput;
|
|
24
|
+
constructor(input: PutCorsPolicyCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<PutCorsPolicyCommandInput, PutCorsPolicyCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import {
|
|
14
|
+
PutLifecyclePolicyInput,
|
|
15
|
+
PutLifecyclePolicyOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutLifecyclePolicyCommandInput
|
|
18
|
+
extends PutLifecyclePolicyInput {}
|
|
19
|
+
export interface PutLifecyclePolicyCommandOutput
|
|
20
|
+
extends PutLifecyclePolicyOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class PutLifecyclePolicyCommand extends $Command<
|
|
23
|
+
PutLifecyclePolicyCommandInput,
|
|
24
|
+
PutLifecyclePolicyCommandOutput,
|
|
25
|
+
MediaStoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: PutLifecyclePolicyCommandInput;
|
|
28
|
+
constructor(input: PutLifecyclePolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<PutLifecyclePolicyCommandInput, PutLifecyclePolicyCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreClient";
|
|
13
|
+
import {
|
|
14
|
+
PutMetricPolicyInput,
|
|
15
|
+
PutMetricPolicyOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutMetricPolicyCommandInput extends PutMetricPolicyInput {}
|
|
18
|
+
export interface PutMetricPolicyCommandOutput
|
|
19
|
+
extends PutMetricPolicyOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class PutMetricPolicyCommand extends $Command<
|
|
22
|
+
PutMetricPolicyCommandInput,
|
|
23
|
+
PutMetricPolicyCommandOutput,
|
|
24
|
+
MediaStoreClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: PutMetricPolicyCommandInput;
|
|
27
|
+
constructor(input: PutMetricPolicyCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<PutMetricPolicyCommandInput, PutMetricPolicyCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|