@aws-sdk/client-codestar-notifications 3.168.0 → 3.170.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 +16 -0
- package/dist-types/ts3.4/CodestarNotifications.d.ts +238 -70
- package/dist-types/ts3.4/CodestarNotificationsClient.d.ts +208 -86
- package/dist-types/ts3.4/commands/CreateNotificationRuleCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteNotificationRuleCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteTargetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeNotificationRuleCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListEventTypesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListNotificationRulesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTargetsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/SubscribeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateNotificationRuleCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +13 -13
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/CodestarNotificationsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +439 -389
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListEventTypesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListNotificationRulesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTargetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +161 -41
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodestarNotificationsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodestarNotificationsClient";
|
|
13
|
+
import { UntagResourceRequest, UntagResourceResult } from "../models/models_0";
|
|
14
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
15
|
+
export interface UntagResourceCommandOutput
|
|
16
|
+
extends UntagResourceResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UntagResourceCommand extends $Command<
|
|
20
|
+
UntagResourceCommandInput,
|
|
21
|
+
UntagResourceCommandOutput,
|
|
22
|
+
CodestarNotificationsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UntagResourceCommandInput;
|
|
25
|
+
constructor(input: UntagResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CodestarNotificationsClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CodestarNotificationsClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateNotificationRuleRequest,
|
|
15
|
+
UpdateNotificationRuleResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateNotificationRuleCommandInput
|
|
18
|
+
extends UpdateNotificationRuleRequest {}
|
|
19
|
+
export interface UpdateNotificationRuleCommandOutput
|
|
20
|
+
extends UpdateNotificationRuleResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateNotificationRuleCommand extends $Command<
|
|
24
|
+
UpdateNotificationRuleCommandInput,
|
|
25
|
+
UpdateNotificationRuleCommandOutput,
|
|
26
|
+
CodestarNotificationsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateNotificationRuleCommandInput;
|
|
29
|
+
constructor(input: UpdateNotificationRuleCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateNotificationRuleCommandInput,
|
|
37
|
+
UpdateNotificationRuleCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,13 +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";
|
|
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";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./CodestarNotifications";
|
|
2
|
-
export * from "./CodestarNotificationsClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { CodestarNotificationsServiceException } from "./models/CodestarNotificationsServiceException";
|
|
1
|
+
export * from "./CodestarNotifications";
|
|
2
|
+
export * from "./CodestarNotificationsClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { CodestarNotificationsServiceException } from "./models/CodestarNotificationsServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class CodestarNotificationsServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|