@aws-sdk/client-mediastore 3.533.0 → 3.540.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.
Files changed (53) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/MediaStore.d.ts +3 -1
  6. package/dist-types/MediaStoreClient.d.ts +1 -1
  7. package/dist-types/commands/CreateContainerCommand.d.ts +2 -1
  8. package/dist-types/commands/DeleteContainerCommand.d.ts +2 -1
  9. package/dist-types/commands/DeleteContainerPolicyCommand.d.ts +2 -1
  10. package/dist-types/commands/DeleteCorsPolicyCommand.d.ts +2 -1
  11. package/dist-types/commands/DeleteLifecyclePolicyCommand.d.ts +2 -1
  12. package/dist-types/commands/DeleteMetricPolicyCommand.d.ts +2 -1
  13. package/dist-types/commands/DescribeContainerCommand.d.ts +2 -1
  14. package/dist-types/commands/GetContainerPolicyCommand.d.ts +2 -1
  15. package/dist-types/commands/GetCorsPolicyCommand.d.ts +2 -1
  16. package/dist-types/commands/GetLifecyclePolicyCommand.d.ts +2 -1
  17. package/dist-types/commands/GetMetricPolicyCommand.d.ts +2 -1
  18. package/dist-types/commands/ListContainersCommand.d.ts +2 -1
  19. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  20. package/dist-types/commands/PutContainerPolicyCommand.d.ts +2 -1
  21. package/dist-types/commands/PutCorsPolicyCommand.d.ts +2 -1
  22. package/dist-types/commands/PutLifecyclePolicyCommand.d.ts +2 -1
  23. package/dist-types/commands/PutMetricPolicyCommand.d.ts +2 -1
  24. package/dist-types/commands/StartAccessLoggingCommand.d.ts +2 -1
  25. package/dist-types/commands/StopAccessLoggingCommand.d.ts +2 -1
  26. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  27. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  28. package/dist-types/index.d.ts +0 -1
  29. package/dist-types/models/models_0.d.ts +66 -66
  30. package/dist-types/ts3.4/MediaStore.d.ts +2 -0
  31. package/dist-types/ts3.4/commands/CreateContainerCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/DeleteContainerCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/DeleteContainerPolicyCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/DeleteCorsPolicyCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/DeleteLifecyclePolicyCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/DeleteMetricPolicyCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/DescribeContainerCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/GetContainerPolicyCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/GetCorsPolicyCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/GetLifecyclePolicyCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/GetMetricPolicyCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/ListContainersCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  44. package/dist-types/ts3.4/commands/PutContainerPolicyCommand.d.ts +9 -0
  45. package/dist-types/ts3.4/commands/PutCorsPolicyCommand.d.ts +9 -0
  46. package/dist-types/ts3.4/commands/PutLifecyclePolicyCommand.d.ts +9 -0
  47. package/dist-types/ts3.4/commands/PutMetricPolicyCommand.d.ts +9 -0
  48. package/dist-types/ts3.4/commands/StartAccessLoggingCommand.d.ts +9 -0
  49. package/dist-types/ts3.4/commands/StopAccessLoggingCommand.d.ts +9 -0
  50. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  51. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  52. package/dist-types/ts3.4/index.d.ts +0 -1
  53. package/package.json +40 -40
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaultEndpointResolver = void 0;
4
- const util_endpoints_1 = require("@smithy/util-endpoints");
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
5
6
  const ruleset_1 = require("./ruleset");
6
7
  const defaultEndpointResolver = (endpointParams, context = {}) => {
7
- return (0, util_endpoints_1.resolveEndpoint)(ruleset_1.ruleSet, {
8
+ return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
8
9
  endpointParams: endpointParams,
9
10
  logger: context.logger,
10
11
  });
11
12
  };
12
13
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -1294,9 +1294,6 @@ var MediaStore = _MediaStore;
1294
1294
  // src/pagination/ListContainersPaginator.ts
1295
1295
 
1296
1296
  var paginateListContainers = (0, import_core.createPaginator)(MediaStoreClient, ListContainersCommand, "NextToken", "NextToken", "MaxResults");
1297
-
1298
- // src/index.ts
1299
- var import_util_endpoints = require("@aws-sdk/util-endpoints");
1300
1297
  // Annotate the CommonJS export names for ESM import in node:
1301
1298
 
1302
1299
  0 && (module.exports = {
@@ -1,4 +1,5 @@
1
- import { resolveEndpoint } from "@smithy/util-endpoints";
1
+ import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
+ import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
2
3
  import { ruleSet } from "./ruleset";
3
4
  export const defaultEndpointResolver = (endpointParams, context = {}) => {
4
5
  return resolveEndpoint(ruleSet, {
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
6
7
  logger: context.logger,
7
8
  });
8
9
  };
10
+ customEndpointFunctions.aws = awsEndpointFunctions;
package/dist-es/index.js CHANGED
@@ -3,5 +3,4 @@ export * from "./MediaStore";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./models";
6
- import "@aws-sdk/util-endpoints";
7
6
  export { MediaStoreServiceException } from "./models/MediaStoreServiceException";
@@ -61,6 +61,7 @@ export interface MediaStore {
61
61
  /**
62
62
  * @see {@link DescribeContainerCommand}
63
63
  */
64
+ describeContainer(): Promise<DescribeContainerCommandOutput>;
64
65
  describeContainer(args: DescribeContainerCommandInput, options?: __HttpHandlerOptions): Promise<DescribeContainerCommandOutput>;
65
66
  describeContainer(args: DescribeContainerCommandInput, cb: (err: any, data?: DescribeContainerCommandOutput) => void): void;
66
67
  describeContainer(args: DescribeContainerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeContainerCommandOutput) => void): void;
@@ -91,6 +92,7 @@ export interface MediaStore {
91
92
  /**
92
93
  * @see {@link ListContainersCommand}
93
94
  */
95
+ listContainers(): Promise<ListContainersCommandOutput>;
94
96
  listContainers(args: ListContainersCommandInput, options?: __HttpHandlerOptions): Promise<ListContainersCommandOutput>;
95
97
  listContainers(args: ListContainersCommandInput, cb: (err: any, data?: ListContainersCommandOutput) => void): void;
96
98
  listContainers(args: ListContainersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContainersCommandOutput) => void): void;
@@ -150,9 +152,9 @@ export interface MediaStore {
150
152
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
151
153
  }
152
154
  /**
153
- * @public
154
155
  * <p>An AWS Elemental MediaStore container is a namespace that holds folders and objects.
155
156
  * You use a container endpoint to create, read, and delete objects. </p>
157
+ * @public
156
158
  */
157
159
  export declare class MediaStore extends MediaStoreClient implements MediaStore {
158
160
  }
@@ -172,9 +172,9 @@ export type MediaStoreClientResolvedConfigType = __SmithyResolvedConfiguration<_
172
172
  export interface MediaStoreClientResolvedConfig extends MediaStoreClientResolvedConfigType {
173
173
  }
174
174
  /**
175
- * @public
176
175
  * <p>An AWS Elemental MediaStore container is a namespace that holds folders and objects.
177
176
  * You use a container endpoint to create, read, and delete objects. </p>
177
+ * @public
178
178
  */
179
179
  export declare class MediaStoreClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MediaStoreClientResolvedConfig> {
180
180
  /**
@@ -22,10 +22,10 @@ export interface CreateContainerCommandOutput extends CreateContainerOutput, __M
22
22
  }
23
23
  declare const CreateContainerCommand_base: {
24
24
  new (input: CreateContainerCommandInput): import("@smithy/smithy-client").CommandImpl<CreateContainerCommandInput, CreateContainerCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateContainerCommandInput): import("@smithy/smithy-client").CommandImpl<CreateContainerCommandInput, CreateContainerCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a storage container to hold objects. A container is similar to a bucket in
30
30
  * the Amazon S3 service.</p>
31
31
  * @example
@@ -77,6 +77,7 @@ declare const CreateContainerCommand_base: {
77
77
  * @throws {@link MediaStoreServiceException}
78
78
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
79
79
  *
80
+ * @public
80
81
  */
81
82
  export declare class CreateContainerCommand extends CreateContainerCommand_base {
82
83
  }
@@ -22,10 +22,10 @@ export interface DeleteContainerCommandOutput extends DeleteContainerOutput, __M
22
22
  }
23
23
  declare const DeleteContainerCommand_base: {
24
24
  new (input: DeleteContainerCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteContainerCommandInput, DeleteContainerCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteContainerCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteContainerCommandInput, DeleteContainerCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the specified container. Before you make a <code>DeleteContainer</code>
30
30
  * request, delete any objects in the container or in any folders in the container. You can
31
31
  * delete only empty containers. </p>
@@ -63,6 +63,7 @@ declare const DeleteContainerCommand_base: {
63
63
  * @throws {@link MediaStoreServiceException}
64
64
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
65
65
  *
66
+ * @public
66
67
  */
67
68
  export declare class DeleteContainerCommand extends DeleteContainerCommand_base {
68
69
  }
@@ -22,10 +22,10 @@ export interface DeleteContainerPolicyCommandOutput extends DeleteContainerPolic
22
22
  }
23
23
  declare const DeleteContainerPolicyCommand_base: {
24
24
  new (input: DeleteContainerPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteContainerPolicyCommandInput, DeleteContainerPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteContainerPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteContainerPolicyCommandInput, DeleteContainerPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the access policy that is associated with the specified container.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -64,6 +64,7 @@ declare const DeleteContainerPolicyCommand_base: {
64
64
  * @throws {@link MediaStoreServiceException}
65
65
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
66
66
  *
67
+ * @public
67
68
  */
68
69
  export declare class DeleteContainerPolicyCommand extends DeleteContainerPolicyCommand_base {
69
70
  }
@@ -22,10 +22,10 @@ export interface DeleteCorsPolicyCommandOutput extends DeleteCorsPolicyOutput, _
22
22
  }
23
23
  declare const DeleteCorsPolicyCommand_base: {
24
24
  new (input: DeleteCorsPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCorsPolicyCommandInput, DeleteCorsPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteCorsPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCorsPolicyCommandInput, DeleteCorsPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the cross-origin resource sharing (CORS) configuration information that is
30
30
  * set for the container.</p>
31
31
  * <p>To use this operation, you must have permission to perform the
@@ -68,6 +68,7 @@ declare const DeleteCorsPolicyCommand_base: {
68
68
  * @throws {@link MediaStoreServiceException}
69
69
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
70
70
  *
71
+ * @public
71
72
  */
72
73
  export declare class DeleteCorsPolicyCommand extends DeleteCorsPolicyCommand_base {
73
74
  }
@@ -22,10 +22,10 @@ export interface DeleteLifecyclePolicyCommandOutput extends DeleteLifecyclePolic
22
22
  }
23
23
  declare const DeleteLifecyclePolicyCommand_base: {
24
24
  new (input: DeleteLifecyclePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLifecyclePolicyCommandInput, DeleteLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteLifecyclePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLifecyclePolicyCommandInput, DeleteLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes an object lifecycle policy from a container. It takes up to 20 minutes for the change to take effect.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -64,6 +64,7 @@ declare const DeleteLifecyclePolicyCommand_base: {
64
64
  * @throws {@link MediaStoreServiceException}
65
65
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
66
66
  *
67
+ * @public
67
68
  */
68
69
  export declare class DeleteLifecyclePolicyCommand extends DeleteLifecyclePolicyCommand_base {
69
70
  }
@@ -22,10 +22,10 @@ export interface DeleteMetricPolicyCommandOutput extends DeleteMetricPolicyOutpu
22
22
  }
23
23
  declare const DeleteMetricPolicyCommand_base: {
24
24
  new (input: DeleteMetricPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMetricPolicyCommandInput, DeleteMetricPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteMetricPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMetricPolicyCommandInput, DeleteMetricPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the metric policy that is associated with the specified container. If there is no metric policy associated with the container, MediaStore doesn't send metrics to CloudWatch.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -64,6 +64,7 @@ declare const DeleteMetricPolicyCommand_base: {
64
64
  * @throws {@link MediaStoreServiceException}
65
65
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
66
66
  *
67
+ * @public
67
68
  */
68
69
  export declare class DeleteMetricPolicyCommand extends DeleteMetricPolicyCommand_base {
69
70
  }
@@ -22,10 +22,10 @@ export interface DescribeContainerCommandOutput extends DescribeContainerOutput,
22
22
  }
23
23
  declare const DescribeContainerCommand_base: {
24
24
  new (input: DescribeContainerCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeContainerCommandInput, DescribeContainerCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [DescribeContainerCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeContainerCommandInput, DescribeContainerCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the properties of the requested container. This request is commonly used to
30
30
  * retrieve the endpoint of a container. An endpoint is a value assigned by the service when a
31
31
  * new container is created. A container's endpoint does not change after it has been
@@ -72,6 +72,7 @@ declare const DescribeContainerCommand_base: {
72
72
  * @throws {@link MediaStoreServiceException}
73
73
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
74
74
  *
75
+ * @public
75
76
  */
76
77
  export declare class DescribeContainerCommand extends DescribeContainerCommand_base {
77
78
  }
@@ -22,10 +22,10 @@ export interface GetContainerPolicyCommandOutput extends GetContainerPolicyOutpu
22
22
  }
23
23
  declare const GetContainerPolicyCommand_base: {
24
24
  new (input: GetContainerPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetContainerPolicyCommandInput, GetContainerPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetContainerPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetContainerPolicyCommandInput, GetContainerPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the access policy for the specified container. For information about the
30
30
  * data that is included in an access policy, see the <a href="https://aws.amazon.com/documentation/iam/">AWS Identity and Access Management User
31
31
  * Guide</a>.</p>
@@ -68,6 +68,7 @@ declare const GetContainerPolicyCommand_base: {
68
68
  * @throws {@link MediaStoreServiceException}
69
69
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
70
70
  *
71
+ * @public
71
72
  */
72
73
  export declare class GetContainerPolicyCommand extends GetContainerPolicyCommand_base {
73
74
  }
@@ -22,10 +22,10 @@ export interface GetCorsPolicyCommandOutput extends GetCorsPolicyOutput, __Metad
22
22
  }
23
23
  declare const GetCorsPolicyCommand_base: {
24
24
  new (input: GetCorsPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetCorsPolicyCommandInput, GetCorsPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetCorsPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetCorsPolicyCommandInput, GetCorsPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns the cross-origin resource sharing (CORS) configuration information that is
30
30
  * set for the container.</p>
31
31
  * <p>To use this operation, you must have permission to perform the
@@ -86,6 +86,7 @@ declare const GetCorsPolicyCommand_base: {
86
86
  * @throws {@link MediaStoreServiceException}
87
87
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class GetCorsPolicyCommand extends GetCorsPolicyCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface GetLifecyclePolicyCommandOutput extends GetLifecyclePolicyOutpu
22
22
  }
23
23
  declare const GetLifecyclePolicyCommand_base: {
24
24
  new (input: GetLifecyclePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetLifecyclePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves the object lifecycle policy that is assigned to a container.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -66,6 +66,7 @@ declare const GetLifecyclePolicyCommand_base: {
66
66
  * @throws {@link MediaStoreServiceException}
67
67
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
68
68
  *
69
+ * @public
69
70
  */
70
71
  export declare class GetLifecyclePolicyCommand extends GetLifecyclePolicyCommand_base {
71
72
  }
@@ -22,10 +22,10 @@ export interface GetMetricPolicyCommandOutput extends GetMetricPolicyOutput, __M
22
22
  }
23
23
  declare const GetMetricPolicyCommand_base: {
24
24
  new (input: GetMetricPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetMetricPolicyCommandInput, GetMetricPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetMetricPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetMetricPolicyCommandInput, GetMetricPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns the metric policy for the specified container. </p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -74,6 +74,7 @@ declare const GetMetricPolicyCommand_base: {
74
74
  * @throws {@link MediaStoreServiceException}
75
75
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
76
76
  *
77
+ * @public
77
78
  */
78
79
  export declare class GetMetricPolicyCommand extends GetMetricPolicyCommand_base {
79
80
  }
@@ -22,10 +22,10 @@ export interface ListContainersCommandOutput extends ListContainersOutput, __Met
22
22
  }
23
23
  declare const ListContainersCommand_base: {
24
24
  new (input: ListContainersCommandInput): import("@smithy/smithy-client").CommandImpl<ListContainersCommandInput, ListContainersCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListContainersCommandInput]): import("@smithy/smithy-client").CommandImpl<ListContainersCommandInput, ListContainersCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the properties of all containers in AWS Elemental MediaStore. </p>
30
30
  * <p>You can query to receive all the containers in one response. Or you can include the
31
31
  * <code>MaxResults</code> parameter to receive a limited number of containers in each
@@ -75,6 +75,7 @@ declare const ListContainersCommand_base: {
75
75
  * @throws {@link MediaStoreServiceException}
76
76
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
77
77
  *
78
+ * @public
78
79
  */
79
80
  export declare class ListContainersCommand extends ListContainersCommand_base {
80
81
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of the tags assigned to the specified container. </p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -68,6 +68,7 @@ declare const ListTagsForResourceCommand_base: {
68
68
  * @throws {@link MediaStoreServiceException}
69
69
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
70
70
  *
71
+ * @public
71
72
  */
72
73
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
73
74
  }
@@ -22,10 +22,10 @@ export interface PutContainerPolicyCommandOutput extends PutContainerPolicyOutpu
22
22
  }
23
23
  declare const PutContainerPolicyCommand_base: {
24
24
  new (input: PutContainerPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutContainerPolicyCommandInput, PutContainerPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PutContainerPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutContainerPolicyCommandInput, PutContainerPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates an access policy for the specified container to restrict the users and
30
30
  * clients that can access it. For information about the data that is included in an access
31
31
  * policy, see the <a href="https://aws.amazon.com/documentation/iam/">AWS Identity and
@@ -68,6 +68,7 @@ declare const PutContainerPolicyCommand_base: {
68
68
  * @throws {@link MediaStoreServiceException}
69
69
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
70
70
  *
71
+ * @public
71
72
  */
72
73
  export declare class PutContainerPolicyCommand extends PutContainerPolicyCommand_base {
73
74
  }
@@ -22,10 +22,10 @@ export interface PutCorsPolicyCommandOutput extends PutCorsPolicyOutput, __Metad
22
22
  }
23
23
  declare const PutCorsPolicyCommand_base: {
24
24
  new (input: PutCorsPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutCorsPolicyCommandInput, PutCorsPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PutCorsPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutCorsPolicyCommandInput, PutCorsPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Sets the cross-origin resource sharing (CORS) configuration on a container so that
30
30
  * the container can service cross-origin requests. For example, you might want to enable a
31
31
  * request whose origin is http://www.example.com to access your AWS Elemental MediaStore
@@ -88,6 +88,7 @@ declare const PutCorsPolicyCommand_base: {
88
88
  * @throws {@link MediaStoreServiceException}
89
89
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
90
90
  *
91
+ * @public
91
92
  */
92
93
  export declare class PutCorsPolicyCommand extends PutCorsPolicyCommand_base {
93
94
  }
@@ -22,10 +22,10 @@ export interface PutLifecyclePolicyCommandOutput extends PutLifecyclePolicyOutpu
22
22
  }
23
23
  declare const PutLifecyclePolicyCommand_base: {
24
24
  new (input: PutLifecyclePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutLifecyclePolicyCommandInput, PutLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PutLifecyclePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutLifecyclePolicyCommandInput, PutLifecyclePolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Writes an object lifecycle policy to a container. If the container already has an object lifecycle policy, the service replaces the existing policy with the new policy. It takes up to 20 minutes for the change to take effect.</p>
30
30
  * <p>For information about how to construct an object lifecycle policy, see <a href="https://docs.aws.amazon.com/mediastore/latest/ug/policies-object-lifecycle-components.html">Components of an Object Lifecycle Policy</a>.</p>
31
31
  * @example
@@ -63,6 +63,7 @@ declare const PutLifecyclePolicyCommand_base: {
63
63
  * @throws {@link MediaStoreServiceException}
64
64
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
65
65
  *
66
+ * @public
66
67
  */
67
68
  export declare class PutLifecyclePolicyCommand extends PutLifecyclePolicyCommand_base {
68
69
  }
@@ -22,10 +22,10 @@ export interface PutMetricPolicyCommandOutput extends PutMetricPolicyOutput, __M
22
22
  }
23
23
  declare const PutMetricPolicyCommand_base: {
24
24
  new (input: PutMetricPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutMetricPolicyCommandInput, PutMetricPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PutMetricPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<PutMetricPolicyCommandInput, PutMetricPolicyCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>The metric policy that you want to add to the container. A metric policy allows AWS Elemental MediaStore to send metrics to Amazon CloudWatch. It takes up to 20 minutes for the new policy to take effect.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -70,6 +70,7 @@ declare const PutMetricPolicyCommand_base: {
70
70
  * @throws {@link MediaStoreServiceException}
71
71
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
72
72
  *
73
+ * @public
73
74
  */
74
75
  export declare class PutMetricPolicyCommand extends PutMetricPolicyCommand_base {
75
76
  }
@@ -22,10 +22,10 @@ export interface StartAccessLoggingCommandOutput extends StartAccessLoggingOutpu
22
22
  }
23
23
  declare const StartAccessLoggingCommand_base: {
24
24
  new (input: StartAccessLoggingCommandInput): import("@smithy/smithy-client").CommandImpl<StartAccessLoggingCommandInput, StartAccessLoggingCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StartAccessLoggingCommandInput): import("@smithy/smithy-client").CommandImpl<StartAccessLoggingCommandInput, StartAccessLoggingCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Starts access logging on the specified container. When you enable access logging on a container, MediaStore delivers access logs for objects stored in that container to Amazon CloudWatch Logs.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -61,6 +61,7 @@ declare const StartAccessLoggingCommand_base: {
61
61
  * @throws {@link MediaStoreServiceException}
62
62
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
63
63
  *
64
+ * @public
64
65
  */
65
66
  export declare class StartAccessLoggingCommand extends StartAccessLoggingCommand_base {
66
67
  }
@@ -22,10 +22,10 @@ export interface StopAccessLoggingCommandOutput extends StopAccessLoggingOutput,
22
22
  }
23
23
  declare const StopAccessLoggingCommand_base: {
24
24
  new (input: StopAccessLoggingCommandInput): import("@smithy/smithy-client").CommandImpl<StopAccessLoggingCommandInput, StopAccessLoggingCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StopAccessLoggingCommandInput): import("@smithy/smithy-client").CommandImpl<StopAccessLoggingCommandInput, StopAccessLoggingCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Stops access logging on the specified container. When you stop access logging on a container, MediaStore stops sending access logs to Amazon CloudWatch Logs. These access logs are not saved and are not retrievable.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -61,6 +61,7 @@ declare const StopAccessLoggingCommand_base: {
61
61
  * @throws {@link MediaStoreServiceException}
62
62
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
63
63
  *
64
+ * @public
64
65
  */
65
66
  export declare class StopAccessLoggingCommand extends StopAccessLoggingCommand_base {
66
67
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Adds tags to the specified AWS Elemental MediaStore container. Tags are key:value pairs that you can associate with AWS resources. For example, the
30
30
  * tag key might be "customer" and the tag value might be "companyA." You can specify one or more tags to add to each container. You can add up to 50
31
31
  * tags to each container. For more information about tagging, including naming and usage conventions, see <a href="https://docs.aws.amazon.com/mediastore/latest/ug/tagging.html">Tagging Resources in MediaStore</a>.</p>
@@ -69,6 +69,7 @@ declare const TagResourceCommand_base: {
69
69
  * @throws {@link MediaStoreServiceException}
70
70
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class TagResourceCommand extends TagResourceCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes tags from the specified container. You can specify one or more tags to remove. </p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -64,6 +64,7 @@ declare const UntagResourceCommand_base: {
64
64
  * @throws {@link MediaStoreServiceException}
65
65
  * <p>Base exception class for all service exceptions from MediaStore service.</p>
66
66
  *
67
+ * @public
67
68
  */
68
69
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
69
70
  }
@@ -12,5 +12,4 @@ export { MediaStoreExtensionConfiguration } from "./extensionConfiguration";
12
12
  export * from "./commands";
13
13
  export * from "./pagination";
14
14
  export * from "./models";
15
- import "@aws-sdk/util-endpoints";
16
15
  export { MediaStoreServiceException } from "./models/MediaStoreServiceException";