@aws-sdk/client-support 3.329.0 → 3.335.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.
- package/README.md +16 -0
- package/dist-cjs/Support.js +4 -0
- package/dist-cjs/commands/DescribeCreateCaseOptionsCommand.js +45 -0
- package/dist-cjs/commands/DescribeSupportedLanguagesCommand.js +45 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +14 -1
- package/dist-cjs/protocols/Aws_json1_1.js +109 -2
- package/dist-es/Support.js +4 -0
- package/dist-es/commands/DescribeCreateCaseOptionsCommand.js +41 -0
- package/dist-es/commands/DescribeSupportedLanguagesCommand.js +41 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +12 -0
- package/dist-es/protocols/Aws_json1_1.js +105 -2
- package/dist-types/Support.d.ts +14 -0
- package/dist-types/SupportClient.d.ts +7 -4
- package/dist-types/commands/DescribeCreateCaseOptionsCommand.d.ts +114 -0
- package/dist-types/commands/DescribeSupportedLanguagesCommand.d.ts +101 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckResultCommand.d.ts +5 -0
- package/dist-types/commands/DescribeTrustedAdvisorCheckSummariesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeTrustedAdvisorChecksCommand.d.ts +5 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +232 -8
- package/dist-types/protocols/Aws_json1_1.d.ts +20 -2
- package/dist-types/runtimeConfig.browser.d.ts +12 -12
- package/dist-types/runtimeConfig.d.ts +9 -9
- package/dist-types/runtimeConfig.native.d.ts +13 -13
- package/dist-types/runtimeConfig.shared.d.ts +4 -4
- package/dist-types/ts3.4/Support.d.ts +34 -0
- package/dist-types/ts3.4/SupportClient.d.ts +19 -5
- package/dist-types/ts3.4/commands/DescribeCreateCaseOptionsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeSupportedLanguagesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +43 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +26 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +18 -15
- package/dist-types/ts3.4/runtimeConfig.d.ts +12 -12
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -15
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -4
- package/package.json +7 -6
|
@@ -249,7 +249,8 @@ export interface CreateCaseRequest {
|
|
|
249
249
|
ccEmailAddresses?: string[];
|
|
250
250
|
/**
|
|
251
251
|
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
252
|
-
* currently supports English ("en")
|
|
252
|
+
* currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1
|
|
253
|
+
* code for the <code>language</code> parameter if you want support in that language.</p>
|
|
253
254
|
*/
|
|
254
255
|
language?: string;
|
|
255
256
|
/**
|
|
@@ -351,7 +352,8 @@ export interface DescribeCasesRequest {
|
|
|
351
352
|
maxResults?: number;
|
|
352
353
|
/**
|
|
353
354
|
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
354
|
-
* currently supports English ("en")
|
|
355
|
+
* currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1
|
|
356
|
+
* code for the <code>language</code> parameter if you want support in that language.</p>
|
|
355
357
|
*/
|
|
356
358
|
language?: string;
|
|
357
359
|
/**
|
|
@@ -380,8 +382,8 @@ export interface Communication {
|
|
|
380
382
|
body?: string;
|
|
381
383
|
/**
|
|
382
384
|
* <p>The identity of the account that submitted, or responded to, the support case.
|
|
383
|
-
* Customer entries include the
|
|
384
|
-
* "AdminRole (Role) <janedoe@example.com
|
|
385
|
+
* Customer entries include the IAM role as well as the email address (for example,
|
|
386
|
+
* "AdminRole (Role) <janedoe@example.com>). Entries from the Amazon Web Services Support team display
|
|
385
387
|
* "Amazon Web Services," and don't show an email address.
|
|
386
388
|
* </p>
|
|
387
389
|
*/
|
|
@@ -435,7 +437,8 @@ export interface RecentCaseCommunications {
|
|
|
435
437
|
* <li>
|
|
436
438
|
* <p>
|
|
437
439
|
* <b>language</b> - The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
438
|
-
* currently supports English ("en")
|
|
440
|
+
* currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1
|
|
441
|
+
* code for the <code>language</code> parameter if you want support in that language.</p>
|
|
439
442
|
* </li>
|
|
440
443
|
* <li>
|
|
441
444
|
* <p>
|
|
@@ -601,7 +604,8 @@ export interface CaseDetails {
|
|
|
601
604
|
ccEmailAddresses?: string[];
|
|
602
605
|
/**
|
|
603
606
|
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
604
|
-
* currently supports English ("en")
|
|
607
|
+
* currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1
|
|
608
|
+
* code for the <code>language</code> parameter if you want support in that language.</p>
|
|
605
609
|
*/
|
|
606
610
|
language?: string;
|
|
607
611
|
}
|
|
@@ -666,6 +670,165 @@ export interface DescribeCommunicationsResponse {
|
|
|
666
670
|
*/
|
|
667
671
|
nextToken?: string;
|
|
668
672
|
}
|
|
673
|
+
/**
|
|
674
|
+
* @public
|
|
675
|
+
*/
|
|
676
|
+
export interface DescribeCreateCaseOptionsRequest {
|
|
677
|
+
/**
|
|
678
|
+
* <p>The type of issue for the case. You can specify <code>customer-service</code> or
|
|
679
|
+
* <code>technical</code>. If you don't specify a value, the default is
|
|
680
|
+
* <code>technical</code>.</p>
|
|
681
|
+
*/
|
|
682
|
+
issueType: string | undefined;
|
|
683
|
+
/**
|
|
684
|
+
* <p>The code for the Amazon Web Services service. You can use the <a>DescribeServices</a>
|
|
685
|
+
* operation to get the possible <code>serviceCode</code> values.</p>
|
|
686
|
+
*/
|
|
687
|
+
serviceCode: string | undefined;
|
|
688
|
+
/**
|
|
689
|
+
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
690
|
+
* currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1
|
|
691
|
+
* code for the <code>language</code> parameter if you want support in that language.</p>
|
|
692
|
+
*/
|
|
693
|
+
language: string | undefined;
|
|
694
|
+
/**
|
|
695
|
+
* <p>The category of problem for the support case. You also use the <a>DescribeServices</a> operation to get the category code for a service. Each
|
|
696
|
+
* Amazon Web Services service defines its own set of category codes.</p>
|
|
697
|
+
*/
|
|
698
|
+
categoryCode: string | undefined;
|
|
699
|
+
}
|
|
700
|
+
/**
|
|
701
|
+
* @public
|
|
702
|
+
* <p>Date and time (UTC) format in RFC 3339 : 'yyyy-MM-dd'T'HH:mm:ss.SSSZZ'.</p>
|
|
703
|
+
*/
|
|
704
|
+
export interface DateInterval {
|
|
705
|
+
/**
|
|
706
|
+
* <p>
|
|
707
|
+
* A JSON object containing start and date time (UTC). Date and time format is RFC 3339 : 'yyyy-MM-dd'T'HH:mm:ss.SSSZZ'.
|
|
708
|
+
* </p>
|
|
709
|
+
*/
|
|
710
|
+
startDateTime?: string;
|
|
711
|
+
/**
|
|
712
|
+
* <p>
|
|
713
|
+
* End Date Time (UTC). RFC 3339 format : 'yyyy-MM-dd'T'HH:mm:ss.SSSZZ'.
|
|
714
|
+
* </p>
|
|
715
|
+
*/
|
|
716
|
+
endDateTime?: string;
|
|
717
|
+
}
|
|
718
|
+
/**
|
|
719
|
+
* @public
|
|
720
|
+
* <p>Time range object with <code>startTime</code> and <code>endTime</code> range in RFC 3339 format. <code>'HH:mm:ss.SSS'</code>.</p>
|
|
721
|
+
*/
|
|
722
|
+
export interface SupportedHour {
|
|
723
|
+
/**
|
|
724
|
+
* <p>
|
|
725
|
+
* Start Time. RFC 3339 format <code>'HH:mm:ss.SSS'</code>.
|
|
726
|
+
* </p>
|
|
727
|
+
*/
|
|
728
|
+
startTime?: string;
|
|
729
|
+
/**
|
|
730
|
+
* <p>
|
|
731
|
+
* End Time. RFC 3339 format <code>'HH:mm:ss.SSS'</code>.
|
|
732
|
+
* </p>
|
|
733
|
+
*/
|
|
734
|
+
endTime?: string;
|
|
735
|
+
}
|
|
736
|
+
/**
|
|
737
|
+
* @public
|
|
738
|
+
* <p>A JSON-formatted object that contains the CommunicationTypeOptions for creating a case for a certain
|
|
739
|
+
* communication channel. It is contained in the response from a <a>DescribeCreateCaseOptions</a> request. <b>CommunicationTypeOptions</b> contains the following fields:</p>
|
|
740
|
+
* <ul>
|
|
741
|
+
* <li>
|
|
742
|
+
* <p>
|
|
743
|
+
* <b>datesWithoutSupport</b> -
|
|
744
|
+
* A JSON-formatted list containing date and time ranges for periods
|
|
745
|
+
* without support in UTC time. Date and time format is RFC 3339 : 'yyyy-MM-dd'T'HH:mm:ss.SSSZZ'.
|
|
746
|
+
* </p>
|
|
747
|
+
* </li>
|
|
748
|
+
* <li>
|
|
749
|
+
* <p>
|
|
750
|
+
* <b>supportedHours</b> -
|
|
751
|
+
* A JSON-formatted list containing time ranges when support are available.
|
|
752
|
+
* Time format is RFC 3339 : 'HH:mm:ss.SSS'.
|
|
753
|
+
* </p>
|
|
754
|
+
* </li>
|
|
755
|
+
* <li>
|
|
756
|
+
* <p>
|
|
757
|
+
* <b>type</b> -
|
|
758
|
+
* A string value indicating the communication type that the aforementioned rules apply to. At the moment
|
|
759
|
+
* the type value can assume one of 3 values at the moment <code>chat</code>, <code>web</code> and
|
|
760
|
+
* <code>call</code>.
|
|
761
|
+
* </p>
|
|
762
|
+
* </li>
|
|
763
|
+
* </ul>
|
|
764
|
+
*/
|
|
765
|
+
export interface CommunicationTypeOptions {
|
|
766
|
+
/**
|
|
767
|
+
* <p>
|
|
768
|
+
* A string value indicating the communication type. At the moment the type value can assume one of 3 values at the moment chat, web and call.
|
|
769
|
+
* </p>
|
|
770
|
+
*/
|
|
771
|
+
type?: string;
|
|
772
|
+
/**
|
|
773
|
+
* <p>
|
|
774
|
+
* A JSON-formatted list containing time ranges when support is available.
|
|
775
|
+
* </p>
|
|
776
|
+
*/
|
|
777
|
+
supportedHours?: SupportedHour[];
|
|
778
|
+
/**
|
|
779
|
+
* <p>
|
|
780
|
+
* A JSON-formatted list containing date and time ranges for periods without support
|
|
781
|
+
* </p>
|
|
782
|
+
*/
|
|
783
|
+
datesWithoutSupport?: DateInterval[];
|
|
784
|
+
}
|
|
785
|
+
/**
|
|
786
|
+
* @public
|
|
787
|
+
*/
|
|
788
|
+
export interface DescribeCreateCaseOptionsResponse {
|
|
789
|
+
/**
|
|
790
|
+
* <p>Language availability can be any of the following:</p>
|
|
791
|
+
* <ul>
|
|
792
|
+
* <li>
|
|
793
|
+
* <p>
|
|
794
|
+
* available
|
|
795
|
+
* </p>
|
|
796
|
+
* </li>
|
|
797
|
+
* <li>
|
|
798
|
+
* <p>
|
|
799
|
+
* best_effort
|
|
800
|
+
* </p>
|
|
801
|
+
* </li>
|
|
802
|
+
* <li>
|
|
803
|
+
* <p>
|
|
804
|
+
* unavailable
|
|
805
|
+
* </p>
|
|
806
|
+
* </li>
|
|
807
|
+
* </ul>
|
|
808
|
+
*/
|
|
809
|
+
languageAvailability?: string;
|
|
810
|
+
/**
|
|
811
|
+
* <p>
|
|
812
|
+
* A JSON-formatted array that contains the available communication type options, along with the available support
|
|
813
|
+
* timeframes for the given inputs.
|
|
814
|
+
* </p>
|
|
815
|
+
*/
|
|
816
|
+
communicationTypes?: CommunicationTypeOptions[];
|
|
817
|
+
}
|
|
818
|
+
/**
|
|
819
|
+
* @public
|
|
820
|
+
* <p>
|
|
821
|
+
* You have exceeded the maximum allowed TPS (Transactions Per Second) for the operations.
|
|
822
|
+
* </p>
|
|
823
|
+
*/
|
|
824
|
+
export declare class ThrottlingException extends __BaseException {
|
|
825
|
+
readonly name: "ThrottlingException";
|
|
826
|
+
readonly $fault: "client";
|
|
827
|
+
/**
|
|
828
|
+
* @internal
|
|
829
|
+
*/
|
|
830
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
831
|
+
}
|
|
669
832
|
/**
|
|
670
833
|
* @public
|
|
671
834
|
*/
|
|
@@ -676,7 +839,8 @@ export interface DescribeServicesRequest {
|
|
|
676
839
|
serviceCodeList?: string[];
|
|
677
840
|
/**
|
|
678
841
|
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
679
|
-
* currently supports English ("en")
|
|
842
|
+
* currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1
|
|
843
|
+
* code for the <code>language</code> parameter if you want support in that language.</p>
|
|
680
844
|
*/
|
|
681
845
|
language?: string;
|
|
682
846
|
}
|
|
@@ -736,7 +900,8 @@ export interface DescribeServicesResponse {
|
|
|
736
900
|
export interface DescribeSeverityLevelsRequest {
|
|
737
901
|
/**
|
|
738
902
|
* <p>The language in which Amazon Web Services Support handles the case. Amazon Web Services Support
|
|
739
|
-
* currently supports English ("en")
|
|
903
|
+
* currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1
|
|
904
|
+
* code for the <code>language</code> parameter if you want support in that language.</p>
|
|
740
905
|
*/
|
|
741
906
|
language?: string;
|
|
742
907
|
}
|
|
@@ -802,6 +967,65 @@ export interface DescribeSeverityLevelsResponse {
|
|
|
802
967
|
*/
|
|
803
968
|
severityLevels?: SeverityLevel[];
|
|
804
969
|
}
|
|
970
|
+
/**
|
|
971
|
+
* @public
|
|
972
|
+
*/
|
|
973
|
+
export interface DescribeSupportedLanguagesRequest {
|
|
974
|
+
/**
|
|
975
|
+
* <p>The type of issue for the case. You can specify <code>customer-service</code> or
|
|
976
|
+
* <code>technical</code>.</p>
|
|
977
|
+
*/
|
|
978
|
+
issueType: string | undefined;
|
|
979
|
+
/**
|
|
980
|
+
* <p>The code for the Amazon Web Services service. You can use the <a>DescribeServices</a>
|
|
981
|
+
* operation to get the possible <code>serviceCode</code> values.</p>
|
|
982
|
+
*/
|
|
983
|
+
serviceCode: string | undefined;
|
|
984
|
+
/**
|
|
985
|
+
* <p>The category of problem for the support case. You also use the <a>DescribeServices</a> operation to get the category code for a service. Each
|
|
986
|
+
* Amazon Web Services service defines its own set of category codes.</p>
|
|
987
|
+
*/
|
|
988
|
+
categoryCode: string | undefined;
|
|
989
|
+
}
|
|
990
|
+
/**
|
|
991
|
+
* @public
|
|
992
|
+
* <p>
|
|
993
|
+
* A JSON-formatted object that contains the available ISO 639-1 language <code>code</code>,
|
|
994
|
+
* <code>language</code> name and langauge <code>display</code> value. The language code is what should be used
|
|
995
|
+
* in the <a>CreateCase</a> call.
|
|
996
|
+
* </p>
|
|
997
|
+
*/
|
|
998
|
+
export interface SupportedLanguage {
|
|
999
|
+
/**
|
|
1000
|
+
* <p>
|
|
1001
|
+
* 2 digit ISO 639-1 code. e.g. <code>en</code>
|
|
1002
|
+
* </p>
|
|
1003
|
+
*/
|
|
1004
|
+
code?: string;
|
|
1005
|
+
/**
|
|
1006
|
+
* <p>
|
|
1007
|
+
* Full language description e.g. <code>ENGLISH</code>
|
|
1008
|
+
* </p>
|
|
1009
|
+
*/
|
|
1010
|
+
language?: string;
|
|
1011
|
+
/**
|
|
1012
|
+
* <p>
|
|
1013
|
+
* Language display value e.g. <code>ENGLISH</code>
|
|
1014
|
+
* </p>
|
|
1015
|
+
*/
|
|
1016
|
+
display?: string;
|
|
1017
|
+
}
|
|
1018
|
+
/**
|
|
1019
|
+
* @public
|
|
1020
|
+
*/
|
|
1021
|
+
export interface DescribeSupportedLanguagesResponse {
|
|
1022
|
+
/**
|
|
1023
|
+
* <p>
|
|
1024
|
+
* A JSON-formatted array that contains the available ISO 639-1 language codes.
|
|
1025
|
+
* </p>
|
|
1026
|
+
*/
|
|
1027
|
+
supportedLanguages?: SupportedLanguage[];
|
|
1028
|
+
}
|
|
805
1029
|
/**
|
|
806
1030
|
* @public
|
|
807
1031
|
*/
|
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { AddAttachmentsToSetCommandInput, AddAttachmentsToSetCommandOutput } from "../commands/AddAttachmentsToSetCommand";
|
|
4
4
|
import { AddCommunicationToCaseCommandInput, AddCommunicationToCaseCommandOutput } from "../commands/AddCommunicationToCaseCommand";
|
|
5
5
|
import { CreateCaseCommandInput, CreateCaseCommandOutput } from "../commands/CreateCaseCommand";
|
|
6
6
|
import { DescribeAttachmentCommandInput, DescribeAttachmentCommandOutput } from "../commands/DescribeAttachmentCommand";
|
|
7
7
|
import { DescribeCasesCommandInput, DescribeCasesCommandOutput } from "../commands/DescribeCasesCommand";
|
|
8
8
|
import { DescribeCommunicationsCommandInput, DescribeCommunicationsCommandOutput } from "../commands/DescribeCommunicationsCommand";
|
|
9
|
+
import { DescribeCreateCaseOptionsCommandInput, DescribeCreateCaseOptionsCommandOutput } from "../commands/DescribeCreateCaseOptionsCommand";
|
|
9
10
|
import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "../commands/DescribeServicesCommand";
|
|
10
11
|
import { DescribeSeverityLevelsCommandInput, DescribeSeverityLevelsCommandOutput } from "../commands/DescribeSeverityLevelsCommand";
|
|
12
|
+
import { DescribeSupportedLanguagesCommandInput, DescribeSupportedLanguagesCommandOutput } from "../commands/DescribeSupportedLanguagesCommand";
|
|
11
13
|
import { DescribeTrustedAdvisorCheckRefreshStatusesCommandInput, DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput } from "../commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand";
|
|
12
14
|
import { DescribeTrustedAdvisorCheckResultCommandInput, DescribeTrustedAdvisorCheckResultCommandOutput } from "../commands/DescribeTrustedAdvisorCheckResultCommand";
|
|
13
15
|
import { DescribeTrustedAdvisorChecksCommandInput, DescribeTrustedAdvisorChecksCommandOutput } from "../commands/DescribeTrustedAdvisorChecksCommand";
|
|
@@ -38,6 +40,10 @@ export declare const se_DescribeCasesCommand: (input: DescribeCasesCommandInput,
|
|
|
38
40
|
* serializeAws_json1_1DescribeCommunicationsCommand
|
|
39
41
|
*/
|
|
40
42
|
export declare const se_DescribeCommunicationsCommand: (input: DescribeCommunicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
/**
|
|
44
|
+
* serializeAws_json1_1DescribeCreateCaseOptionsCommand
|
|
45
|
+
*/
|
|
46
|
+
export declare const se_DescribeCreateCaseOptionsCommand: (input: DescribeCreateCaseOptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
47
|
/**
|
|
42
48
|
* serializeAws_json1_1DescribeServicesCommand
|
|
43
49
|
*/
|
|
@@ -46,6 +52,10 @@ export declare const se_DescribeServicesCommand: (input: DescribeServicesCommand
|
|
|
46
52
|
* serializeAws_json1_1DescribeSeverityLevelsCommand
|
|
47
53
|
*/
|
|
48
54
|
export declare const se_DescribeSeverityLevelsCommand: (input: DescribeSeverityLevelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
+
/**
|
|
56
|
+
* serializeAws_json1_1DescribeSupportedLanguagesCommand
|
|
57
|
+
*/
|
|
58
|
+
export declare const se_DescribeSupportedLanguagesCommand: (input: DescribeSupportedLanguagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
59
|
/**
|
|
50
60
|
* serializeAws_json1_1DescribeTrustedAdvisorCheckRefreshStatusesCommand
|
|
51
61
|
*/
|
|
@@ -94,6 +104,10 @@ export declare const de_DescribeCasesCommand: (output: __HttpResponse, context:
|
|
|
94
104
|
* deserializeAws_json1_1DescribeCommunicationsCommand
|
|
95
105
|
*/
|
|
96
106
|
export declare const de_DescribeCommunicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCommunicationsCommandOutput>;
|
|
107
|
+
/**
|
|
108
|
+
* deserializeAws_json1_1DescribeCreateCaseOptionsCommand
|
|
109
|
+
*/
|
|
110
|
+
export declare const de_DescribeCreateCaseOptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCreateCaseOptionsCommandOutput>;
|
|
97
111
|
/**
|
|
98
112
|
* deserializeAws_json1_1DescribeServicesCommand
|
|
99
113
|
*/
|
|
@@ -102,6 +116,10 @@ export declare const de_DescribeServicesCommand: (output: __HttpResponse, contex
|
|
|
102
116
|
* deserializeAws_json1_1DescribeSeverityLevelsCommand
|
|
103
117
|
*/
|
|
104
118
|
export declare const de_DescribeSeverityLevelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSeverityLevelsCommandOutput>;
|
|
119
|
+
/**
|
|
120
|
+
* deserializeAws_json1_1DescribeSupportedLanguagesCommand
|
|
121
|
+
*/
|
|
122
|
+
export declare const de_DescribeSupportedLanguagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSupportedLanguagesCommandOutput>;
|
|
105
123
|
/**
|
|
106
124
|
* deserializeAws_json1_1DescribeTrustedAdvisorCheckRefreshStatusesCommand
|
|
107
125
|
*/
|
|
@@ -7,26 +7,26 @@ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
-
maxAttempts: number | import("@aws-sdk/types").Provider<number
|
|
12
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) & (number | import("@aws-sdk/types").Provider<number>);
|
|
13
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@
|
|
15
|
-
retryMode: string | import("@
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
-
streamCollector: import("@
|
|
18
|
-
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean
|
|
19
|
-
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
19
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
22
|
-
base64Decoder: import("@
|
|
23
|
-
base64Encoder: import("@
|
|
24
|
-
utf8Decoder: import("@
|
|
25
|
-
utf8Encoder: import("@
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@aws-sdk/types").Logger;
|
|
29
|
-
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
30
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
31
|
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
32
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
@@ -7,26 +7,26 @@ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@
|
|
15
|
-
retryMode: string | import("@
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
16
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
-
streamCollector: import("@
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
22
|
-
base64Decoder: import("@
|
|
23
|
-
base64Encoder: import("@
|
|
24
|
-
utf8Decoder: import("@
|
|
25
|
-
utf8Encoder: import("@
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@aws-sdk/types").Logger;
|
|
29
|
-
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
30
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
31
|
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
32
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
@@ -5,27 +5,27 @@ import { SupportClientConfig } from "./SupportClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@
|
|
8
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
11
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
-
streamCollector: import("@
|
|
13
|
-
base64Decoder: import("@
|
|
14
|
-
base64Encoder: import("@
|
|
15
|
-
utf8Decoder: import("@
|
|
16
|
-
utf8Encoder: import("@
|
|
12
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
15
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
17
17
|
disableHostPrefix: boolean;
|
|
18
18
|
serviceId: string;
|
|
19
|
-
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean
|
|
20
|
-
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean
|
|
19
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
20
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
21
21
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
22
|
-
credentialDefaultProvider: (input: any) => import("@
|
|
22
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
23
23
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
24
|
-
maxAttempts: number | import("@aws-sdk/types").Provider<number
|
|
25
|
-
retryMode: string | import("@
|
|
24
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) & (number | import("@aws-sdk/types").Provider<number>);
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
26
|
logger: import("@aws-sdk/types").Logger;
|
|
27
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@
|
|
28
|
-
endpoint?: string | import("@aws-sdk/types").
|
|
27
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").EndpointV2 | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@smithy/types").Provider<import("@smithy/types").Endpoint>) | (import("@aws-sdk/types").Endpoint & import("@smithy/types").Endpoint) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>) | undefined;
|
|
29
29
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
30
|
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
31
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
@@ -4,8 +4,8 @@ import { SupportClientConfig } from "./SupportClient";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
|
-
base64Decoder: import("@
|
|
8
|
-
base64Encoder: import("@
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
11
|
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
@@ -13,6 +13,6 @@ export declare const getRuntimeConfig: (config: SupportClientConfig) => {
|
|
|
13
13
|
logger: import("@aws-sdk/types").Logger;
|
|
14
14
|
serviceId: string;
|
|
15
15
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
16
|
-
utf8Decoder: import("@
|
|
17
|
-
utf8Encoder: import("@
|
|
16
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
18
18
|
};
|
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
DescribeCommunicationsCommandInput,
|
|
24
24
|
DescribeCommunicationsCommandOutput,
|
|
25
25
|
} from "./commands/DescribeCommunicationsCommand";
|
|
26
|
+
import {
|
|
27
|
+
DescribeCreateCaseOptionsCommandInput,
|
|
28
|
+
DescribeCreateCaseOptionsCommandOutput,
|
|
29
|
+
} from "./commands/DescribeCreateCaseOptionsCommand";
|
|
26
30
|
import {
|
|
27
31
|
DescribeServicesCommandInput,
|
|
28
32
|
DescribeServicesCommandOutput,
|
|
@@ -31,6 +35,10 @@ import {
|
|
|
31
35
|
DescribeSeverityLevelsCommandInput,
|
|
32
36
|
DescribeSeverityLevelsCommandOutput,
|
|
33
37
|
} from "./commands/DescribeSeverityLevelsCommand";
|
|
38
|
+
import {
|
|
39
|
+
DescribeSupportedLanguagesCommandInput,
|
|
40
|
+
DescribeSupportedLanguagesCommandOutput,
|
|
41
|
+
} from "./commands/DescribeSupportedLanguagesCommand";
|
|
34
42
|
import {
|
|
35
43
|
DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
|
|
36
44
|
DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput,
|
|
@@ -135,6 +143,19 @@ export interface Support {
|
|
|
135
143
|
options: __HttpHandlerOptions,
|
|
136
144
|
cb: (err: any, data?: DescribeCommunicationsCommandOutput) => void
|
|
137
145
|
): void;
|
|
146
|
+
describeCreateCaseOptions(
|
|
147
|
+
args: DescribeCreateCaseOptionsCommandInput,
|
|
148
|
+
options?: __HttpHandlerOptions
|
|
149
|
+
): Promise<DescribeCreateCaseOptionsCommandOutput>;
|
|
150
|
+
describeCreateCaseOptions(
|
|
151
|
+
args: DescribeCreateCaseOptionsCommandInput,
|
|
152
|
+
cb: (err: any, data?: DescribeCreateCaseOptionsCommandOutput) => void
|
|
153
|
+
): void;
|
|
154
|
+
describeCreateCaseOptions(
|
|
155
|
+
args: DescribeCreateCaseOptionsCommandInput,
|
|
156
|
+
options: __HttpHandlerOptions,
|
|
157
|
+
cb: (err: any, data?: DescribeCreateCaseOptionsCommandOutput) => void
|
|
158
|
+
): void;
|
|
138
159
|
describeServices(
|
|
139
160
|
args: DescribeServicesCommandInput,
|
|
140
161
|
options?: __HttpHandlerOptions
|
|
@@ -161,6 +182,19 @@ export interface Support {
|
|
|
161
182
|
options: __HttpHandlerOptions,
|
|
162
183
|
cb: (err: any, data?: DescribeSeverityLevelsCommandOutput) => void
|
|
163
184
|
): void;
|
|
185
|
+
describeSupportedLanguages(
|
|
186
|
+
args: DescribeSupportedLanguagesCommandInput,
|
|
187
|
+
options?: __HttpHandlerOptions
|
|
188
|
+
): Promise<DescribeSupportedLanguagesCommandOutput>;
|
|
189
|
+
describeSupportedLanguages(
|
|
190
|
+
args: DescribeSupportedLanguagesCommandInput,
|
|
191
|
+
cb: (err: any, data?: DescribeSupportedLanguagesCommandOutput) => void
|
|
192
|
+
): void;
|
|
193
|
+
describeSupportedLanguages(
|
|
194
|
+
args: DescribeSupportedLanguagesCommandInput,
|
|
195
|
+
options: __HttpHandlerOptions,
|
|
196
|
+
cb: (err: any, data?: DescribeSupportedLanguagesCommandOutput) => void
|
|
197
|
+
): void;
|
|
164
198
|
describeTrustedAdvisorCheckRefreshStatuses(
|
|
165
199
|
args: DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
|
|
166
200
|
options?: __HttpHandlerOptions
|
|
@@ -22,7 +22,6 @@ import {
|
|
|
22
22
|
UserAgentInputConfig,
|
|
23
23
|
UserAgentResolvedConfig,
|
|
24
24
|
} from "@aws-sdk/middleware-user-agent";
|
|
25
|
-
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
26
25
|
import {
|
|
27
26
|
Client as __Client,
|
|
28
27
|
DefaultsMode as __DefaultsMode,
|
|
@@ -33,17 +32,20 @@ import {
|
|
|
33
32
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
33
|
ChecksumConstructor as __ChecksumConstructor,
|
|
35
34
|
Credentials as __Credentials,
|
|
36
|
-
Decoder as __Decoder,
|
|
37
|
-
Encoder as __Encoder,
|
|
38
35
|
HashConstructor as __HashConstructor,
|
|
39
36
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
40
37
|
Logger as __Logger,
|
|
41
|
-
Provider as __Provider,
|
|
42
38
|
Provider,
|
|
43
|
-
StreamCollector as __StreamCollector,
|
|
44
39
|
UrlParser as __UrlParser,
|
|
45
40
|
UserAgent as __UserAgent,
|
|
46
41
|
} from "@aws-sdk/types";
|
|
42
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
43
|
+
import {
|
|
44
|
+
Decoder as __Decoder,
|
|
45
|
+
Encoder as __Encoder,
|
|
46
|
+
Provider as __Provider,
|
|
47
|
+
StreamCollector as __StreamCollector,
|
|
48
|
+
} from "@smithy/types";
|
|
47
49
|
import {
|
|
48
50
|
AddAttachmentsToSetCommandInput,
|
|
49
51
|
AddAttachmentsToSetCommandOutput,
|
|
@@ -68,6 +70,10 @@ import {
|
|
|
68
70
|
DescribeCommunicationsCommandInput,
|
|
69
71
|
DescribeCommunicationsCommandOutput,
|
|
70
72
|
} from "./commands/DescribeCommunicationsCommand";
|
|
73
|
+
import {
|
|
74
|
+
DescribeCreateCaseOptionsCommandInput,
|
|
75
|
+
DescribeCreateCaseOptionsCommandOutput,
|
|
76
|
+
} from "./commands/DescribeCreateCaseOptionsCommand";
|
|
71
77
|
import {
|
|
72
78
|
DescribeServicesCommandInput,
|
|
73
79
|
DescribeServicesCommandOutput,
|
|
@@ -76,6 +82,10 @@ import {
|
|
|
76
82
|
DescribeSeverityLevelsCommandInput,
|
|
77
83
|
DescribeSeverityLevelsCommandOutput,
|
|
78
84
|
} from "./commands/DescribeSeverityLevelsCommand";
|
|
85
|
+
import {
|
|
86
|
+
DescribeSupportedLanguagesCommandInput,
|
|
87
|
+
DescribeSupportedLanguagesCommandOutput,
|
|
88
|
+
} from "./commands/DescribeSupportedLanguagesCommand";
|
|
79
89
|
import {
|
|
80
90
|
DescribeTrustedAdvisorCheckRefreshStatusesCommandInput,
|
|
81
91
|
DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput,
|
|
@@ -112,8 +122,10 @@ export type ServiceInputTypes =
|
|
|
112
122
|
| DescribeAttachmentCommandInput
|
|
113
123
|
| DescribeCasesCommandInput
|
|
114
124
|
| DescribeCommunicationsCommandInput
|
|
125
|
+
| DescribeCreateCaseOptionsCommandInput
|
|
115
126
|
| DescribeServicesCommandInput
|
|
116
127
|
| DescribeSeverityLevelsCommandInput
|
|
128
|
+
| DescribeSupportedLanguagesCommandInput
|
|
117
129
|
| DescribeTrustedAdvisorCheckRefreshStatusesCommandInput
|
|
118
130
|
| DescribeTrustedAdvisorCheckResultCommandInput
|
|
119
131
|
| DescribeTrustedAdvisorCheckSummariesCommandInput
|
|
@@ -127,8 +139,10 @@ export type ServiceOutputTypes =
|
|
|
127
139
|
| DescribeAttachmentCommandOutput
|
|
128
140
|
| DescribeCasesCommandOutput
|
|
129
141
|
| DescribeCommunicationsCommandOutput
|
|
142
|
+
| DescribeCreateCaseOptionsCommandOutput
|
|
130
143
|
| DescribeServicesCommandOutput
|
|
131
144
|
| DescribeSeverityLevelsCommandOutput
|
|
145
|
+
| DescribeSupportedLanguagesCommandOutput
|
|
132
146
|
| DescribeTrustedAdvisorCheckRefreshStatusesCommandOutput
|
|
133
147
|
| DescribeTrustedAdvisorCheckResultCommandOutput
|
|
134
148
|
| DescribeTrustedAdvisorCheckSummariesCommandOutput
|