aws-sdk 2.1376.0 → 2.1377.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/CHANGELOG.md +11 -1
- package/README.md +1 -1
- package/apis/elasticache-2015-02-02.min.json +147 -143
- package/apis/ivs-realtime-2020-07-14.min.json +223 -0
- package/apis/ivs-realtime-2020-07-14.paginators.json +15 -0
- package/apis/omics-2022-11-28.min.json +1393 -897
- package/apis/omics-2022-11-28.paginators.json +12 -0
- package/apis/support-2013-04-15.min.json +97 -14
- package/clients/connect.d.ts +6 -6
- package/clients/elasticache.d.ts +25 -8
- package/clients/es.d.ts +1 -1
- package/clients/health.d.ts +19 -19
- package/clients/ivsrealtime.d.ts +292 -8
- package/clients/omics.d.ts +1451 -965
- package/clients/support.d.ts +134 -7
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +150 -146
- package/dist/aws-sdk.min.js +58 -58
- package/lib/core.js +1 -1
- package/package.json +1 -1
    
        package/clients/support.d.ts
    CHANGED
    
    | @@ -59,6 +59,14 @@ declare class Support extends Service { | |
| 59 59 | 
             
               * Returns communications and attachments for one or more support cases. Use the afterTime and beforeTime parameters to filter by date. You can use the caseId parameter to restrict the results to a specific case. Case data is available for 12 months after creation. If a case was created more than 12 months ago, a request for data might cause an error. You can use the maxResults and nextToken parameters to control the pagination of the results. Set maxResults to the number of cases that you want to display on each page, and use nextToken to specify the resumption of pagination.    You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon Web Services Support API.    If you call the Amazon Web Services Support API from an account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see Amazon Web Services Support.   
         | 
| 60 60 | 
             
               */
         | 
| 61 61 | 
             
              describeCommunications(callback?: (err: AWSError, data: Support.Types.DescribeCommunicationsResponse) => void): Request<Support.Types.DescribeCommunicationsResponse, AWSError>;
         | 
| 62 | 
            +
              /**
         | 
| 63 | 
            +
               * Returns a list of CreateCaseOption types along with the corresponding supported hours and language availability. You can specify the language categoryCode, issueType and serviceCode used to retrieve the CreateCaseOptions.    You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon Web Services Support API.    If you call the Amazon Web Services Support API from an account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see Amazon Web Services Support.   
         | 
| 64 | 
            +
               */
         | 
| 65 | 
            +
              describeCreateCaseOptions(params: Support.Types.DescribeCreateCaseOptionsRequest, callback?: (err: AWSError, data: Support.Types.DescribeCreateCaseOptionsResponse) => void): Request<Support.Types.DescribeCreateCaseOptionsResponse, AWSError>;
         | 
| 66 | 
            +
              /**
         | 
| 67 | 
            +
               * Returns a list of CreateCaseOption types along with the corresponding supported hours and language availability. You can specify the language categoryCode, issueType and serviceCode used to retrieve the CreateCaseOptions.    You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon Web Services Support API.    If you call the Amazon Web Services Support API from an account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see Amazon Web Services Support.   
         | 
| 68 | 
            +
               */
         | 
| 69 | 
            +
              describeCreateCaseOptions(callback?: (err: AWSError, data: Support.Types.DescribeCreateCaseOptionsResponse) => void): Request<Support.Types.DescribeCreateCaseOptionsResponse, AWSError>;
         | 
| 62 70 | 
             
              /**
         | 
| 63 71 | 
             
               * Returns the current list of Amazon Web Services services and a list of service categories for each service. You then use service names and categories in your CreateCase requests. Each Amazon Web Services service has its own set of categories. The service codes and category codes correspond to the values that appear in the Service and Category lists on the Amazon Web Services Support Center Create Case page. The values in those fields don't necessarily match the service codes and categories returned by the DescribeServices operation. Always use the service codes and categories that the DescribeServices operation returns, so that you have the most recent set of service and category codes.    You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon Web Services Support API.    If you call the Amazon Web Services Support API from an account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see Amazon Web Services Support.   
         | 
| 64 72 | 
             
               */
         | 
| @@ -75,6 +83,14 @@ declare class Support extends Service { | |
| 75 83 | 
             
               * Returns the list of severity levels that you can assign to a support case. The severity level for a case is also a field in the CaseDetails data type that you include for a CreateCase request.    You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon Web Services Support API.    If you call the Amazon Web Services Support API from an account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see Amazon Web Services Support.   
         | 
| 76 84 | 
             
               */
         | 
| 77 85 | 
             
              describeSeverityLevels(callback?: (err: AWSError, data: Support.Types.DescribeSeverityLevelsResponse) => void): Request<Support.Types.DescribeSeverityLevelsResponse, AWSError>;
         | 
| 86 | 
            +
              /**
         | 
| 87 | 
            +
               * Returns a list of supported languages for a specified categoryCode, issueType and serviceCode. The returned supported languages will include a ISO 639-1 code for the language, and the language display name.    You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon Web Services Support API.    If you call the Amazon Web Services Support API from an account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see Amazon Web Services Support.   
         | 
| 88 | 
            +
               */
         | 
| 89 | 
            +
              describeSupportedLanguages(params: Support.Types.DescribeSupportedLanguagesRequest, callback?: (err: AWSError, data: Support.Types.DescribeSupportedLanguagesResponse) => void): Request<Support.Types.DescribeSupportedLanguagesResponse, AWSError>;
         | 
| 90 | 
            +
              /**
         | 
| 91 | 
            +
               * Returns a list of supported languages for a specified categoryCode, issueType and serviceCode. The returned supported languages will include a ISO 639-1 code for the language, and the language display name.    You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon Web Services Support API.    If you call the Amazon Web Services Support API from an account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see Amazon Web Services Support.   
         | 
| 92 | 
            +
               */
         | 
| 93 | 
            +
              describeSupportedLanguages(callback?: (err: AWSError, data: Support.Types.DescribeSupportedLanguagesResponse) => void): Request<Support.Types.DescribeSupportedLanguagesResponse, AWSError>;
         | 
| 78 94 | 
             
              /**
         | 
| 79 95 | 
             
               * Returns the refresh status of the Trusted Advisor checks that have the specified check IDs. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. Some checks are refreshed automatically, and you can't return their refresh statuses by using the DescribeTrustedAdvisorCheckRefreshStatuses operation. If you call this operation for these checks, you might see an InvalidParameterValue error.    You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon Web Services Support API.    If you call the Amazon Web Services Support API from an account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, the SubscriptionRequiredException error message appears. For information about changing your support plan, see Amazon Web Services Support.    To call the Trusted Advisor operations in the Amazon Web Services Support API, you must use the US East (N. Virginia) endpoint. Currently, the US West (Oregon) and Europe (Ireland) endpoints don't support the Trusted Advisor operations. For more information, see About the Amazon Web Services Support API in the Amazon Web Services Support User Guide.
         | 
| 80 96 | 
             
               */
         | 
| @@ -242,7 +258,7 @@ declare namespace Support { | |
| 242 258 | 
             
                 */
         | 
| 243 259 | 
             
                ccEmailAddresses?: CcEmailAddressList;
         | 
| 244 260 | 
             
                /**
         | 
| 245 | 
            -
                 * The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports English ("en")  | 
| 261 | 
            +
                 * The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1 code for the language parameter if you want support in that language.
         | 
| 246 262 | 
             
                 */
         | 
| 247 263 | 
             
                language?: Language;
         | 
| 248 264 | 
             
              }
         | 
| @@ -265,6 +281,7 @@ declare namespace Support { | |
| 265 281 | 
             
              export type CategoryName = string;
         | 
| 266 282 | 
             
              export type CcEmailAddress = string;
         | 
| 267 283 | 
             
              export type CcEmailAddressList = CcEmailAddress[];
         | 
| 284 | 
            +
              export type Code = string;
         | 
| 268 285 | 
             
              export interface Communication {
         | 
| 269 286 | 
             
                /**
         | 
| 270 287 | 
             
                 * The support case ID requested or returned in the call. The case ID is an alphanumeric string formatted as shown in this example: case-12345678910-2013-c4c1d2bf33c5cf47 
         | 
| @@ -273,9 +290,9 @@ declare namespace Support { | |
| 273 290 | 
             
                /**
         | 
| 274 291 | 
             
                 * The text of the communication between the customer and Amazon Web Services Support.
         | 
| 275 292 | 
             
                 */
         | 
| 276 | 
            -
                body?:  | 
| 293 | 
            +
                body?: ValidatedCommunicationBody;
         | 
| 277 294 | 
             
                /**
         | 
| 278 | 
            -
                 * The identity of the account that submitted, or responded to, the support case. Customer entries include the  | 
| 295 | 
            +
                 * The identity of the account that submitted, or responded to, the support case. Customer entries include the IAM role as well as the email address (for example, "AdminRole (Role) <janedoe@example.com>). Entries from the Amazon Web Services Support team display "Amazon Web Services," and don't show an email address. 
         | 
| 279 296 | 
             
                 */
         | 
| 280 297 | 
             
                submittedBy?: SubmittedBy;
         | 
| 281 298 | 
             
                /**
         | 
| @@ -289,6 +306,21 @@ declare namespace Support { | |
| 289 306 | 
             
              }
         | 
| 290 307 | 
             
              export type CommunicationBody = string;
         | 
| 291 308 | 
             
              export type CommunicationList = Communication[];
         | 
| 309 | 
            +
              export interface CommunicationTypeOptions {
         | 
| 310 | 
            +
                /**
         | 
| 311 | 
            +
                 *  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. 
         | 
| 312 | 
            +
                 */
         | 
| 313 | 
            +
                type?: Type;
         | 
| 314 | 
            +
                /**
         | 
| 315 | 
            +
                 *  A JSON-formatted list containing time ranges when support is available. 
         | 
| 316 | 
            +
                 */
         | 
| 317 | 
            +
                supportedHours?: SupportedHoursList;
         | 
| 318 | 
            +
                /**
         | 
| 319 | 
            +
                 *  A JSON-formatted list containing date and time ranges for periods without support 
         | 
| 320 | 
            +
                 */
         | 
| 321 | 
            +
                datesWithoutSupport?: DatesWithoutSupportList;
         | 
| 322 | 
            +
              }
         | 
| 323 | 
            +
              export type CommunicationTypeOptionsList = CommunicationTypeOptions[];
         | 
| 292 324 | 
             
              export interface CreateCaseRequest {
         | 
| 293 325 | 
             
                /**
         | 
| 294 326 | 
             
                 * The title of the support case. The title appears in the Subject field on the Amazon Web Services Support Center Create Case page.
         | 
| @@ -315,7 +347,7 @@ declare namespace Support { | |
| 315 347 | 
             
                 */
         | 
| 316 348 | 
             
                ccEmailAddresses?: CcEmailAddressList;
         | 
| 317 349 | 
             
                /**
         | 
| 318 | 
            -
                 * The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports English ("en")  | 
| 350 | 
            +
                 * The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1 code for the language parameter if you want support in that language.
         | 
| 319 351 | 
             
                 */
         | 
| 320 352 | 
             
                language?: Language;
         | 
| 321 353 | 
             
                /**
         | 
| @@ -334,6 +366,17 @@ declare namespace Support { | |
| 334 366 | 
             
                caseId?: CaseId;
         | 
| 335 367 | 
             
              }
         | 
| 336 368 | 
             
              export type Data = Buffer|Uint8Array|Blob|string;
         | 
| 369 | 
            +
              export interface DateInterval {
         | 
| 370 | 
            +
                /**
         | 
| 371 | 
            +
                 *  A JSON object containing start and date time (UTC). Date and time format is RFC 3339 : 'yyyy-MM-dd'T'HH:mm:ss.SSSZZ'. 
         | 
| 372 | 
            +
                 */
         | 
| 373 | 
            +
                startDateTime?: ValidatedDateTime;
         | 
| 374 | 
            +
                /**
         | 
| 375 | 
            +
                 *  End Date Time (UTC). RFC 3339 format : 'yyyy-MM-dd'T'HH:mm:ss.SSSZZ'. 
         | 
| 376 | 
            +
                 */
         | 
| 377 | 
            +
                endDateTime?: ValidatedDateTime;
         | 
| 378 | 
            +
              }
         | 
| 379 | 
            +
              export type DatesWithoutSupportList = DateInterval[];
         | 
| 337 380 | 
             
              export interface DescribeAttachmentRequest {
         | 
| 338 381 | 
             
                /**
         | 
| 339 382 | 
             
                 * The ID of the attachment to return. Attachment IDs are returned by the DescribeCommunications operation.
         | 
| @@ -376,7 +419,7 @@ declare namespace Support { | |
| 376 419 | 
             
                 */
         | 
| 377 420 | 
             
                maxResults?: MaxResults;
         | 
| 378 421 | 
             
                /**
         | 
| 379 | 
            -
                 * The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports English ("en")  | 
| 422 | 
            +
                 * The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1 code for the language parameter if you want support in that language.
         | 
| 380 423 | 
             
                 */
         | 
| 381 424 | 
             
                language?: Language;
         | 
| 382 425 | 
             
                /**
         | 
| @@ -426,13 +469,41 @@ declare namespace Support { | |
| 426 469 | 
             
                 */
         | 
| 427 470 | 
             
                nextToken?: NextToken;
         | 
| 428 471 | 
             
              }
         | 
| 472 | 
            +
              export interface DescribeCreateCaseOptionsRequest {
         | 
| 473 | 
            +
                /**
         | 
| 474 | 
            +
                 * The type of issue for the case. You can specify customer-service or technical. If you don't specify a value, the default is technical.
         | 
| 475 | 
            +
                 */
         | 
| 476 | 
            +
                issueType: IssueType;
         | 
| 477 | 
            +
                /**
         | 
| 478 | 
            +
                 * The code for the Amazon Web Services service. You can use the DescribeServices operation to get the possible serviceCode values.
         | 
| 479 | 
            +
                 */
         | 
| 480 | 
            +
                serviceCode: ServiceCode;
         | 
| 481 | 
            +
                /**
         | 
| 482 | 
            +
                 * The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1 code for the language parameter if you want support in that language.
         | 
| 483 | 
            +
                 */
         | 
| 484 | 
            +
                language: Language;
         | 
| 485 | 
            +
                /**
         | 
| 486 | 
            +
                 * The category of problem for the support case. You also use the DescribeServices operation to get the category code for a service. Each Amazon Web Services service defines its own set of category codes.
         | 
| 487 | 
            +
                 */
         | 
| 488 | 
            +
                categoryCode: CategoryCode;
         | 
| 489 | 
            +
              }
         | 
| 490 | 
            +
              export interface DescribeCreateCaseOptionsResponse {
         | 
| 491 | 
            +
                /**
         | 
| 492 | 
            +
                 * Language availability can be any of the following:    available     best_effort     unavailable   
         | 
| 493 | 
            +
                 */
         | 
| 494 | 
            +
                languageAvailability?: ValidatedLanguageAvailability;
         | 
| 495 | 
            +
                /**
         | 
| 496 | 
            +
                 *  A JSON-formatted array that contains the available communication type options, along with the available support timeframes for the given inputs. 
         | 
| 497 | 
            +
                 */
         | 
| 498 | 
            +
                communicationTypes?: CommunicationTypeOptionsList;
         | 
| 499 | 
            +
              }
         | 
| 429 500 | 
             
              export interface DescribeServicesRequest {
         | 
| 430 501 | 
             
                /**
         | 
| 431 502 | 
             
                 * A JSON-formatted list of service codes available for Amazon Web Services services.
         | 
| 432 503 | 
             
                 */
         | 
| 433 504 | 
             
                serviceCodeList?: ServiceCodeList;
         | 
| 434 505 | 
             
                /**
         | 
| 435 | 
            -
                 * The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports English ("en")  | 
| 506 | 
            +
                 * The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1 code for the language parameter if you want support in that language.
         | 
| 436 507 | 
             
                 */
         | 
| 437 508 | 
             
                language?: Language;
         | 
| 438 509 | 
             
              }
         | 
| @@ -444,7 +515,7 @@ declare namespace Support { | |
| 444 515 | 
             
              }
         | 
| 445 516 | 
             
              export interface DescribeSeverityLevelsRequest {
         | 
| 446 517 | 
             
                /**
         | 
| 447 | 
            -
                 * The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports English ("en")  | 
| 518 | 
            +
                 * The language in which Amazon Web Services Support handles the case. Amazon Web Services Support currently supports Chinese (“zh”), English ("en"), Japanese ("ja") and Korean (“ko”). You must specify the ISO 639-1 code for the language parameter if you want support in that language.
         | 
| 448 519 | 
             
                 */
         | 
| 449 520 | 
             
                language?: Language;
         | 
| 450 521 | 
             
              }
         | 
| @@ -454,6 +525,26 @@ declare namespace Support { | |
| 454 525 | 
             
                 */
         | 
| 455 526 | 
             
                severityLevels?: SeverityLevelsList;
         | 
| 456 527 | 
             
              }
         | 
| 528 | 
            +
              export interface DescribeSupportedLanguagesRequest {
         | 
| 529 | 
            +
                /**
         | 
| 530 | 
            +
                 * The type of issue for the case. You can specify customer-service or technical.
         | 
| 531 | 
            +
                 */
         | 
| 532 | 
            +
                issueType: ValidatedIssueTypeString;
         | 
| 533 | 
            +
                /**
         | 
| 534 | 
            +
                 * The code for the Amazon Web Services service. You can use the DescribeServices operation to get the possible serviceCode values.
         | 
| 535 | 
            +
                 */
         | 
| 536 | 
            +
                serviceCode: ValidatedServiceCode;
         | 
| 537 | 
            +
                /**
         | 
| 538 | 
            +
                 * The category of problem for the support case. You also use the DescribeServices operation to get the category code for a service. Each Amazon Web Services service defines its own set of category codes.
         | 
| 539 | 
            +
                 */
         | 
| 540 | 
            +
                categoryCode: ValidatedCategoryCode;
         | 
| 541 | 
            +
              }
         | 
| 542 | 
            +
              export interface DescribeSupportedLanguagesResponse {
         | 
| 543 | 
            +
                /**
         | 
| 544 | 
            +
                 *  A JSON-formatted array that contains the available ISO 639-1 language codes. 
         | 
| 545 | 
            +
                 */
         | 
| 546 | 
            +
                supportedLanguages?: SupportedLanguagesList;
         | 
| 547 | 
            +
              }
         | 
| 457 548 | 
             
              export interface DescribeTrustedAdvisorCheckRefreshStatusesRequest {
         | 
| 458 549 | 
             
                /**
         | 
| 459 550 | 
             
                 * The IDs of the Trusted Advisor checks to get the status.  If you specify the check ID of a check that is automatically refreshed, you might see an InvalidParameterValue error. 
         | 
| @@ -506,8 +597,10 @@ declare namespace Support { | |
| 506 597 | 
             
                 */
         | 
| 507 598 | 
             
                checks: TrustedAdvisorCheckList;
         | 
| 508 599 | 
             
              }
         | 
| 600 | 
            +
              export type Display = string;
         | 
| 509 601 | 
             
              export type DisplayId = string;
         | 
| 510 602 | 
             
              export type Double = number;
         | 
| 603 | 
            +
              export type EndTime = string;
         | 
| 511 604 | 
             
              export type ExpiryTime = string;
         | 
| 512 605 | 
             
              export type FileName = string;
         | 
| 513 606 | 
             
              export type IncludeCommunications = boolean;
         | 
| @@ -588,11 +681,38 @@ declare namespace Support { | |
| 588 681 | 
             
              export type SeverityLevelCode = string;
         | 
| 589 682 | 
             
              export type SeverityLevelName = string;
         | 
| 590 683 | 
             
              export type SeverityLevelsList = SeverityLevel[];
         | 
| 684 | 
            +
              export type StartTime = string;
         | 
| 591 685 | 
             
              export type Status = string;
         | 
| 592 686 | 
             
              export type String = string;
         | 
| 593 687 | 
             
              export type StringList = String[];
         | 
| 594 688 | 
             
              export type Subject = string;
         | 
| 595 689 | 
             
              export type SubmittedBy = string;
         | 
| 690 | 
            +
              export interface SupportedHour {
         | 
| 691 | 
            +
                /**
         | 
| 692 | 
            +
                 *  Start Time. RFC 3339 format 'HH:mm:ss.SSS'. 
         | 
| 693 | 
            +
                 */
         | 
| 694 | 
            +
                startTime?: StartTime;
         | 
| 695 | 
            +
                /**
         | 
| 696 | 
            +
                 *  End Time. RFC 3339 format 'HH:mm:ss.SSS'. 
         | 
| 697 | 
            +
                 */
         | 
| 698 | 
            +
                endTime?: EndTime;
         | 
| 699 | 
            +
              }
         | 
| 700 | 
            +
              export type SupportedHoursList = SupportedHour[];
         | 
| 701 | 
            +
              export interface SupportedLanguage {
         | 
| 702 | 
            +
                /**
         | 
| 703 | 
            +
                 *  2 digit ISO 639-1 code. e.g. en 
         | 
| 704 | 
            +
                 */
         | 
| 705 | 
            +
                code?: Code;
         | 
| 706 | 
            +
                /**
         | 
| 707 | 
            +
                 *  Full language description e.g. ENGLISH 
         | 
| 708 | 
            +
                 */
         | 
| 709 | 
            +
                language?: Language;
         | 
| 710 | 
            +
                /**
         | 
| 711 | 
            +
                 *  Language display value e.g. ENGLISH 
         | 
| 712 | 
            +
                 */
         | 
| 713 | 
            +
                display?: Display;
         | 
| 714 | 
            +
              }
         | 
| 715 | 
            +
              export type SupportedLanguagesList = SupportedLanguage[];
         | 
| 596 716 | 
             
              export type TimeCreated = string;
         | 
| 597 717 | 
             
              export interface TrustedAdvisorCategorySpecificSummary {
         | 
| 598 718 | 
             
                /**
         | 
| @@ -736,6 +856,13 @@ declare namespace Support { | |
| 736 856 | 
             
                 */
         | 
| 737 857 | 
             
                resourcesSuppressed: Long;
         | 
| 738 858 | 
             
              }
         | 
| 859 | 
            +
              export type Type = string;
         | 
| 860 | 
            +
              export type ValidatedCategoryCode = string;
         | 
| 861 | 
            +
              export type ValidatedCommunicationBody = string;
         | 
| 862 | 
            +
              export type ValidatedDateTime = string;
         | 
| 863 | 
            +
              export type ValidatedIssueTypeString = string;
         | 
| 864 | 
            +
              export type ValidatedLanguageAvailability = string;
         | 
| 865 | 
            +
              export type ValidatedServiceCode = string;
         | 
| 739 866 | 
             
              /**
         | 
| 740 867 | 
             
               * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
         | 
| 741 868 | 
             
               */
         |