@aws-sdk/client-codestar-notifications 3.533.0 → 3.540.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 (37) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/CodestarNotifications.d.ts +4 -1
  6. package/dist-types/CodestarNotificationsClient.d.ts +1 -1
  7. package/dist-types/commands/CreateNotificationRuleCommand.d.ts +2 -1
  8. package/dist-types/commands/DeleteNotificationRuleCommand.d.ts +2 -1
  9. package/dist-types/commands/DeleteTargetCommand.d.ts +2 -1
  10. package/dist-types/commands/DescribeNotificationRuleCommand.d.ts +2 -1
  11. package/dist-types/commands/ListEventTypesCommand.d.ts +2 -1
  12. package/dist-types/commands/ListNotificationRulesCommand.d.ts +2 -1
  13. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  14. package/dist-types/commands/ListTargetsCommand.d.ts +2 -1
  15. package/dist-types/commands/SubscribeCommand.d.ts +2 -1
  16. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  17. package/dist-types/commands/UnsubscribeCommand.d.ts +2 -1
  18. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  19. package/dist-types/commands/UpdateNotificationRuleCommand.d.ts +2 -1
  20. package/dist-types/index.d.ts +0 -1
  21. package/dist-types/models/models_0.d.ts +92 -92
  22. package/dist-types/ts3.4/CodestarNotifications.d.ts +3 -0
  23. package/dist-types/ts3.4/commands/CreateNotificationRuleCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/DeleteNotificationRuleCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/DeleteTargetCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/DescribeNotificationRuleCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/ListEventTypesCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/ListNotificationRulesCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/ListTargetsCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/SubscribeCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/UpdateNotificationRuleCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/index.d.ts +0 -1
  37. package/package.json +40 -40
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaultEndpointResolver = void 0;
4
- const util_endpoints_1 = require("@smithy/util-endpoints");
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
5
6
  const ruleset_1 = require("./ruleset");
6
7
  const defaultEndpointResolver = (endpointParams, context = {}) => {
7
- return (0, util_endpoints_1.resolveEndpoint)(ruleset_1.ruleSet, {
8
+ return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
8
9
  endpointParams: endpointParams,
9
10
  logger: context.logger,
10
11
  });
11
12
  };
