@aws-sdk/client-codestar-notifications 3.50.0 → 3.51.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 +8 -0
- package/dist-types/ts3.4/CodestarNotifications.d.ts +70 -0
- package/dist-types/ts3.4/CodestarNotificationsClient.d.ts +86 -0
- package/dist-types/ts3.4/commands/CreateNotificationRuleCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteNotificationRuleCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteTargetCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeNotificationRuleCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEventTypesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListNotificationRulesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTargetsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SubscribeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateNotificationRuleCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +448 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListEventTypesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListNotificationRulesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTargetsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +41 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-codestar-notifications
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-codestar-notifications
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CodestarNotificationsClient } from "./CodestarNotificationsClient";
|
|
3
|
+
import { CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput } from "./commands/CreateNotificationRuleCommand";
|
|
4
|
+
import { DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput } from "./commands/DeleteNotificationRuleCommand";
|
|
5
|
+
import { DeleteTargetCommandInput, DeleteTargetCommandOutput } from "./commands/DeleteTargetCommand";
|
|
6
|
+
import { DescribeNotificationRuleCommandInput, DescribeNotificationRuleCommandOutput } from "./commands/DescribeNotificationRuleCommand";
|
|
7
|
+
import { ListEventTypesCommandInput, ListEventTypesCommandOutput } from "./commands/ListEventTypesCommand";
|
|
8
|
+
import { ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput } from "./commands/ListNotificationRulesCommand";
|
|
9
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
10
|
+
import { ListTargetsCommandInput, ListTargetsCommandOutput } from "./commands/ListTargetsCommand";
|
|
11
|
+
import { SubscribeCommandInput, SubscribeCommandOutput } from "./commands/SubscribeCommand";
|
|
12
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
13
|
+
import { UnsubscribeCommandInput, UnsubscribeCommandOutput } from "./commands/UnsubscribeCommand";
|
|
14
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
15
|
+
import { UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput } from "./commands/UpdateNotificationRuleCommand";
|
|
16
|
+
|
|
17
|
+
export declare class CodestarNotifications extends CodestarNotificationsClient {
|
|
18
|
+
|
|
19
|
+
createNotificationRule(args: CreateNotificationRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateNotificationRuleCommandOutput>;
|
|
20
|
+
createNotificationRule(args: CreateNotificationRuleCommandInput, cb: (err: any, data?: CreateNotificationRuleCommandOutput) => void): void;
|
|
21
|
+
createNotificationRule(args: CreateNotificationRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNotificationRuleCommandOutput) => void): void;
|
|
22
|
+
|
|
23
|
+
deleteNotificationRule(args: DeleteNotificationRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNotificationRuleCommandOutput>;
|
|
24
|
+
deleteNotificationRule(args: DeleteNotificationRuleCommandInput, cb: (err: any, data?: DeleteNotificationRuleCommandOutput) => void): void;
|
|
25
|
+
deleteNotificationRule(args: DeleteNotificationRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNotificationRuleCommandOutput) => void): void;
|
|
26
|
+
|
|
27
|
+
deleteTarget(args: DeleteTargetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTargetCommandOutput>;
|
|
28
|
+
deleteTarget(args: DeleteTargetCommandInput, cb: (err: any, data?: DeleteTargetCommandOutput) => void): void;
|
|
29
|
+
deleteTarget(args: DeleteTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTargetCommandOutput) => void): void;
|
|
30
|
+
|
|
31
|
+
describeNotificationRule(args: DescribeNotificationRuleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNotificationRuleCommandOutput>;
|
|
32
|
+
describeNotificationRule(args: DescribeNotificationRuleCommandInput, cb: (err: any, data?: DescribeNotificationRuleCommandOutput) => void): void;
|
|
33
|
+
describeNotificationRule(args: DescribeNotificationRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNotificationRuleCommandOutput) => void): void;
|
|
34
|
+
|
|
35
|
+
listEventTypes(args: ListEventTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListEventTypesCommandOutput>;
|
|
36
|
+
listEventTypes(args: ListEventTypesCommandInput, cb: (err: any, data?: ListEventTypesCommandOutput) => void): void;
|
|
37
|
+
listEventTypes(args: ListEventTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventTypesCommandOutput) => void): void;
|
|
38
|
+
|
|
39
|
+
listNotificationRules(args: ListNotificationRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListNotificationRulesCommandOutput>;
|
|
40
|
+
listNotificationRules(args: ListNotificationRulesCommandInput, cb: (err: any, data?: ListNotificationRulesCommandOutput) => void): void;
|
|
41
|
+
listNotificationRules(args: ListNotificationRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNotificationRulesCommandOutput) => void): void;
|
|
42
|
+
|
|
43
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
44
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
45
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
46
|
+
|
|
47
|
+
listTargets(args: ListTargetsCommandInput, options?: __HttpHandlerOptions): Promise<ListTargetsCommandOutput>;
|
|
48
|
+
listTargets(args: ListTargetsCommandInput, cb: (err: any, data?: ListTargetsCommandOutput) => void): void;
|
|
49
|
+
listTargets(args: ListTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTargetsCommandOutput) => void): void;
|
|
50
|
+
|
|
51
|
+
subscribe(args: SubscribeCommandInput, options?: __HttpHandlerOptions): Promise<SubscribeCommandOutput>;
|
|
52
|
+
subscribe(args: SubscribeCommandInput, cb: (err: any, data?: SubscribeCommandOutput) => void): void;
|
|
53
|
+
subscribe(args: SubscribeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SubscribeCommandOutput) => void): void;
|
|
54
|
+
|
|
55
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
56
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
57
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
58
|
+
|
|
59
|
+
unsubscribe(args: UnsubscribeCommandInput, options?: __HttpHandlerOptions): Promise<UnsubscribeCommandOutput>;
|
|
60
|
+
unsubscribe(args: UnsubscribeCommandInput, cb: (err: any, data?: UnsubscribeCommandOutput) => void): void;
|
|
61
|
+
unsubscribe(args: UnsubscribeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnsubscribeCommandOutput) => void): void;
|
|
62
|
+
|
|
63
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
64
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
65
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
66
|
+
|
|
67
|
+
updateNotificationRule(args: UpdateNotificationRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNotificationRuleCommandOutput>;
|
|
68
|
+
updateNotificationRule(args: UpdateNotificationRuleCommandInput, cb: (err: any, data?: UpdateNotificationRuleCommandOutput) => void): void;
|
|
69
|
+
updateNotificationRule(args: UpdateNotificationRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNotificationRuleCommandOutput) => void): void;
|
|
70
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
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 { CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput } from "./commands/CreateNotificationRuleCommand";
|
|
10
|
+
import { DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput } from "./commands/DeleteNotificationRuleCommand";
|
|
11
|
+
import { DeleteTargetCommandInput, DeleteTargetCommandOutput } from "./commands/DeleteTargetCommand";
|
|
12
|
+
import { DescribeNotificationRuleCommandInput, DescribeNotificationRuleCommandOutput } from "./commands/DescribeNotificationRuleCommand";
|
|
13
|
+
import { ListEventTypesCommandInput, ListEventTypesCommandOutput } from "./commands/ListEventTypesCommand";
|
|
14
|
+
import { ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput } from "./commands/ListNotificationRulesCommand";
|
|
15
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
16
|
+
import { ListTargetsCommandInput, ListTargetsCommandOutput } from "./commands/ListTargetsCommand";
|
|
17
|
+
import { SubscribeCommandInput, SubscribeCommandOutput } from "./commands/SubscribeCommand";
|
|
18
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
19
|
+
import { UnsubscribeCommandInput, UnsubscribeCommandOutput } from "./commands/UnsubscribeCommand";
|
|
20
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
21
|
+
import { UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput } from "./commands/UpdateNotificationRuleCommand";
|
|
22
|
+
export declare type ServiceInputTypes = CreateNotificationRuleCommandInput | DeleteNotificationRuleCommandInput | DeleteTargetCommandInput | DescribeNotificationRuleCommandInput | ListEventTypesCommandInput | ListNotificationRulesCommandInput | ListTagsForResourceCommandInput | ListTargetsCommandInput | SubscribeCommandInput | TagResourceCommandInput | UnsubscribeCommandInput | UntagResourceCommandInput | UpdateNotificationRuleCommandInput;
|
|
23
|
+
export declare type ServiceOutputTypes = CreateNotificationRuleCommandOutput | DeleteNotificationRuleCommandOutput | DeleteTargetCommandOutput | DescribeNotificationRuleCommandOutput | ListEventTypesCommandOutput | ListNotificationRulesCommandOutput | ListTagsForResourceCommandOutput | ListTargetsCommandOutput | SubscribeCommandOutput | TagResourceCommandOutput | UnsubscribeCommandOutput | UntagResourceCommandOutput | UpdateNotificationRuleCommandOutput;
|
|
24
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
25
|
+
|
|
26
|
+
requestHandler?: __HttpHandler;
|
|
27
|
+
|
|
28
|
+
sha256?: __HashConstructor;
|
|
29
|
+
|
|
30
|
+
urlParser?: __UrlParser;
|
|
31
|
+
|
|
32
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
33
|
+
|
|
34
|
+
streamCollector?: __StreamCollector;
|
|
35
|
+
|
|
36
|
+
base64Decoder?: __Decoder;
|
|
37
|
+
|
|
38
|
+
base64Encoder?: __Encoder;
|
|
39
|
+
|
|
40
|
+
utf8Decoder?: __Decoder;
|
|
41
|
+
|
|
42
|
+
utf8Encoder?: __Encoder;
|
|
43
|
+
|
|
44
|
+
runtime?: string;
|
|
45
|
+
|
|
46
|
+
disableHostPrefix?: boolean;
|
|
47
|
+
|
|
48
|
+
maxAttempts?: number | __Provider<number>;
|
|
49
|
+
|
|
50
|
+
retryMode?: string | __Provider<string>;
|
|
51
|
+
|
|
52
|
+
logger?: __Logger;
|
|
53
|
+
|
|
54
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
55
|
+
|
|
56
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
57
|
+
|
|
58
|
+
serviceId?: string;
|
|
59
|
+
|
|
60
|
+
region?: string | __Provider<string>;
|
|
61
|
+
|
|
62
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
63
|
+
|
|
64
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
65
|
+
|
|
66
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
67
|
+
|
|
68
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
69
|
+
}
|
|
70
|
+
declare type CodestarNotificationsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
71
|
+
|
|
72
|
+
export interface CodestarNotificationsClientConfig extends CodestarNotificationsClientConfigType {
|
|
73
|
+
}
|
|
74
|
+
declare type CodestarNotificationsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
75
|
+
|
|
76
|
+
export interface CodestarNotificationsClientResolvedConfig extends CodestarNotificationsClientResolvedConfigType {
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export declare class CodestarNotificationsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CodestarNotificationsClientResolvedConfig> {
|
|
80
|
+
|
|
81
|
+
readonly config: CodestarNotificationsClientResolvedConfig;
|
|
82
|
+
constructor(configuration: CodestarNotificationsClientConfig);
|
|
83
|
+
|
|
84
|
+
destroy(): void;
|
|
85
|
+
}
|
|
86
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { CreateNotificationRuleRequest, CreateNotificationRuleResult } from "../models/models_0";
|
|
5
|
+
export interface CreateNotificationRuleCommandInput extends CreateNotificationRuleRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateNotificationRuleCommandOutput extends CreateNotificationRuleResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateNotificationRuleCommand extends $Command<CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateNotificationRuleCommandInput;
|
|
12
|
+
constructor(input: CreateNotificationRuleCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { DeleteNotificationRuleRequest, DeleteNotificationRuleResult } from "../models/models_0";
|
|
5
|
+
export interface DeleteNotificationRuleCommandInput extends DeleteNotificationRuleRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteNotificationRuleCommandOutput extends DeleteNotificationRuleResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteNotificationRuleCommand extends $Command<DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteNotificationRuleCommandInput;
|
|
12
|
+
constructor(input: DeleteNotificationRuleCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { DeleteTargetRequest, DeleteTargetResult } from "../models/models_0";
|
|
5
|
+
export interface DeleteTargetCommandInput extends DeleteTargetRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteTargetCommandOutput extends DeleteTargetResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteTargetCommand extends $Command<DeleteTargetCommandInput, DeleteTargetCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteTargetCommandInput;
|
|
12
|
+
constructor(input: DeleteTargetCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTargetCommandInput, DeleteTargetCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { DescribeNotificationRuleRequest, DescribeNotificationRuleResult } from "../models/models_0";
|
|
5
|
+
export interface DescribeNotificationRuleCommandInput extends DescribeNotificationRuleRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeNotificationRuleCommandOutput extends DescribeNotificationRuleResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeNotificationRuleCommand extends $Command<DescribeNotificationRuleCommandInput, DescribeNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeNotificationRuleCommandInput;
|
|
12
|
+
constructor(input: DescribeNotificationRuleCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeNotificationRuleCommandInput, DescribeNotificationRuleCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { ListEventTypesRequest, ListEventTypesResult } from "../models/models_0";
|
|
5
|
+
export interface ListEventTypesCommandInput extends ListEventTypesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListEventTypesCommandOutput extends ListEventTypesResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListEventTypesCommand extends $Command<ListEventTypesCommandInput, ListEventTypesCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: ListEventTypesCommandInput;
|
|
12
|
+
constructor(input: ListEventTypesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEventTypesCommandInput, ListEventTypesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { ListNotificationRulesRequest, ListNotificationRulesResult } from "../models/models_0";
|
|
5
|
+
export interface ListNotificationRulesCommandInput extends ListNotificationRulesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListNotificationRulesCommandOutput extends ListNotificationRulesResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListNotificationRulesCommand extends $Command<ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: ListNotificationRulesCommandInput;
|
|
12
|
+
constructor(input: ListNotificationRulesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0";
|
|
5
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
12
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { ListTargetsRequest, ListTargetsResult } from "../models/models_0";
|
|
5
|
+
export interface ListTargetsCommandInput extends ListTargetsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListTargetsCommandOutput extends ListTargetsResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListTargetsCommand extends $Command<ListTargetsCommandInput, ListTargetsCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: ListTargetsCommandInput;
|
|
12
|
+
constructor(input: ListTargetsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTargetsCommandInput, ListTargetsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { SubscribeRequest, SubscribeResult } from "../models/models_0";
|
|
5
|
+
export interface SubscribeCommandInput extends SubscribeRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface SubscribeCommandOutput extends SubscribeResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class SubscribeCommand extends $Command<SubscribeCommandInput, SubscribeCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: SubscribeCommandInput;
|
|
12
|
+
constructor(input: SubscribeCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SubscribeCommandInput, SubscribeCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { TagResourceRequest, TagResourceResult } from "../models/models_0";
|
|
5
|
+
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface TagResourceCommandOutput extends TagResourceResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: TagResourceCommandInput;
|
|
12
|
+
constructor(input: TagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { UnsubscribeRequest, UnsubscribeResult } from "../models/models_0";
|
|
5
|
+
export interface UnsubscribeCommandInput extends UnsubscribeRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UnsubscribeCommandOutput extends UnsubscribeResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UnsubscribeCommand extends $Command<UnsubscribeCommandInput, UnsubscribeCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: UnsubscribeCommandInput;
|
|
12
|
+
constructor(input: UnsubscribeCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UnsubscribeCommandInput, UnsubscribeCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { UntagResourceRequest, UntagResourceResult } from "../models/models_0";
|
|
5
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UntagResourceCommandOutput extends UntagResourceResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: UntagResourceCommandInput;
|
|
12
|
+
constructor(input: UntagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
|
|
4
|
+
import { UpdateNotificationRuleRequest, UpdateNotificationRuleResult } from "../models/models_0";
|
|
5
|
+
export interface UpdateNotificationRuleCommandInput extends UpdateNotificationRuleRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateNotificationRuleCommandOutput extends UpdateNotificationRuleResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateNotificationRuleCommand extends $Command<UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateNotificationRuleCommandInput;
|
|
12
|
+
constructor(input: UpdateNotificationRuleCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from "./CreateNotificationRuleCommand";
|
|
2
|
+
export * from "./DeleteNotificationRuleCommand";
|
|
3
|
+
export * from "./DeleteTargetCommand";
|
|
4
|
+
export * from "./DescribeNotificationRuleCommand";
|
|
5
|
+
export * from "./ListEventTypesCommand";
|
|
6
|
+
export * from "./ListNotificationRulesCommand";
|
|
7
|
+
export * from "./ListTagsForResourceCommand";
|
|
8
|
+
export * from "./ListTargetsCommand";
|
|
9
|
+
export * from "./SubscribeCommand";
|
|
10
|
+
export * from "./TagResourceCommand";
|
|
11
|
+
export * from "./UnsubscribeCommand";
|
|
12
|
+
export * from "./UntagResourceCommand";
|
|
13
|
+
export * from "./UpdateNotificationRuleCommand";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,448 @@
|
|
|
1
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
+
|
|
3
|
+
export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
|
|
4
|
+
name: "AccessDeniedException";
|
|
5
|
+
$fault: "client";
|
|
6
|
+
Message?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export interface ConcurrentModificationException extends __SmithyException, $MetadataBearer {
|
|
10
|
+
name: "ConcurrentModificationException";
|
|
11
|
+
$fault: "client";
|
|
12
|
+
Message?: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface ConfigurationException extends __SmithyException, $MetadataBearer {
|
|
16
|
+
name: "ConfigurationException";
|
|
17
|
+
$fault: "client";
|
|
18
|
+
Message?: string;
|
|
19
|
+
}
|
|
20
|
+
export declare enum DetailType {
|
|
21
|
+
BASIC = "BASIC",
|
|
22
|
+
FULL = "FULL"
|
|
23
|
+
}
|
|
24
|
+
export declare enum NotificationRuleStatus {
|
|
25
|
+
DISABLED = "DISABLED",
|
|
26
|
+
ENABLED = "ENABLED"
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export interface Target {
|
|
30
|
+
|
|
31
|
+
TargetType?: string;
|
|
32
|
+
|
|
33
|
+
TargetAddress?: string;
|
|
34
|
+
}
|
|
35
|
+
export declare namespace Target {
|
|
36
|
+
|
|
37
|
+
const filterSensitiveLog: (obj: Target) => any;
|
|
38
|
+
}
|
|
39
|
+
export interface CreateNotificationRuleRequest {
|
|
40
|
+
|
|
41
|
+
Name: string | undefined;
|
|
42
|
+
|
|
43
|
+
EventTypeIds: string[] | undefined;
|
|
44
|
+
|
|
45
|
+
Resource: string | undefined;
|
|
46
|
+
|
|
47
|
+
Targets: Target[] | undefined;
|
|
48
|
+
|
|
49
|
+
DetailType: DetailType | string | undefined;
|
|
50
|
+
|
|
51
|
+
ClientRequestToken?: string;
|
|
52
|
+
|
|
53
|
+
Tags?: {
|
|
54
|
+
[key: string]: string;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
Status?: NotificationRuleStatus | string;
|
|
58
|
+
}
|
|
59
|
+
export declare namespace CreateNotificationRuleRequest {
|
|
60
|
+
|
|
61
|
+
const filterSensitiveLog: (obj: CreateNotificationRuleRequest) => any;
|
|
62
|
+
}
|
|
63
|
+
export interface CreateNotificationRuleResult {
|
|
64
|
+
|
|
65
|
+
Arn?: string;
|
|
66
|
+
}
|
|
67
|
+
export declare namespace CreateNotificationRuleResult {
|
|
68
|
+
|
|
69
|
+
const filterSensitiveLog: (obj: CreateNotificationRuleResult) => any;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export interface LimitExceededException extends __SmithyException, $MetadataBearer {
|
|
73
|
+
name: "LimitExceededException";
|
|
74
|
+
$fault: "client";
|
|
75
|
+
Message?: string;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export interface ResourceAlreadyExistsException extends __SmithyException, $MetadataBearer {
|
|
79
|
+
name: "ResourceAlreadyExistsException";
|
|
80
|
+
$fault: "client";
|
|
81
|
+
Message?: string;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
85
|
+
name: "ValidationException";
|
|
86
|
+
$fault: "client";
|
|
87
|
+
Message?: string;
|
|
88
|
+
}
|
|
89
|
+
export interface DeleteNotificationRuleRequest {
|
|
90
|
+
|
|
91
|
+
Arn: string | undefined;
|
|
92
|
+
}
|
|
93
|
+
export declare namespace DeleteNotificationRuleRequest {
|
|
94
|
+
|
|
95
|
+
const filterSensitiveLog: (obj: DeleteNotificationRuleRequest) => any;
|
|
96
|
+
}
|
|
97
|
+
export interface DeleteNotificationRuleResult {
|
|
98
|
+
|
|
99
|
+
Arn?: string;
|
|
100
|
+
}
|
|
101
|
+
export declare namespace DeleteNotificationRuleResult {
|
|
102
|
+
|
|
103
|
+
const filterSensitiveLog: (obj: DeleteNotificationRuleResult) => any;
|
|
104
|
+
}
|
|
105
|
+
export interface DeleteTargetRequest {
|
|
106
|
+
|
|
107
|
+
TargetAddress: string | undefined;
|
|
108
|
+
|
|
109
|
+
ForceUnsubscribeAll?: boolean;
|
|
110
|
+
}
|
|
111
|
+
export declare namespace DeleteTargetRequest {
|
|
112
|
+
|
|
113
|
+
const filterSensitiveLog: (obj: DeleteTargetRequest) => any;
|
|
114
|
+
}
|
|
115
|
+
export interface DeleteTargetResult {
|
|
116
|
+
}
|
|
117
|
+
export declare namespace DeleteTargetResult {
|
|
118
|
+
|
|
119
|
+
const filterSensitiveLog: (obj: DeleteTargetResult) => any;
|
|
120
|
+
}
|
|
121
|
+
export interface DescribeNotificationRuleRequest {
|
|
122
|
+
|
|
123
|
+
Arn: string | undefined;
|
|
124
|
+
}
|
|
125
|
+
export declare namespace DescribeNotificationRuleRequest {
|
|
126
|
+
|
|
127
|
+
const filterSensitiveLog: (obj: DescribeNotificationRuleRequest) => any;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export interface EventTypeSummary {
|
|
131
|
+
|
|
132
|
+
EventTypeId?: string;
|
|
133
|
+
|
|
134
|
+
ServiceName?: string;
|
|
135
|
+
|
|
136
|
+
EventTypeName?: string;
|
|
137
|
+
|
|
138
|
+
ResourceType?: string;
|
|
139
|
+
}
|
|
140
|
+
export declare namespace EventTypeSummary {
|
|
141
|
+
|
|
142
|
+
const filterSensitiveLog: (obj: EventTypeSummary) => any;
|
|
143
|
+
}
|
|
144
|
+
export declare enum TargetStatus {
|
|
145
|
+
ACTIVE = "ACTIVE",
|
|
146
|
+
DEACTIVATED = "DEACTIVATED",
|
|
147
|
+
INACTIVE = "INACTIVE",
|
|
148
|
+
PENDING = "PENDING",
|
|
149
|
+
UNREACHABLE = "UNREACHABLE"
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export interface TargetSummary {
|
|
153
|
+
|
|
154
|
+
TargetAddress?: string;
|
|
155
|
+
|
|
156
|
+
TargetType?: string;
|
|
157
|
+
|
|
158
|
+
TargetStatus?: TargetStatus | string;
|
|
159
|
+
}
|
|
160
|
+
export declare namespace TargetSummary {
|
|
161
|
+
|
|
162
|
+
const filterSensitiveLog: (obj: TargetSummary) => any;
|
|
163
|
+
}
|
|
164
|
+
export interface DescribeNotificationRuleResult {
|
|
165
|
+
|
|
166
|
+
Arn: string | undefined;
|
|
167
|
+
|
|
168
|
+
Name?: string;
|
|
169
|
+
|
|
170
|
+
EventTypes?: EventTypeSummary[];
|
|
171
|
+
|
|
172
|
+
Resource?: string;
|
|
173
|
+
|
|
174
|
+
Targets?: TargetSummary[];
|
|
175
|
+
|
|
176
|
+
DetailType?: DetailType | string;
|
|
177
|
+
|
|
178
|
+
CreatedBy?: string;
|
|
179
|
+
|
|
180
|
+
Status?: NotificationRuleStatus | string;
|
|
181
|
+
|
|
182
|
+
CreatedTimestamp?: Date;
|
|
183
|
+
|
|
184
|
+
LastModifiedTimestamp?: Date;
|
|
185
|
+
|
|
186
|
+
Tags?: {
|
|
187
|
+
[key: string]: string;
|
|
188
|
+
};
|
|
189
|
+
}
|
|
190
|
+
export declare namespace DescribeNotificationRuleResult {
|
|
191
|
+
|
|
192
|
+
const filterSensitiveLog: (obj: DescribeNotificationRuleResult) => any;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
196
|
+
name: "ResourceNotFoundException";
|
|
197
|
+
$fault: "client";
|
|
198
|
+
Message?: string;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
|
|
202
|
+
name: "InvalidNextTokenException";
|
|
203
|
+
$fault: "client";
|
|
204
|
+
Message?: string;
|
|
205
|
+
}
|
|
206
|
+
export declare enum ListEventTypesFilterName {
|
|
207
|
+
RESOURCE_TYPE = "RESOURCE_TYPE",
|
|
208
|
+
SERVICE_NAME = "SERVICE_NAME"
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
export interface ListEventTypesFilter {
|
|
212
|
+
|
|
213
|
+
Name: ListEventTypesFilterName | string | undefined;
|
|
214
|
+
|
|
215
|
+
Value: string | undefined;
|
|
216
|
+
}
|
|
217
|
+
export declare namespace ListEventTypesFilter {
|
|
218
|
+
|
|
219
|
+
const filterSensitiveLog: (obj: ListEventTypesFilter) => any;
|
|
220
|
+
}
|
|
221
|
+
export interface ListEventTypesRequest {
|
|
222
|
+
|
|
223
|
+
Filters?: ListEventTypesFilter[];
|
|
224
|
+
|
|
225
|
+
NextToken?: string;
|
|
226
|
+
|
|
227
|
+
MaxResults?: number;
|
|
228
|
+
}
|
|
229
|
+
export declare namespace ListEventTypesRequest {
|
|
230
|
+
|
|
231
|
+
const filterSensitiveLog: (obj: ListEventTypesRequest) => any;
|
|
232
|
+
}
|
|
233
|
+
export interface ListEventTypesResult {
|
|
234
|
+
|
|
235
|
+
EventTypes?: EventTypeSummary[];
|
|
236
|
+
|
|
237
|
+
NextToken?: string;
|
|
238
|
+
}
|
|
239
|
+
export declare namespace ListEventTypesResult {
|
|
240
|
+
|
|
241
|
+
const filterSensitiveLog: (obj: ListEventTypesResult) => any;
|
|
242
|
+
}
|
|
243
|
+
export declare enum ListNotificationRulesFilterName {
|
|
244
|
+
CREATED_BY = "CREATED_BY",
|
|
245
|
+
EVENT_TYPE_ID = "EVENT_TYPE_ID",
|
|
246
|
+
RESOURCE = "RESOURCE",
|
|
247
|
+
TARGET_ADDRESS = "TARGET_ADDRESS"
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
export interface ListNotificationRulesFilter {
|
|
251
|
+
|
|
252
|
+
Name: ListNotificationRulesFilterName | string | undefined;
|
|
253
|
+
|
|
254
|
+
Value: string | undefined;
|
|
255
|
+
}
|
|
256
|
+
export declare namespace ListNotificationRulesFilter {
|
|
257
|
+
|
|
258
|
+
const filterSensitiveLog: (obj: ListNotificationRulesFilter) => any;
|
|
259
|
+
}
|
|
260
|
+
export interface ListNotificationRulesRequest {
|
|
261
|
+
|
|
262
|
+
Filters?: ListNotificationRulesFilter[];
|
|
263
|
+
|
|
264
|
+
NextToken?: string;
|
|
265
|
+
|
|
266
|
+
MaxResults?: number;
|
|
267
|
+
}
|
|
268
|
+
export declare namespace ListNotificationRulesRequest {
|
|
269
|
+
|
|
270
|
+
const filterSensitiveLog: (obj: ListNotificationRulesRequest) => any;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export interface NotificationRuleSummary {
|
|
274
|
+
|
|
275
|
+
Id?: string;
|
|
276
|
+
|
|
277
|
+
Arn?: string;
|
|
278
|
+
}
|
|
279
|
+
export declare namespace NotificationRuleSummary {
|
|
280
|
+
|
|
281
|
+
const filterSensitiveLog: (obj: NotificationRuleSummary) => any;
|
|
282
|
+
}
|
|
283
|
+
export interface ListNotificationRulesResult {
|
|
284
|
+
|
|
285
|
+
NextToken?: string;
|
|
286
|
+
|
|
287
|
+
NotificationRules?: NotificationRuleSummary[];
|
|
288
|
+
}
|
|
289
|
+
export declare namespace ListNotificationRulesResult {
|
|
290
|
+
|
|
291
|
+
const filterSensitiveLog: (obj: ListNotificationRulesResult) => any;
|
|
292
|
+
}
|
|
293
|
+
export interface ListTagsForResourceRequest {
|
|
294
|
+
|
|
295
|
+
Arn: string | undefined;
|
|
296
|
+
}
|
|
297
|
+
export declare namespace ListTagsForResourceRequest {
|
|
298
|
+
|
|
299
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
300
|
+
}
|
|
301
|
+
export interface ListTagsForResourceResult {
|
|
302
|
+
|
|
303
|
+
Tags?: {
|
|
304
|
+
[key: string]: string;
|
|
305
|
+
};
|
|
306
|
+
}
|
|
307
|
+
export declare namespace ListTagsForResourceResult {
|
|
308
|
+
|
|
309
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResult) => any;
|
|
310
|
+
}
|
|
311
|
+
export declare enum ListTargetsFilterName {
|
|
312
|
+
TARGET_ADDRESS = "TARGET_ADDRESS",
|
|
313
|
+
TARGET_STATUS = "TARGET_STATUS",
|
|
314
|
+
TARGET_TYPE = "TARGET_TYPE"
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
export interface ListTargetsFilter {
|
|
318
|
+
|
|
319
|
+
Name: ListTargetsFilterName | string | undefined;
|
|
320
|
+
|
|
321
|
+
Value: string | undefined;
|
|
322
|
+
}
|
|
323
|
+
export declare namespace ListTargetsFilter {
|
|
324
|
+
|
|
325
|
+
const filterSensitiveLog: (obj: ListTargetsFilter) => any;
|
|
326
|
+
}
|
|
327
|
+
export interface ListTargetsRequest {
|
|
328
|
+
|
|
329
|
+
Filters?: ListTargetsFilter[];
|
|
330
|
+
|
|
331
|
+
NextToken?: string;
|
|
332
|
+
|
|
333
|
+
MaxResults?: number;
|
|
334
|
+
}
|
|
335
|
+
export declare namespace ListTargetsRequest {
|
|
336
|
+
|
|
337
|
+
const filterSensitiveLog: (obj: ListTargetsRequest) => any;
|
|
338
|
+
}
|
|
339
|
+
export interface ListTargetsResult {
|
|
340
|
+
|
|
341
|
+
Targets?: TargetSummary[];
|
|
342
|
+
|
|
343
|
+
NextToken?: string;
|
|
344
|
+
}
|
|
345
|
+
export declare namespace ListTargetsResult {
|
|
346
|
+
|
|
347
|
+
const filterSensitiveLog: (obj: ListTargetsResult) => any;
|
|
348
|
+
}
|
|
349
|
+
export interface SubscribeRequest {
|
|
350
|
+
|
|
351
|
+
Arn: string | undefined;
|
|
352
|
+
|
|
353
|
+
Target: Target | undefined;
|
|
354
|
+
|
|
355
|
+
ClientRequestToken?: string;
|
|
356
|
+
}
|
|
357
|
+
export declare namespace SubscribeRequest {
|
|
358
|
+
|
|
359
|
+
const filterSensitiveLog: (obj: SubscribeRequest) => any;
|
|
360
|
+
}
|
|
361
|
+
export interface SubscribeResult {
|
|
362
|
+
|
|
363
|
+
Arn?: string;
|
|
364
|
+
}
|
|
365
|
+
export declare namespace SubscribeResult {
|
|
366
|
+
|
|
367
|
+
const filterSensitiveLog: (obj: SubscribeResult) => any;
|
|
368
|
+
}
|
|
369
|
+
export interface TagResourceRequest {
|
|
370
|
+
|
|
371
|
+
Arn: string | undefined;
|
|
372
|
+
|
|
373
|
+
Tags: {
|
|
374
|
+
[key: string]: string;
|
|
375
|
+
} | undefined;
|
|
376
|
+
}
|
|
377
|
+
export declare namespace TagResourceRequest {
|
|
378
|
+
|
|
379
|
+
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
380
|
+
}
|
|
381
|
+
export interface TagResourceResult {
|
|
382
|
+
|
|
383
|
+
Tags?: {
|
|
384
|
+
[key: string]: string;
|
|
385
|
+
};
|
|
386
|
+
}
|
|
387
|
+
export declare namespace TagResourceResult {
|
|
388
|
+
|
|
389
|
+
const filterSensitiveLog: (obj: TagResourceResult) => any;
|
|
390
|
+
}
|
|
391
|
+
export interface UnsubscribeRequest {
|
|
392
|
+
|
|
393
|
+
Arn: string | undefined;
|
|
394
|
+
|
|
395
|
+
TargetAddress: string | undefined;
|
|
396
|
+
}
|
|
397
|
+
export declare namespace UnsubscribeRequest {
|
|
398
|
+
|
|
399
|
+
const filterSensitiveLog: (obj: UnsubscribeRequest) => any;
|
|
400
|
+
}
|
|
401
|
+
export interface UnsubscribeResult {
|
|
402
|
+
|
|
403
|
+
Arn: string | undefined;
|
|
404
|
+
}
|
|
405
|
+
export declare namespace UnsubscribeResult {
|
|
406
|
+
|
|
407
|
+
const filterSensitiveLog: (obj: UnsubscribeResult) => any;
|
|
408
|
+
}
|
|
409
|
+
export interface UntagResourceRequest {
|
|
410
|
+
|
|
411
|
+
Arn: string | undefined;
|
|
412
|
+
|
|
413
|
+
TagKeys: string[] | undefined;
|
|
414
|
+
}
|
|
415
|
+
export declare namespace UntagResourceRequest {
|
|
416
|
+
|
|
417
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
418
|
+
}
|
|
419
|
+
export interface UntagResourceResult {
|
|
420
|
+
}
|
|
421
|
+
export declare namespace UntagResourceResult {
|
|
422
|
+
|
|
423
|
+
const filterSensitiveLog: (obj: UntagResourceResult) => any;
|
|
424
|
+
}
|
|
425
|
+
export interface UpdateNotificationRuleRequest {
|
|
426
|
+
|
|
427
|
+
Arn: string | undefined;
|
|
428
|
+
|
|
429
|
+
Name?: string;
|
|
430
|
+
|
|
431
|
+
Status?: NotificationRuleStatus | string;
|
|
432
|
+
|
|
433
|
+
EventTypeIds?: string[];
|
|
434
|
+
|
|
435
|
+
Targets?: Target[];
|
|
436
|
+
|
|
437
|
+
DetailType?: DetailType | string;
|
|
438
|
+
}
|
|
439
|
+
export declare namespace UpdateNotificationRuleRequest {
|
|
440
|
+
|
|
441
|
+
const filterSensitiveLog: (obj: UpdateNotificationRuleRequest) => any;
|
|
442
|
+
}
|
|
443
|
+
export interface UpdateNotificationRuleResult {
|
|
444
|
+
}
|
|
445
|
+
export declare namespace UpdateNotificationRuleResult {
|
|
446
|
+
|
|
447
|
+
const filterSensitiveLog: (obj: UpdateNotificationRuleResult) => any;
|
|
448
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { CodestarNotifications } from "../CodestarNotifications";
|
|
3
|
+
import { CodestarNotificationsClient } from "../CodestarNotificationsClient";
|
|
4
|
+
export interface CodestarNotificationsPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: CodestarNotifications | CodestarNotificationsClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListEventTypesCommandInput, ListEventTypesCommandOutput } from "../commands/ListEventTypesCommand";
|
|
3
|
+
import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListEventTypes(config: CodestarNotificationsPaginationConfiguration, input: ListEventTypesCommandInput, ...additionalArguments: any): Paginator<ListEventTypesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput } from "../commands/ListNotificationRulesCommand";
|
|
3
|
+
import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListNotificationRules(config: CodestarNotificationsPaginationConfiguration, input: ListNotificationRulesCommandInput, ...additionalArguments: any): Paginator<ListNotificationRulesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListTargetsCommandInput, ListTargetsCommandOutput } from "../commands/ListTargetsCommand";
|
|
3
|
+
import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListTargets(config: CodestarNotificationsPaginationConfiguration, input: ListTargetsCommandInput, ...additionalArguments: any): Paginator<ListTargetsCommandOutput>;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput } from "../commands/CreateNotificationRuleCommand";
|
|
4
|
+
import { DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput } from "../commands/DeleteNotificationRuleCommand";
|
|
5
|
+
import { DeleteTargetCommandInput, DeleteTargetCommandOutput } from "../commands/DeleteTargetCommand";
|
|
6
|
+
import { DescribeNotificationRuleCommandInput, DescribeNotificationRuleCommandOutput } from "../commands/DescribeNotificationRuleCommand";
|
|
7
|
+
import { ListEventTypesCommandInput, ListEventTypesCommandOutput } from "../commands/ListEventTypesCommand";
|
|
8
|
+
import { ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput } from "../commands/ListNotificationRulesCommand";
|
|
9
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
10
|
+
import { ListTargetsCommandInput, ListTargetsCommandOutput } from "../commands/ListTargetsCommand";
|
|
11
|
+
import { SubscribeCommandInput, SubscribeCommandOutput } from "../commands/SubscribeCommand";
|
|
12
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
13
|
+
import { UnsubscribeCommandInput, UnsubscribeCommandOutput } from "../commands/UnsubscribeCommand";
|
|
14
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
15
|
+
import { UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput } from "../commands/UpdateNotificationRuleCommand";
|
|
16
|
+
export declare const serializeAws_restJson1CreateNotificationRuleCommand: (input: CreateNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
+
export declare const serializeAws_restJson1DeleteNotificationRuleCommand: (input: DeleteNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
+
export declare const serializeAws_restJson1DeleteTargetCommand: (input: DeleteTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
+
export declare const serializeAws_restJson1DescribeNotificationRuleCommand: (input: DescribeNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
+
export declare const serializeAws_restJson1ListEventTypesCommand: (input: ListEventTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
|
+
export declare const serializeAws_restJson1ListNotificationRulesCommand: (input: ListNotificationRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
export declare const serializeAws_restJson1ListTargetsCommand: (input: ListTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
export declare const serializeAws_restJson1SubscribeCommand: (input: SubscribeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
|
+
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
export declare const serializeAws_restJson1UnsubscribeCommand: (input: UnsubscribeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
export declare const serializeAws_restJson1UpdateNotificationRuleCommand: (input: UpdateNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
+
export declare const deserializeAws_restJson1CreateNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNotificationRuleCommandOutput>;
|
|
30
|
+
export declare const deserializeAws_restJson1DeleteNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNotificationRuleCommandOutput>;
|
|
31
|
+
export declare const deserializeAws_restJson1DeleteTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTargetCommandOutput>;
|
|
32
|
+
export declare const deserializeAws_restJson1DescribeNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeNotificationRuleCommandOutput>;
|
|
33
|
+
export declare const deserializeAws_restJson1ListEventTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventTypesCommandOutput>;
|
|
34
|
+
export declare const deserializeAws_restJson1ListNotificationRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNotificationRulesCommandOutput>;
|
|
35
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
36
|
+
export declare const deserializeAws_restJson1ListTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTargetsCommandOutput>;
|
|
37
|
+
export declare const deserializeAws_restJson1SubscribeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubscribeCommandOutput>;
|
|
38
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
39
|
+
export declare const deserializeAws_restJson1UnsubscribeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UnsubscribeCommandOutput>;
|
|
40
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
41
|
+
export declare const deserializeAws_restJson1UpdateNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNotificationRuleCommandOutput>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
+
signingEscapePath?: boolean | undefined;
|
|
33
|
+
systemClockOffset?: number | undefined;
|
|
34
|
+
signingRegion?: string | undefined;
|
|
35
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codestar-notifications",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codestar Notifications Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.51.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,21 +18,21 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.50.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
31
|
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
32
|
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
36
|
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.50.0",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
45
|
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0",
|