@aws-sdk/client-codestar-notifications 3.1077.0 → 3.1078.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 (47) hide show
  1. package/dist-cjs/index.js +21 -133
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CreateNotificationRuleCommand.js +2 -14
  4. package/dist-es/commands/DeleteNotificationRuleCommand.js +2 -14
  5. package/dist-es/commands/DeleteTargetCommand.js +2 -14
  6. package/dist-es/commands/DescribeNotificationRuleCommand.js +2 -14
  7. package/dist-es/commands/ListEventTypesCommand.js +2 -14
  8. package/dist-es/commands/ListNotificationRulesCommand.js +2 -14
  9. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  10. package/dist-es/commands/ListTargetsCommand.js +2 -14
  11. package/dist-es/commands/SubscribeCommand.js +2 -14
  12. package/dist-es/commands/TagResourceCommand.js +2 -14
  13. package/dist-es/commands/UnsubscribeCommand.js +2 -14
  14. package/dist-es/commands/UntagResourceCommand.js +2 -14
  15. package/dist-es/commands/UpdateNotificationRuleCommand.js +2 -14
  16. package/dist-es/index.js +1 -0
  17. package/dist-types/commandBuilder.d.ts +18 -0
  18. package/dist-types/commands/CreateNotificationRuleCommand.d.ts +3 -8
  19. package/dist-types/commands/DeleteNotificationRuleCommand.d.ts +3 -8
  20. package/dist-types/commands/DeleteTargetCommand.d.ts +3 -8
  21. package/dist-types/commands/DescribeNotificationRuleCommand.d.ts +3 -8
  22. package/dist-types/commands/ListEventTypesCommand.d.ts +3 -8
  23. package/dist-types/commands/ListNotificationRulesCommand.d.ts +3 -8
  24. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  25. package/dist-types/commands/ListTargetsCommand.d.ts +3 -8
  26. package/dist-types/commands/SubscribeCommand.d.ts +3 -8
  27. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  28. package/dist-types/commands/UnsubscribeCommand.d.ts +3 -8
  29. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  30. package/dist-types/commands/UpdateNotificationRuleCommand.d.ts +3 -8
  31. package/dist-types/index.d.ts +1 -0
  32. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  33. package/dist-types/ts3.4/commands/CreateNotificationRuleCommand.d.ts +7 -16
  34. package/dist-types/ts3.4/commands/DeleteNotificationRuleCommand.d.ts +7 -16
  35. package/dist-types/ts3.4/commands/DeleteTargetCommand.d.ts +7 -16
  36. package/dist-types/ts3.4/commands/DescribeNotificationRuleCommand.d.ts +7 -16
  37. package/dist-types/ts3.4/commands/ListEventTypesCommand.d.ts +7 -16
  38. package/dist-types/ts3.4/commands/ListNotificationRulesCommand.d.ts +7 -16
  39. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  40. package/dist-types/ts3.4/commands/ListTargetsCommand.d.ts +7 -16
  41. package/dist-types/ts3.4/commands/SubscribeCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  43. package/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +7 -16
  44. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  45. package/dist-types/ts3.4/commands/UpdateNotificationRuleCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/index.d.ts +1 -0
  47. package/package.json +8 -8
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
4
2
  import type { ListEventTypesRequest, ListEventTypesResult } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListEventTypesCommandInput extends ListEventTypesRequest {
22
19
  export interface ListEventTypesCommandOutput extends ListEventTypesResult, __MetadataBearer {
23
20
  }
24
21
  declare const ListEventTypesCommand_base: {
25
- new (input: ListEventTypesCommandInput): import("@smithy/core/client").CommandImpl<ListEventTypesCommandInput, ListEventTypesCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListEventTypesCommandInput]): import("@smithy/core/client").CommandImpl<ListEventTypesCommandInput, ListEventTypesCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListEventTypesCommandInput): import("@smithy/core/client").CommandImpl<ListEventTypesCommandInput, ListEventTypesCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListEventTypesCommandInput]): import("@smithy/core/client").CommandImpl<ListEventTypesCommandInput, ListEventTypesCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns information about the event types available for configuring notifications.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
4
2
  import type { ListNotificationRulesRequest, ListNotificationRulesResult } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListNotificationRulesCommandInput extends ListNotificationRules