12
13
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -1261,9 +1261,6 @@ var paginateListNotificationRules = (0, import_core.createPaginator)(CodestarNot
1261
1261
  // src/pagination/ListTargetsPaginator.ts
1262
1262
 
1263
1263
  var paginateListTargets = (0, import_core.createPaginator)(CodestarNotificationsClient, ListTargetsCommand, "NextToken", "NextToken", "MaxResults");
1264
-
1265
- // src/index.ts
1266
- var import_util_endpoints = require("@aws-sdk/util-endpoints");
1267
1264
  // Annotate the CommonJS export names for ESM import in node:
1268
1265
 
1269
1266
  0 && (module.exports = {
@@ -1,4 +1,5 @@
1
- import { resolveEndpoint } from "@smithy/util-endpoints";
1
+ import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
+ import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
2
3
  import { ruleSet } from "./ruleset";
3
4
  export const defaultEndpointResolver = (endpointParams, context = {}) => {
4
5
  return resolveEndpoint(ruleSet, {
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
6
7
  logger: context.logger,
7
8
  });
8
9
  };
10
+ customEndpointFunctions.aws = awsEndpointFunctions;
package/dist-es/index.js CHANGED
@@ -3,5 +3,4 @@ export * from "./CodestarNotifications";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./models";
6
- import "@aws-sdk/util-endpoints";
7
6
  export { CodestarNotificationsServiceException } from "./models/CodestarNotificationsServiceException";
@@ -41,12 +41,14 @@ export interface CodestarNotifications {
41
41
  /**
42
42
  * @see {@link ListEventTypesCommand}
43
43
  */
44
+ listEventTypes(): Promise<ListEventTypesCommandOutput>;
44
45
  listEventTypes(args: ListEventTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListEventTypesCommandOutput>;
45
46
  listEventTypes(args: ListEventTypesCommandInput, cb: (err: any, data?: ListEventTypesCommandOutput) => void): void;
46
47
  listEventTypes(args: ListEventTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventTypesCommandOutput) => void): void;
47
48
  /**
48
49
  * @see {@link ListNotificationRulesCommand}
49
50
  */
51
+ listNotificationRules(): Promise<ListNotificationRulesCommandOutput>;
50
52
  listNotificationRules(args: ListNotificationRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListNotificationRulesCommandOutput>;
51
53
  listNotificationRules(args: ListNotificationRulesCommandInput, cb: (err: any, data?: ListNotificationRulesCommandOutput) => void): void;
52
54
  listNotificationRules(args: ListNotificationRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNotificationRulesCommandOutput) => void): void;
@@ -59,6 +61,7 @@ export interface CodestarNotifications {
59
61
  /**
60
62
  * @see {@link ListTargetsCommand}
61
63
  */
64
+ listTargets(): Promise<ListTargetsCommandOutput>;
62
65
  listTargets(args: ListTargetsCommandInput, options?: __HttpHandlerOptions): Promise<ListTargetsCommandOutput>;
63
66
  listTargets(args: ListTargetsCommandInput, cb: (err: any, data?: ListTargetsCommandOutput) => void): void;
64
67
  listTargets(args: ListTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTargetsCommandOutput) => void): void;
@@ -94,7 +97,6 @@ export interface CodestarNotifications {
94
97
  updateNotificationRule(args: UpdateNotificationRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNotificationRuleCommandOutput) => void): void;
95
98
  }
96
99
  /**
97
- * @public
98
100
  * <p>This AWS CodeStar Notifications API Reference provides descriptions and usage examples of the
99
101
  * operations and data types for the AWS CodeStar Notifications API. You can use the AWS CodeStar Notifications API
100
102
  * to work with the following objects:</p>
@@ -173,6 +175,7 @@ export interface CodestarNotifications {
173
175
  * </ul>
174
176
  * <p> For information about how to use AWS CodeStar Notifications, see the <a href="https://docs.aws.amazon.com/dtconsole/latest/userguide/what-is-dtconsole.html">Amazon Web Services Developer Tools Console User Guide</a>.
175
177
  * </p>
178
+ * @public
176
179
  */
177
180
  export declare class CodestarNotifications extends CodestarNotificationsClient implements CodestarNotifications {
178
181
  }
@@ -164,7 +164,6 @@ export type CodestarNotificationsClientResolvedConfigType = __SmithyResolvedConf
164
164
  export interface CodestarNotificationsClientResolvedConfig extends CodestarNotificationsClientResolvedConfigType {
165
165
  }
166
166
  /**
167
- * @public
168
167
  * <p>This AWS CodeStar Notifications API Reference provides descriptions and usage examples of the
169
168
  * operations and data types for the AWS CodeStar Notifications API. You can use the AWS CodeStar Notifications API
170
169
  * to work with the following objects:</p>
@@ -243,6 +242,7 @@ export interface CodestarNotificationsClientResolvedConfig extends CodestarNotif
243
242
  * </ul>
244
243
  * <p> For information about how to use AWS CodeStar Notifications, see the <a href="https://docs.aws.amazon.com/dtconsole/latest/userguide/what-is-dtconsole.html">Amazon Web Services Developer Tools Console User Guide</a>.
245
244
  * </p>
245
+ * @public
246
246
  */
247
247
  export declare class CodestarNotificationsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CodestarNotificationsClientResolvedConfig> {
248
248
  /**
@@ -22,10 +22,10 @@ export interface CreateNotificationRuleCommandOutput extends CreateNotificationR
22
22
  }
23
23
  declare const CreateNotificationRuleCommand_base: {
24
24
  new (input: CreateNotificationRuleCommandInput): import("@smithy/smithy-client").CommandImpl<CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateNotificationRuleCommandInput): import("@smithy/smithy-client").CommandImpl<CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a notification rule for a resource. The rule specifies the events you want
30
30
  * notifications about and the targets (such as Chatbot topics or Chatbot clients configured for Slack) where you want to receive
31
31
  * them.</p>
@@ -94,6 +94,7 @@ declare const CreateNotificationRuleCommand_base: {
94
94
  * @throws {@link CodestarNotificationsServiceException}
95
95
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
96
96
  *
97
+ * @public
97
98
  */
98
99
  export declare class CreateNotificationRuleCommand extends CreateNotificationRuleCommand_base {
99
100
  }
@@ -22,10 +22,10 @@ export interface DeleteNotificationRuleCommandOutput extends DeleteNotificationR
22
22
  }
23
23
  declare const DeleteNotificationRuleCommand_base: {
24
24
  new (input: DeleteNotificationRuleCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteNotificationRuleCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a notification rule for a resource.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -65,6 +65,7 @@ declare const DeleteNotificationRuleCommand_base: {
65
65
  * @throws {@link CodestarNotificationsServiceException}
66
66
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
67
67
  *
68
+ * @public
68
69
  */
69
70
  export declare class DeleteNotificationRuleCommand extends DeleteNotificationRuleCommand_base {
70
71
  }
@@ -22,10 +22,10 @@ export interface DeleteTargetCommandOutput extends DeleteTargetResult, __Metadat
22
22
  }
23
23
  declare const DeleteTargetCommand_base: {
24
24
  new (input: DeleteTargetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTargetCommandInput, DeleteTargetCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteTargetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTargetCommandInput, DeleteTargetCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a specified target for notifications.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -55,6 +55,7 @@ declare const DeleteTargetCommand_base: {
55
55
  * @throws {@link CodestarNotificationsServiceException}
56
56
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
57
57
  *
58
+ * @public
58
59
  */
59
60
  export declare class DeleteTargetCommand extends DeleteTargetCommand_base {
60
61
  }
@@ -22,10 +22,10 @@ export interface DescribeNotificationRuleCommandOutput extends DescribeNotificat
22
22
  }
23
23
  declare const DescribeNotificationRuleCommand_base: {
24
24
  new (input: DescribeNotificationRuleCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeNotificationRuleCommandInput, DescribeNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DescribeNotificationRuleCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeNotificationRuleCommandInput, DescribeNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns information about a specified notification rule.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -84,6 +84,7 @@ declare const DescribeNotificationRuleCommand_base: {
84
84
  * @throws {@link CodestarNotificationsServiceException}
85
85
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
86
86
  *
87
+ * @public
87
88
  */
88
89
  export declare class DescribeNotificationRuleCommand extends DescribeNotificationRuleCommand_base {
89
90
  }
@@ -22,10 +22,10 @@ export interface ListEventTypesCommandOutput extends ListEventTypesResult, __Met
22
22
  }
23
23
  declare const ListEventTypesCommand_base: {
24
24
  new (input: ListEventTypesCommandInput): import("@smithy/smithy-client").CommandImpl<ListEventTypesCommandInput, ListEventTypesCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListEventTypesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListEventTypesCommandInput, ListEventTypesCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns information about the event types available for configuring notifications.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -74,6 +74,7 @@ declare const ListEventTypesCommand_base: {
74
74
  * @throws {@link CodestarNotificationsServiceException}
75
75
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
76
76
  *
77
+ * @public
77
78
  */
78
79
  export declare class ListEventTypesCommand extends ListEventTypesCommand_base {
79
80
  }
@@ -22,10 +22,10 @@ export interface ListNotificationRulesCommandOutput extends ListNotificationRule
22
22
  }
23
23
  declare const ListNotificationRulesCommand_base: {
24
24
  new (input: ListNotificationRulesCommandInput): import("@smithy/smithy-client").CommandImpl<ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListNotificationRulesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of the notification rules for an Amazon Web Services account.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -72,6 +72,7 @@ declare const ListNotificationRulesCommand_base: {
72
72
  * @throws {@link CodestarNotificationsServiceException}
73
73
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
74
74
  *
75
+ * @public
75
76
  */
76
77
  export declare class ListNotificationRulesCommand extends ListNotificationRulesCommand_base {
77
78
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of the tags associated with a notification rule.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -61,6 +61,7 @@ declare const ListTagsForResourceCommand_base: {
61
61
  * @throws {@link CodestarNotificationsServiceException}
62
62
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
63
63
  *
64
+ * @public
64
65
  */
65
66
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
66
67
  }
@@ -22,10 +22,10 @@ export interface ListTargetsCommandOutput extends ListTargetsResult, __MetadataB
22
22
  }
23
23
  declare const ListTargetsCommand_base: {
24
24
  new (input: ListTargetsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTargetsCommandInput, ListTargetsCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListTargetsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListTargetsCommandInput, ListTargetsCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of the notification rule targets for an Amazon Web Services account.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -73,6 +73,7 @@ declare const ListTargetsCommand_base: {
73
73
  * @throws {@link CodestarNotificationsServiceException}
74
74
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
75
75
  *
76
+ * @public
76
77
  */
77
78
  export declare class ListTargetsCommand extends ListTargetsCommand_base {
78
79
  }
@@ -22,10 +22,10 @@ export interface SubscribeCommandOutput extends SubscribeResult, __MetadataBeare
22
22
  }
23
23
  declare const SubscribeCommand_base: {
24
24
  new (input: SubscribeCommandInput): import("@smithy/smithy-client").CommandImpl<SubscribeCommandInput, SubscribeCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: SubscribeCommandInput): import("@smithy/smithy-client").CommandImpl<SubscribeCommandInput, SubscribeCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates an association between a notification rule and an Chatbot topic or Chatbot client so that the
30
30
  * associated target can receive notifications when the events described in the rule are
31
31
  * triggered.</p>
@@ -69,6 +69,7 @@ declare const SubscribeCommand_base: {
69
69
  * @throws {@link CodestarNotificationsServiceException}
70
70
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class SubscribeCommand extends SubscribeCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Associates a set of provided tags with a notification rule.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -73,6 +73,7 @@ declare const TagResourceCommand_base: {
73
73
  * @throws {@link CodestarNotificationsServiceException}
74
74
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
75
75
  *
76
+ * @public
76
77
  */
77
78
  export declare class TagResourceCommand extends TagResourceCommand_base {
78
79
  }
@@ -22,10 +22,10 @@ export interface UnsubscribeCommandOutput extends UnsubscribeResult, __MetadataB
22
22
  }
23
23
  declare const UnsubscribeCommand_base: {
24
24
  new (input: UnsubscribeCommandInput): import("@smithy/smithy-client").CommandImpl<UnsubscribeCommandInput, UnsubscribeCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UnsubscribeCommandInput): import("@smithy/smithy-client").CommandImpl<UnsubscribeCommandInput, UnsubscribeCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes an association between a notification rule and an Chatbot topic so that
30
30
  * subscribers to that topic stop receiving notifications when the events described in the
31
31
  * rule are triggered.</p>
@@ -59,6 +59,7 @@ declare const UnsubscribeCommand_base: {
59
59
  * @throws {@link CodestarNotificationsServiceException}
60
60
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
61
61
  *
62
+ * @public
62
63
  */
63
64
  export declare class UnsubscribeCommand extends UnsubscribeCommand_base {
64
65
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes the association between one or more provided tags and a notification
30
30
  * rule.</p>
31
31
  * @example
@@ -70,6 +70,7 @@ declare const UntagResourceCommand_base: {
70
70
  * @throws {@link CodestarNotificationsServiceException}
71
71
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
72
72
  *
73
+ * @public
73
74
  */
74
75
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
75
76
  }
@@ -22,10 +22,10 @@ export interface UpdateNotificationRuleCommandOutput extends UpdateNotificationR
22
22
  }
23
23
  declare const UpdateNotificationRuleCommand_base: {
24
24
  new (input: UpdateNotificationRuleCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateNotificationRuleCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates a notification rule for a resource. You can change the events that trigger the
30
30
  * notification rule, the status of the rule, and the targets that receive the
31
31
  * notifications.</p>
@@ -77,6 +77,7 @@ declare const UpdateNotificationRuleCommand_base: {
77
77
  * @throws {@link CodestarNotificationsServiceException}
78
78
  * <p>Base exception class for all service exceptions from CodestarNotifications service.</p>
79
79
  *
80
+ * @public
80
81
  */
81
82
  export declare class UpdateNotificationRuleCommand extends UpdateNotificationRuleCommand_base {
82
83
  }
@@ -88,5 +88,4 @@ export { CodestarNotificationsExtensionConfiguration } from "./extensionConfigur
88
88
  export * from "./commands";
89
89
  export * from "./pagination";
90
90
  export * from "./models";
91
- import "@aws-sdk/util-endpoints";
92
91
  export { CodestarNotificationsServiceException } from "./models/CodestarNotificationsServiceException";