@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.
Files changed (33) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/CodestarNotifications.d.ts +238 -70
  3. package/dist-types/ts3.4/CodestarNotificationsClient.d.ts +208 -86
  4. package/dist-types/ts3.4/commands/CreateNotificationRuleCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/DeleteNotificationRuleCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DeleteTargetCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DescribeNotificationRuleCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/ListEventTypesCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/ListNotificationRulesCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/ListTargetsCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/SubscribeCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/UpdateNotificationRuleCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/index.d.ts +13 -13
  18. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  19. package/dist-types/ts3.4/index.d.ts +6 -6
  20. package/dist-types/ts3.4/models/CodestarNotificationsServiceException.d.ts +8 -6
  21. package/dist-types/ts3.4/models/index.d.ts +1 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +439 -389
  23. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  24. package/dist-types/ts3.4/pagination/ListEventTypesPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/ListNotificationRulesPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/ListTargetsPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  28. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +161 -41
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  33. package/package.json +34 -34
@@ -1,17 +1,41 @@
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
- }
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
+ CreateNotificationRuleRequest,
15
+ CreateNotificationRuleResult,
16
+ } from "../models/models_0";
17
+ export interface CreateNotificationRuleCommandInput
18
+ extends CreateNotificationRuleRequest {}
19
+ export interface CreateNotificationRuleCommandOutput
20
+ extends CreateNotificationRuleResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateNotificationRuleCommand extends $Command<
24
+ CreateNotificationRuleCommandInput,
25
+ CreateNotificationRuleCommandOutput,
26
+ CodestarNotificationsClientResolvedConfig
27
+ > {
28
+ readonly input: CreateNotificationRuleCommandInput;
29
+ constructor(input: CreateNotificationRuleCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodestarNotificationsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateNotificationRuleCommandInput,
37
+ CreateNotificationRuleCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
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
- }
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
+
23
+ export declare class DeleteNotificationRuleCommand extends $Command<
24
+ DeleteNotificationRuleCommandInput,
25
+ DeleteNotificationRuleCommandOutput,
26
+ CodestarNotificationsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteNotificationRuleCommandInput;
29
+ constructor(input: DeleteNotificationRuleCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodestarNotificationsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteNotificationRuleCommandInput,
37
+ DeleteNotificationRuleCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
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
- }
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
+
19
+ export declare class DeleteTargetCommand extends $Command<
20
+ DeleteTargetCommandInput,
21
+ DeleteTargetCommandOutput,
22
+ CodestarNotificationsClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteTargetCommandInput;
25
+ constructor(input: DeleteTargetCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CodestarNotificationsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteTargetCommandInput, DeleteTargetCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
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
- }
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
+
23
+ export declare class DescribeNotificationRuleCommand extends $Command<
24
+ DescribeNotificationRuleCommandInput,
25
+ DescribeNotificationRuleCommandOutput,
26
+ CodestarNotificationsClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeNotificationRuleCommandInput;
29
+ constructor(input: DescribeNotificationRuleCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodestarNotificationsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeNotificationRuleCommandInput,
37
+ DescribeNotificationRuleCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
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
- }
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
+
22
+ export declare class ListEventTypesCommand extends $Command<
23
+ ListEventTypesCommandInput,
24
+ ListEventTypesCommandOutput,
25
+ CodestarNotificationsClientResolvedConfig
26
+ > {
27
+ readonly input: ListEventTypesCommandInput;
28
+ constructor(input: ListEventTypesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CodestarNotificationsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListEventTypesCommandInput, ListEventTypesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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
- }
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
+
23
+ export declare class ListNotificationRulesCommand extends $Command<
24
+ ListNotificationRulesCommandInput,
25
+ ListNotificationRulesCommandOutput,
26
+ CodestarNotificationsClientResolvedConfig
27
+ > {
28
+ readonly input: ListNotificationRulesCommandInput;
29
+ constructor(input: ListNotificationRulesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodestarNotificationsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListNotificationRulesCommandInput,
37
+ ListNotificationRulesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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
- }
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
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ CodestarNotificationsClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CodestarNotificationsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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
- }
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
+
19
+ export declare class ListTargetsCommand extends $Command<
20
+ ListTargetsCommandInput,
21
+ ListTargetsCommandOutput,
22
+ CodestarNotificationsClientResolvedConfig
23
+ > {
24
+ readonly input: ListTargetsCommandInput;
25
+ constructor(input: ListTargetsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CodestarNotificationsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListTargetsCommandInput, ListTargetsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
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
- }
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
+
19
+ export declare class SubscribeCommand extends $Command<
20
+ SubscribeCommandInput,
21
+ SubscribeCommandOutput,
22
+ CodestarNotificationsClientResolvedConfig
23
+ > {
24
+ readonly input: SubscribeCommandInput;
25
+ constructor(input: SubscribeCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CodestarNotificationsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<SubscribeCommandInput, SubscribeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
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
- }
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
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ CodestarNotificationsClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CodestarNotificationsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
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
- }
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
+
19
+ export declare class UnsubscribeCommand extends $Command<
20
+ UnsubscribeCommandInput,
21
+ UnsubscribeCommandOutput,
22
+ CodestarNotificationsClientResolvedConfig
23
+ > {
24
+ readonly input: UnsubscribeCommandInput;
25
+ constructor(input: UnsubscribeCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CodestarNotificationsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<UnsubscribeCommandInput, UnsubscribeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }