@aws-sdk/client-rbin 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.
Files changed (38) hide show
  1. package/dist-cjs/index.js +18 -103
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CreateRuleCommand.js +2 -14
  4. package/dist-es/commands/DeleteRuleCommand.js +2 -14
  5. package/dist-es/commands/GetRuleCommand.js +2 -14
  6. package/dist-es/commands/ListRulesCommand.js +2 -14
  7. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  8. package/dist-es/commands/LockRuleCommand.js +2 -14
  9. package/dist-es/commands/TagResourceCommand.js +2 -14
  10. package/dist-es/commands/UnlockRuleCommand.js +2 -14
  11. package/dist-es/commands/UntagResourceCommand.js +2 -14
  12. package/dist-es/commands/UpdateRuleCommand.js +2 -14
  13. package/dist-es/index.js +1 -0
  14. package/dist-types/commandBuilder.d.ts +18 -0
  15. package/dist-types/commands/CreateRuleCommand.d.ts +3 -8
  16. package/dist-types/commands/DeleteRuleCommand.d.ts +3 -8
  17. package/dist-types/commands/GetRuleCommand.d.ts +3 -8
  18. package/dist-types/commands/ListRulesCommand.d.ts +3 -8
  19. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  20. package/dist-types/commands/LockRuleCommand.d.ts +3 -8
  21. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  22. package/dist-types/commands/UnlockRuleCommand.d.ts +3 -8
  23. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  24. package/dist-types/commands/UpdateRuleCommand.d.ts +3 -8
  25. package/dist-types/index.d.ts +1 -0
  26. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  27. package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +7 -16
  28. package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +7 -16
  29. package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +7 -16
  30. package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +7 -16
  31. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  32. package/dist-types/ts3.4/commands/LockRuleCommand.d.ts +7 -16
  33. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  34. package/dist-types/ts3.4/commands/UnlockRuleCommand.d.ts +7 -16
  35. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  36. package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +7 -16
  37. package/dist-types/ts3.4/index.d.ts +1 -0
  38. package/package.json +8 -8
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
 
@@ -650,124 +651,38 @@ class RbinClient extends Client {
650
651
  }
651
652
  }
652
653
 
