@aws-sdk/client-support-app 3.686.0 → 3.691.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.
@@ -94,22 +94,22 @@ export interface CreateSlackChannelConfigurationRequest {
94
94
  * <p>The name of the Slack channel that you configure for the Amazon Web Services Support App.</p>
95
95
  * @public
96
96
  */
97
- channelName?: string;
97
+ channelName?: string | undefined;
98
98
  /**
99
99
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
100
100
  * @public
101
101
  */
102
- notifyOnCreateOrReopenCase?: boolean;
102
+ notifyOnCreateOrReopenCase?: boolean | undefined;
103
103
  /**
104
104
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
105
105
  * @public
106
106
  */
107
- notifyOnAddCorrespondenceToCase?: boolean;
107
+ notifyOnAddCorrespondenceToCase?: boolean | undefined;
108
108
  /**
109
109
  * <p>Whether you want to get notified when a support case is resolved.</p>
110
110
  * @public
111
111
  */
112
- notifyOnResolveCase?: boolean;
112
+ notifyOnResolveCase?: boolean | undefined;
113
113
  /**
114
114
  * <p>The case severity for a support case that you want to receive notifications.</p>
115
115
  * <p>If you specify <code>high</code> or <code>all</code>, you must specify <code>true</code>
@@ -281,7 +281,7 @@ export interface GetAccountAliasResult {
281
281
  * <p>An alias or short name for an Amazon Web Services account.</p>
282
282
  * @public
283
283
  */
284
- accountAlias?: string;
284
+ accountAlias?: string | undefined;
285
285
  }
286
286
  /**
287
287
  * @public
@@ -293,7 +293,7 @@ export interface ListSlackChannelConfigurationsRequest {
293
293
  * When the API returns the last set of results, the response doesn't include a pagination token value.</p>
294
294
  * @public
295
295
  */
296
- nextToken?: string;
296
+ nextToken?: string | undefined;
297
297
  }
298
298
  /**
299
299
  * <p>The configuration for a Slack channel that you added for your Amazon Web Services account.</p>
@@ -316,34 +316,34 @@ export interface SlackChannelConfiguration {
316
316
  * Amazon Web Services account.</p>
317
317
  * @public
318
318
  */
319
- channelName?: string;
319
+ channelName?: string | undefined;
320
320
  /**
321
321
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
322
322
  * @public
323
323
  */
324
- notifyOnCreateOrReopenCase?: boolean;
324
+ notifyOnCreateOrReopenCase?: boolean | undefined;
325
325
  /**
326
326
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
327
327
  * @public
328
328
  */
329
- notifyOnAddCorrespondenceToCase?: boolean;
329
+ notifyOnAddCorrespondenceToCase?: boolean | undefined;
330
330
  /**
331
331
  * <p>Whether you want to get notified when a support case is resolved.</p>
332
332
  * @public
333
333
  */
334
- notifyOnResolveCase?: boolean;
334
+ notifyOnResolveCase?: boolean | undefined;
335
335
  /**
336
336
  * <p>The case severity for a support case that you want to receive notifications.</p>
337
337
  * @public
338
338
  */
339
- notifyOnCaseSeverity?: NotificationSeverityLevel;
339
+ notifyOnCaseSeverity?: NotificationSeverityLevel | undefined;
340
340
  /**
341
341
  * <p>The Amazon Resource Name (ARN) of an IAM role that you want to
342
342
  * 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
343
343
  * the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
344
344
  * @public
345
345
  */
346
- channelRoleArn?: string;
346
+ channelRoleArn?: string | undefined;
347
347
  }
348
348
  /**
349
349
  * @public
@@ -354,7 +354,7 @@ export interface ListSlackChannelConfigurationsResult {
354
354
  * results.</p>
355
355
  * @public
356
356
  */
357
- nextToken?: string;
357
+ nextToken?: string | undefined;
358
358
  /**
359
359
  * <p>The configurations for a Slack channel.</p>
360
360
  * @public
@@ -371,7 +371,7 @@ export interface ListSlackWorkspaceConfigurationsRequest {
371
371
  * When the API returns the last set of results, the response doesn't include a pagination token value.</p>
372
372
  * @public
373
373
  */
