@aws-sdk/client-rbin 3.1076.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 (50) hide show
  1. package/dist-cjs/index.js +21 -105
  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-es/runtimeConfig.browser.js +0 -2
  15. package/dist-es/runtimeConfig.js +1 -2
  16. package/dist-es/runtimeConfig.native.js +0 -2
  17. package/dist-es/runtimeConfig.shared.js +2 -0
  18. package/dist-types/commandBuilder.d.ts +18 -0
  19. package/dist-types/commands/CreateRuleCommand.d.ts +3 -8
  20. package/dist-types/commands/DeleteRuleCommand.d.ts +3 -8
  21. package/dist-types/commands/GetRuleCommand.d.ts +3 -8
  22. package/dist-types/commands/ListRulesCommand.d.ts +3 -8
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  24. package/dist-types/commands/LockRuleCommand.d.ts +3 -8
  25. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  26. package/dist-types/commands/UnlockRuleCommand.d.ts +3 -8
  27. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  28. package/dist-types/commands/UpdateRuleCommand.d.ts +3 -8
  29. package/dist-types/index.d.ts +1 -0
  30. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  31. package/dist-types/runtimeConfig.d.ts +1 -1
  32. package/dist-types/runtimeConfig.native.d.ts +1 -1
  33. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  34. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  35. package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +7 -16
  36. package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +7 -16
  37. package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +7 -16
  38. package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +7 -16
  39. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  40. package/dist-types/ts3.4/commands/LockRuleCommand.d.ts +7 -16
  41. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/commands/UnlockRuleCommand.d.ts +7 -16
  43. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/index.d.ts +1 -0
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  50. package/package.json +8 -10
@@ -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";
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
17
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { RbinClientConfig } from "./RbinClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: RbinClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: RbinClientConfig) => {
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -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: {