653
- class CreateRuleCommand extends Command
654
- .classBuilder()
655
- .ep(commonParams)
656
- .m(function (Command, cs, config, o) {
657
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
658
- })
659
- .s("AmazonRecycleBin", "CreateRule", {})
660
- .n("RbinClient", "CreateRuleCommand")
661
- .sc(CreateRule$)
662
- .build() {
654
+ const command = makeBuilder(commonParams, "AmazonRecycleBin", "RbinClient", getEndpointPlugin);
655
+ const _ep0 = {};
656
+ const _mw0 = (Command, cs, config, o) => [];
657
+
658
+ class CreateRuleCommand extends command(_ep0, _mw0, "CreateRule", CreateRule$) {
663
659
  }
664
660
 
665
- class DeleteRuleCommand extends Command
666
- .classBuilder()
667
- .ep(commonParams)
668
- .m(function (Command, cs, config, o) {
669
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
670
- })
671
- .s("AmazonRecycleBin", "DeleteRule", {})
672
- .n("RbinClient", "DeleteRuleCommand")
673
- .sc(DeleteRule$)
674
- .build() {
661
+ class DeleteRuleCommand extends command(_ep0, _mw0, "DeleteRule", DeleteRule$) {
675
662
  }
676
663
 
677
- class GetRuleCommand extends Command
678
- .classBuilder()
679
- .ep(commonParams)
680
- .m(function (Command, cs, config, o) {
681
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
682
- })
683
- .s("AmazonRecycleBin", "GetRule", {})
684
- .n("RbinClient", "GetRuleCommand")
685
- .sc(GetRule$)
686
- .build() {
664
+ class GetRuleCommand extends command(_ep0, _mw0, "GetRule", GetRule$) {
687
665
  }
688
666
 
689
- class ListRulesCommand extends Command
690
- .classBuilder()
691
- .ep(commonParams)
692
- .m(function (Command, cs, config, o) {
693
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
694
- })
695
- .s("AmazonRecycleBin", "ListRules", {})
696
- .n("RbinClient", "ListRulesCommand")
697
- .sc(ListRules$)
698
- .build() {
667
+ class ListRulesCommand extends command(_ep0, _mw0, "ListRules", ListRules$) {
699
668
  }
700
669
 
701
- class ListTagsForResourceCommand extends Command
702
- .classBuilder()
703
- .ep(commonParams)
704
- .m(function (Command, cs, config, o) {
705
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
706
- })
707
- .s("AmazonRecycleBin", "ListTagsForResource", {})
708
- .n("RbinClient", "ListTagsForResourceCommand")
709
- .sc(ListTagsForResource$)
710
- .build() {
670
+ class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
711
671
  }
712
672
 
713
- class LockRuleCommand extends Command
714
- .classBuilder()
715
- .ep(commonParams)
716
- .m(function (Command, cs, config, o) {
717
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
718
- })
719
- .s("AmazonRecycleBin", "LockRule", {})
720
- .n("RbinClient", "LockRuleCommand")
721
- .sc(LockRule$)
722
- .build() {
673
+ class LockRuleCommand extends command(_ep0, _mw0, "LockRule", LockRule$) {
723
674
  }
724
675
 
725
- class TagResourceCommand extends Command
726
- .classBuilder()
727
- .ep(commonParams)
728
- .m(function (Command, cs, config, o) {
729
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
730
- })
731
- .s("AmazonRecycleBin", "TagResource", {})
732
- .n("RbinClient", "TagResourceCommand")
733
- .sc(TagResource$)
734
- .build() {
676
+ class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
735
677
  }
736
678
 
737
- class UnlockRuleCommand extends Command
738
- .classBuilder()
739
- .ep(commonParams)
740
- .m(function (Command, cs, config, o) {
741
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
742
- })
743
- .s("AmazonRecycleBin", "UnlockRule", {})
744
- .n("RbinClient", "UnlockRuleCommand")
745
- .sc(UnlockRule$)
746
- .build() {
679
+ class UnlockRuleCommand extends command(_ep0, _mw0, "UnlockRule", UnlockRule$) {
747
680
  }
748
681
 
749
- class UntagResourceCommand extends Command
750
- .classBuilder()
751
- .ep(commonParams)
752
- .m(function (Command, cs, config, o) {
753
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
754
- })
755
- .s("AmazonRecycleBin", "UntagResource", {})
756
- .n("RbinClient", "UntagResourceCommand")
757
- .sc(UntagResource$)
758
- .build() {
682
+ class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
759
683
  }
760
684
 
761
- class UpdateRuleCommand extends Command
762
- .classBuilder()
763
- .ep(commonParams)
764
- .m(function (Command, cs, config, o) {
765
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
766
- })
767
- .s("AmazonRecycleBin", "UpdateRule", {})
768
- .n("RbinClient", "UpdateRuleCommand")
769
- .sc(UpdateRule$)
770
- .build() {
685
+ class UpdateRuleCommand extends command(_ep0, _mw0, "UpdateRule", UpdateRule$) {
771
686
  }
772
687
 
773
688
  const paginateListRules = createPaginator(RbinClient, ListRulesCommand, "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, "AmazonRecycleBin", "RbinClient", 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 { CreateRule$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CreateRuleCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonRecycleBin", "CreateRule", {})
13
- .n("RbinClient", "CreateRuleCommand")
14
- .sc(CreateRule$)
15
- .build() {
3
+ export class CreateRuleCommand extends command(_ep0, _mw0, "CreateRule", CreateRule$) {
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 { DeleteRule$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteRuleCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonRecycleBin", "DeleteRule", {})
13
- .n("RbinClient", "DeleteRuleCommand")
14
- .sc(DeleteRule$)
15
- .build() {
3
+ export class DeleteRuleCommand extends command(_ep0, _mw0, "DeleteRule", DeleteRule$) {
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 { GetRule$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetRuleCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonRecycleBin", "GetRule", {})
13
- .n("RbinClient", "GetRuleCommand")
14
- .sc(GetRule$)
15
- .build() {
3
+ export class GetRuleCommand extends command(_ep0, _mw0, "GetRule", GetRule$) {
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 { ListRules$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListRulesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonRecycleBin", "ListRules", {})
13
- .n("RbinClient", "ListRulesCommand")
14
- .sc(ListRules$)
15
- .build() {
3
+ export class ListRulesCommand extends command(_ep0, _mw0, "ListRules", ListRules$) {
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 { ListTagsForResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListTagsForResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonRecycleBin", "ListTagsForResource", {})
13
- .n("RbinClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource$)
15
- .build() {
3
+ export class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
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 { LockRule$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class LockRuleCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonRecycleBin", "LockRule", {})
13
- .n("RbinClient", "LockRuleCommand")
14
- .sc(LockRule$)
15
- .build() {
3
+ export class LockRuleCommand extends command(_ep0, _mw0, "LockRule", LockRule$) {
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 { TagResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class TagResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonRecycleBin", "TagResource", {})
13
- .n("RbinClient", "TagResourceCommand")
14
- .sc(TagResource$)
15
- .build() {
3
+ export class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
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 { UnlockRule$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UnlockRuleCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonRecycleBin", "UnlockRule", {})
13
- .n("RbinClient", "UnlockRuleCommand")
14
- .sc(UnlockRule$)
15
- .build() {
3
+ export class UnlockRuleCommand extends command(_ep0, _mw0, "UnlockRule", UnlockRule$) {
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 { UntagResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UntagResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonRecycleBin", "UntagResource", {})
13
- .n("RbinClient", "UntagResourceCommand")
14
- .sc(UntagResource$)
15
- .build() {
3
+ export class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
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 { UpdateRule$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UpdateRuleCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AmazonRecycleBin", "UpdateRule", {})
13
- .n("RbinClient", "UpdateRuleCommand")
14
- .sc(UpdateRule$)
15
- .build() {
3
+ export class UpdateRuleCommand extends command(_ep0, _mw0, "UpdateRule", UpdateRule$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./RbinClient";
2
2
  export * from "./Rbin";
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 { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./RbinClient";
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, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, RbinClientResolvedConfig, 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 { CreateRuleRequest, CreateRuleResponse } from "../models/models_0";
4
- import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
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 CreateRuleCommandInput extends CreateRuleRequest {
22
19
  export interface CreateRuleCommandOutput extends CreateRuleResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CreateRuleCommand_base: {
25
- new (input: CreateRuleCommandInput): import("@smithy/core/client").CommandImpl<CreateRuleCommandInput, CreateRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateRuleCommandInput): import("@smithy/core/client").CommandImpl<CreateRuleCommandInput, CreateRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateRuleCommandInput): import("@smithy/core/client").CommandImpl<CreateRuleCommandInput, CreateRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateRuleCommandInput): import("@smithy/core/client").CommandImpl<CreateRuleCommandInput, CreateRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates a Recycle Bin retention rule. You can create two types of retention rules:</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 { DeleteRuleRequest, DeleteRuleResponse } from "../models/models_0";
4
- import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
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 DeleteRuleCommandInput extends DeleteRuleRequest {
22
19
  export interface DeleteRuleCommandOutput extends DeleteRuleResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteRuleCommand_base: {
25
- new (input: DeleteRuleCommandInput): import("@smithy/core/client").CommandImpl<DeleteRuleCommandInput, DeleteRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteRuleCommandInput): import("@smithy/core/client").CommandImpl<DeleteRuleCommandInput, DeleteRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteRuleCommandInput): import("@smithy/core/client").CommandImpl<DeleteRuleCommandInput, DeleteRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteRuleCommandInput): import("@smithy/core/client").CommandImpl<DeleteRuleCommandInput, DeleteRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes a Recycle Bin retention rule. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/recycle-bin-working-with-rules.html#recycle-bin-delete-rule">
@@ -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 { GetRuleRequest, GetRuleResponse } from "../models/models_0";
4
- import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
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 GetRuleCommandInput extends GetRuleRequest {
22
19
  export interface GetRuleCommandOutput extends GetRuleResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetRuleCommand_base: {
25
- new (input: GetRuleCommandInput): import("@smithy/core/client").CommandImpl<GetRuleCommandInput, GetRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetRuleCommandInput): import("@smithy/core/client").CommandImpl<GetRuleCommandInput, GetRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetRuleCommandInput): import("@smithy/core/client").CommandImpl<GetRuleCommandInput, GetRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetRuleCommandInput): import("@smithy/core/client").CommandImpl<GetRuleCommandInput, GetRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Gets information about a Recycle Bin retention rule.</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 { ListRulesRequest, ListRulesResponse } from "../models/models_0";
4
- import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
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 ListRulesCommandInput extends ListRulesRequest {
22
19
  export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListRulesCommand_base: {
25
- new (input: ListRulesCommandInput): import("@smithy/core/client").CommandImpl<ListRulesCommandInput, ListRulesCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListRulesCommandInput): import("@smithy/core/client").CommandImpl<ListRulesCommandInput, ListRulesCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListRulesCommandInput): import("@smithy/core/client").CommandImpl<ListRulesCommandInput, ListRulesCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListRulesCommandInput): import("@smithy/core/client").CommandImpl<ListRulesCommandInput, ListRulesCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists the Recycle Bin retention rules in the Region.</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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
- import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
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 ListTagsForResourceCommandInput extends ListTagsForResourceRequ
22
19
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListTagsForResourceCommand_base: {
25
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists the tags assigned to a retention rule.</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 { LockRuleRequest, LockRuleResponse } from "../models/models_0";
4
- import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
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 LockRuleCommandInput extends LockRuleRequest {
22
19
  export interface LockRuleCommandOutput extends LockRuleResponse, __MetadataBearer {
23
20
  }
24
21
  declare const LockRuleCommand_base: {
25
- new (input: LockRuleCommandInput): import("@smithy/core/client").CommandImpl<LockRuleCommandInput, LockRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: LockRuleCommandInput): import("@smithy/core/client").CommandImpl<LockRuleCommandInput, LockRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: LockRuleCommandInput): import("@smithy/core/client").CommandImpl<LockRuleCommandInput, LockRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: LockRuleCommandInput): import("@smithy/core/client").CommandImpl<LockRuleCommandInput, LockRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Locks a Region-level retention rule. A locked retention rule can't be modified or
@@ -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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
- import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
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 TagResourceCommandInput extends TagResourceRequest {
22
19
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const TagResourceCommand_base: {
25
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Assigns tags to the specified retention rule.</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 { UnlockRuleRequest, UnlockRuleResponse } from "../models/models_0";
4
- import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
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 UnlockRuleCommandInput extends UnlockRuleRequest {
22
19
  export interface UnlockRuleCommandOutput extends UnlockRuleResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UnlockRuleCommand_base: {
25
- new (input: UnlockRuleCommandInput): import("@smithy/core/client").CommandImpl<UnlockRuleCommandInput, UnlockRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UnlockRuleCommandInput): import("@smithy/core/client").CommandImpl<UnlockRuleCommandInput, UnlockRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UnlockRuleCommandInput): import("@smithy/core/client").CommandImpl<UnlockRuleCommandInput, UnlockRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UnlockRuleCommandInput): import("@smithy/core/client").CommandImpl<UnlockRuleCommandInput, UnlockRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Unlocks a retention rule. After a retention rule is unlocked, it can be modified or deleted
@@ -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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
- import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
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 UntagResourceCommandInput extends UntagResourceRequest {
22
19
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UntagResourceCommand_base: {
25
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Unassigns a tag from a retention rule.</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 { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0";
4
- import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
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 UpdateRuleCommandInput extends UpdateRuleRequest {
22
19
  export interface UpdateRuleCommandOutput extends UpdateRuleResponse, __MetadataBearer {
23
20
  }
24
21
  declare const UpdateRuleCommand_base: {
25
- new (input: UpdateRuleCommandInput): import("@smithy/core/client").CommandImpl<UpdateRuleCommandInput, UpdateRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateRuleCommandInput): import("@smithy/core/client").CommandImpl<UpdateRuleCommandInput, UpdateRuleCommandOutput, RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateRuleCommandInput): import("@smithy/core/client").CommandImpl<UpdateRuleCommandInput, UpdateRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateRuleCommandInput): import("@smithy/core/client").CommandImpl<UpdateRuleCommandInput, UpdateRuleCommandOutput, import("..").RbinClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates an existing Recycle Bin retention rule. You can update a retention rule's description,
@@ -20,6 +20,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
20
20
  export type { RuntimeExtension } from "./runtimeExtensions";
21
21
  export type { RbinExtensionConfiguration } from "./extensionConfiguration";
22
22
  export * from "./commands";
23
+ export { Command as $Command } from "@smithy/core/client";
23
24
  export * from "./schemas/schemas_0";
24
25
  export * from "./pagination";
25
26
  export * from "./models/enums";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ RbinClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./RbinClient";
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
+ RbinClientResolvedConfig,
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
+ RbinClientResolvedConfig,
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,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { CreateRuleRequest, CreateRuleResponse } from "../models/models_0";
4
- import {
5
- RbinClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RbinClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface CreateRuleCommandInput extends CreateRuleRequest {}
12
5
  export interface CreateRuleCommandOutput
13
6
  extends CreateRuleResponse,
@@ -18,22 +11,20 @@ declare const CreateRuleCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  CreateRuleCommandInput,
20
13
  CreateRuleCommandOutput,
21
- RbinClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RbinClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: CreateRuleCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  CreateRuleCommandInput,
29
22
  CreateRuleCommandOutput,
30
- RbinClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RbinClientResolvedConfig,
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 CreateRuleCommand extends CreateRuleCommand_base {
39
30
  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 { DeleteRuleRequest, DeleteRuleResponse } from "../models/models_0";
4
- import {
5
- RbinClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RbinClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteRuleCommandInput extends DeleteRuleRequest {}
12
5
  export interface DeleteRuleCommandOutput
13
6
  extends DeleteRuleResponse,
@@ -18,22 +11,20 @@ declare const DeleteRuleCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DeleteRuleCommandInput,
20
13
  DeleteRuleCommandOutput,
21
- RbinClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RbinClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DeleteRuleCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DeleteRuleCommandInput,
29
22
  DeleteRuleCommandOutput,
30
- RbinClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RbinClientResolvedConfig,
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 DeleteRuleCommand extends DeleteRuleCommand_base {
39
30
  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 { GetRuleRequest, GetRuleResponse } from "../models/models_0";
4
- import {
5
- RbinClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RbinClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetRuleCommandInput extends GetRuleRequest {}
12
5
  export interface GetRuleCommandOutput
13
6
  extends GetRuleResponse,
@@ -16,20 +9,18 @@ declare const GetRuleCommand_base: {
16
9
  new (input: GetRuleCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  GetRuleCommandInput,
18
11
  GetRuleCommandOutput,
19
- RbinClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").RbinClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: GetRuleCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  GetRuleCommandInput,
25
18
  GetRuleCommandOutput,
26
- RbinClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").RbinClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class GetRuleCommand extends GetRuleCommand_base {
35
26
  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 { ListRulesRequest, ListRulesResponse } from "../models/models_0";
4
- import {
5
- RbinClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RbinClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface ListRulesCommandInput extends ListRulesRequest {}
12
5
  export interface ListRulesCommandOutput
13
6
  extends ListRulesResponse,
@@ -16,20 +9,18 @@ declare const ListRulesCommand_base: {
16
9
  new (input: ListRulesCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  ListRulesCommandInput,
18
11
  ListRulesCommandOutput,
19
- RbinClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").RbinClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: ListRulesCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  ListRulesCommandInput,
25
18
  ListRulesCommandOutput,
26
- RbinClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").RbinClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class ListRulesCommand extends ListRulesCommand_base {
35
26
  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
  ListTagsForResourceRequest,
5
4
  ListTagsForResourceResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- RbinClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RbinClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListTagsForResourceCommandInput
15
8
  extends ListTagsForResourceRequest {}
16
9
  export interface ListTagsForResourceCommandOutput
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListTagsForResourceCommandInput,
24
17
  ListTagsForResourceCommandOutput,
25
- RbinClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").RbinClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListTagsForResourceCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListTagsForResourceCommandInput,
33
26
  ListTagsForResourceCommandOutput,
34
- RbinClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").RbinClientResolvedConfig,
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 ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
43
34
  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 { LockRuleRequest, LockRuleResponse } from "../models/models_0";
4
- import {
5
- RbinClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RbinClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface LockRuleCommandInput extends LockRuleRequest {}
12
5
  export interface LockRuleCommandOutput
13
6
  extends LockRuleResponse,
@@ -16,20 +9,18 @@ declare const LockRuleCommand_base: {
16
9
  new (input: LockRuleCommandInput): import("@smithy/core/client").CommandImpl<
17
10
  LockRuleCommandInput,
18
11
  LockRuleCommandOutput,
19
- RbinClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").RbinClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (input: LockRuleCommandInput): import("@smithy/core/client").CommandImpl<
24
17
  LockRuleCommandInput,
25
18
  LockRuleCommandOutput,
26
- RbinClientResolvedConfig,
27
- ServiceInputTypes,
28
- ServiceOutputTypes
19
+ import("..").RbinClientResolvedConfig,
20
+ import("..").ServiceInputTypes,
21
+ import("..").ServiceOutputTypes
29
22
  >;
30
- getEndpointParameterInstructions(): {
31
- [x: string]: unknown;
32
- };
23
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
33
24
  };
34
25
  export declare class LockRuleCommand extends LockRuleCommand_base {
35
26
  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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
- import {
5
- RbinClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RbinClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface TagResourceCommandInput extends TagResourceRequest {}
12
5
  export interface TagResourceCommandOutput
13
6
  extends TagResourceResponse,
@@ -18,22 +11,20 @@ declare const TagResourceCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  TagResourceCommandInput,
20
13
  TagResourceCommandOutput,
21
- RbinClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RbinClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: TagResourceCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  TagResourceCommandInput,
29
22
  TagResourceCommandOutput,
30
- RbinClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RbinClientResolvedConfig,
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 TagResourceCommand extends TagResourceCommand_base {
39
30
  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 { UnlockRuleRequest, UnlockRuleResponse } from "../models/models_0";
4
- import {
5
- RbinClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RbinClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface UnlockRuleCommandInput extends UnlockRuleRequest {}
12
5
  export interface UnlockRuleCommandOutput
13
6
  extends UnlockRuleResponse,
@@ -18,22 +11,20 @@ declare const UnlockRuleCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  UnlockRuleCommandInput,
20
13
  UnlockRuleCommandOutput,
21
- RbinClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RbinClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: UnlockRuleCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  UnlockRuleCommandInput,
29
22
  UnlockRuleCommandOutput,
30
- RbinClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RbinClientResolvedConfig,
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 UnlockRuleCommand extends UnlockRuleCommand_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
  UntagResourceRequest,
5
4
  UntagResourceResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- RbinClientResolvedConfig,
9
- ServiceInputTypes,
10
- ServiceOutputTypes,
11
- } from "../RbinClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface UntagResourceCommandInput extends UntagResourceRequest {}
15
8
  export interface UntagResourceCommandOutput
16
9
  extends UntagResourceResponse,
@@ -21,22 +14,20 @@ declare const UntagResourceCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  UntagResourceCommandInput,
23
16
  UntagResourceCommandOutput,
24
- RbinClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").RbinClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: UntagResourceCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  UntagResourceCommandInput,
32
25
  UntagResourceCommandOutput,
33
- RbinClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").RbinClientResolvedConfig,
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 UntagResourceCommand extends UntagResourceCommand_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 { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0";
4
- import {
5
- RbinClientResolvedConfig,
6
- ServiceInputTypes,
7
- ServiceOutputTypes,
8
- } from "../RbinClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface UpdateRuleCommandInput extends UpdateRuleRequest {}
12
5
  export interface UpdateRuleCommandOutput
13
6
  extends UpdateRuleResponse,
@@ -18,22 +11,20 @@ declare const UpdateRuleCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  UpdateRuleCommandInput,
20
13
  UpdateRuleCommandOutput,
21
- RbinClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").RbinClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: UpdateRuleCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  UpdateRuleCommandInput,
29
22
  UpdateRuleCommandOutput,
30
- RbinClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").RbinClientResolvedConfig,
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 UpdateRuleCommand extends UpdateRuleCommand_base {
39
30
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { RbinExtensionConfiguration } 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-rbin",
3
3
  "description": "AWS SDK for JavaScript Rbin 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": {