@aws-sdk/client-mediastore 3.168.0 → 3.170.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 +382 -110
- package/dist-types/ts3.4/MediaStoreClient.d.ts +255 -94
- package/dist-types/ts3.4/commands/CreateContainerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteContainerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteContainerPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteCorsPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteLifecyclePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteMetricPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeContainerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetContainerPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetCorsPolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetLifecyclePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetMetricPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListContainersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutContainerPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutCorsPolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutLifecyclePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutMetricPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartAccessLoggingCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StopAccessLoggingCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +647 -13
- 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 +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
|
|
22
|
+
export declare class PutMetricPolicyCommand extends $Command<
|
|
23
|
+
PutMetricPolicyCommandInput,
|
|
24
|
+
PutMetricPolicyCommandOutput,
|
|
25
|
+
MediaStoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: PutMetricPolicyCommandInput;
|
|
28
|
+
constructor(input: PutMetricPolicyCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<PutMetricPolicyCommandInput, PutMetricPolicyCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
StartAccessLoggingInput,
|
|
15
|
+
StartAccessLoggingOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface StartAccessLoggingCommandInput
|
|
18
|
+
extends StartAccessLoggingInput {}
|
|
19
|
+
export interface StartAccessLoggingCommandOutput
|
|
20
|
+
extends StartAccessLoggingOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class StartAccessLoggingCommand extends $Command<
|
|
24
|
+
StartAccessLoggingCommandInput,
|
|
25
|
+
StartAccessLoggingCommandOutput,
|
|
26
|
+
MediaStoreClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartAccessLoggingCommandInput;
|
|
29
|
+
constructor(input: StartAccessLoggingCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<StartAccessLoggingCommandInput, StartAccessLoggingCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
StopAccessLoggingInput,
|
|
15
|
+
StopAccessLoggingOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface StopAccessLoggingCommandInput extends StopAccessLoggingInput {}
|
|
18
|
+
export interface StopAccessLoggingCommandOutput
|
|
19
|
+
extends StopAccessLoggingOutput,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class StopAccessLoggingCommand extends $Command<
|
|
23
|
+
StopAccessLoggingCommandInput,
|
|
24
|
+
StopAccessLoggingCommandOutput,
|
|
25
|
+
MediaStoreClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: StopAccessLoggingCommandInput;
|
|
28
|
+
constructor(input: StopAccessLoggingCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<StopAccessLoggingCommandInput, StopAccessLoggingCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class TagResourceCommand extends $Command<
|
|
20
|
+
TagResourceCommandInput,
|
|
21
|
+
TagResourceCommandOutput,
|
|
22
|
+
MediaStoreClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: TagResourceCommandInput;
|
|
25
|
+
constructor(input: TagResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
14
|
+
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
15
|
+
export interface UntagResourceCommandOutput
|
|
16
|
+
extends UntagResourceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UntagResourceCommand extends $Command<
|
|
20
|
+
UntagResourceCommandInput,
|
|
21
|
+
UntagResourceCommandOutput,
|
|
22
|
+
MediaStoreClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UntagResourceCommandInput;
|
|
25
|
+
constructor(input: UntagResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: MediaStoreClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
export * from "./CreateContainerCommand";
|
|
2
|
-
export * from "./DeleteContainerCommand";
|
|
3
|
-
export * from "./DeleteContainerPolicyCommand";
|
|
4
|
-
export * from "./DeleteCorsPolicyCommand";
|
|
5
|
-
export * from "./DeleteLifecyclePolicyCommand";
|
|
6
|
-
export * from "./DeleteMetricPolicyCommand";
|
|
7
|
-
export * from "./DescribeContainerCommand";
|
|
8
|
-
export * from "./GetContainerPolicyCommand";
|
|
9
|
-
export * from "./GetCorsPolicyCommand";
|
|
10
|
-
export * from "./GetLifecyclePolicyCommand";
|
|
11
|
-
export * from "./GetMetricPolicyCommand";
|
|
12
|
-
export * from "./ListContainersCommand";
|
|
13
|
-
export * from "./ListTagsForResourceCommand";
|
|
14
|
-
export * from "./PutContainerPolicyCommand";
|
|
15
|
-
export * from "./PutCorsPolicyCommand";
|
|
16
|
-
export * from "./PutLifecyclePolicyCommand";
|
|
17
|
-
export * from "./PutMetricPolicyCommand";
|
|
18
|
-
export * from "./StartAccessLoggingCommand";
|
|
19
|
-
export * from "./StopAccessLoggingCommand";
|
|
20
|
-
export * from "./TagResourceCommand";
|
|
21
|
-
export * from "./UntagResourceCommand";
|
|
1
|
+
export * from "./CreateContainerCommand";
|
|
2
|
+
export * from "./DeleteContainerCommand";
|
|
3
|
+
export * from "./DeleteContainerPolicyCommand";
|
|
4
|
+
export * from "./DeleteCorsPolicyCommand";
|
|
5
|
+
export * from "./DeleteLifecyclePolicyCommand";
|
|
6
|
+
export * from "./DeleteMetricPolicyCommand";
|
|
7
|
+
export * from "./DescribeContainerCommand";
|
|
8
|
+
export * from "./GetContainerPolicyCommand";
|
|
9
|
+
export * from "./GetCorsPolicyCommand";
|
|
10
|
+
export * from "./GetLifecyclePolicyCommand";
|
|
11
|
+
export * from "./GetMetricPolicyCommand";
|
|
12
|
+
export * from "./ListContainersCommand";
|
|
13
|
+
export * from "./ListTagsForResourceCommand";
|
|
14
|
+
export * from "./PutContainerPolicyCommand";
|
|
15
|
+
export * from "./PutCorsPolicyCommand";
|
|
16
|
+
export * from "./PutLifecyclePolicyCommand";
|
|
17
|
+
export * from "./PutMetricPolicyCommand";
|
|
18
|
+
export * from "./StartAccessLoggingCommand";
|
|
19
|
+
export * from "./StopAccessLoggingCommand";
|
|
20
|
+
export * from "./TagResourceCommand";
|
|
21
|
+
export * from "./UntagResourceCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./MediaStore";
|
|
2
|
-
export * from "./MediaStoreClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { MediaStoreServiceException } from "./models/MediaStoreServiceException";
|
|
1
|
+
export * from "./MediaStore";
|
|
2
|
+
export * from "./MediaStoreClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { MediaStoreServiceException } from "./models/MediaStoreServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class MediaStoreServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|