@aws-sdk/client-rbin 3.47.1 → 3.50.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +35 -0
- package/README.md +10 -10
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/Rbin.d.ts +15 -15
- package/dist-types/RbinClient.d.ts +9 -9
- package/dist-types/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRuleCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +62 -44
- package/package.json +39 -33
- package/dist-types/ts3.4/Rbin.d.ts +0 -45
- package/dist-types/ts3.4/RbinClient.d.ts +0 -81
- package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/index.d.ts +0 -8
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/index.d.ts +0 -5
- package/dist-types/ts3.4/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -279
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist-types/ts3.4/pagination/ListRulesPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/index.d.ts +0 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { CreateRuleCommandInput, CreateRuleCommandOutput } from "./commands/CreateRuleCommand";
|
|
3
|
-
import { DeleteRuleCommandInput, DeleteRuleCommandOutput } from "./commands/DeleteRuleCommand";
|
|
4
|
-
import { GetRuleCommandInput, GetRuleCommandOutput } from "./commands/GetRuleCommand";
|
|
5
|
-
import { ListRulesCommandInput, ListRulesCommandOutput } from "./commands/ListRulesCommand";
|
|
6
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
7
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
8
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
9
|
-
import { UpdateRuleCommandInput, UpdateRuleCommandOutput } from "./commands/UpdateRuleCommand";
|
|
10
|
-
import { RbinClient } from "./RbinClient";
|
|
11
|
-
|
|
12
|
-
export declare class Rbin extends RbinClient {
|
|
13
|
-
|
|
14
|
-
createRule(args: CreateRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateRuleCommandOutput>;
|
|
15
|
-
createRule(args: CreateRuleCommandInput, cb: (err: any, data?: CreateRuleCommandOutput) => void): void;
|
|
16
|
-
createRule(args: CreateRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRuleCommandOutput) => void): void;
|
|
17
|
-
|
|
18
|
-
deleteRule(args: DeleteRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRuleCommandOutput>;
|
|
19
|
-
deleteRule(args: DeleteRuleCommandInput, cb: (err: any, data?: DeleteRuleCommandOutput) => void): void;
|
|
20
|
-
deleteRule(args: DeleteRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRuleCommandOutput) => void): void;
|
|
21
|
-
|
|
22
|
-
getRule(args: GetRuleCommandInput, options?: __HttpHandlerOptions): Promise<GetRuleCommandOutput>;
|
|
23
|
-
getRule(args: GetRuleCommandInput, cb: (err: any, data?: GetRuleCommandOutput) => void): void;
|
|
24
|
-
getRule(args: GetRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRuleCommandOutput) => void): void;
|
|
25
|
-
|
|
26
|
-
listRules(args: ListRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListRulesCommandOutput>;
|
|
27
|
-
listRules(args: ListRulesCommandInput, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
|
|
28
|
-
listRules(args: ListRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRulesCommandOutput) => void): void;
|
|
29
|
-
|
|
30
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
31
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
32
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
33
|
-
|
|
34
|
-
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
35
|
-
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
36
|
-
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
37
|
-
|
|
38
|
-
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
39
|
-
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
40
|
-
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
41
|
-
|
|
42
|
-
updateRule(args: UpdateRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRuleCommandOutput>;
|
|
43
|
-
updateRule(args: UpdateRuleCommandInput, cb: (err: any, data?: UpdateRuleCommandOutput) => void): void;
|
|
44
|
-
updateRule(args: UpdateRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRuleCommandOutput) => void): void;
|
|
45
|
-
}
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
-
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
-
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
-
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
-
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
-
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
-
import { CreateRuleCommandInput, CreateRuleCommandOutput } from "./commands/CreateRuleCommand";
|
|
10
|
-
import { DeleteRuleCommandInput, DeleteRuleCommandOutput } from "./commands/DeleteRuleCommand";
|
|
11
|
-
import { GetRuleCommandInput, GetRuleCommandOutput } from "./commands/GetRuleCommand";
|
|
12
|
-
import { ListRulesCommandInput, ListRulesCommandOutput } from "./commands/ListRulesCommand";
|
|
13
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
14
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
15
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
16
|
-
import { UpdateRuleCommandInput, UpdateRuleCommandOutput } from "./commands/UpdateRuleCommand";
|
|
17
|
-
export declare type ServiceInputTypes = CreateRuleCommandInput | DeleteRuleCommandInput | GetRuleCommandInput | ListRulesCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateRuleCommandInput;
|
|
18
|
-
export declare type ServiceOutputTypes = CreateRuleCommandOutput | DeleteRuleCommandOutput | GetRuleCommandOutput | ListRulesCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateRuleCommandOutput;
|
|
19
|
-
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
20
|
-
|
|
21
|
-
requestHandler?: __HttpHandler;
|
|
22
|
-
|
|
23
|
-
sha256?: __HashConstructor;
|
|
24
|
-
|
|
25
|
-
urlParser?: __UrlParser;
|
|
26
|
-
|
|
27
|
-
bodyLengthChecker?: (body: any) => number | undefined;
|
|
28
|
-
|
|
29
|
-
streamCollector?: __StreamCollector;
|
|
30
|
-
|
|
31
|
-
base64Decoder?: __Decoder;
|
|
32
|
-
|
|
33
|
-
base64Encoder?: __Encoder;
|
|
34
|
-
|
|
35
|
-
utf8Decoder?: __Decoder;
|
|
36
|
-
|
|
37
|
-
utf8Encoder?: __Encoder;
|
|
38
|
-
|
|
39
|
-
runtime?: string;
|
|
40
|
-
|
|
41
|
-
disableHostPrefix?: boolean;
|
|
42
|
-
|
|
43
|
-
maxAttempts?: number | __Provider<number>;
|
|
44
|
-
|
|
45
|
-
retryMode?: string | __Provider<string>;
|
|
46
|
-
|
|
47
|
-
logger?: __Logger;
|
|
48
|
-
|
|
49
|
-
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
50
|
-
|
|
51
|
-
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
52
|
-
|
|
53
|
-
serviceId?: string;
|
|
54
|
-
|
|
55
|
-
region?: string | __Provider<string>;
|
|
56
|
-
|
|
57
|
-
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
58
|
-
|
|
59
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
60
|
-
|
|
61
|
-
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
62
|
-
|
|
63
|
-
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
64
|
-
}
|
|
65
|
-
declare type RbinClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
66
|
-
|
|
67
|
-
export interface RbinClientConfig extends RbinClientConfigType {
|
|
68
|
-
}
|
|
69
|
-
declare type RbinClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
70
|
-
|
|
71
|
-
export interface RbinClientResolvedConfig extends RbinClientResolvedConfigType {
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
export declare class RbinClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, RbinClientResolvedConfig> {
|
|
75
|
-
|
|
76
|
-
readonly config: RbinClientResolvedConfig;
|
|
77
|
-
constructor(configuration: RbinClientConfig);
|
|
78
|
-
|
|
79
|
-
destroy(): void;
|
|
80
|
-
}
|
|
81
|
-
export {};
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { CreateRuleRequest, CreateRuleResponse } from "../models/models_0";
|
|
4
|
-
import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
|
|
5
|
-
export interface CreateRuleCommandInput extends CreateRuleRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface CreateRuleCommandOutput extends CreateRuleResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class CreateRuleCommand extends $Command<CreateRuleCommandInput, CreateRuleCommandOutput, RbinClientResolvedConfig> {
|
|
11
|
-
readonly input: CreateRuleCommandInput;
|
|
12
|
-
constructor(input: CreateRuleCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RbinClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRuleCommandInput, CreateRuleCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { DeleteRuleRequest, DeleteRuleResponse } from "../models/models_0";
|
|
4
|
-
import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
|
|
5
|
-
export interface DeleteRuleCommandInput extends DeleteRuleRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface DeleteRuleCommandOutput extends DeleteRuleResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class DeleteRuleCommand extends $Command<DeleteRuleCommandInput, DeleteRuleCommandOutput, RbinClientResolvedConfig> {
|
|
11
|
-
readonly input: DeleteRuleCommandInput;
|
|
12
|
-
constructor(input: DeleteRuleCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RbinClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRuleCommandInput, DeleteRuleCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { GetRuleRequest, GetRuleResponse } from "../models/models_0";
|
|
4
|
-
import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
|
|
5
|
-
export interface GetRuleCommandInput extends GetRuleRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface GetRuleCommandOutput extends GetRuleResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class GetRuleCommand extends $Command<GetRuleCommandInput, GetRuleCommandOutput, RbinClientResolvedConfig> {
|
|
11
|
-
readonly input: GetRuleCommandInput;
|
|
12
|
-
constructor(input: GetRuleCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RbinClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRuleCommandInput, GetRuleCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListRulesRequest, ListRulesResponse } from "../models/models_0";
|
|
4
|
-
import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
|
|
5
|
-
export interface ListRulesCommandInput extends ListRulesRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface ListRulesCommandOutput extends ListRulesResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class ListRulesCommand extends $Command<ListRulesCommandInput, ListRulesCommandOutput, RbinClientResolvedConfig> {
|
|
11
|
-
readonly input: ListRulesCommandInput;
|
|
12
|
-
constructor(input: ListRulesCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RbinClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRulesCommandInput, ListRulesCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
4
|
-
import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
|
|
5
|
-
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RbinClientResolvedConfig> {
|
|
11
|
-
readonly input: ListTagsForResourceCommandInput;
|
|
12
|
-
constructor(input: ListTagsForResourceCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RbinClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
4
|
-
import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
|
|
5
|
-
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RbinClientResolvedConfig> {
|
|
11
|
-
readonly input: TagResourceCommandInput;
|
|
12
|
-
constructor(input: TagResourceCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RbinClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
4
|
-
import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
|
|
5
|
-
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RbinClientResolvedConfig> {
|
|
11
|
-
readonly input: UntagResourceCommandInput;
|
|
12
|
-
constructor(input: UntagResourceCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RbinClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0";
|
|
4
|
-
import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient";
|
|
5
|
-
export interface UpdateRuleCommandInput extends UpdateRuleRequest {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateRuleCommandOutput extends UpdateRuleResponse, __MetadataBearer {
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export declare class UpdateRuleCommand extends $Command<UpdateRuleCommandInput, UpdateRuleCommandOutput, RbinClientResolvedConfig> {
|
|
11
|
-
readonly input: UpdateRuleCommandInput;
|
|
12
|
-
constructor(input: UpdateRuleCommandInput);
|
|
13
|
-
|
|
14
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RbinClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateRuleCommandInput, UpdateRuleCommandOutput>;
|
|
15
|
-
private serialize;
|
|
16
|
-
private deserialize;
|
|
17
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export * from "./CreateRuleCommand";
|
|
2
|
-
export * from "./DeleteRuleCommand";
|
|
3
|
-
export * from "./GetRuleCommand";
|
|
4
|
-
export * from "./ListRulesCommand";
|
|
5
|
-
export * from "./ListTagsForResourceCommand";
|
|
6
|
-
export * from "./TagResourceCommand";
|
|
7
|
-
export * from "./UntagResourceCommand";
|
|
8
|
-
export * from "./UpdateRuleCommand";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1,279 +0,0 @@
|
|
|
1
|
-
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
-
|
|
3
|
-
export interface ResourceTag {
|
|
4
|
-
|
|
5
|
-
ResourceTagKey: string | undefined;
|
|
6
|
-
|
|
7
|
-
ResourceTagValue?: string;
|
|
8
|
-
}
|
|
9
|
-
export declare namespace ResourceTag {
|
|
10
|
-
|
|
11
|
-
const filterSensitiveLog: (obj: ResourceTag) => any;
|
|
12
|
-
}
|
|
13
|
-
export declare enum ResourceType {
|
|
14
|
-
EBS_SNAPSHOT = "EBS_SNAPSHOT"
|
|
15
|
-
}
|
|
16
|
-
export declare enum RetentionPeriodUnit {
|
|
17
|
-
DAYS = "DAYS"
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
export interface RetentionPeriod {
|
|
21
|
-
|
|
22
|
-
RetentionPeriodValue: number | undefined;
|
|
23
|
-
|
|
24
|
-
RetentionPeriodUnit: RetentionPeriodUnit | string | undefined;
|
|
25
|
-
}
|
|
26
|
-
export declare namespace RetentionPeriod {
|
|
27
|
-
|
|
28
|
-
const filterSensitiveLog: (obj: RetentionPeriod) => any;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export interface Tag {
|
|
32
|
-
|
|
33
|
-
Key: string | undefined;
|
|
34
|
-
|
|
35
|
-
Value: string | undefined;
|
|
36
|
-
}
|
|
37
|
-
export declare namespace Tag {
|
|
38
|
-
|
|
39
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
40
|
-
}
|
|
41
|
-
export interface CreateRuleRequest {
|
|
42
|
-
|
|
43
|
-
RetentionPeriod: RetentionPeriod | undefined;
|
|
44
|
-
|
|
45
|
-
Description?: string;
|
|
46
|
-
|
|
47
|
-
Tags?: Tag[];
|
|
48
|
-
|
|
49
|
-
ResourceType: ResourceType | string | undefined;
|
|
50
|
-
|
|
51
|
-
ResourceTags?: ResourceTag[];
|
|
52
|
-
}
|
|
53
|
-
export declare namespace CreateRuleRequest {
|
|
54
|
-
|
|
55
|
-
const filterSensitiveLog: (obj: CreateRuleRequest) => any;
|
|
56
|
-
}
|
|
57
|
-
export declare enum RuleStatus {
|
|
58
|
-
AVAILABLE = "available",
|
|
59
|
-
PENDING = "pending"
|
|
60
|
-
}
|
|
61
|
-
export interface CreateRuleResponse {
|
|
62
|
-
|
|
63
|
-
Identifier?: string;
|
|
64
|
-
|
|
65
|
-
RetentionPeriod?: RetentionPeriod;
|
|
66
|
-
|
|
67
|
-
Description?: string;
|
|
68
|
-
|
|
69
|
-
Tags?: Tag[];
|
|
70
|
-
|
|
71
|
-
ResourceType?: ResourceType | string;
|
|
72
|
-
|
|
73
|
-
ResourceTags?: ResourceTag[];
|
|
74
|
-
|
|
75
|
-
Status?: RuleStatus | string;
|
|
76
|
-
}
|
|
77
|
-
export declare namespace CreateRuleResponse {
|
|
78
|
-
|
|
79
|
-
const filterSensitiveLog: (obj: CreateRuleResponse) => any;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
83
|
-
name: "InternalServerException";
|
|
84
|
-
$fault: "server";
|
|
85
|
-
Message?: string;
|
|
86
|
-
}
|
|
87
|
-
export declare enum ServiceQuotaExceededExceptionReason {
|
|
88
|
-
SERVICE_QUOTA_EXCEEDED = "SERVICE_QUOTA_EXCEEDED"
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
92
|
-
name: "ServiceQuotaExceededException";
|
|
93
|
-
$fault: "client";
|
|
94
|
-
Message?: string;
|
|
95
|
-
|
|
96
|
-
Reason?: ServiceQuotaExceededExceptionReason | string;
|
|
97
|
-
}
|
|
98
|
-
export declare enum ValidationExceptionReason {
|
|
99
|
-
INVALID_PAGE_TOKEN = "INVALID_PAGE_TOKEN",
|
|
100
|
-
INVALID_PARAMETER_VALUE = "INVALID_PARAMETER_VALUE"
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
104
|
-
name: "ValidationException";
|
|
105
|
-
$fault: "client";
|
|
106
|
-
Message?: string;
|
|
107
|
-
|
|
108
|
-
Reason?: ValidationExceptionReason | string;
|
|
109
|
-
}
|
|
110
|
-
export interface DeleteRuleRequest {
|
|
111
|
-
|
|
112
|
-
Identifier: string | undefined;
|
|
113
|
-
}
|
|
114
|
-
export declare namespace DeleteRuleRequest {
|
|
115
|
-
|
|
116
|
-
const filterSensitiveLog: (obj: DeleteRuleRequest) => any;
|
|
117
|
-
}
|
|
118
|
-
export interface DeleteRuleResponse {
|
|
119
|
-
}
|
|
120
|
-
export declare namespace DeleteRuleResponse {
|
|
121
|
-
|
|
122
|
-
const filterSensitiveLog: (obj: DeleteRuleResponse) => any;
|
|
123
|
-
}
|
|
124
|
-
export declare enum ResourceNotFoundExceptionReason {
|
|
125
|
-
RULE_NOT_FOUND = "RULE_NOT_FOUND"
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
129
|
-
name: "ResourceNotFoundException";
|
|
130
|
-
$fault: "client";
|
|
131
|
-
Message?: string;
|
|
132
|
-
|
|
133
|
-
Reason?: ResourceNotFoundExceptionReason | string;
|
|
134
|
-
}
|
|
135
|
-
export interface GetRuleRequest {
|
|
136
|
-
|
|
137
|
-
Identifier: string | undefined;
|
|
138
|
-
}
|
|
139
|
-
export declare namespace GetRuleRequest {
|
|
140
|
-
|
|
141
|
-
const filterSensitiveLog: (obj: GetRuleRequest) => any;
|
|
142
|
-
}
|
|
143
|
-
export interface GetRuleResponse {
|
|
144
|
-
|
|
145
|
-
Identifier?: string;
|
|
146
|
-
|
|
147
|
-
Description?: string;
|
|
148
|
-
|
|
149
|
-
ResourceType?: ResourceType | string;
|
|
150
|
-
|
|
151
|
-
RetentionPeriod?: RetentionPeriod;
|
|
152
|
-
|
|
153
|
-
ResourceTags?: ResourceTag[];
|
|
154
|
-
|
|
155
|
-
Status?: RuleStatus | string;
|
|
156
|
-
}
|
|
157
|
-
export declare namespace GetRuleResponse {
|
|
158
|
-
|
|
159
|
-
const filterSensitiveLog: (obj: GetRuleResponse) => any;
|
|
160
|
-
}
|
|
161
|
-
export interface ListRulesRequest {
|
|
162
|
-
|
|
163
|
-
MaxResults?: number;
|
|
164
|
-
|
|
165
|
-
NextToken?: string;
|
|
166
|
-
|
|
167
|
-
ResourceType: ResourceType | string | undefined;
|
|
168
|
-
|
|
169
|
-
ResourceTags?: ResourceTag[];
|
|
170
|
-
}
|
|
171
|
-
export declare namespace ListRulesRequest {
|
|
172
|
-
|
|
173
|
-
const filterSensitiveLog: (obj: ListRulesRequest) => any;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
export interface RuleSummary {
|
|
177
|
-
|
|
178
|
-
Identifier?: string;
|
|
179
|
-
|
|
180
|
-
Description?: string;
|
|
181
|
-
|
|
182
|
-
RetentionPeriod?: RetentionPeriod;
|
|
183
|
-
}
|
|
184
|
-
export declare namespace RuleSummary {
|
|
185
|
-
|
|
186
|
-
const filterSensitiveLog: (obj: RuleSummary) => any;
|
|
187
|
-
}
|
|
188
|
-
export interface ListRulesResponse {
|
|
189
|
-
|
|
190
|
-
Rules?: RuleSummary[];
|
|
191
|
-
|
|
192
|
-
NextToken?: string;
|
|
193
|
-
}
|
|
194
|
-
export declare namespace ListRulesResponse {
|
|
195
|
-
|
|
196
|
-
const filterSensitiveLog: (obj: ListRulesResponse) => any;
|
|
197
|
-
}
|
|
198
|
-
export interface ListTagsForResourceRequest {
|
|
199
|
-
|
|
200
|
-
ResourceArn: string | undefined;
|
|
201
|
-
}
|
|
202
|
-
export declare namespace ListTagsForResourceRequest {
|
|
203
|
-
|
|
204
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
205
|
-
}
|
|
206
|
-
export interface ListTagsForResourceResponse {
|
|
207
|
-
|
|
208
|
-
Tags?: Tag[];
|
|
209
|
-
}
|
|
210
|
-
export declare namespace ListTagsForResourceResponse {
|
|
211
|
-
|
|
212
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
213
|
-
}
|
|
214
|
-
export interface TagResourceRequest {
|
|
215
|
-
|
|
216
|
-
ResourceArn: string | undefined;
|
|
217
|
-
|
|
218
|
-
Tags: Tag[] | undefined;
|
|
219
|
-
}
|
|
220
|
-
export declare namespace TagResourceRequest {
|
|
221
|
-
|
|
222
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
223
|
-
}
|
|
224
|
-
export interface TagResourceResponse {
|
|
225
|
-
}
|
|
226
|
-
export declare namespace TagResourceResponse {
|
|
227
|
-
|
|
228
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
229
|
-
}
|
|
230
|
-
export interface UntagResourceRequest {
|
|
231
|
-
|
|
232
|
-
ResourceArn: string | undefined;
|
|
233
|
-
|
|
234
|
-
TagKeys: string[] | undefined;
|
|
235
|
-
}
|
|
236
|
-
export declare namespace UntagResourceRequest {
|
|
237
|
-
|
|
238
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
239
|
-
}
|
|
240
|
-
export interface UntagResourceResponse {
|
|
241
|
-
}
|
|
242
|
-
export declare namespace UntagResourceResponse {
|
|
243
|
-
|
|
244
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
245
|
-
}
|
|
246
|
-
export interface UpdateRuleRequest {
|
|
247
|
-
|
|
248
|
-
Identifier: string | undefined;
|
|
249
|
-
|
|
250
|
-
RetentionPeriod?: RetentionPeriod;
|
|
251
|
-
|
|
252
|
-
Description?: string;
|
|
253
|
-
|
|
254
|
-
ResourceType?: ResourceType | string;
|
|
255
|
-
|
|
256
|
-
ResourceTags?: ResourceTag[];
|
|
257
|
-
}
|
|
258
|
-
export declare namespace UpdateRuleRequest {
|
|
259
|
-
|
|
260
|
-
const filterSensitiveLog: (obj: UpdateRuleRequest) => any;
|
|
261
|
-
}
|
|
262
|
-
export interface UpdateRuleResponse {
|
|
263
|
-
|
|
264
|
-
Identifier?: string;
|
|
265
|
-
|
|
266
|
-
RetentionPeriod?: RetentionPeriod;
|
|
267
|
-
|
|
268
|
-
Description?: string;
|
|
269
|
-
|
|
270
|
-
ResourceType?: ResourceType | string;
|
|
271
|
-
|
|
272
|
-
ResourceTags?: ResourceTag[];
|
|
273
|
-
|
|
274
|
-
Status?: RuleStatus | string;
|
|
275
|
-
}
|
|
276
|
-
export declare namespace UpdateRuleResponse {
|
|
277
|
-
|
|
278
|
-
const filterSensitiveLog: (obj: UpdateRuleResponse) => any;
|
|
279
|
-
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import { ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand";
|
|
3
|
-
import { RbinPaginationConfiguration } from "./Interfaces";
|
|
4
|
-
export declare function paginateListRules(config: RbinPaginationConfiguration, input: ListRulesCommandInput, ...additionalArguments: any): Paginator<ListRulesCommandOutput>;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
-
import { CreateRuleCommandInput, CreateRuleCommandOutput } from "../commands/CreateRuleCommand";
|
|
4
|
-
import { DeleteRuleCommandInput, DeleteRuleCommandOutput } from "../commands/DeleteRuleCommand";
|
|
5
|
-
import { GetRuleCommandInput, GetRuleCommandOutput } from "../commands/GetRuleCommand";
|
|
6
|
-
import { ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand";
|
|
7
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
8
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
9
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
10
|
-
import { UpdateRuleCommandInput, UpdateRuleCommandOutput } from "../commands/UpdateRuleCommand";
|
|
11
|
-
export declare const serializeAws_restJson1CreateRuleCommand: (input: CreateRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
|
-
export declare const serializeAws_restJson1DeleteRuleCommand: (input: DeleteRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
|
-
export declare const serializeAws_restJson1GetRuleCommand: (input: GetRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
|
-
export declare const serializeAws_restJson1ListRulesCommand: (input: ListRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
|
-
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
|
-
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
-
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
-
export declare const serializeAws_restJson1UpdateRuleCommand: (input: UpdateRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
-
export declare const deserializeAws_restJson1CreateRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRuleCommandOutput>;
|
|
20
|
-
export declare const deserializeAws_restJson1DeleteRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRuleCommandOutput>;
|
|
21
|
-
export declare const deserializeAws_restJson1GetRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRuleCommandOutput>;
|
|
22
|
-
export declare const deserializeAws_restJson1ListRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRulesCommandOutput>;
|
|
23
|
-
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
24
|
-
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
25
|
-
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
26
|
-
export declare const deserializeAws_restJson1UpdateRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRuleCommandOutput>;
|