@aws-sdk/client-codestar-notifications 3.50.0 → 3.53.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 (44) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/CodestarNotificationsServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +114 -1
  5. package/dist-cjs/protocols/Aws_restJson1.js +139 -375
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/CodestarNotificationsServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +106 -1
  9. package/dist-es/protocols/Aws_restJson1.js +259 -436
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/CodestarNotificationsServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +58 -25
  13. package/dist-types/ts3.4/CodestarNotifications.d.ts +70 -0
  14. package/dist-types/ts3.4/CodestarNotificationsClient.d.ts +86 -0
  15. package/dist-types/ts3.4/commands/CreateNotificationRuleCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/DeleteNotificationRuleCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DeleteTargetCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DescribeNotificationRuleCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/ListEventTypesCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/ListNotificationRulesCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListTargetsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/SubscribeCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/UpdateNotificationRuleCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  29. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  30. package/dist-types/ts3.4/index.d.ts +6 -0
  31. package/dist-types/ts3.4/models/CodestarNotificationsServiceException.d.ts +6 -0
  32. package/dist-types/ts3.4/models/index.d.ts +1 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +465 -0
  34. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  35. package/dist-types/ts3.4/pagination/ListEventTypesPaginator.d.ts +4 -0
  36. package/dist-types/ts3.4/pagination/ListNotificationRulesPaginator.d.ts +4 -0
  37. package/dist-types/ts3.4/pagination/ListTargetsPaginator.d.ts +4 -0
  38. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  39. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +41 -0
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  44. package/package.json +33 -33
@@ -0,0 +1,465 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { CodestarNotificationsServiceException as __BaseException } from "./CodestarNotificationsServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message?: string;
8
+
9
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
+ }
11
+
12
+ export declare class ConcurrentModificationException extends __BaseException {
13
+ readonly name: "ConcurrentModificationException";
14
+ readonly $fault: "client";
15
+ Message?: string;
16
+
17
+ constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
18
+ }
19
+
20
+ export declare class ConfigurationException extends __BaseException {
21
+ readonly name: "ConfigurationException";
22
+ readonly $fault: "client";
23
+ Message?: string;
24
+
25
+ constructor(opts: __ExceptionOptionType<ConfigurationException, __BaseException>);
26
+ }
27
+ export declare enum DetailType {
28
+ BASIC = "BASIC",
29
+ FULL = "FULL"
30
+ }
31
+ export declare enum NotificationRuleStatus {
32
+ DISABLED = "DISABLED",
33
+ ENABLED = "ENABLED"
34
+ }
35
+
36
+ export interface Target {
37
+
38
+ TargetType?: string;
39
+
40
+ TargetAddress?: string;
41
+ }
42
+ export declare namespace Target {
43
+
44
+ const filterSensitiveLog: (obj: Target) => any;
45
+ }
46
+ export interface CreateNotificationRuleRequest {
47
+
48
+ Name: string | undefined;
49
+
50
+ EventTypeIds: string[] | undefined;
51
+
52
+ Resource: string | undefined;
53
+
54
+ Targets: Target[] | undefined;
55
+
56
+ DetailType: DetailType | string | undefined;
57
+
58
+ ClientRequestToken?: string;
59
+
60
+ Tags?: {
61
+ [key: string]: string;
62
+ };
63
+
64
+ Status?: NotificationRuleStatus | string;
65
+ }
66
+ export declare namespace CreateNotificationRuleRequest {
67
+
68
+ const filterSensitiveLog: (obj: CreateNotificationRuleRequest) => any;
69
+ }
70
+ export interface CreateNotificationRuleResult {
71
+
72
+ Arn?: string;
73
+ }
74
+ export declare namespace CreateNotificationRuleResult {
75
+
76
+ const filterSensitiveLog: (obj: CreateNotificationRuleResult) => any;
77
+ }
78
+
79
+ export declare class LimitExceededException extends __BaseException {
80
+ readonly name: "LimitExceededException";
81
+ readonly $fault: "client";
82
+ Message?: string;
83
+
84
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
85
+ }
86
+
87
+ export declare class ResourceAlreadyExistsException extends __BaseException {
88
+ readonly name: "ResourceAlreadyExistsException";
89
+ readonly $fault: "client";
90
+ Message?: string;
91
+
92
+ constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
93
+ }
94
+
95
+ export declare class ValidationException extends __BaseException {
96
+ readonly name: "ValidationException";
97
+ readonly $fault: "client";
98
+ Message?: string;
99
+
100
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
101
+ }
102
+ export interface DeleteNotificationRuleRequest {
103
+
104
+ Arn: string | undefined;
105
+ }
106
+ export declare namespace DeleteNotificationRuleRequest {
107
+
108
+ const filterSensitiveLog: (obj: DeleteNotificationRuleRequest) => any;
109
+ }
110
+ export interface DeleteNotificationRuleResult {
111
+
112
+ Arn?: string;
113
+ }
114
+ export declare namespace DeleteNotificationRuleResult {
115
+
116
+ const filterSensitiveLog: (obj: DeleteNotificationRuleResult) => any;
117
+ }
118
+ export interface DeleteTargetRequest {
119
+
120
+ TargetAddress: string | undefined;
121
+
122
+ ForceUnsubscribeAll?: boolean;
123
+ }
124
+ export declare namespace DeleteTargetRequest {
125
+
126
+ const filterSensitiveLog: (obj: DeleteTargetRequest) => any;
127
+ }
128
+ export interface DeleteTargetResult {
129
+ }
130
+ export declare namespace DeleteTargetResult {
131
+
132
+ const filterSensitiveLog: (obj: DeleteTargetResult) => any;
133
+ }
134
+ export interface DescribeNotificationRuleRequest {
135
+
136
+ Arn: string | undefined;
137
+ }
138
+ export declare namespace DescribeNotificationRuleRequest {
139
+
140
+ const filterSensitiveLog: (obj: DescribeNotificationRuleRequest) => any;
141
+ }
142
+
143
+ export interface EventTypeSummary {
144
+
145
+ EventTypeId?: string;
146
+
147
+ ServiceName?: string;
148
+
149
+ EventTypeName?: string;
150
+
151
+ ResourceType?: string;
152
+ }
153
+ export declare namespace EventTypeSummary {
154
+
155
+ const filterSensitiveLog: (obj: EventTypeSummary) => any;
156
+ }
157
+ export declare enum TargetStatus {
158
+ ACTIVE = "ACTIVE",
159
+ DEACTIVATED = "DEACTIVATED",
160
+ INACTIVE = "INACTIVE",
161
+ PENDING = "PENDING",
162
+ UNREACHABLE = "UNREACHABLE"
163
+ }
164
+
165
+ export interface TargetSummary {
166
+
167
+ TargetAddress?: string;
168
+
169
+ TargetType?: string;
170
+
171
+ TargetStatus?: TargetStatus | string;
172
+ }
173
+ export declare namespace TargetSummary {
174
+
175
+ const filterSensitiveLog: (obj: TargetSummary) => any;
176
+ }
177
+ export interface DescribeNotificationRuleResult {
178
+
179
+ Arn: string | undefined;
180
+
181
+ Name?: string;
182
+
183
+ EventTypes?: EventTypeSummary[];
184
+
185
+ Resource?: string;
186
+
187
+ Targets?: TargetSummary[];
188
+
189
+ DetailType?: DetailType | string;
190
+
191
+ CreatedBy?: string;
192
+
193
+ Status?: NotificationRuleStatus | string;
194
+
195
+ CreatedTimestamp?: Date;
196
+
197
+ LastModifiedTimestamp?: Date;
198
+
199
+ Tags?: {
200
+ [key: string]: string;
201
+ };
202
+ }
203
+ export declare namespace DescribeNotificationRuleResult {
204
+
205
+ const filterSensitiveLog: (obj: DescribeNotificationRuleResult) => any;
206
+ }
207
+
208
+ export declare class ResourceNotFoundException extends __BaseException {
209
+ readonly name: "ResourceNotFoundException";
210
+ readonly $fault: "client";
211
+ Message?: string;
212
+
213
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
214
+ }
215
+
216
+ export declare class InvalidNextTokenException extends __BaseException {
217
+ readonly name: "InvalidNextTokenException";
218
+ readonly $fault: "client";
219
+ Message?: string;
220
+
221
+ constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
222
+ }
223
+ export declare enum ListEventTypesFilterName {
224
+ RESOURCE_TYPE = "RESOURCE_TYPE",
225
+ SERVICE_NAME = "SERVICE_NAME"
226
+ }
227
+
228
+ export interface ListEventTypesFilter {
229
+
230
+ Name: ListEventTypesFilterName | string | undefined;
231
+
232
+ Value: string | undefined;
233
+ }
234
+ export declare namespace ListEventTypesFilter {
235
+
236
+ const filterSensitiveLog: (obj: ListEventTypesFilter) => any;
237
+ }
238
+ export interface ListEventTypesRequest {
239
+
240
+ Filters?: ListEventTypesFilter[];
241
+
242
+ NextToken?: string;
243
+
244
+ MaxResults?: number;
245
+ }
246
+ export declare namespace ListEventTypesRequest {
247
+
248
+ const filterSensitiveLog: (obj: ListEventTypesRequest) => any;
249
+ }
250
+ export interface ListEventTypesResult {
251
+
252
+ EventTypes?: EventTypeSummary[];
253
+
254
+ NextToken?: string;
255
+ }
256
+ export declare namespace ListEventTypesResult {
257
+
258
+ const filterSensitiveLog: (obj: ListEventTypesResult) => any;
259
+ }
260
+ export declare enum ListNotificationRulesFilterName {
261
+ CREATED_BY = "CREATED_BY",
262
+ EVENT_TYPE_ID = "EVENT_TYPE_ID",
263
+ RESOURCE = "RESOURCE",
264
+ TARGET_ADDRESS = "TARGET_ADDRESS"
265
+ }
266
+
267
+ export interface ListNotificationRulesFilter {
268
+
269
+ Name: ListNotificationRulesFilterName | string | undefined;
270
+
271
+ Value: string | undefined;
272
+ }
273
+ export declare namespace ListNotificationRulesFilter {
274
+
275
+ const filterSensitiveLog: (obj: ListNotificationRulesFilter) => any;
276
+ }
277
+ export interface ListNotificationRulesRequest {
278
+
279
+ Filters?: ListNotificationRulesFilter[];
280
+
281
+ NextToken?: string;
282
+
283
+ MaxResults?: number;
284
+ }
285
+ export declare namespace ListNotificationRulesRequest {
286
+
287
+ const filterSensitiveLog: (obj: ListNotificationRulesRequest) => any;
288
+ }
289
+
290
+ export interface NotificationRuleSummary {
291
+
292
+ Id?: string;
293
+
294
+ Arn?: string;
295
+ }
296
+ export declare namespace NotificationRuleSummary {
297
+
298
+ const filterSensitiveLog: (obj: NotificationRuleSummary) => any;
299
+ }
300
+ export interface ListNotificationRulesResult {
301
+
302
+ NextToken?: string;
303
+
304
+ NotificationRules?: NotificationRuleSummary[];
305
+ }
306
+ export declare namespace ListNotificationRulesResult {
307
+
308
+ const filterSensitiveLog: (obj: ListNotificationRulesResult) => any;
309
+ }
310
+ export interface ListTagsForResourceRequest {
311
+
312
+ Arn: string | undefined;
313
+ }
314
+ export declare namespace ListTagsForResourceRequest {
315
+
316
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
317
+ }
318
+ export interface ListTagsForResourceResult {
319
+
320
+ Tags?: {
321
+ [key: string]: string;
322
+ };
323
+ }
324
+ export declare namespace ListTagsForResourceResult {
325
+
326
+ const filterSensitiveLog: (obj: ListTagsForResourceResult) => any;
327
+ }
328
+ export declare enum ListTargetsFilterName {
329
+ TARGET_ADDRESS = "TARGET_ADDRESS",
330
+ TARGET_STATUS = "TARGET_STATUS",
331
+ TARGET_TYPE = "TARGET_TYPE"
332
+ }
333
+
334
+ export interface ListTargetsFilter {
335
+
336
+ Name: ListTargetsFilterName | string | undefined;
337
+
338
+ Value: string | undefined;
339
+ }
340
+ export declare namespace ListTargetsFilter {
341
+
342
+ const filterSensitiveLog: (obj: ListTargetsFilter) => any;
343
+ }
344
+ export interface ListTargetsRequest {
345
+
346
+ Filters?: ListTargetsFilter[];
347
+
348
+ NextToken?: string;
349
+
350
+ MaxResults?: number;
351
+ }
352
+ export declare namespace ListTargetsRequest {
353
+
354
+ const filterSensitiveLog: (obj: ListTargetsRequest) => any;
355
+ }
356
+ export interface ListTargetsResult {
357
+
358
+ Targets?: TargetSummary[];
359
+
360
+ NextToken?: string;
361
+ }
362
+ export declare namespace ListTargetsResult {
363
+
364
+ const filterSensitiveLog: (obj: ListTargetsResult) => any;
365
+ }
366
+ export interface SubscribeRequest {
367
+
368
+ Arn: string | undefined;
369
+
370
+ Target: Target | undefined;
371
+
372
+ ClientRequestToken?: string;
373
+ }
374
+ export declare namespace SubscribeRequest {
375
+
376
+ const filterSensitiveLog: (obj: SubscribeRequest) => any;
377
+ }
378
+ export interface SubscribeResult {
379
+
380
+ Arn?: string;
381
+ }
382
+ export declare namespace SubscribeResult {
383
+
384
+ const filterSensitiveLog: (obj: SubscribeResult) => any;
385
+ }
386
+ export interface TagResourceRequest {
387
+
388
+ Arn: string | undefined;
389
+
390
+ Tags: {
391
+ [key: string]: string;
392
+ } | undefined;
393
+ }
394
+ export declare namespace TagResourceRequest {
395
+
396
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
397
+ }
398
+ export interface TagResourceResult {
399
+
400
+ Tags?: {
401
+ [key: string]: string;
402
+ };
403
+ }
404
+ export declare namespace TagResourceResult {
405
+
406
+ const filterSensitiveLog: (obj: TagResourceResult) => any;
407
+ }
408
+ export interface UnsubscribeRequest {
409
+
410
+ Arn: string | undefined;
411
+
412
+ TargetAddress: string | undefined;
413
+ }
414
+ export declare namespace UnsubscribeRequest {
415
+
416
+ const filterSensitiveLog: (obj: UnsubscribeRequest) => any;
417
+ }
418
+ export interface UnsubscribeResult {
419
+
420
+ Arn: string | undefined;
421
+ }
422
+ export declare namespace UnsubscribeResult {
423
+
424
+ const filterSensitiveLog: (obj: UnsubscribeResult) => any;
425
+ }
426
+ export interface UntagResourceRequest {
427
+
428
+ Arn: string | undefined;
429
+
430
+ TagKeys: string[] | undefined;
431
+ }
432
+ export declare namespace UntagResourceRequest {
433
+
434
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
435
+ }
436
+ export interface UntagResourceResult {
437
+ }
438
+ export declare namespace UntagResourceResult {
439
+
440
+ const filterSensitiveLog: (obj: UntagResourceResult) => any;
441
+ }
442
+ export interface UpdateNotificationRuleRequest {
443
+
444
+ Arn: string | undefined;
445
+
446
+ Name?: string;
447
+
448
+ Status?: NotificationRuleStatus | string;
449
+
450
+ EventTypeIds?: string[];
451
+
452
+ Targets?: Target[];
453
+
454
+ DetailType?: DetailType | string;
455
+ }
456
+ export declare namespace UpdateNotificationRuleRequest {
457
+
458
+ const filterSensitiveLog: (obj: UpdateNotificationRuleRequest) => any;
459
+ }
460
+ export interface UpdateNotificationRuleResult {
461
+ }
462
+ export declare namespace UpdateNotificationRuleResult {
463
+
464
+ const filterSensitiveLog: (obj: UpdateNotificationRuleResult) => any;
465
+ }
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { CodestarNotifications } from "../CodestarNotifications";
3
+ import { CodestarNotificationsClient } from "../CodestarNotificationsClient";
4
+ export interface CodestarNotificationsPaginationConfiguration extends PaginationConfiguration {
5
+ client: CodestarNotifications | CodestarNotificationsClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListEventTypesCommandInput, ListEventTypesCommandOutput } from "../commands/ListEventTypesCommand";
3
+ import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListEventTypes(config: CodestarNotificationsPaginationConfiguration, input: ListEventTypesCommandInput, ...additionalArguments: any): Paginator<ListEventTypesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput } from "../commands/ListNotificationRulesCommand";
3
+ import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListNotificationRules(config: CodestarNotificationsPaginationConfiguration, input: ListNotificationRulesCommandInput, ...additionalArguments: any): Paginator<ListNotificationRulesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListTargetsCommandInput, ListTargetsCommandOutput } from "../commands/ListTargetsCommand";
3
+ import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListTargets(config: CodestarNotificationsPaginationConfiguration, input: ListTargetsCommandInput, ...additionalArguments: any): Paginator<ListTargetsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListEventTypesPaginator";
3
+ export * from "./ListNotificationRulesPaginator";
4
+ export * from "./ListTargetsPaginator";
@@ -0,0 +1,41 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput } from "../commands/CreateNotificationRuleCommand";
4
+ import { DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput } from "../commands/DeleteNotificationRuleCommand";
5
+ import { DeleteTargetCommandInput, DeleteTargetCommandOutput } from "../commands/DeleteTargetCommand";
6
+ import { DescribeNotificationRuleCommandInput, DescribeNotificationRuleCommandOutput } from "../commands/DescribeNotificationRuleCommand";
7
+ import { ListEventTypesCommandInput, ListEventTypesCommandOutput } from "../commands/ListEventTypesCommand";
8
+ import { ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput } from "../commands/ListNotificationRulesCommand";
9
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
10
+ import { ListTargetsCommandInput, ListTargetsCommandOutput } from "../commands/ListTargetsCommand";
11
+ import { SubscribeCommandInput, SubscribeCommandOutput } from "../commands/SubscribeCommand";
12
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
13
+ import { UnsubscribeCommandInput, UnsubscribeCommandOutput } from "../commands/UnsubscribeCommand";
14
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
15
+ import { UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput } from "../commands/UpdateNotificationRuleCommand";
16
+ export declare const serializeAws_restJson1CreateNotificationRuleCommand: (input: CreateNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
+ export declare const serializeAws_restJson1DeleteNotificationRuleCommand: (input: DeleteNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ export declare const serializeAws_restJson1DeleteTargetCommand: (input: DeleteTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_restJson1DescribeNotificationRuleCommand: (input: DescribeNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_restJson1ListEventTypesCommand: (input: ListEventTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_restJson1ListNotificationRulesCommand: (input: ListNotificationRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const serializeAws_restJson1ListTargetsCommand: (input: ListTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ export declare const serializeAws_restJson1SubscribeCommand: (input: SubscribeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1UnsubscribeCommand: (input: UnsubscribeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_restJson1UpdateNotificationRuleCommand: (input: UpdateNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const deserializeAws_restJson1CreateNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNotificationRuleCommandOutput>;
30
+ export declare const deserializeAws_restJson1DeleteNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNotificationRuleCommandOutput>;
31
+ export declare const deserializeAws_restJson1DeleteTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTargetCommandOutput>;
32
+ export declare const deserializeAws_restJson1DescribeNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeNotificationRuleCommandOutput>;
33
+ export declare const deserializeAws_restJson1ListEventTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventTypesCommandOutput>;
34
+ export declare const deserializeAws_restJson1ListNotificationRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNotificationRulesCommandOutput>;
35
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
36
+ export declare const deserializeAws_restJson1ListTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTargetsCommandOutput>;
37
+ export declare const deserializeAws_restJson1SubscribeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubscribeCommandOutput>;
38
+ export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
39
+ export declare const deserializeAws_restJson1UnsubscribeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UnsubscribeCommandOutput>;
40
+ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
41
+ export declare const deserializeAws_restJson1UpdateNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNotificationRuleCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
3
+
4
+ export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
3
+
4
+ export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,37 @@
1
+ import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
2
+
3
+ export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
3
+
4
+ export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };