@aws-sdk/client-mediastore 3.288.0 → 3.290.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-types/commands/CreateContainerCommand.d.ts +11 -0
- package/dist-types/commands/DeleteContainerCommand.d.ts +11 -0
- package/dist-types/commands/DeleteContainerPolicyCommand.d.ts +14 -0
- package/dist-types/commands/DeleteCorsPolicyCommand.d.ts +14 -0
- package/dist-types/commands/DeleteLifecyclePolicyCommand.d.ts +14 -0
- package/dist-types/commands/DeleteMetricPolicyCommand.d.ts +14 -0
- package/dist-types/commands/DescribeContainerCommand.d.ts +7 -0
- package/dist-types/commands/GetContainerPolicyCommand.d.ts +14 -0
- package/dist-types/commands/GetCorsPolicyCommand.d.ts +14 -0
- package/dist-types/commands/GetLifecyclePolicyCommand.d.ts +14 -0
- package/dist-types/commands/GetMetricPolicyCommand.d.ts +14 -0
- package/dist-types/commands/ListContainersCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/PutContainerPolicyCommand.d.ts +11 -0
- package/dist-types/commands/PutCorsPolicyCommand.d.ts +11 -0
- package/dist-types/commands/PutLifecyclePolicyCommand.d.ts +11 -0
- package/dist-types/commands/PutMetricPolicyCommand.d.ts +11 -0
- package/dist-types/commands/StartAccessLoggingCommand.d.ts +11 -0
- package/dist-types/commands/StopAccessLoggingCommand.d.ts +11 -0
- package/dist-types/commands/TagResourceCommand.d.ts +11 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +11 -0
- package/package.json +29 -29
|
@@ -30,6 +30,17 @@ export interface CreateContainerCommandOutput extends CreateContainerOutput, __M
|
|
|
30
30
|
* @see {@link CreateContainerCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
34
|
+
* <p>The container that you specified in the request already exists or is being
|
|
35
|
+
* updated.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerError} (server fault)
|
|
38
|
+
* <p>The service is temporarily unavailable.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
41
|
+
* <p>A service limit has been exceeded.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
33
44
|
*/
|
|
34
45
|
export declare class CreateContainerCommand extends $Command<CreateContainerCommandInput, CreateContainerCommandOutput, MediaStoreClientResolvedConfig> {
|
|
35
46
|
readonly input: CreateContainerCommandInput;
|
|
@@ -31,6 +31,17 @@ export interface DeleteContainerCommandOutput extends DeleteContainerOutput, __M
|
|
|
31
31
|
* @see {@link DeleteContainerCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
35
|
+
* <p>The container that you specified in the request already exists or is being
|
|
36
|
+
* updated.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
39
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerError} (server fault)
|
|
42
|
+
* <p>The service is temporarily unavailable.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
34
45
|
*/
|
|
35
46
|
export declare class DeleteContainerCommand extends $Command<DeleteContainerCommandInput, DeleteContainerCommandOutput, MediaStoreClientResolvedConfig> {
|
|
36
47
|
readonly input: DeleteContainerCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DeleteContainerPolicyCommandOutput extends DeleteContainerPolic
|
|
|
29
29
|
* @see {@link DeleteContainerPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
33
|
+
* <p>The container that you specified in the request already exists or is being
|
|
34
|
+
* updated.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>The service is temporarily unavailable.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link PolicyNotFoundException} (client fault)
|
|
43
|
+
* <p>The policy that you specified in the request does not exist.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DeleteContainerPolicyCommand extends $Command<DeleteContainerPolicyCommandInput, DeleteContainerPolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
34
48
|
readonly input: DeleteContainerPolicyCommandInput;
|
|
@@ -33,6 +33,20 @@ export interface DeleteCorsPolicyCommandOutput extends DeleteCorsPolicyOutput, _
|
|
|
33
33
|
* @see {@link DeleteCorsPolicyCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request already exists or is being
|
|
38
|
+
* updated.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
41
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link CorsPolicyNotFoundException} (client fault)
|
|
44
|
+
* <p>The CORS policy that you specified in the request does not exist.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerError} (server fault)
|
|
47
|
+
* <p>The service is temporarily unavailable.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
36
50
|
*/
|
|
37
51
|
export declare class DeleteCorsPolicyCommand extends $Command<DeleteCorsPolicyCommandInput, DeleteCorsPolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
38
52
|
readonly input: DeleteCorsPolicyCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolic
|
|
|
29
29
|
* @see {@link DeleteLifecyclePolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
33
|
+
* <p>The container that you specified in the request already exists or is being
|
|
34
|
+
* updated.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>The service is temporarily unavailable.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link PolicyNotFoundException} (client fault)
|
|
43
|
+
* <p>The policy that you specified in the request does not exist.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DeleteLifecyclePolicyCommand extends $Command<DeleteLifecyclePolicyCommandInput, DeleteLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
34
48
|
readonly input: DeleteLifecyclePolicyCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface DeleteMetricPolicyCommandOutput extends DeleteMetricPolicyOutpu
|
|
|
29
29
|
* @see {@link DeleteMetricPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
33
|
+
* <p>The container that you specified in the request already exists or is being
|
|
34
|
+
* updated.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>The service is temporarily unavailable.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link PolicyNotFoundException} (client fault)
|
|
43
|
+
* <p>The policy that you specified in the request does not exist.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class DeleteMetricPolicyCommand extends $Command<DeleteMetricPolicyCommandInput, DeleteMetricPolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
34
48
|
readonly input: DeleteMetricPolicyCommandInput;
|
|
@@ -35,6 +35,13 @@ export interface DescribeContainerCommandOutput extends DescribeContainerOutput,
|
|
|
35
35
|
* @see {@link DescribeContainerCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
39
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerError} (server fault)
|
|
42
|
+
* <p>The service is temporarily unavailable.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
38
45
|
*/
|
|
39
46
|
export declare class DescribeContainerCommand extends $Command<DescribeContainerCommandInput, DescribeContainerCommandOutput, MediaStoreClientResolvedConfig> {
|
|
40
47
|
readonly input: DescribeContainerCommandInput;
|
|
@@ -31,6 +31,20 @@ export interface GetContainerPolicyCommandOutput extends GetContainerPolicyOutpu
|
|
|
31
31
|
* @see {@link GetContainerPolicyCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
35
|
+
* <p>The container that you specified in the request already exists or is being
|
|
36
|
+
* updated.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
39
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerError} (server fault)
|
|
42
|
+
* <p>The service is temporarily unavailable.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link PolicyNotFoundException} (client fault)
|
|
45
|
+
* <p>The policy that you specified in the request does not exist.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
34
48
|
*/
|
|
35
49
|
export declare class GetContainerPolicyCommand extends $Command<GetContainerPolicyCommandInput, GetContainerPolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
36
50
|
readonly input: GetContainerPolicyCommandInput;
|
|
@@ -33,6 +33,20 @@ export interface GetCorsPolicyCommandOutput extends GetCorsPolicyOutput, __Metad
|
|
|
33
33
|
* @see {@link GetCorsPolicyCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request already exists or is being
|
|
38
|
+
* updated.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
41
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link CorsPolicyNotFoundException} (client fault)
|
|
44
|
+
* <p>The CORS policy that you specified in the request does not exist.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerError} (server fault)
|
|
47
|
+
* <p>The service is temporarily unavailable.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
36
50
|
*/
|
|
37
51
|
export declare class GetCorsPolicyCommand extends $Command<GetCorsPolicyCommandInput, GetCorsPolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
38
52
|
readonly input: GetCorsPolicyCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyOutpu
|
|
|
29
29
|
* @see {@link GetLifecyclePolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
33
|
+
* <p>The container that you specified in the request already exists or is being
|
|
34
|
+
* updated.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>The service is temporarily unavailable.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link PolicyNotFoundException} (client fault)
|
|
43
|
+
* <p>The policy that you specified in the request does not exist.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class GetLifecyclePolicyCommand extends $Command<GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
34
48
|
readonly input: GetLifecyclePolicyCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface GetMetricPolicyCommandOutput extends GetMetricPolicyOutput, __M
|
|
|
29
29
|
* @see {@link GetMetricPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
33
|
+
* <p>The container that you specified in the request already exists or is being
|
|
34
|
+
* updated.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>The service is temporarily unavailable.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link PolicyNotFoundException} (client fault)
|
|
43
|
+
* <p>The policy that you specified in the request does not exist.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class GetMetricPolicyCommand extends $Command<GetMetricPolicyCommandInput, GetMetricPolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
34
48
|
readonly input: GetMetricPolicyCommandInput;
|
|
@@ -37,6 +37,10 @@ export interface ListContainersCommandOutput extends ListContainersOutput, __Met
|
|
|
37
37
|
* @see {@link ListContainersCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link InternalServerError} (server fault)
|
|
41
|
+
* <p>The service is temporarily unavailable.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
40
44
|
*/
|
|
41
45
|
export declare class ListContainersCommand extends $Command<ListContainersCommandInput, ListContainersCommandOutput, MediaStoreClientResolvedConfig> {
|
|
42
46
|
readonly input: ListContainersCommandInput;
|
|
@@ -29,6 +29,17 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
29
29
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
33
|
+
* <p>The container that you specified in the request already exists or is being
|
|
34
|
+
* updated.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>The service is temporarily unavailable.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
32
43
|
*/
|
|
33
44
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaStoreClientResolvedConfig> {
|
|
34
45
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -35,6 +35,17 @@ export interface PutContainerPolicyCommandOutput extends PutContainerPolicyOutpu
|
|
|
35
35
|
* @see {@link PutContainerPolicyCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
39
|
+
* <p>The container that you specified in the request already exists or is being
|
|
40
|
+
* updated.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
43
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalServerError} (server fault)
|
|
46
|
+
* <p>The service is temporarily unavailable.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
38
49
|
*/
|
|
39
50
|
export declare class PutContainerPolicyCommand extends $Command<PutContainerPolicyCommandInput, PutContainerPolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
40
51
|
readonly input: PutContainerPolicyCommandInput;
|
|
@@ -39,6 +39,17 @@ export interface PutCorsPolicyCommandOutput extends PutCorsPolicyOutput, __Metad
|
|
|
39
39
|
* @see {@link PutCorsPolicyCommandOutput} for command's `response` shape.
|
|
40
40
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
41
41
|
*
|
|
42
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
43
|
+
* <p>The container that you specified in the request already exists or is being
|
|
44
|
+
* updated.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
47
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InternalServerError} (server fault)
|
|
50
|
+
* <p>The service is temporarily unavailable.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
42
53
|
*/
|
|
43
54
|
export declare class PutCorsPolicyCommand extends $Command<PutCorsPolicyCommandInput, PutCorsPolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
44
55
|
readonly input: PutCorsPolicyCommandInput;
|
|
@@ -30,6 +30,17 @@ export interface PutLifecyclePolicyCommandOutput extends PutLifecyclePolicyOutpu
|
|
|
30
30
|
* @see {@link PutLifecyclePolicyCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
34
|
+
* <p>The container that you specified in the request already exists or is being
|
|
35
|
+
* updated.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
38
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerError} (server fault)
|
|
41
|
+
* <p>The service is temporarily unavailable.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
33
44
|
*/
|
|
34
45
|
export declare class PutLifecyclePolicyCommand extends $Command<PutLifecyclePolicyCommandInput, PutLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
35
46
|
readonly input: PutLifecyclePolicyCommandInput;
|
|
@@ -29,6 +29,17 @@ export interface PutMetricPolicyCommandOutput extends PutMetricPolicyOutput, __M
|
|
|
29
29
|
* @see {@link PutMetricPolicyCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
33
|
+
* <p>The container that you specified in the request already exists or is being
|
|
34
|
+
* updated.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>The service is temporarily unavailable.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
32
43
|
*/
|
|
33
44
|
export declare class PutMetricPolicyCommand extends $Command<PutMetricPolicyCommandInput, PutMetricPolicyCommandOutput, MediaStoreClientResolvedConfig> {
|
|
34
45
|
readonly input: PutMetricPolicyCommandInput;
|
|
@@ -29,6 +29,17 @@ export interface StartAccessLoggingCommandOutput extends StartAccessLoggingOutpu
|
|
|
29
29
|
* @see {@link StartAccessLoggingCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
33
|
+
* <p>The container that you specified in the request already exists or is being
|
|
34
|
+
* updated.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>The service is temporarily unavailable.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
32
43
|
*/
|
|
33
44
|
export declare class StartAccessLoggingCommand extends $Command<StartAccessLoggingCommandInput, StartAccessLoggingCommandOutput, MediaStoreClientResolvedConfig> {
|
|
34
45
|
readonly input: StartAccessLoggingCommandInput;
|
|
@@ -29,6 +29,17 @@ export interface StopAccessLoggingCommandOutput extends StopAccessLoggingOutput,
|
|
|
29
29
|
* @see {@link StopAccessLoggingCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
33
|
+
* <p>The container that you specified in the request already exists or is being
|
|
34
|
+
* updated.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>The service is temporarily unavailable.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
32
43
|
*/
|
|
33
44
|
export declare class StopAccessLoggingCommand extends $Command<StopAccessLoggingCommandInput, StopAccessLoggingCommandOutput, MediaStoreClientResolvedConfig> {
|
|
34
45
|
readonly input: StopAccessLoggingCommandInput;
|
|
@@ -31,6 +31,17 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
31
31
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
35
|
+
* <p>The container that you specified in the request already exists or is being
|
|
36
|
+
* updated.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
39
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerError} (server fault)
|
|
42
|
+
* <p>The service is temporarily unavailable.</p>
|
|
43
|
+
*
|
|
44
|
+
*
|
|
34
45
|
*/
|
|
35
46
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, MediaStoreClientResolvedConfig> {
|
|
36
47
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,17 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link MediaStoreClientResolvedConfig | config} for MediaStoreClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ContainerInUseException} (client fault)
|
|
33
|
+
* <p>The container that you specified in the request already exists or is being
|
|
34
|
+
* updated.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ContainerNotFoundException} (client fault)
|
|
37
|
+
* <p>The container that you specified in the request does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>The service is temporarily unavailable.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
32
43
|
*/
|
|
33
44
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, MediaStoreClientResolvedConfig> {
|
|
34
45
|
readonly input: UntagResourceCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediastore",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediastore Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|