@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 { UpdateNotificationRuleRequest, UpdateNotificationRuleResult } from "../models/models_0";
5
- export interface UpdateNotificationRuleCommandInput extends UpdateNotificationRuleRequest {
6
- }
7
- export interface UpdateNotificationRuleCommandOutput extends UpdateNotificationRuleResult, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateNotificationRuleCommand extends $Command<UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput, CodestarNotificationsClientResolvedConfig> {
11
- readonly input: UpdateNotificationRuleCommandInput;
12
- constructor(input: UpdateNotificationRuleCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodestarNotificationsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput>;
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
+ UpdateNotificationRuleRequest,
15
+ UpdateNotificationRuleResult,
16
+ } from "../models/models_0";
17
+ export interface UpdateNotificationRuleCommandInput
18
+ extends UpdateNotificationRuleRequest {}
19
+ export interface UpdateNotificationRuleCommandOutput
20
+ extends UpdateNotificationRuleResult,
21
+ __MetadataBearer {}
22
+ export declare class UpdateNotificationRuleCommand extends $Command<
23
+ UpdateNotificationRuleCommandInput,
24
+ UpdateNotificationRuleCommandOutput,
25
+ CodestarNotificationsClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateNotificationRuleCommandInput;
28
+ constructor(input: UpdateNotificationRuleCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: CodestarNotificationsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ UpdateNotificationRuleCommandInput,
35
+ UpdateNotificationRuleCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,13 +1,13 @@
1
- export * from "./CreateNotificationRuleCommand";
2
- export * from "./DeleteNotificationRuleCommand";
3
- export * from "./DeleteTargetCommand";
4
- export * from "./DescribeNotificationRuleCommand";
5
- export * from "./ListEventTypesCommand";
6
- export * from "./ListNotificationRulesCommand";
7
- export * from "./ListTagsForResourceCommand";
8
- export * from "./ListTargetsCommand";
9
- export * from "./SubscribeCommand";
10
- export * from "./TagResourceCommand";
11
- export * from "./UnsubscribeCommand";
12
- export * from "./UntagResourceCommand";
13
- export * from "./UpdateNotificationRuleCommand";
1
+ export * from "./CreateNotificationRuleCommand";
2
+ export * from "./DeleteNotificationRuleCommand";
3
+ export * from "./DeleteTargetCommand";
4
+ export * from "./DescribeNotificationRuleCommand";
5
+ export * from "./ListEventTypesCommand";
6
+ export * from "./ListNotificationRulesCommand";
7
+ export * from "./ListTagsForResourceCommand";
8
+ export * from "./ListTargetsCommand";
9
+ export * from "./SubscribeCommand";
10
+ export * from "./TagResourceCommand";
11
+ export * from "./UnsubscribeCommand";
12
+ export * from "./UntagResourceCommand";
13
+ export * from "./UpdateNotificationRuleCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./CodestarNotifications";
2
- export * from "./CodestarNotificationsClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { CodestarNotificationsServiceException } from "./models/CodestarNotificationsServiceException";
1
+ export * from "./CodestarNotifications";
2
+ export * from "./CodestarNotificationsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { CodestarNotificationsServiceException } from "./models/CodestarNotificationsServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class CodestarNotificationsServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class CodestarNotificationsServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";