22
19
  export interface ListNotificationRulesCommandOutput extends ListNotificationRulesResult, __MetadataBearer {
23
20
  }
24
21
  declare const ListNotificationRulesCommand_base: {
25
- new (input: ListNotificationRulesCommandInput): import("@smithy/core/client").CommandImpl<ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListNotificationRulesCommandInput]): import("@smithy/core/client").CommandImpl<ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListNotificationRulesCommandInput): import("@smithy/core/client").CommandImpl<ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListNotificationRulesCommandInput]): import("@smithy/core/client").CommandImpl<ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of the notification rules for an Amazon Web Services account.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
4
2
  import type { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
22
19
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResult, __MetadataBearer {
23
20
  }
24
21
  declare const ListTagsForResourceCommand_base: {
25
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of the tags associated with a notification rule.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
4
2
  import type { ListTargetsRequest, ListTargetsResult } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListTargetsCommandInput extends ListTargetsRequest {
22
19
  export interface ListTargetsCommandOutput extends ListTargetsResult, __MetadataBearer {
23
20
  }
24
21
  declare const ListTargetsCommand_base: {
25
- new (input: ListTargetsCommandInput): import("@smithy/core/client").CommandImpl<ListTargetsCommandInput, ListTargetsCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [ListTargetsCommandInput]): import("@smithy/core/client").CommandImpl<ListTargetsCommandInput, ListTargetsCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListTargetsCommandInput): import("@smithy/core/client").CommandImpl<ListTargetsCommandInput, ListTargetsCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [ListTargetsCommandInput]): import("@smithy/core/client").CommandImpl<ListTargetsCommandInput, ListTargetsCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a list of the notification rule targets for an Amazon Web Services account.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
4
2
  import type { SubscribeRequest, SubscribeResult } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface SubscribeCommandInput extends SubscribeRequest {
22
19
  export interface SubscribeCommandOutput extends SubscribeResult, __MetadataBearer {
23
20
  }
24
21
  declare const SubscribeCommand_base: {
25
- new (input: SubscribeCommandInput): import("@smithy/core/client").CommandImpl<SubscribeCommandInput, SubscribeCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: SubscribeCommandInput): import("@smithy/core/client").CommandImpl<SubscribeCommandInput, SubscribeCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: SubscribeCommandInput): import("@smithy/core/client").CommandImpl<SubscribeCommandInput, SubscribeCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: SubscribeCommandInput): import("@smithy/core/client").CommandImpl<SubscribeCommandInput, SubscribeCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates an association between a notification rule and an Amazon Q Developer in chat applications topic or Amazon Q Developer in chat applications client so that the
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
4
2
  import type { TagResourceRequest, TagResourceResult } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceRequest {
22
19
  export interface TagResourceCommandOutput extends TagResourceResult, __MetadataBearer {
23
20
  }
24
21
  declare const TagResourceCommand_base: {
25
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Associates a set of provided tags with a notification rule.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
4
2
  import type { UnsubscribeRequest, UnsubscribeResult } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UnsubscribeCommandInput extends UnsubscribeRequest {
22
19
  export interface UnsubscribeCommandOutput extends UnsubscribeResult, __MetadataBearer {
23
20
  }
24
21
  declare const UnsubscribeCommand_base: {
25
- new (input: UnsubscribeCommandInput): import("@smithy/core/client").CommandImpl<UnsubscribeCommandInput, UnsubscribeCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UnsubscribeCommandInput): import("@smithy/core/client").CommandImpl<UnsubscribeCommandInput, UnsubscribeCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UnsubscribeCommandInput): import("@smithy/core/client").CommandImpl<UnsubscribeCommandInput, UnsubscribeCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UnsubscribeCommandInput): import("@smithy/core/client").CommandImpl<UnsubscribeCommandInput, UnsubscribeCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Removes an association between a notification rule and an Amazon Q Developer in chat applications topic so that
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
4
2
  import type { UntagResourceRequest, UntagResourceResult } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
22
19
  export interface UntagResourceCommandOutput extends UntagResourceResult, __MetadataBearer {
23
20
  }
24
21
  declare const UntagResourceCommand_base: {
25
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Removes the association between one or more provided tags and a notification
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodestarNotificationsClient";
4
2
  import type { UpdateNotificationRuleRequest, UpdateNotificationRuleResult } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface UpdateNotificationRuleCommandInput extends UpdateNotificationRu
22
19
  export interface UpdateNotificationRuleCommandOutput extends UpdateNotificationRuleResult, __MetadataBearer {
23
20
  }
24
21
  declare const UpdateNotificationRuleCommand_base: {
25
- new (input: UpdateNotificationRuleCommandInput): import("@smithy/core/client").CommandImpl<UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateNotificationRuleCommandInput): import("@smithy/core/client").CommandImpl<UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateNotificationRuleCommandInput): import("@smithy/core/client").CommandImpl<UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateNotificationRuleCommandInput): import("@smithy/core/client").CommandImpl<UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput, import("..").CodestarNotificationsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates a notification rule for a resource. You can change the events that trigger the
@@ -86,6 +86,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
86
86
  export type { RuntimeExtension } from "./runtimeExtensions";
