@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.
Files changed (33) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/CodestarNotifications.d.ts +225 -70
  3. package/dist-types/ts3.4/CodestarNotificationsClient.d.ts +183 -86
  4. package/dist-types/ts3.4/commands/CreateNotificationRuleCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/DeleteNotificationRuleCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/DeleteTargetCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DescribeNotificationRuleCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/ListEventTypesCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/ListNotificationRulesCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/ListTargetsCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/SubscribeCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/UpdateNotificationRuleCommand.d.ts +39 -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 +7 -6
  21. package/dist-types/ts3.4/models/index.d.ts +1 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +336 -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 +67 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  33. package/package.json +34 -34
@@ -1,17 +1,39 @@
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
+ 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 { 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
+ 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 { 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
+ 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 { 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
+ 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 { 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
+ 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 { 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
+ 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 { 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
+ 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 { 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
+ 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 { 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
+ 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 { 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
+ 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 { 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
- }
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
+ }