@aws-sdk/client-s3outposts 3.1077.0 → 3.1078.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -68,7 +69,7 @@ const commonParams = {
68
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
69
70
  };
70
71
 
71
- var version = "3.1076.0";
72
+ var version = "3.1077.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -584,64 +585,23 @@ class S3OutpostsClient extends Client {
584
585
  }
585
586
  }
586
587
 
587
- class CreateEndpointCommand extends Command
588
- .classBuilder()
589
- .ep(commonParams)
590
- .m(function (Command, cs, config, o) {
591
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
592
- })
593
- .s("S3Outposts", "CreateEndpoint", {})
594
- .n("S3OutpostsClient", "CreateEndpointCommand")
595
- .sc(CreateEndpoint$)
596
- .build() {
588
+ const command = makeBuilder(commonParams, "S3Outposts", "S3OutpostsClient", getEndpointPlugin);
589
+ const _ep0 = {};
590
+ const _mw0 = (Command, cs, config, o) => [];
591
+
592
+ class CreateEndpointCommand extends command(_ep0, _mw0, "CreateEndpoint", CreateEndpoint$) {
597
593
  }
598
594
 
599
- class DeleteEndpointCommand extends Command
600
- .classBuilder()
601
- .ep(commonParams)
602
- .m(function (Command, cs, config, o) {
603
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
604
- })
605
- .s("S3Outposts", "DeleteEndpoint", {})
606
- .n("S3OutpostsClient", "DeleteEndpointCommand")
607
- .sc(DeleteEndpoint$)
608
- .build() {
595
+ class DeleteEndpointCommand extends command(_ep0, _mw0, "DeleteEndpoint", DeleteEndpoint$) {
609
596
  }
610
597
 
611
- class ListEndpointsCommand extends Command
612
- .classBuilder()
613
- .ep(commonParams)
614
- .m(function (Command, cs, config, o) {
615
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
616
- })
617
- .s("S3Outposts", "ListEndpoints", {})
618
- .n("S3OutpostsClient", "ListEndpointsCommand")
619
- .sc(ListEndpoints$)
620
- .build() {
598
+ class ListEndpointsCommand extends command(_ep0, _mw0, "ListEndpoints", ListEndpoints$) {
621
599
  }
622
600
 
623
- class ListOutpostsWithS3Command extends Command
624
- .classBuilder()
625
- .ep(commonParams)
626
- .m(function (Command, cs, config, o) {
627
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
628
- })
629
- .s("S3Outposts", "ListOutpostsWithS3", {})
630
- .n("S3OutpostsClient", "ListOutpostsWithS3Command")
631
- .sc(ListOutpostsWithS3$)
632
- .build() {
601
+ class ListOutpostsWithS3Command extends command(_ep0, _mw0, "ListOutpostsWithS3", ListOutpostsWithS3$) {
633
602
  }
634
603
 
635
- class ListSharedEndpointsCommand extends Command
636
- .classBuilder()
637
- .ep(commonParams)
638
- .m(function (Command, cs, config, o) {
639
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
640
- })
641
- .s("S3Outposts", "ListSharedEndpoints", {})
642
- .n("S3OutpostsClient", "ListSharedEndpointsCommand")
643
- .sc(ListSharedEndpoints$)
644
- .build() {
604
+ class ListSharedEndpointsCommand extends command(_ep0, _mw0, "ListSharedEndpoints", ListSharedEndpoints$) {
645
605
  }
646
606
 
647
607
  const paginateListEndpoints = createPaginator(S3OutpostsClient, ListEndpointsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "S3Outposts", "S3OutpostsClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { CreateEndpoint$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CreateEndpointCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("S3Outposts", "CreateEndpoint", {})
13
- .n("S3OutpostsClient", "CreateEndpointCommand")
14
- .sc(CreateEndpoint$)
15
- .build() {
3
+ export class CreateEndpointCommand extends command(_ep0, _mw0, "CreateEndpoint", CreateEndpoint$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteEndpoint$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteEndpointCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("S3Outposts", "DeleteEndpoint", {})
13
- .n("S3OutpostsClient", "DeleteEndpointCommand")
14
- .sc(DeleteEndpoint$)
15
- .build() {
3
+ export class DeleteEndpointCommand extends command(_ep0, _mw0, "DeleteEndpoint", DeleteEndpoint$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListEndpoints$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListEndpointsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("S3Outposts", "ListEndpoints", {})
13
- .n("S3OutpostsClient", "ListEndpointsCommand")
14
- .sc(ListEndpoints$)
15
- .build() {
3
+ export class ListEndpointsCommand extends command(_ep0, _mw0, "ListEndpoints", ListEndpoints$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListOutpostsWithS3$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListOutpostsWithS3Command extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("S3Outposts", "ListOutpostsWithS3", {})
13
- .n("S3OutpostsClient", "ListOutpostsWithS3Command")
14
- .sc(ListOutpostsWithS3$)
15
- .build() {
3
+ export class ListOutpostsWithS3Command extends command(_ep0, _mw0, "ListOutpostsWithS3", ListOutpostsWithS3$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListSharedEndpoints$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListSharedEndpointsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("S3Outposts", "ListSharedEndpoints", {})
13
- .n("S3OutpostsClient", "ListSharedEndpointsCommand")
14
- .sc(ListSharedEndpoints$)
15
- .build() {
3
+ export class ListSharedEndpointsCommand extends command(_ep0, _mw0, "ListSharedEndpoints", ListSharedEndpoints$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./S3OutpostsClient";
2
2
  export * from "./S3Outposts";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./pagination";
6
7
  export * from "./models/enums";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./S3OutpostsClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { CreateEndpointRequest, CreateEndpointResult } from "../models/models_0";
4
- import type { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface CreateEndpointCommandInput extends CreateEndpointRequest {
22
19
  export interface CreateEndpointCommandOutput extends CreateEndpointResult, __MetadataBearer {
23
20
  }
24
21
  declare const CreateEndpointCommand_base: {
25
- new (input: CreateEndpointCommandInput): import("@smithy/core/client").CommandImpl<CreateEndpointCommandInput, CreateEndpointCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateEndpointCommandInput): import("@smithy/core/client").CommandImpl<CreateEndpointCommandInput, CreateEndpointCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateEndpointCommandInput): import("@smithy/core/client").CommandImpl<CreateEndpointCommandInput, CreateEndpointCommandOutput, import("..").S3OutpostsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateEndpointCommandInput): import("@smithy/core/client").CommandImpl<CreateEndpointCommandInput, CreateEndpointCommandOutput, import("..").S3OutpostsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates an endpoint and associates it with the specified Outpost.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { DeleteEndpointRequest } from "../models/models_0";
4
- import type { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteEndpointCommandInput extends DeleteEndpointRequest {
22
19
  export interface DeleteEndpointCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const DeleteEndpointCommand_base: {
25
- new (input: DeleteEndpointCommandInput): import("@smithy/core/client").CommandImpl<DeleteEndpointCommandInput, DeleteEndpointCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteEndpointCommandInput): import("@smithy/core/client").CommandImpl<DeleteEndpointCommandInput, DeleteEndpointCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteEndpointCommandInput): import("@smithy/core/client").CommandImpl<DeleteEndpointCommandInput, DeleteEndpointCommandOutput, import("..").S3OutpostsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteEndpointCommandInput): import("@smithy/core/client").CommandImpl<DeleteEndpointCommandInput, DeleteEndpointCommandOutput, import("..").S3OutpostsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes an endpoint.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListEndpointsRequest, ListEndpointsResult } from "../models/models_0";
4
- import type { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListEndpointsCommandInput extends ListEndpointsRequest {
22
19
  export interface ListEndpointsCommandOutput extends ListEndpointsResult, __MetadataBearer {
23
20
  }
24
21
  declare const ListEndpointsCommand_base: {
25
- new (input: ListEndpointsCommandInput): import("@smithy/core/client").CommandImpl<ListEndpointsCommandInput, ListEndpointsCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListEndpointsCommandInput]): import("@smithy/core/client").CommandImpl<ListEndpointsCommandInput, ListEndpointsCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListEndpointsCommandInput): import("@smithy/core/client").CommandImpl<ListEndpointsCommandInput, ListEndpointsCommandOutput, import("..").S3OutpostsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListEndpointsCommandInput]): import("@smithy/core/client").CommandImpl<ListEndpointsCommandInput, ListEndpointsCommandOutput, import("..").S3OutpostsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists endpoints associated with the specified Outpost. </p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListOutpostsWithS3Request, ListOutpostsWithS3Result } from "../models/models_0";
4
- import type { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListOutpostsWithS3CommandInput extends ListOutpostsWithS3Reques
22
19
  export interface ListOutpostsWithS3CommandOutput extends ListOutpostsWithS3Result, __MetadataBearer {
23
20
  }
24
21
  declare const ListOutpostsWithS3Command_base: {
25
- new (input: ListOutpostsWithS3CommandInput): import("@smithy/core/client").CommandImpl<ListOutpostsWithS3CommandInput, ListOutpostsWithS3CommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListOutpostsWithS3CommandInput]): import("@smithy/core/client").CommandImpl<ListOutpostsWithS3CommandInput, ListOutpostsWithS3CommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListOutpostsWithS3CommandInput): import("@smithy/core/client").CommandImpl<ListOutpostsWithS3CommandInput, ListOutpostsWithS3CommandOutput, import("..").S3OutpostsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListOutpostsWithS3CommandInput]): import("@smithy/core/client").CommandImpl<ListOutpostsWithS3CommandInput, ListOutpostsWithS3CommandOutput, import("..").S3OutpostsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists the Outposts with S3 on Outposts capacity for your Amazon Web Services account.
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { ListSharedEndpointsRequest, ListSharedEndpointsResult } from "../models/models_0";
4
- import type { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListSharedEndpointsCommandInput extends ListSharedEndpointsRequ
22
19
  export interface ListSharedEndpointsCommandOutput extends ListSharedEndpointsResult, __MetadataBearer {
23
20
  }
24
21
  declare const ListSharedEndpointsCommand_base: {
25
- new (input: ListSharedEndpointsCommandInput): import("@smithy/core/client").CommandImpl<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListSharedEndpointsCommandInput): import("@smithy/core/client").CommandImpl<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput, S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListSharedEndpointsCommandInput): import("@smithy/core/client").CommandImpl<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput, import("..").S3OutpostsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListSharedEndpointsCommandInput): import("@smithy/core/client").CommandImpl<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput, import("..").S3OutpostsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists all endpoints associated with an Outpost that has been shared by Amazon Web Services Resource Access Manager (RAM).</p>
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { S3OutpostsExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./pagination";
14
15
  export * from "./models/enums";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ S3OutpostsClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./S3OutpostsClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ S3OutpostsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ S3OutpostsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  CreateEndpointRequest,
5
4
  CreateEndpointResult,
6
5
  } from "../models/models_0";
7
- import {
8
- S3OutpostsClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../S3OutpostsClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CreateEndpointCommandInput extends CreateEndpointRequest {}
15
8
  export interface CreateEndpointCommandOutput
16
9
  extends CreateEndpointResult,
@@ -21,22 +14,20 @@ declare const CreateEndpointCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  CreateEndpointCommandInput,
23
16
  CreateEndpointCommandOutput,
24
- S3OutpostsClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").S3OutpostsClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: CreateEndpointCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  CreateEndpointCommandInput,
32
25
  CreateEndpointCommandOutput,
33
- S3OutpostsClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").S3OutpostsClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class CreateEndpointCommand extends CreateEndpointCommand_base {
42
33
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { DeleteEndpointRequest } from "../models/models_0";
4
- import {
5
- S3OutpostsClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../S3OutpostsClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteEndpointCommandInput extends DeleteEndpointRequest {}
12
5
  export interface DeleteEndpointCommandOutput extends __MetadataBearer {}
13
6
  declare const DeleteEndpointCommand_base: {
@@ -16,22 +9,20 @@ declare const DeleteEndpointCommand_base: {
16
9
  ): import("@smithy/core/client").CommandImpl<
17
10
  DeleteEndpointCommandInput,
18
11
  DeleteEndpointCommandOutput,
19
- S3OutpostsClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").S3OutpostsClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (
24
17
  input: DeleteEndpointCommandInput
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  DeleteEndpointCommandInput,
27
20
  DeleteEndpointCommandOutput,
28
- S3OutpostsClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").S3OutpostsClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
- getEndpointParameterInstructions(): {
33
- [x: string]: unknown;
34
- };
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
35
26
  };
36
27
  export declare class DeleteEndpointCommand extends DeleteEndpointCommand_base {
37
28
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { ListEndpointsRequest, ListEndpointsResult } from "../models/models_0";
4
- import {
5
- S3OutpostsClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../S3OutpostsClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListEndpointsCommandInput extends ListEndpointsRequest {}
12
5
  export interface ListEndpointsCommandOutput
13
6
  extends ListEndpointsResult,
@@ -18,22 +11,20 @@ declare const ListEndpointsCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  ListEndpointsCommandInput,
20
13
  ListEndpointsCommandOutput,
21
- S3OutpostsClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").S3OutpostsClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  ...[input]: [] | [ListEndpointsCommandInput]
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  ListEndpointsCommandInput,
29
22
  ListEndpointsCommandOutput,
30
- S3OutpostsClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").S3OutpostsClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class ListEndpointsCommand extends ListEndpointsCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListOutpostsWithS3Request,
5
4
  ListOutpostsWithS3Result,
6
5
  } from "../models/models_0";
7
- import {
8
- S3OutpostsClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../S3OutpostsClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListOutpostsWithS3CommandInput
15
8
  extends ListOutpostsWithS3Request {}
16
9
  export interface ListOutpostsWithS3CommandOutput
@@ -22,22 +15,20 @@ declare const ListOutpostsWithS3Command_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListOutpostsWithS3CommandInput,
24
17
  ListOutpostsWithS3CommandOutput,
25
- S3OutpostsClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").S3OutpostsClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [ListOutpostsWithS3CommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListOutpostsWithS3CommandInput,
33
26
  ListOutpostsWithS3CommandOutput,
34
- S3OutpostsClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").S3OutpostsClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListOutpostsWithS3Command extends ListOutpostsWithS3Command_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListSharedEndpointsRequest,
5
4
  ListSharedEndpointsResult,
6
5
  } from "../models/models_0";
7
- import {
8
- S3OutpostsClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../S3OutpostsClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListSharedEndpointsCommandInput
15
8
  extends ListSharedEndpointsRequest {}
16
9
  export interface ListSharedEndpointsCommandOutput
@@ -22,22 +15,20 @@ declare const ListSharedEndpointsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListSharedEndpointsCommandInput,
24
17
  ListSharedEndpointsCommandOutput,
25
- S3OutpostsClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").S3OutpostsClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListSharedEndpointsCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListSharedEndpointsCommandInput,
33
26
  ListSharedEndpointsCommandOutput,
34
- S3OutpostsClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").S3OutpostsClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListSharedEndpointsCommand extends ListSharedEndpointsCommand_base {
43
34
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { S3OutpostsExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./pagination";
9
10
  export * from "./models/enums";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3outposts",
3
3
  "description": "AWS SDK for JavaScript S3outposts Client for Node.js, Browser and React Native",
4
- "version": "3.1077.0",
4
+ "version": "3.1078.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -19,13 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-sdk/core": "^3.974.25",
23
- "@aws-sdk/credential-provider-node": "^3.972.60",
24
- "@aws-sdk/types": "^3.973.14",
25
- "@smithy/core": "^3.28.0",
26
- "@smithy/fetch-http-handler": "^5.6.1",
27
- "@smithy/node-http-handler": "^4.9.1",
28
- "@smithy/types": "^4.15.0",
22
+ "@aws-sdk/core": "^3.974.26",
23
+ "@aws-sdk/credential-provider-node": "^3.972.61",
24
+ "@aws-sdk/types": "^3.973.15",
25
+ "@smithy/core": "^3.29.0",
26
+ "@smithy/fetch-http-handler": "^5.6.2",
27
+ "@smithy/node-http-handler": "^4.9.2",
28
+ "@smithy/types": "^4.15.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "devDependencies": {