@aws-sdk/client-support-app 3.379.1 → 3.385.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.
@@ -80,31 +80,38 @@ export type NotificationSeverityLevel = (typeof NotificationSeverityLevel)[keyof
80
80
  */
81
81
  export interface CreateSlackChannelConfigurationRequest {
82
82
  /**
83
+ * @public
83
84
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
84
85
  * <code>T012ABCDEFG</code>.</p>
85
86
  */
86
87
  teamId: string | undefined;
87
88
  /**
89
+ * @public
88
90
  * <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
89
91
  */
90
92
  channelId: string | undefined;
91
93
  /**
94
+ * @public
92
95
  * <p>The name of the Slack channel that you configure for the Amazon Web Services Support App.</p>
93
96
  */
94
97
  channelName?: string;
95
98
  /**
99
+ * @public
96
100
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
97
101
  */
98
102
  notifyOnCreateOrReopenCase?: boolean;
99
103
  /**
104
+ * @public
100
105
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
101
106
  */
102
107
  notifyOnAddCorrespondenceToCase?: boolean;
103
108
  /**
109
+ * @public
104
110
  * <p>Whether you want to get notified when a support case is resolved.</p>
105
111
  */
106
112
  notifyOnResolveCase?: boolean;
107
113
  /**
114
+ * @public
108
115
  * <p>The case severity for a support case that you want to receive notifications.</p>
109
116
  * <p>If you specify <code>high</code> or <code>all</code>, you must specify <code>true</code>
110
117
  * for at least one of the following parameters:</p>
@@ -151,6 +158,7 @@ export interface CreateSlackChannelConfigurationRequest {
151
158
  */
152
159
  notifyOnCaseSeverity: NotificationSeverityLevel | string | undefined;
153
160
  /**
161
+ * @public
154
162
  * <p>The Amazon Resource Name (ARN) of an IAM role that you want to
155
163
  * use to perform operations on Amazon Web Services. For more information, see <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to
156
164
  * the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
@@ -228,11 +236,13 @@ export declare class ResourceNotFoundException extends __BaseException {
228
236
  */
229
237
  export interface DeleteSlackChannelConfigurationRequest {
230
238
  /**
239
+ * @public
231
240
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
232
241
  * <code>T012ABCDEFG</code>.</p>
233
242
  */
234
243
  teamId: string | undefined;
235
244
  /**
245
+ * @public
236
246
  * <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
237
247
  */
238
248
  channelId: string | undefined;
@@ -247,6 +257,7 @@ export interface DeleteSlackChannelConfigurationResult {
247
257
  */
248
258
  export interface DeleteSlackWorkspaceConfigurationRequest {
249
259
  /**
260
+ * @public
250
261
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
251
262
  * <code>T012ABCDEFG</code>.</p>
252
263
  */
@@ -267,6 +278,7 @@ export interface GetAccountAliasRequest {
267
278
  */
268
279
  export interface GetAccountAliasResult {
269
280
  /**
281
+ * @public
270
282
  * <p>An alias or short name for an Amazon Web Services account.</p>
271
283
  */
272
284
  accountAlias?: string;
@@ -276,6 +288,7 @@ export interface GetAccountAliasResult {
276
288
  */
277
289
  export interface ListSlackChannelConfigurationsRequest {
278
290
  /**
291
+ * @public
279
292
  * <p>If the results of a search are large, the API only returns a portion of the results and
280
293
  * includes a <code>nextToken</code> pagination token in the response. To retrieve the next batch of results, reissue the search request and include the returned token.
281
294
  * When the API returns the last set of results, the response doesn't include a pagination token value.</p>
@@ -288,36 +301,44 @@ export interface ListSlackChannelConfigurationsRequest {
288
301
  */
289
302
  export interface SlackChannelConfiguration {
290
303
  /**
304
+ * @public
291
305
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
292
306
  * <code>T012ABCDEFG</code>.</p>
293
307
  */
294
308
  teamId: string | undefined;
295
309
  /**
310
+ * @public
296
311
  * <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
297
312
  */
298
313
  channelId: string | undefined;
299
314
  /**
315
+ * @public
300
316
  * <p>The name of the Slack channel that you configured with the Amazon Web Services Support App for your
301
317
  * Amazon Web Services account.</p>
302
318
  */
303
319
  channelName?: string;
304
320
  /**
321
+ * @public
305
322
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
306
323
  */
307
324
  notifyOnCreateOrReopenCase?: boolean;
308
325
  /**
326
+ * @public
309
327
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
310
328
  */
311
329
  notifyOnAddCorrespondenceToCase?: boolean;
312
330
  /**
331
+ * @public
313
332
  * <p>Whether you want to get notified when a support case is resolved.</p>
314
333
  */
315
334
  notifyOnResolveCase?: boolean;
316
335
  /**
336
+ * @public
317
337
  * <p>The case severity for a support case that you want to receive notifications.</p>
318
338
  */
319
339
  notifyOnCaseSeverity?: NotificationSeverityLevel | string;
320
340
  /**
341
+ * @public
321
342
  * <p>The Amazon Resource Name (ARN) of an IAM role that you want to
322
343
  * use to perform operations on Amazon Web Services. For more information, see <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to
323
344
  * the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
@@ -329,11 +350,13 @@ export interface SlackChannelConfiguration {
329
350
  */
330
351
  export interface ListSlackChannelConfigurationsResult {
331
352
  /**
353
+ * @public
332
354
  * <p>The point where pagination should resume when the response returns only partial
333
355
  * results.</p>
334
356
  */
335
357
  nextToken?: string;
336
358
  /**
359
+ * @public
337
360
  * <p>The configurations for a Slack channel.</p>
338
361
  */
339
362
  slackChannelConfigurations: SlackChannelConfiguration[] | undefined;
@@ -343,6 +366,7 @@ export interface ListSlackChannelConfigurationsResult {
343
366
  */
344
367
  export interface ListSlackWorkspaceConfigurationsRequest {
345
368
  /**
369
+ * @public
346
370
  * <p>If the results of a search are large, the API only returns a portion of the results and
347
371
  * includes a <code>nextToken</code> pagination token in the response. To retrieve the next batch of results, reissue the search request and include the returned token.
348
372
  * When the API returns the last set of results, the response doesn't include a pagination token value.</p>
@@ -355,15 +379,18 @@ export interface ListSlackWorkspaceConfigurationsRequest {
355
379
  */
356
380
  export interface SlackWorkspaceConfiguration {
357
381
  /**
382
+ * @public
358
383
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
359
384
  * <code>T012ABCDEFG</code>.</p>
360
385
  */
361
386
  teamId: string | undefined;
362
387
  /**
388
+ * @public
363
389
  * <p>The name of the Slack workspace.</p>
364
390
  */
365
391
  teamName?: string;
366
392
  /**
393
+ * @public
367
394
  * <p>Whether to allow member accounts to authorize Slack workspaces. Member accounts must be
368
395
  * part of an organization in Organizations.</p>
369
396
  */
@@ -374,11 +401,13 @@ export interface SlackWorkspaceConfiguration {
374
401
  */
375
402
  export interface ListSlackWorkspaceConfigurationsResult {
376
403
  /**
404
+ * @public
377
405
  * <p>The point where pagination should resume when the response returns only partial
378
406
  * results.</p>
379
407
  */
380
408
  nextToken?: string;
381
409
  /**
410
+ * @public
382
411
  * <p>The configurations for a Slack workspace.</p>
383
412
  */
384
413
  slackWorkspaceConfigurations?: SlackWorkspaceConfiguration[];
@@ -388,6 +417,7 @@ export interface ListSlackWorkspaceConfigurationsResult {
388
417
  */
389
418
  export interface PutAccountAliasRequest {
390
419
  /**
420
+ * @public
391
421
  * <p>An alias or short name for an Amazon Web Services account.</p>
392
422
  */
393
423
  accountAlias: string | undefined;
@@ -402,6 +432,7 @@ export interface PutAccountAliasResult {
402
432
  */
403
433
  export interface RegisterSlackWorkspaceForOrganizationRequest {
404
434
  /**
435
+ * @public
405
436
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
406
437
  * <code>T012ABCDEFG</code>. Specify the Slack workspace that you want to use for your organization.</p>
407
438
  */
@@ -412,15 +443,18 @@ export interface RegisterSlackWorkspaceForOrganizationRequest {
412
443
  */
413
444
  export interface RegisterSlackWorkspaceForOrganizationResult {
414
445
  /**
446
+ * @public
415
447
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
416
448
  * <code>T012ABCDEFG</code>.</p>
417
449
  */
418
450
  teamId?: string;
419
451
  /**
452
+ * @public
420
453
  * <p>The name of the Slack workspace.</p>
421
454
  */
422
455
  teamName?: string;
423
456
  /**
457
+ * @public
424
458
  * <p>Whether the Amazon Web Services account is a management or member account that's part of an organization
425
459
  * in Organizations.</p>
426
460
  */
@@ -431,31 +465,38 @@ export interface RegisterSlackWorkspaceForOrganizationResult {
431
465
  */
432
466
  export interface UpdateSlackChannelConfigurationRequest {
433
467
  /**
468
+ * @public
434
469
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
435
470
  * <code>T012ABCDEFG</code>.</p>
436
471
  */
437
472
  teamId: string | undefined;
438
473
  /**
474
+ * @public
439
475
  * <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
440
476
  */
441
477
  channelId: string | undefined;
442
478
  /**
479
+ * @public
443
480
  * <p>The Slack channel name that you want to update.</p>
444
481
  */
445
482
  channelName?: string;
446
483
  /**
484
+ * @public
447
485
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
448
486
  */
449
487
  notifyOnCreateOrReopenCase?: boolean;
450
488
  /**
489
+ * @public
451
490
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
452
491
  */
453
492
  notifyOnAddCorrespondenceToCase?: boolean;
454
493
  /**
494
+ * @public
455
495
  * <p>Whether you want to get notified when a support case is resolved.</p>
456
496
  */
457
497
  notifyOnResolveCase?: boolean;
458
498
  /**
499
+ * @public
459
500
  * <p>The case severity for a support case that you want to receive notifications.</p>
460
501
  * <p>If you specify <code>high</code> or <code>all</code>, at least one of the following
461
502
  * parameters must be <code>true</code>:</p>
@@ -502,6 +543,7 @@ export interface UpdateSlackChannelConfigurationRequest {
502
543
  */
503
544
  notifyOnCaseSeverity?: NotificationSeverityLevel | string;
504
545
  /**
546
+ * @public
505
547
  * <p>The Amazon Resource Name (ARN) of an IAM role that you want to
506
548
  * use to perform operations on Amazon Web Services. For more information, see <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to
507
549
  * the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
@@ -513,35 +555,43 @@ export interface UpdateSlackChannelConfigurationRequest {
513
555
  */
514
556
  export interface UpdateSlackChannelConfigurationResult {
515
557
  /**
558
+ * @public
516
559
  * <p>The team ID in Slack. This ID uniquely identifies a Slack workspace, such as
517
560
  * <code>T012ABCDEFG</code>.</p>
518
561
  */
519
562
  teamId?: string;
520
563
  /**
564
+ * @public
521
565
  * <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
522
566
  */
523
567
  channelId?: string;
524
568
  /**
569
+ * @public
525
570
  * <p>The name of the Slack channel that you configure for the Amazon Web Services Support App.</p>
526
571
  */
527
572
  channelName?: string;
528
573
  /**
574
+ * @public
529
575
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
530
576
  */
531
577
  notifyOnCreateOrReopenCase?: boolean;
532
578
  /**
579
+ * @public
533
580
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
534
581
  */
535
582
  notifyOnAddCorrespondenceToCase?: boolean;
536
583
  /**
584
+ * @public
537
585
  * <p>Whether you want to get notified when a support case is resolved.</p>
538
586
  */
539
587
  notifyOnResolveCase?: boolean;
540
588
  /**
589
+ * @public
541
590
  * <p>The case severity for a support case that you want to receive notifications.</p>
542
591
  */
543
592
  notifyOnCaseSeverity?: NotificationSeverityLevel | string;
544
593
  /**
594
+ * @public
545
595
  * <p>The Amazon Resource Name (ARN) of an IAM role that you want to
546
596
  * use to perform operations on Amazon Web Services. For more information, see <a href="https://docs.aws.amazon.com/awssupport/latest/user/support-app-permissions.html">Managing access to
547
597
  * the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-support-app",
3
3
  "description": "AWS SDK for JavaScript Support App Client for Node.js, Browser and React Native",
4
- "version": "3.379.1",
4
+ "version": "3.385.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,15 +21,15 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.379.1",
25
- "@aws-sdk/credential-provider-node": "3.379.1",
24
+ "@aws-sdk/client-sts": "3.385.0",
25
+ "@aws-sdk/credential-provider-node": "3.385.0",
26
26
  "@aws-sdk/middleware-host-header": "3.379.1",
27
27
  "@aws-sdk/middleware-logger": "3.378.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
29
  "@aws-sdk/middleware-signing": "3.379.1",
30
- "@aws-sdk/middleware-user-agent": "3.379.1",
30
+ "@aws-sdk/middleware-user-agent": "3.382.0",
31
31
  "@aws-sdk/types": "3.378.0",
32
- "@aws-sdk/util-endpoints": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.382.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.378.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.378.0",
35
35
  "@smithy/config-resolver": "^2.0.1",