374
- nextToken?: string;
374
+ nextToken?: string | undefined;
375
375
  }
376
376
  /**
377
377
  * <p>The configuration for a Slack workspace that you added to an Amazon Web Services account.</p>
@@ -388,13 +388,13 @@ export interface SlackWorkspaceConfiguration {
388
388
  * <p>The name of the Slack workspace.</p>
389
389
  * @public
390
390
  */
391
- teamName?: string;
391
+ teamName?: string | undefined;
392
392
  /**
393
393
  * <p>Whether to allow member accounts to authorize Slack workspaces. Member accounts must be
394
394
  * part of an organization in Organizations.</p>
395
395
  * @public
396
396
  */
397
- allowOrganizationMemberAccount?: boolean;
397
+ allowOrganizationMemberAccount?: boolean | undefined;
398
398
  }
399
399
  /**
400
400
  * @public
@@ -405,12 +405,12 @@ export interface ListSlackWorkspaceConfigurationsResult {
405
405
  * results.</p>
406
406
  * @public
407
407
  */
408
- nextToken?: string;
408
+ nextToken?: string | undefined;
409
409
  /**
410
410
  * <p>The configurations for a Slack workspace.</p>
411
411
  * @public
412
412
  */
413
- slackWorkspaceConfigurations?: SlackWorkspaceConfiguration[];
413
+ slackWorkspaceConfigurations?: SlackWorkspaceConfiguration[] | undefined;
414
414
  }
415
415
  /**
416
416
  * @public
@@ -447,18 +447,18 @@ export interface RegisterSlackWorkspaceForOrganizationResult {
447
447
  * <code>T012ABCDEFG</code>.</p>
448
448
  * @public
449
449
  */
450
- teamId?: string;
450
+ teamId?: string | undefined;
451
451
  /**
452
452
  * <p>The name of the Slack workspace.</p>
453
453
  * @public
454
454
  */
455
- teamName?: string;
455
+ teamName?: string | undefined;
456
456
  /**
457
457
  * <p>Whether the Amazon Web Services account is a management or member account that's part of an organization
458
458
  * in Organizations.</p>
459
459
  * @public
460
460
  */
461
- accountType?: AccountType;
461
+ accountType?: AccountType | undefined;
462
462
  }
463
463
  /**
464
464
  * @public
@@ -479,22 +479,22 @@ export interface UpdateSlackChannelConfigurationRequest {
479
479
  * <p>The Slack channel name that you want to update.</p>
480
480
  * @public
481
481
  */
482
- channelName?: string;
482
+ channelName?: string | undefined;
483
483
  /**
484
484
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
485
485
  * @public
486
486
  */
487
- notifyOnCreateOrReopenCase?: boolean;
487
+ notifyOnCreateOrReopenCase?: boolean | undefined;
488
488
  /**
489
489
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
490
490
  * @public
491
491
  */
492
- notifyOnAddCorrespondenceToCase?: boolean;
492
+ notifyOnAddCorrespondenceToCase?: boolean | undefined;
493
493
  /**
494
494
  * <p>Whether you want to get notified when a support case is resolved.</p>
495
495
  * @public
496
496
  */
497
- notifyOnResolveCase?: boolean;
497
+ notifyOnResolveCase?: boolean | undefined;
498
498
  /**
499
499
  * <p>The case severity for a support case that you want to receive notifications.</p>
500
500
  * <p>If you specify <code>high</code> or <code>all</code>, at least one of the following
@@ -541,14 +541,14 @@ export interface UpdateSlackChannelConfigurationRequest {
541
541
  * </note>
542
542
  * @public
543
543
  */
544
- notifyOnCaseSeverity?: NotificationSeverityLevel;
544
+ notifyOnCaseSeverity?: NotificationSeverityLevel | undefined;
545
545
  /**
546
546
  * <p>The Amazon Resource Name (ARN) of an IAM role that you want to
547
547
  * 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
548
548
  * the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
549
549
  * @public
550
550
  */
551
- channelRoleArn?: string;
551
+ channelRoleArn?: string | undefined;
552
552
  }
553
553
  /**
554
554
  * @public
@@ -559,42 +559,42 @@ export interface UpdateSlackChannelConfigurationResult {
559
559
  * <code>T012ABCDEFG</code>.</p>
560
560
  * @public
561
561
  */
562
- teamId?: string;
562
+ teamId?: string | undefined;
563
563
  /**
564
564
  * <p>The channel ID in Slack. This ID identifies a channel within a Slack workspace.</p>
565
565
  * @public
566
566
  */
567
- channelId?: string;
567
+ channelId?: string | undefined;
568
568
  /**
569
569
  * <p>The name of the Slack channel that you configure for the Amazon Web Services Support App.</p>
570
570
  * @public
571
571
  */
572
- channelName?: string;
572
+ channelName?: string | undefined;
573
573
  /**
574
574
  * <p>Whether you want to get notified when a support case is created or reopened.</p>
575
575
  * @public
576
576
  */
577
- notifyOnCreateOrReopenCase?: boolean;
577
+ notifyOnCreateOrReopenCase?: boolean | undefined;
578
578
  /**
579
579
  * <p>Whether you want to get notified when a support case has a new correspondence.</p>
580
580
  * @public
581
581
  */
582
- notifyOnAddCorrespondenceToCase?: boolean;
582
+ notifyOnAddCorrespondenceToCase?: boolean | undefined;
583
583
  /**
584
584
  * <p>Whether you want to get notified when a support case is resolved.</p>
585
585
  * @public
586
586
  */
587
- notifyOnResolveCase?: boolean;
587
+ notifyOnResolveCase?: boolean | undefined;
588
588
  /**
589
589
  * <p>The case severity for a support case that you want to receive notifications.</p>
590
590
  * @public
591
591
  */
592
- notifyOnCaseSeverity?: NotificationSeverityLevel;
592
+ notifyOnCaseSeverity?: NotificationSeverityLevel | undefined;
593
593
  /**
594
594
  * <p>The Amazon Resource Name (ARN) of an IAM role that you want to
595
595
  * 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
596
596
  * the Amazon Web Services Support App</a> in the <i>Amazon Web Services Support User Guide</i>.</p>
597
597
  * @public
598
598
  */
599
- channelRoleArn?: string;
599
+ channelRoleArn?: string | undefined;
600
600
  }
@@ -27,10 +27,10 @@ export type NotificationSeverityLevel =
27
27
  export interface CreateSlackChannelConfigurationRequest {
28
28
  teamId: string | undefined;
29
29
  channelId: string | undefined;
30
- channelName?: string;
31
- notifyOnCreateOrReopenCase?: boolean;
32
- notifyOnAddCorrespondenceToCase?: boolean;
33
- notifyOnResolveCase?: boolean;
30
+ channelName?: string | undefined;
31
+ notifyOnCreateOrReopenCase?: boolean | undefined;
32
+ notifyOnAddCorrespondenceToCase?: boolean | undefined;
33
+ notifyOnResolveCase?: boolean | undefined;
34
34
  notifyOnCaseSeverity: NotificationSeverityLevel | undefined;
35
35
  channelRoleArn: string | undefined;
36
36
  }
@@ -76,36 +76,36 @@ export interface DeleteSlackWorkspaceConfigurationRequest {
76
76
  export interface DeleteSlackWorkspaceConfigurationResult {}
77
77
  export interface GetAccountAliasRequest {}
78
78
  export interface GetAccountAliasResult {
79
- accountAlias?: string;
79
+ accountAlias?: string | undefined;
80
80
  }
81
81
  export interface ListSlackChannelConfigurationsRequest {
82
- nextToken?: string;
82
+ nextToken?: string | undefined;
83
83
  }
84
84
  export interface SlackChannelConfiguration {
85
85
  teamId: string | undefined;
86
86
  channelId: string | undefined;
87
- channelName?: string;
88
- notifyOnCreateOrReopenCase?: boolean;
89
- notifyOnAddCorrespondenceToCase?: boolean;
90
- notifyOnResolveCase?: boolean;
91
- notifyOnCaseSeverity?: NotificationSeverityLevel;
92
- channelRoleArn?: string;
87
+ channelName?: string | undefined;
88
+ notifyOnCreateOrReopenCase?: boolean | undefined;
89
+ notifyOnAddCorrespondenceToCase?: boolean | undefined;
90
+ notifyOnResolveCase?: boolean | undefined;
91
+ notifyOnCaseSeverity?: NotificationSeverityLevel | undefined;
92
+ channelRoleArn?: string | undefined;
93
93
  }
94
94
  export interface ListSlackChannelConfigurationsResult {
95
- nextToken?: string;
95
+ nextToken?: string | undefined;
96
96
  slackChannelConfigurations: SlackChannelConfiguration[] | undefined;
97
97
  }
98
98
  export interface ListSlackWorkspaceConfigurationsRequest {
99
- nextToken?: string;
99
+ nextToken?: string | undefined;
100
100
  }
101
101
  export interface SlackWorkspaceConfiguration {
102
102
  teamId: string | undefined;
103
- teamName?: string;
104
- allowOrganizationMemberAccount?: boolean;
103
+ teamName?: string | undefined;
104
+ allowOrganizationMemberAccount?: boolean | undefined;
105
105
  }
106
106
  export interface ListSlackWorkspaceConfigurationsResult {
107
- nextToken?: string;
108
- slackWorkspaceConfigurations?: SlackWorkspaceConfiguration[];
107
+ nextToken?: string | undefined;
108
+ slackWorkspaceConfigurations?: SlackWorkspaceConfiguration[] | undefined;
109
109
  }
110
110
  export interface PutAccountAliasRequest {
111
111
  accountAlias: string | undefined;
@@ -115,27 +115,27 @@ export interface RegisterSlackWorkspaceForOrganizationRequest {
115
115
  teamId: string | undefined;
116
116
  }
117
117
  export interface RegisterSlackWorkspaceForOrganizationResult {
118
- teamId?: string;
119
- teamName?: string;
120
- accountType?: AccountType;
118
+ teamId?: string | undefined;
119
+ teamName?: string | undefined;
120
+ accountType?: AccountType | undefined;
121
121
  }
122
122
  export interface UpdateSlackChannelConfigurationRequest {
123
123
  teamId: string | undefined;
124
124
  channelId: string | undefined;
125
- channelName?: string;
126
- notifyOnCreateOrReopenCase?: boolean;
127
- notifyOnAddCorrespondenceToCase?: boolean;
128
- notifyOnResolveCase?: boolean;
129
- notifyOnCaseSeverity?: NotificationSeverityLevel;
130
- channelRoleArn?: string;
125
+ channelName?: string | undefined;
126
+ notifyOnCreateOrReopenCase?: boolean | undefined;
127
+ notifyOnAddCorrespondenceToCase?: boolean | undefined;
128
+ notifyOnResolveCase?: boolean | undefined;
129
+ notifyOnCaseSeverity?: NotificationSeverityLevel | undefined;
130
+ channelRoleArn?: string | undefined;
131
131
  }
132
132
  export interface UpdateSlackChannelConfigurationResult {
133
- teamId?: string;
134
- channelId?: string;
135
- channelName?: string;
136
- notifyOnCreateOrReopenCase?: boolean;
137
- notifyOnAddCorrespondenceToCase?: boolean;
138
- notifyOnResolveCase?: boolean;
139
- notifyOnCaseSeverity?: NotificationSeverityLevel;
140
- channelRoleArn?: string;
133
+ teamId?: string | undefined;
134
+ channelId?: string | undefined;
135
+ channelName?: string | undefined;
136
+ notifyOnCreateOrReopenCase?: boolean | undefined;
137
+ notifyOnAddCorrespondenceToCase?: boolean | undefined;
138
+ notifyOnResolveCase?: boolean | undefined;
139
+ notifyOnCaseSeverity?: NotificationSeverityLevel | undefined;
140
+ channelRoleArn?: string | undefined;
141
141
  }
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.686.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-support-app",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.686.0",
24
- "@aws-sdk/client-sts": "3.686.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.686.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.686.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.686.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",