@aws-sdk/client-codestar-notifications 3.169.0 → 3.171.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 +225 -70
- package/dist-types/ts3.4/CodestarNotificationsClient.d.ts +183 -86
- package/dist-types/ts3.4/commands/CreateNotificationRuleCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteNotificationRuleCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteTargetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeNotificationRuleCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListEventTypesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListNotificationRulesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTargetsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/SubscribeCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateNotificationRuleCommand.d.ts +39 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +336 -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 +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
DeleteNotificationRuleRequest,
|
|
15
|
+
DeleteNotificationRuleResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteNotificationRuleCommandInput
|
|
18
|
+
extends DeleteNotificationRuleRequest {}
|
|
19
|
+
export interface DeleteNotificationRuleCommandOutput
|
|
20
|
+
extends DeleteNotificationRuleResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteNotificationRuleCommand extends $Command<
|
|
23
|
+
DeleteNotificationRuleCommandInput,
|
|
24
|
+
DeleteNotificationRuleCommandOutput,
|
|
25
|
+
CodestarNotificationsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteNotificationRuleCommandInput;
|
|
28
|
+
constructor(input: DeleteNotificationRuleCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteNotificationRuleCommandInput,
|
|
35
|
+
DeleteNotificationRuleCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { DeleteTargetRequest, DeleteTargetResult } from "../models/models_0";
|
|
14
|
+
export interface DeleteTargetCommandInput extends DeleteTargetRequest {}
|
|
15
|
+
export interface DeleteTargetCommandOutput
|
|
16
|
+
extends DeleteTargetResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DeleteTargetCommand extends $Command<
|
|
19
|
+
DeleteTargetCommandInput,
|
|
20
|
+
DeleteTargetCommandOutput,
|
|
21
|
+
CodestarNotificationsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteTargetCommandInput;
|
|
24
|
+
constructor(input: DeleteTargetCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteTargetCommandInput, DeleteTargetCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
DescribeNotificationRuleRequest,
|
|
15
|
+
DescribeNotificationRuleResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeNotificationRuleCommandInput
|
|
18
|
+
extends DescribeNotificationRuleRequest {}
|
|
19
|
+
export interface DescribeNotificationRuleCommandOutput
|
|
20
|
+
extends DescribeNotificationRuleResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeNotificationRuleCommand extends $Command<
|
|
23
|
+
DescribeNotificationRuleCommandInput,
|
|
24
|
+
DescribeNotificationRuleCommandOutput,
|
|
25
|
+
CodestarNotificationsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeNotificationRuleCommandInput;
|
|
28
|
+
constructor(input: DescribeNotificationRuleCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeNotificationRuleCommandInput,
|
|
35
|
+
DescribeNotificationRuleCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
ListEventTypesRequest,
|
|
15
|
+
ListEventTypesResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListEventTypesCommandInput extends ListEventTypesRequest {}
|
|
18
|
+
export interface ListEventTypesCommandOutput
|
|
19
|
+
extends ListEventTypesResult,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListEventTypesCommand extends $Command<
|
|
22
|
+
ListEventTypesCommandInput,
|
|
23
|
+
ListEventTypesCommandOutput,
|
|
24
|
+
CodestarNotificationsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListEventTypesCommandInput;
|
|
27
|
+
constructor(input: ListEventTypesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListEventTypesCommandInput, ListEventTypesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
ListNotificationRulesRequest,
|
|
15
|
+
ListNotificationRulesResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListNotificationRulesCommandInput
|
|
18
|
+
extends ListNotificationRulesRequest {}
|
|
19
|
+
export interface ListNotificationRulesCommandOutput
|
|
20
|
+
extends ListNotificationRulesResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListNotificationRulesCommand extends $Command<
|
|
23
|
+
ListNotificationRulesCommandInput,
|
|
24
|
+
ListNotificationRulesCommandOutput,
|
|
25
|
+
CodestarNotificationsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListNotificationRulesCommandInput;
|
|
28
|
+
constructor(input: ListNotificationRulesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListNotificationRulesCommandInput,
|
|
35
|
+
ListNotificationRulesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
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
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
CodestarNotificationsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { ListTargetsRequest, ListTargetsResult } from "../models/models_0";
|
|
14
|
+
export interface ListTargetsCommandInput extends ListTargetsRequest {}
|
|
15
|
+
export interface ListTargetsCommandOutput
|
|
16
|
+
extends ListTargetsResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListTargetsCommand extends $Command<
|
|
19
|
+
ListTargetsCommandInput,
|
|
20
|
+
ListTargetsCommandOutput,
|
|
21
|
+
CodestarNotificationsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListTargetsCommandInput;
|
|
24
|
+
constructor(input: ListTargetsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListTargetsCommandInput, ListTargetsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { SubscribeRequest, SubscribeResult } from "../models/models_0";
|
|
14
|
+
export interface SubscribeCommandInput extends SubscribeRequest {}
|
|
15
|
+
export interface SubscribeCommandOutput
|
|
16
|
+
extends SubscribeResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class SubscribeCommand extends $Command<
|
|
19
|
+
SubscribeCommandInput,
|
|
20
|
+
SubscribeCommandOutput,
|
|
21
|
+
CodestarNotificationsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: SubscribeCommandInput;
|
|
24
|
+
constructor(input: SubscribeCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<SubscribeCommandInput, SubscribeCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { TagResourceRequest, TagResourceResult } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
CodestarNotificationsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { UnsubscribeRequest, UnsubscribeResult } from "../models/models_0";
|
|
14
|
+
export interface UnsubscribeCommandInput extends UnsubscribeRequest {}
|
|
15
|
+
export interface UnsubscribeCommandOutput
|
|
16
|
+
extends UnsubscribeResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class UnsubscribeCommand extends $Command<
|
|
19
|
+
UnsubscribeCommandInput,
|
|
20
|
+
UnsubscribeCommandOutput,
|
|
21
|
+
CodestarNotificationsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UnsubscribeCommandInput;
|
|
24
|
+
constructor(input: UnsubscribeCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UnsubscribeCommandInput, UnsubscribeCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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
|
+
export declare class UntagResourceCommand extends $Command<
|
|
19
|
+
UntagResourceCommandInput,
|
|
20
|
+
UntagResourceCommandOutput,
|
|
21
|
+
CodestarNotificationsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UntagResourceCommandInput;
|
|
24
|
+
constructor(input: UntagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: CodestarNotificationsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|