87
87
  export type { CodestarNotificationsExtensionConfiguration } from "./extensionConfiguration";
88
88
  export * from "./commands";
89
+ export { Command as $Command } from "@smithy/core/client";
89
90
  export * from "./schemas/schemas_0";
90
91
  export * from "./pagination";
91
92
  export * from "./models/enums";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ CodestarNotificationsClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./CodestarNotificationsClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ CodestarNotificationsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ CodestarNotificationsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CodestarNotificationsClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CodestarNotificationsClient";
8
2
  import {
9
3
  CreateNotificationRuleRequest,
10
4
  CreateNotificationRuleResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CreateNotificationRuleCommandInput
15
8
  extends CreateNotificationRuleRequest {}
16
9
  export interface CreateNotificationRuleCommandOutput
@@ -22,22 +15,20 @@ declare const CreateNotificationRuleCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CreateNotificationRuleCommandInput,
24
17
  CreateNotificationRuleCommandOutput,
25
- CodestarNotificationsClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").CodestarNotificationsClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CreateNotificationRuleCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CreateNotificationRuleCommandInput,
33
26
  CreateNotificationRuleCommandOutput,
34
- CodestarNotificationsClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").CodestarNotificationsClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CreateNotificationRuleCommand extends CreateNotificationRuleCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CodestarNotificationsClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CodestarNotificationsClient";
8
2
  import {
9
3
  DeleteNotificationRuleRequest,
10
4
  DeleteNotificationRuleResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DeleteNotificationRuleCommandInput
15
8
  extends DeleteNotificationRuleRequest {}
16
9
  export interface DeleteNotificationRuleCommandOutput
@@ -22,22 +15,20 @@ declare const DeleteNotificationRuleCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DeleteNotificationRuleCommandInput,
24
17
  DeleteNotificationRuleCommandOutput,
25
- CodestarNotificationsClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").CodestarNotificationsClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DeleteNotificationRuleCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DeleteNotificationRuleCommandInput,
33
26
  DeleteNotificationRuleCommandOutput,
34
- CodestarNotificationsClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").CodestarNotificationsClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DeleteNotificationRuleCommand extends DeleteNotificationRuleCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CodestarNotificationsClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CodestarNotificationsClient";
8
2
  import { DeleteTargetRequest, DeleteTargetResult } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteTargetCommandInput extends DeleteTargetRequest {}
12
5
  export interface DeleteTargetCommandOutput
13
6
  extends DeleteTargetResult,
@@ -18,22 +11,20 @@ declare const DeleteTargetCommand_base: {
18
11
  ): import("@smithy/core/client").CommandImpl<
19
12
  DeleteTargetCommandInput,
20
13
  DeleteTargetCommandOutput,
21
- CodestarNotificationsClientResolvedConfig,
22
- ServiceInputTypes,
23
- ServiceOutputTypes
14
+ import("..").CodestarNotificationsClientResolvedConfig,
15
+ import("..").ServiceInputTypes,
16
+ import("..").ServiceOutputTypes
24
17
  >;
25
18
  new (
26
19
  input: DeleteTargetCommandInput
27
20
  ): import("@smithy/core/client").CommandImpl<
28
21
  DeleteTargetCommandInput,
29
22
  DeleteTargetCommandOutput,
30
- CodestarNotificationsClientResolvedConfig,
31
- ServiceInputTypes,
32
- ServiceOutputTypes
23
+ import("..").CodestarNotificationsClientResolvedConfig,
24
+ import("..").ServiceInputTypes,
25
+ import("..").ServiceOutputTypes
33
26
  >;
34
- getEndpointParameterInstructions(): {
35
- [x: string]: unknown;
36
- };
27
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
37
28
  };
38
29
  export declare class DeleteTargetCommand extends DeleteTargetCommand_base {
39
30
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CodestarNotificationsClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CodestarNotificationsClient";
8
2
  import {
9
3
  DescribeNotificationRuleRequest,
10
4
  DescribeNotificationRuleResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DescribeNotificationRuleCommandInput
15
8
  extends DescribeNotificationRuleRequest {}
16
9
  export interface DescribeNotificationRuleCommandOutput
@@ -22,22 +15,20 @@ declare const DescribeNotificationRuleCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DescribeNotificationRuleCommandInput,
24
17
  DescribeNotificationRuleCommandOutput,
25
- CodestarNotificationsClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").CodestarNotificationsClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DescribeNotificationRuleCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DescribeNotificationRuleCommandInput,
33
26
  DescribeNotificationRuleCommandOutput,
34
- CodestarNotificationsClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").CodestarNotificationsClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DescribeNotificationRuleCommand extends DescribeNotificationRuleCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CodestarNotificationsClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CodestarNotificationsClient";
8
2
  import {
9
3
  ListEventTypesRequest,
10
4
  ListEventTypesResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListEventTypesCommandInput extends ListEventTypesRequest {}
15
8
  export interface ListEventTypesCommandOutput
16
9
  extends ListEventTypesResult,
@@ -21,22 +14,20 @@ declare const ListEventTypesCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  ListEventTypesCommandInput,
23
16
  ListEventTypesCommandOutput,
24
- CodestarNotificationsClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").CodestarNotificationsClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  ...[input]: [] | [ListEventTypesCommandInput]
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  ListEventTypesCommandInput,
32
25
  ListEventTypesCommandOutput,
33
- CodestarNotificationsClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").CodestarNotificationsClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class ListEventTypesCommand extends ListEventTypesCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CodestarNotificationsClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CodestarNotificationsClient";
8
2
  import {
9
3
  ListNotificationRulesRequest,
10
4
  ListNotificationRulesResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListNotificationRulesCommandInput
15
8
  extends ListNotificationRulesRequest {}
16
9
  export interface ListNotificationRulesCommandOutput
@@ -22,22 +15,20 @@ declare const ListNotificationRulesCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListNotificationRulesCommandInput,
24
17
  ListNotificationRulesCommandOutput,
25
- CodestarNotificationsClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").CodestarNotificationsClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [ListNotificationRulesCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListNotificationRulesCommandInput,
33
26
  ListNotificationRulesCommandOutput,
34
- CodestarNotificationsClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").CodestarNotificationsClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListNotificationRulesCommand extends ListNotificationRulesCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CodestarNotificationsClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CodestarNotificationsClient";
8
2
  import {
9
3
  ListTagsForResourceRequest,
10
4
  ListTagsForResourceResult,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListTagsForResourceCommandInput
15
8
  extends ListTagsForResourceRequest {}
16
9
  export interface ListTagsForResourceCommandOutput
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListTagsForResourceCommandInput,
24
17
  ListTagsForResourceCommandOutput,
25
- CodestarNotificationsClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").CodestarNotificationsClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListTagsForResourceCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListTagsForResourceCommandInput,
33
26
  ListTagsForResourceCommandOutput,
34
- CodestarNotificationsClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").CodestarNotificationsClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
43
34
  protected static __types: {