aws-sdk-support 1.34.0 → 1.38.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c720098f0949b97f536c96822e2d4c2ccb8f334d8940f29cd5b1d3235d13210f
4
- data.tar.gz: b657886e9091b2722867c736ae4b0974033db03c75c11277bf8459c7da626a33
3
+ metadata.gz: 29d1b7fc651a89ecf605dd3b96c453480aaaf26edd651f4ef07985bcdb3f80d6
4
+ data.tar.gz: 29285fd84d410f6f110ea4ff312fe64fc7788f10248cfdbe3fb886af83cd37c8
5
5
  SHA512:
6
- metadata.gz: 8ca5a5c0ad1bd8159f8eacd65dd41760cdb6fa755aace988aa2ccbaf5f9420d4f190bd23e6fefb51c7e69a61ea0e5a092c7e8c30f07c5e1b624adbd0469c6e77
7
- data.tar.gz: eb9e558f75bb05268d0010cfc7dd4ec9d34d113b8fe854d00d436d313700e85f93f0f446feaf7cbbe325421bf82b82891f00b4943edc3408d52d409e0c7cd04d
6
+ metadata.gz: 4b900096109b2d822fbb01c92f3ea60b3676d9e2c753ae82fed02c323291add41ec1d27f7ad8541450336ea700213a0c98cbfa84328e1bacad77b25ab2498dcc
7
+ data.tar.gz: 65487c67295fcfbc9f2ad19e7d8e638a36fe28cfa532ed41caaee77ddcfdec75f94b33852696784a9f501ed0330e12bab1aac0e58c6bd8783e762ea556fc74c2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.38.0 (2021-12-08)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for AWS Support.
8
+
9
+ 1.37.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.36.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.35.0 (2021-10-18)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.34.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.34.0
1
+ 1.38.0
@@ -119,7 +119,9 @@ module Aws::Support
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -285,6 +287,15 @@ module Aws::Support
285
287
  # ** Please note ** When response stubbing is enabled, no HTTP
286
288
  # requests are made, and retries are disabled.
287
289
  #
290
+ # @option options [Boolean] :use_dualstack_endpoint
291
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
292
+ # will be used if available.
293
+ #
294
+ # @option options [Boolean] :use_fips_endpoint
295
+ # When set to `true`, fips compatible endpoints will be used if available.
296
+ # When a `fips` region is used, the region is normalized and this config
297
+ # is set to `true`.
298
+ #
288
299
  # @option options [Boolean] :validate_params (true)
289
300
  # When `true`, request parameters are validated before
290
301
  # sending the request.
@@ -344,13 +355,14 @@ module Aws::Support
344
355
  # after it's created. The `expiryTime` returned in the response is when
345
356
  # the set expires.
346
357
  #
347
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
348
- # Support API.
358
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
359
+ # plan to use the Amazon Web Services Support API.
349
360
  #
350
- # * If you call the AWS Support API from an account that does not have a
351
- # Business or Enterprise Support plan, the
352
- # `SubscriptionRequiredException` error message appears. For
353
- # information about changing your support plan, see [AWS Support][1].
361
+ # * If you call the Amazon Web Services Support API from an account that
362
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
363
+ # plan, the `SubscriptionRequiredException` error message appears. For
364
+ # information about changing your support plan, see [Amazon Web
365
+ # Services Support][1].
354
366
  #
355
367
  # </note>
356
368
  #
@@ -405,19 +417,20 @@ module Aws::Support
405
417
  req.send_request(options)
406
418
  end
407
419
 
408
- # Adds additional customer communication to an AWS Support case. Use the
409
- # `caseId` parameter to identify the case to which to add communication.
410
- # You can list a set of email addresses to copy on the communication by
411
- # using the `ccEmailAddresses` parameter. The `communicationBody` value
412
- # contains the text of the communication.
420
+ # Adds additional customer communication to an Amazon Web Services
421
+ # Support case. Use the `caseId` parameter to identify the case to which
422
+ # to add communication. You can list a set of email addresses to copy on
423
+ # the communication by using the `ccEmailAddresses` parameter. The
424
+ # `communicationBody` value contains the text of the communication.
413
425
  #
414
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
415
- # Support API.
426
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
427
+ # plan to use the Amazon Web Services Support API.
416
428
  #
417
- # * If you call the AWS Support API from an account that does not have a
418
- # Business or Enterprise Support plan, the
419
- # `SubscriptionRequiredException` error message appears. For
420
- # information about changing your support plan, see [AWS Support][1].
429
+ # * If you call the Amazon Web Services Support API from an account that
430
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
431
+ # plan, the `SubscriptionRequiredException` error message appears. For
432
+ # information about changing your support plan, see [Amazon Web
433
+ # Services Support][1].
421
434
  #
422
435
  # </note>
423
436
  #
@@ -467,34 +480,38 @@ module Aws::Support
467
480
  req.send_request(options)
468
481
  end
469
482
 
470
- # Creates a case in the AWS Support Center. This operation is similar to
471
- # how you create a case in the AWS Support Center [Create Case][1] page.
483
+ # Creates a case in the Amazon Web Services Support Center. This
484
+ # operation is similar to how you create a case in the Amazon Web
485
+ # Services Support Center [Create Case][1] page.
472
486
  #
473
- # The AWS Support API doesn't support requesting service limit
474
- # increases. You can submit a service limit increase in the following
475
- # ways:
487
+ # The Amazon Web Services Support API doesn't support requesting
488
+ # service limit increases. You can submit a service limit increase in
489
+ # the following ways:
476
490
  #
477
- # * Submit a request from the AWS Support Center [Create Case][1] page.
491
+ # * Submit a request from the Amazon Web Services Support Center [Create
492
+ # Case][1] page.
478
493
  #
479
494
  # * Use the Service Quotas [RequestServiceQuotaIncrease][2] operation.
480
495
  #
481
- # A successful `CreateCase` request returns an AWS Support case number.
482
- # You can use the DescribeCases operation and specify the case number to
483
- # get existing AWS Support cases. After you create a case, use the
484
- # AddCommunicationToCase operation to add additional communication or
485
- # attachments to an existing case.
496
+ # A successful `CreateCase` request returns an Amazon Web Services
497
+ # Support case number. You can use the DescribeCases operation and
498
+ # specify the case number to get existing Amazon Web Services Support
499
+ # cases. After you create a case, use the AddCommunicationToCase
500
+ # operation to add additional communication or attachments to an
501
+ # existing case.
486
502
  #
487
- # The `caseId` is separate from the `displayId` that appears in the [AWS
488
- # Support Center][3]. Use the DescribeCases operation to get the
489
- # `displayId`.
503
+ # The `caseId` is separate from the `displayId` that appears in the
504
+ # [Amazon Web Services Support Center][3]. Use the DescribeCases
505
+ # operation to get the `displayId`.
490
506
  #
491
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
492
- # Support API.
507
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
508
+ # plan to use the Amazon Web Services Support API.
493
509
  #
494
- # * If you call the AWS Support API from an account that does not have a
495
- # Business or Enterprise Support plan, the
496
- # `SubscriptionRequiredException` error message appears. For
497
- # information about changing your support plan, see [AWS Support][4].
510
+ # * If you call the Amazon Web Services Support API from an account that
511
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
512
+ # plan, the `SubscriptionRequiredException` error message appears. For
513
+ # information about changing your support plan, see [Amazon Web
514
+ # Services Support][4].
498
515
  #
499
516
  # </note>
500
517
  #
@@ -507,27 +524,27 @@ module Aws::Support
507
524
  #
508
525
  # @option params [required, String] :subject
509
526
  # The title of the support case. The title appears in the **Subject**
510
- # field on the AWS Support Center [Create Case][1] page.
527
+ # field on the Amazon Web Services Support Center [Create Case][1] page.
511
528
  #
512
529
  #
513
530
  #
514
531
  # [1]: https://console.aws.amazon.com/support/home#/case/create
515
532
  #
516
533
  # @option params [String] :service_code
517
- # The code for the AWS service. You can use the DescribeServices
518
- # operation to get the possible `serviceCode` values.
534
+ # The code for the Amazon Web Services service. You can use the
535
+ # DescribeServices operation to get the possible `serviceCode` values.
519
536
  #
520
537
  # @option params [String] :severity_code
521
538
  # A value that indicates the urgency of the case. This value determines
522
- # the response time according to your service level agreement with AWS
523
- # Support. You can use the DescribeSeverityLevels operation to get the
524
- # possible values for `severityCode`.
539
+ # the response time according to your service level agreement with
540
+ # Amazon Web Services Support. You can use the DescribeSeverityLevels
541
+ # operation to get the possible values for `severityCode`.
525
542
  #
526
543
  # For more information, see SeverityLevel and [Choosing a Severity][1]
527
- # in the *AWS Support User Guide*.
544
+ # in the *Amazon Web Services Support User Guide*.
528
545
  #
529
546
  # <note markdown="1"> The availability of severity levels depends on the support plan for
530
- # the AWS account.
547
+ # the Amazon Web Services account.
531
548
  #
532
549
  # </note>
533
550
  #
@@ -538,32 +555,34 @@ module Aws::Support
538
555
  # @option params [String] :category_code
539
556
  # The category of problem for the support case. You also use the
540
557
  # DescribeServices operation to get the category code for a service.
541
- # Each AWS service defines its own set of category codes.
558
+ # Each Amazon Web Services service defines its own set of category
559
+ # codes.
542
560
  #
543
561
  # @option params [required, String] :communication_body
544
562
  # The communication body text that describes the issue. This text
545
- # appears in the **Description** field on the AWS Support Center [Create
546
- # Case][1] page.
563
+ # appears in the **Description** field on the Amazon Web Services
564
+ # Support Center [Create Case][1] page.
547
565
  #
548
566
  #
549
567
  #
550
568
  # [1]: https://console.aws.amazon.com/support/home#/case/create
551
569
  #
552
570
  # @option params [Array<String>] :cc_email_addresses
553
- # A list of email addresses that AWS Support copies on case
554
- # correspondence. AWS Support identifies the account that creates the
555
- # case when you specify your AWS credentials in an HTTP POST method or
556
- # use the [AWS SDKs][1].
571
+ # A list of email addresses that Amazon Web Services Support copies on
572
+ # case correspondence. Amazon Web Services Support identifies the
573
+ # account that creates the case when you specify your Amazon Web
574
+ # Services credentials in an HTTP POST method or use the [Amazon Web
575
+ # Services SDKs][1].
557
576
  #
558
577
  #
559
578
  #
560
579
  # [1]: http://aws.amazon.com/tools/
561
580
  #
562
581
  # @option params [String] :language
563
- # The language in which AWS Support handles the case. You must specify
564
- # the ISO 639-1 code for the `language` parameter if you want support in
565
- # that language. Currently, English ("en") and Japanese ("ja") are
566
- # supported.
582
+ # The language in which Amazon Web Services Support handles the case.
583
+ # You must specify the ISO 639-1 code for the `language` parameter if
584
+ # you want support in that language. Currently, English ("en") and
585
+ # Japanese ("ja") are supported.
567
586
  #
568
587
  # @option params [String] :issue_type
569
588
  # The type of issue for the case. You can specify `customer-service` or
@@ -612,13 +631,14 @@ module Aws::Support
612
631
  # are returned in the AttachmentDetails objects that are returned by the
613
632
  # DescribeCommunications operation.
614
633
  #
615
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
616
- # Support API.
634
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
635
+ # plan to use the Amazon Web Services Support API.
617
636
  #
618
- # * If you call the AWS Support API from an account that does not have a
619
- # Business or Enterprise Support plan, the
620
- # `SubscriptionRequiredException` error message appears. For
621
- # information about changing your support plan, see [AWS Support][1].
637
+ # * If you call the Amazon Web Services Support API from an account that
638
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
639
+ # plan, the `SubscriptionRequiredException` error message appears. For
640
+ # information about changing your support plan, see [Amazon Web
641
+ # Services Support][1].
622
642
  #
623
643
  # </note>
624
644
  #
@@ -670,13 +690,14 @@ module Aws::Support
670
690
  # Case data is available for 12 months after creation. If a case was
671
691
  # created more than 12 months ago, a request might return an error.
672
692
  #
673
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
674
- # Support API.
693
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
694
+ # plan to use the Amazon Web Services Support API.
675
695
  #
676
- # * If you call the AWS Support API from an account that does not have a
677
- # Business or Enterprise Support plan, the
678
- # `SubscriptionRequiredException` error message appears. For
679
- # information about changing your support plan, see [AWS Support][2].
696
+ # * If you call the Amazon Web Services Support API from an account that
697
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
698
+ # plan, the `SubscriptionRequiredException` error message appears. For
699
+ # information about changing your support plan, see [Amazon Web
700
+ # Services Support][2].
680
701
  #
681
702
  # </note>
682
703
  #
@@ -690,7 +711,8 @@ module Aws::Support
690
711
  # maximum number of cases is 100.
691
712
  #
692
713
  # @option params [String] :display_id
693
- # The ID displayed for a case in the AWS Support Center user interface.
714
+ # The ID displayed for a case in the Amazon Web Services Support Center
715
+ # user interface.
694
716
  #
695
717
  # @option params [String] :after_time
696
718
  # The start date for a filtered date search on support case
@@ -713,10 +735,10 @@ module Aws::Support
713
735
  # The maximum number of results to return before paginating.
714
736
  #
715
737
  # @option params [String] :language
716
- # The ISO 639-1 code for the language in which AWS provides support. AWS
717
- # Support currently supports English ("en") and Japanese ("ja").
718
- # Language parameters must be passed explicitly for operations that take
719
- # them.
738
+ # The ISO 639-1 code for the language in which Amazon Web Services
739
+ # provides support. Amazon Web Services Support currently supports
740
+ # English ("en") and Japanese ("ja"). Language parameters must be
741
+ # passed explicitly for operations that take them.
720
742
  #
721
743
  # @option params [Boolean] :include_communications
722
744
  # Specifies whether to include communications in the `DescribeCases`
@@ -792,13 +814,14 @@ module Aws::Support
792
814
  # that you want to display on each page, and use `nextToken` to specify
793
815
  # the resumption of pagination.
794
816
  #
795
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
796
- # Support API.
817
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
818
+ # plan to use the Amazon Web Services Support API.
797
819
  #
798
- # * If you call the AWS Support API from an account that does not have a
799
- # Business or Enterprise Support plan, the
800
- # `SubscriptionRequiredException` error message appears. For
801
- # information about changing your support plan, see [AWS Support][1].
820
+ # * If you call the Amazon Web Services Support API from an account that
821
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
822
+ # plan, the `SubscriptionRequiredException` error message appears. For
823
+ # information about changing your support plan, see [Amazon Web
824
+ # Services Support][1].
802
825
  #
803
826
  # </note>
804
827
  #
@@ -865,26 +888,27 @@ module Aws::Support
865
888
  req.send_request(options)
866
889
  end
867
890
 
868
- # Returns the current list of AWS services and a list of service
869
- # categories for each service. You then use service names and categories
870
- # in your CreateCase requests. Each AWS service has its own set of
871
- # categories.
891
+ # Returns the current list of Amazon Web Services services and a list of
892
+ # service categories for each service. You then use service names and
893
+ # categories in your CreateCase requests. Each Amazon Web Services
894
+ # service has its own set of categories.
872
895
  #
873
896
  # The service codes and category codes correspond to the values that
874
- # appear in the **Service** and **Category** lists on the AWS Support
875
- # Center [Create Case][1] page. The values in those fields don't
876
- # necessarily match the service codes and categories returned by the
877
- # `DescribeServices` operation. Always use the service codes and
878
- # categories that the `DescribeServices` operation returns, so that you
879
- # have the most recent set of service and category codes.
880
- #
881
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
882
- # Support API.
883
- #
884
- # * If you call the AWS Support API from an account that does not have a
885
- # Business or Enterprise Support plan, the
886
- # `SubscriptionRequiredException` error message appears. For
887
- # information about changing your support plan, see [AWS Support][2].
897
+ # appear in the **Service** and **Category** lists on the Amazon Web
898
+ # Services Support Center [Create Case][1] page. The values in those
899
+ # fields don't necessarily match the service codes and categories
900
+ # returned by the `DescribeServices` operation. Always use the service
901
+ # codes and categories that the `DescribeServices` operation returns, so
902
+ # that you have the most recent set of service and category codes.
903
+ #
904
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
905
+ # plan to use the Amazon Web Services Support API.
906
+ #
907
+ # * If you call the Amazon Web Services Support API from an account that
908
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
909
+ # plan, the `SubscriptionRequiredException` error message appears. For
910
+ # information about changing your support plan, see [Amazon Web
911
+ # Services Support][2].
888
912
  #
889
913
  # </note>
890
914
  #
@@ -894,13 +918,14 @@ module Aws::Support
894
918
  # [2]: http://aws.amazon.com/premiumsupport/
895
919
  #
896
920
  # @option params [Array<String>] :service_code_list
897
- # A JSON-formatted list of service codes available for AWS services.
921
+ # A JSON-formatted list of service codes available for Amazon Web
922
+ # Services services.
898
923
  #
899
924
  # @option params [String] :language
900
- # The ISO 639-1 code for the language in which AWS provides support. AWS
901
- # Support currently supports English ("en") and Japanese ("ja").
902
- # Language parameters must be passed explicitly for operations that take
903
- # them.
925
+ # The ISO 639-1 code for the language in which Amazon Web Services
926
+ # provides support. Amazon Web Services Support currently supports
927
+ # English ("en") and Japanese ("ja"). Language parameters must be
928
+ # passed explicitly for operations that take them.
904
929
  #
905
930
  # @return [Types::DescribeServicesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
906
931
  #
@@ -935,13 +960,14 @@ module Aws::Support
935
960
  # case. The severity level for a case is also a field in the CaseDetails
936
961
  # data type that you include for a CreateCase request.
937
962
  #
938
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
939
- # Support API.
963
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
964
+ # plan to use the Amazon Web Services Support API.
940
965
  #
941
- # * If you call the AWS Support API from an account that does not have a
942
- # Business or Enterprise Support plan, the
943
- # `SubscriptionRequiredException` error message appears. For
944
- # information about changing your support plan, see [AWS Support][1].
966
+ # * If you call the Amazon Web Services Support API from an account that
967
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
968
+ # plan, the `SubscriptionRequiredException` error message appears. For
969
+ # information about changing your support plan, see [Amazon Web
970
+ # Services Support][1].
945
971
  #
946
972
  # </note>
947
973
  #
@@ -950,10 +976,10 @@ module Aws::Support
950
976
  # [1]: http://aws.amazon.com/premiumsupport/
951
977
  #
952
978
  # @option params [String] :language
953
- # The ISO 639-1 code for the language in which AWS provides support. AWS
954
- # Support currently supports English ("en") and Japanese ("ja").
955
- # Language parameters must be passed explicitly for operations that take
956
- # them.
979
+ # The ISO 639-1 code for the language in which Amazon Web Services
980
+ # provides support. Amazon Web Services Support currently supports
981
+ # English ("en") and Japanese ("ja"). Language parameters must be
982
+ # passed explicitly for operations that take them.
957
983
  #
958
984
  # @return [Types::DescribeSeverityLevelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
959
985
  #
@@ -980,8 +1006,8 @@ module Aws::Support
980
1006
  req.send_request(options)
981
1007
  end
982
1008
 
983
- # Returns the refresh status of the AWS Trusted Advisor checks that have
984
- # the specified check IDs. You can get the check IDs by calling the
1009
+ # Returns the refresh status of the Trusted Advisor checks that have the
1010
+ # specified check IDs. You can get the check IDs by calling the
985
1011
  # DescribeTrustedAdvisorChecks operation.
986
1012
  #
987
1013
  # Some checks are refreshed automatically, and you can't return their
@@ -990,13 +1016,14 @@ module Aws::Support
990
1016
  # this operation for these checks, you might see an
991
1017
  # `InvalidParameterValue` error.
992
1018
  #
993
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
994
- # Support API.
1019
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1020
+ # plan to use the Amazon Web Services Support API.
995
1021
  #
996
- # * If you call the AWS Support API from an account that does not have a
997
- # Business or Enterprise Support plan, the
998
- # `SubscriptionRequiredException` error message appears. For
999
- # information about changing your support plan, see [AWS Support][1].
1022
+ # * If you call the Amazon Web Services Support API from an account that
1023
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1024
+ # plan, the `SubscriptionRequiredException` error message appears. For
1025
+ # information about changing your support plan, see [Amazon Web
1026
+ # Services Support][1].
1000
1027
  #
1001
1028
  # </note>
1002
1029
  #
@@ -1038,7 +1065,7 @@ module Aws::Support
1038
1065
  req.send_request(options)
1039
1066
  end
1040
1067
 
1041
- # Returns the results of the AWS Trusted Advisor check that has the
1068
+ # Returns the results of the Trusted Advisor check that has the
1042
1069
  # specified check ID. You can get the check IDs by calling the
1043
1070
  # DescribeTrustedAdvisorChecks operation.
1044
1071
  #
@@ -1060,13 +1087,14 @@ module Aws::Support
1060
1087
  #
1061
1088
  # * **checkId** - The unique identifier for the check.
1062
1089
  #
1063
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
1064
- # Support API.
1090
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1091
+ # plan to use the Amazon Web Services Support API.
1065
1092
  #
1066
- # * If you call the AWS Support API from an account that does not have a
1067
- # Business or Enterprise Support plan, the
1068
- # `SubscriptionRequiredException` error message appears. For
1069
- # information about changing your support plan, see [AWS Support][1].
1093
+ # * If you call the Amazon Web Services Support API from an account that
1094
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1095
+ # plan, the `SubscriptionRequiredException` error message appears. For
1096
+ # information about changing your support plan, see [Amazon Web
1097
+ # Services Support][1].
1070
1098
  #
1071
1099
  # </note>
1072
1100
  #
@@ -1078,10 +1106,10 @@ module Aws::Support
1078
1106
  # The unique identifier for the Trusted Advisor check.
1079
1107
  #
1080
1108
  # @option params [String] :language
1081
- # The ISO 639-1 code for the language in which AWS provides support. AWS
1082
- # Support currently supports English ("en") and Japanese ("ja").
1083
- # Language parameters must be passed explicitly for operations that take
1084
- # them.
1109
+ # The ISO 639-1 code for the language in which Amazon Web Services
1110
+ # provides support. Amazon Web Services Support currently supports
1111
+ # English ("en") and Japanese ("ja"). Language parameters must be
1112
+ # passed explicitly for operations that take them.
1085
1113
  #
1086
1114
  # @return [Types::DescribeTrustedAdvisorCheckResultResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1087
1115
  #
@@ -1122,19 +1150,20 @@ module Aws::Support
1122
1150
  req.send_request(options)
1123
1151
  end
1124
1152
 
1125
- # Returns the results for the AWS Trusted Advisor check summaries for
1126
- # the check IDs that you specified. You can get the check IDs by calling
1127
- # the DescribeTrustedAdvisorChecks operation.
1153
+ # Returns the results for the Trusted Advisor check summaries for the
1154
+ # check IDs that you specified. You can get the check IDs by calling the
1155
+ # DescribeTrustedAdvisorChecks operation.
1128
1156
  #
1129
1157
  # The response contains an array of TrustedAdvisorCheckSummary objects.
1130
1158
  #
1131
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
1132
- # Support API.
1159
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1160
+ # plan to use the Amazon Web Services Support API.
1133
1161
  #
1134
- # * If you call the AWS Support API from an account that does not have a
1135
- # Business or Enterprise Support plan, the
1136
- # `SubscriptionRequiredException` error message appears. For
1137
- # information about changing your support plan, see [AWS Support][1].
1162
+ # * If you call the Amazon Web Services Support API from an account that
1163
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1164
+ # plan, the `SubscriptionRequiredException` error message appears. For
1165
+ # information about changing your support plan, see [Amazon Web
1166
+ # Services Support][1].
1138
1167
  #
1139
1168
  # </note>
1140
1169
  #
@@ -1178,20 +1207,21 @@ module Aws::Support
1178
1207
  req.send_request(options)
1179
1208
  end
1180
1209
 
1181
- # Returns information about all available AWS Trusted Advisor checks,
1210
+ # Returns information about all available Trusted Advisor checks,
1182
1211
  # including the name, ID, category, description, and metadata. You must
1183
- # specify a language code. The AWS Support API currently supports
1184
- # English ("en") and Japanese ("ja"). The response contains a
1185
- # TrustedAdvisorCheckDescription object for each check. You must set the
1186
- # AWS Region to us-east-1.
1212
+ # specify a language code. The Amazon Web Services Support API currently
1213
+ # supports English ("en") and Japanese ("ja"). The response contains
1214
+ # a TrustedAdvisorCheckDescription object for each check. You must set
1215
+ # the Amazon Web Services Region to us-east-1.
1187
1216
  #
1188
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
1189
- # Support API.
1217
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1218
+ # plan to use the Amazon Web Services Support API.
1190
1219
  #
1191
- # * If you call the AWS Support API from an account that does not have a
1192
- # Business or Enterprise Support plan, the
1193
- # `SubscriptionRequiredException` error message appears. For
1194
- # information about changing your support plan, see [AWS Support][1].
1220
+ # * If you call the Amazon Web Services Support API from an account that
1221
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1222
+ # plan, the `SubscriptionRequiredException` error message appears. For
1223
+ # information about changing your support plan, see [Amazon Web
1224
+ # Services Support][1].
1195
1225
  #
1196
1226
  # * The names and descriptions for Trusted Advisor checks are subject to
1197
1227
  # change. We recommend that you specify the check ID in your code to
@@ -1204,10 +1234,10 @@ module Aws::Support
1204
1234
  # [1]: http://aws.amazon.com/premiumsupport/
1205
1235
  #
1206
1236
  # @option params [required, String] :language
1207
- # The ISO 639-1 code for the language in which AWS provides support. AWS
1208
- # Support currently supports English ("en") and Japanese ("ja").
1209
- # Language parameters must be passed explicitly for operations that take
1210
- # them.
1237
+ # The ISO 639-1 code for the language in which Amazon Web Services
1238
+ # provides support. Amazon Web Services Support currently supports
1239
+ # English ("en") and Japanese ("ja"). Language parameters must be
1240
+ # passed explicitly for operations that take them.
1211
1241
  #
1212
1242
  # @return [Types::DescribeTrustedAdvisorChecksResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1213
1243
  #
@@ -1238,8 +1268,8 @@ module Aws::Support
1238
1268
  req.send_request(options)
1239
1269
  end
1240
1270
 
1241
- # Refreshes the AWS Trusted Advisor check that you specify using the
1242
- # check ID. You can get the check IDs by calling the
1271
+ # Refreshes the Trusted Advisor check that you specify using the check
1272
+ # ID. You can get the check IDs by calling the
1243
1273
  # DescribeTrustedAdvisorChecks operation.
1244
1274
  #
1245
1275
  # <note markdown="1"> Some checks are refreshed automatically. If you call the
@@ -1250,13 +1280,14 @@ module Aws::Support
1250
1280
  #
1251
1281
  # The response contains a TrustedAdvisorCheckRefreshStatus object.
1252
1282
  #
1253
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
1254
- # Support API.
1283
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1284
+ # plan to use the Amazon Web Services Support API.
1255
1285
  #
1256
- # * If you call the AWS Support API from an account that does not have a
1257
- # Business or Enterprise Support plan, the
1258
- # `SubscriptionRequiredException` error message appears. For
1259
- # information about changing your support plan, see [AWS Support][1].
1286
+ # * If you call the Amazon Web Services Support API from an account that
1287
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1288
+ # plan, the `SubscriptionRequiredException` error message appears. For
1289
+ # information about changing your support plan, see [Amazon Web
1290
+ # Services Support][1].
1260
1291
  #
1261
1292
  # </note>
1262
1293
  #
@@ -1300,13 +1331,14 @@ module Aws::Support
1300
1331
  # Resolves a support case. This operation takes a `caseId` and returns
1301
1332
  # the initial and final state of the case.
1302
1333
  #
1303
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
1304
- # Support API.
1334
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1335
+ # plan to use the Amazon Web Services Support API.
1305
1336
  #
1306
- # * If you call the AWS Support API from an account that does not have a
1307
- # Business or Enterprise Support plan, the
1308
- # `SubscriptionRequiredException` error message appears. For
1309
- # information about changing your support plan, see [AWS Support][1].
1337
+ # * If you call the Amazon Web Services Support API from an account that
1338
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1339
+ # plan, the `SubscriptionRequiredException` error message appears. For
1340
+ # information about changing your support plan, see [Amazon Web
1341
+ # Services Support][1].
1310
1342
  #
1311
1343
  # </note>
1312
1344
  #
@@ -1357,7 +1389,7 @@ module Aws::Support
1357
1389
  params: params,
1358
1390
  config: config)
1359
1391
  context[:gem_name] = 'aws-sdk-support'
1360
- context[:gem_version] = '1.34.0'
1392
+ context[:gem_version] = '1.38.0'
1361
1393
  Seahorse::Client::Request.new(handlers, context)
1362
1394
  end
1363
1395
 
@@ -281,13 +281,13 @@ module Aws::Support
281
281
  # Corresponds to the `CategoryCode` values returned by a call to
282
282
  # DescribeServices.
283
283
  #
284
- # * **displayId** - The identifier for the case on pages in the AWS
285
- # Support Center.
284
+ # * **displayId** - The identifier for the case on pages in the Amazon
285
+ # Web Services Support Center.
286
286
  #
287
- # * **language** - The ISO 639-1 code for the language in which AWS
288
- # provides support. AWS Support currently supports English ("en")
289
- # and Japanese ("ja"). Language parameters must be passed explicitly
290
- # for operations that take them.
287
+ # * **language** - The ISO 639-1 code for the language in which Amazon
288
+ # Web Services provides support. Amazon Web Services Support currently
289
+ # supports English ("en") and Japanese ("ja"). Language parameters
290
+ # must be passed explicitly for operations that take them.
291
291
  #
292
292
  # * **nextToken** - A resumption point for pagination.
293
293
  #
@@ -295,8 +295,8 @@ module Aws::Support
295
295
  # of these objects are `attachments`, `body`, `caseId`, `submittedBy`,
296
296
  # and `timeCreated`.
297
297
  #
298
- # * **serviceCode** - The identifier for the AWS service that
299
- # corresponds to the service code defined in the call to
298
+ # * **serviceCode** - The identifier for the Amazon Web Services service
299
+ # that corresponds to the service code defined in the call to
300
300
  # DescribeServices.
301
301
  #
302
302
  # * **severityCode** - The severity code assigned to the case. Contains
@@ -304,8 +304,8 @@ module Aws::Support
304
304
  # The possible values are: `low`, `normal`, `high`, `urgent`, and
305
305
  # `critical`.
306
306
  #
307
- # * **status** - The status of the case in the AWS Support Center. Valid
308
- # values:
307
+ # * **status** - The status of the case in the Amazon Web Services
308
+ # Support Center. Valid values:
309
309
  #
310
310
  # * `opened`
311
311
  #
@@ -333,12 +333,13 @@ module Aws::Support
333
333
  # @return [String]
334
334
  #
335
335
  # @!attribute [rw] display_id
336
- # The ID displayed for the case in the AWS Support Center. This is a
337
- # numeric string.
336
+ # The ID displayed for the case in the Amazon Web Services Support
337
+ # Center. This is a numeric string.
338
338
  # @return [String]
339
339
  #
340
340
  # @!attribute [rw] subject
341
- # The subject line for the case in the AWS Support Center.
341
+ # The subject line for the case in the Amazon Web Services Support
342
+ # Center.
342
343
  # @return [String]
343
344
  #
344
345
  # @!attribute [rw] status
@@ -360,8 +361,9 @@ module Aws::Support
360
361
  # @return [String]
361
362
  #
362
363
  # @!attribute [rw] service_code
363
- # The code for the AWS service. You can get a list of codes and the
364
- # corresponding service names by calling DescribeServices.
364
+ # The code for the Amazon Web Services service. You can get a list of
365
+ # codes and the corresponding service names by calling
366
+ # DescribeServices.
365
367
  # @return [String]
366
368
  #
367
369
  # @!attribute [rw] category_code
@@ -378,14 +380,15 @@ module Aws::Support
378
380
  # @return [String]
379
381
  #
380
382
  # @!attribute [rw] time_created
381
- # The time that the case was created in the AWS Support Center.
383
+ # The time that the case was created in the Amazon Web Services
384
+ # Support Center.
382
385
  # @return [String]
383
386
  #
384
387
  # @!attribute [rw] recent_communications
385
- # The five most recent communications between you and AWS Support
386
- # Center, including the IDs of any attachments to the communications.
387
- # Also includes a `nextToken` that you can use to retrieve earlier
388
- # communications.
388
+ # The five most recent communications between you and Amazon Web
389
+ # Services Support Center, including the IDs of any attachments to the
390
+ # communications. Also includes a `nextToken` that you can use to
391
+ # retrieve earlier communications.
389
392
  # @return [Types::RecentCaseCommunications]
390
393
  #
391
394
  # @!attribute [rw] cc_email_addresses
@@ -394,10 +397,10 @@ module Aws::Support
394
397
  # @return [Array<String>]
395
398
  #
396
399
  # @!attribute [rw] language
397
- # The ISO 639-1 code for the language in which AWS provides support.
398
- # AWS Support currently supports English ("en") and Japanese
399
- # ("ja"). Language parameters must be passed explicitly for
400
- # operations that take them.
400
+ # The ISO 639-1 code for the language in which Amazon Web Services
401
+ # provides support. Amazon Web Services Support currently supports
402
+ # English ("en") and Japanese ("ja"). Language parameters must be
403
+ # passed explicitly for operations that take them.
401
404
  # @return [String]
402
405
  #
403
406
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/CaseDetails AWS API Documentation
@@ -435,7 +438,7 @@ module Aws::Support
435
438
 
436
439
  # A JSON-formatted name/value pair that represents the category name and
437
440
  # category code of the problem, selected from the DescribeServices
438
- # response for each AWS service.
441
+ # response for each Amazon Web Services service.
439
442
  #
440
443
  # @!attribute [rw] code
441
444
  # The category code for the support case.
@@ -466,15 +469,17 @@ module Aws::Support
466
469
  # @return [String]
467
470
  #
468
471
  # @!attribute [rw] body
469
- # The text of the communication between the customer and AWS Support.
472
+ # The text of the communication between the customer and Amazon Web
473
+ # Services Support.
470
474
  # @return [String]
471
475
  #
472
476
  # @!attribute [rw] submitted_by
473
477
  # The identity of the account that submitted, or responded to, the
474
478
  # support case. Customer entries include the role or IAM user as well
475
479
  # as the email address. For example, "AdminRole (Role)
476
- # &lt;janedoe@example.com&gt;. Entries from the AWS Support team
477
- # display "Amazon Web Services," and don't show an email address.
480
+ # &lt;janedoe@example.com&gt;. Entries from the Amazon Web Services
481
+ # Support team display "Amazon Web Services," and don't show an
482
+ # email address.
478
483
  # @return [String]
479
484
  #
480
485
  # @!attribute [rw] time_created
@@ -514,7 +519,8 @@ module Aws::Support
514
519
  #
515
520
  # @!attribute [rw] subject
516
521
  # The title of the support case. The title appears in the **Subject**
517
- # field on the AWS Support Center [Create Case][1] page.
522
+ # field on the Amazon Web Services Support Center [Create Case][1]
523
+ # page.
518
524
  #
519
525
  #
520
526
  #
@@ -522,21 +528,22 @@ module Aws::Support
522
528
  # @return [String]
523
529
  #
524
530
  # @!attribute [rw] service_code
525
- # The code for the AWS service. You can use the DescribeServices
526
- # operation to get the possible `serviceCode` values.
531
+ # The code for the Amazon Web Services service. You can use the
532
+ # DescribeServices operation to get the possible `serviceCode` values.
527
533
  # @return [String]
528
534
  #
529
535
  # @!attribute [rw] severity_code
530
536
  # A value that indicates the urgency of the case. This value
531
537
  # determines the response time according to your service level
532
- # agreement with AWS Support. You can use the DescribeSeverityLevels
533
- # operation to get the possible values for `severityCode`.
538
+ # agreement with Amazon Web Services Support. You can use the
539
+ # DescribeSeverityLevels operation to get the possible values for
540
+ # `severityCode`.
534
541
  #
535
542
  # For more information, see SeverityLevel and [Choosing a Severity][1]
536
- # in the *AWS Support User Guide*.
543
+ # in the *Amazon Web Services Support User Guide*.
537
544
  #
538
545
  # <note markdown="1"> The availability of severity levels depends on the support plan for
539
- # the AWS account.
546
+ # the Amazon Web Services account.
540
547
  #
541
548
  # </note>
542
549
  #
@@ -548,13 +555,14 @@ module Aws::Support
548
555
  # @!attribute [rw] category_code
549
556
  # The category of problem for the support case. You also use the
550
557
  # DescribeServices operation to get the category code for a service.
551
- # Each AWS service defines its own set of category codes.
558
+ # Each Amazon Web Services service defines its own set of category
559
+ # codes.
552
560
  # @return [String]
553
561
  #
554
562
  # @!attribute [rw] communication_body
555
563
  # The communication body text that describes the issue. This text
556
- # appears in the **Description** field on the AWS Support Center
557
- # [Create Case][1] page.
564
+ # appears in the **Description** field on the Amazon Web Services
565
+ # Support Center [Create Case][1] page.
558
566
  #
559
567
  #
560
568
  #
@@ -562,10 +570,11 @@ module Aws::Support
562
570
  # @return [String]
563
571
  #
564
572
  # @!attribute [rw] cc_email_addresses
565
- # A list of email addresses that AWS Support copies on case
566
- # correspondence. AWS Support identifies the account that creates the
567
- # case when you specify your AWS credentials in an HTTP POST method or
568
- # use the [AWS SDKs][1].
573
+ # A list of email addresses that Amazon Web Services Support copies on
574
+ # case correspondence. Amazon Web Services Support identifies the
575
+ # account that creates the case when you specify your Amazon Web
576
+ # Services credentials in an HTTP POST method or use the [Amazon Web
577
+ # Services SDKs][1].
569
578
  #
570
579
  #
571
580
  #
@@ -573,10 +582,10 @@ module Aws::Support
573
582
  # @return [Array<String>]
574
583
  #
575
584
  # @!attribute [rw] language
576
- # The language in which AWS Support handles the case. You must specify
577
- # the ISO 639-1 code for the `language` parameter if you want support
578
- # in that language. Currently, English ("en") and Japanese ("ja")
579
- # are supported.
585
+ # The language in which Amazon Web Services Support handles the case.
586
+ # You must specify the ISO 639-1 code for the `language` parameter if
587
+ # you want support in that language. Currently, English ("en") and
588
+ # Japanese ("ja") are supported.
580
589
  # @return [String]
581
590
  #
582
591
  # @!attribute [rw] issue_type
@@ -700,8 +709,8 @@ module Aws::Support
700
709
  # @return [Array<String>]
701
710
  #
702
711
  # @!attribute [rw] display_id
703
- # The ID displayed for a case in the AWS Support Center user
704
- # interface.
712
+ # The ID displayed for a case in the Amazon Web Services Support
713
+ # Center user interface.
705
714
  # @return [String]
706
715
  #
707
716
  # @!attribute [rw] after_time
@@ -731,10 +740,10 @@ module Aws::Support
731
740
  # @return [Integer]
732
741
  #
733
742
  # @!attribute [rw] language
734
- # The ISO 639-1 code for the language in which AWS provides support.
735
- # AWS Support currently supports English ("en") and Japanese
736
- # ("ja"). Language parameters must be passed explicitly for
737
- # operations that take them.
743
+ # The ISO 639-1 code for the language in which Amazon Web Services
744
+ # provides support. Amazon Web Services Support currently supports
745
+ # English ("en") and Japanese ("ja"). Language parameters must be
746
+ # passed explicitly for operations that take them.
738
747
  # @return [String]
739
748
  #
740
749
  # @!attribute [rw] include_communications
@@ -859,14 +868,15 @@ module Aws::Support
859
868
  # }
860
869
  #
861
870
  # @!attribute [rw] service_code_list
862
- # A JSON-formatted list of service codes available for AWS services.
871
+ # A JSON-formatted list of service codes available for Amazon Web
872
+ # Services services.
863
873
  # @return [Array<String>]
864
874
  #
865
875
  # @!attribute [rw] language
866
- # The ISO 639-1 code for the language in which AWS provides support.
867
- # AWS Support currently supports English ("en") and Japanese
868
- # ("ja"). Language parameters must be passed explicitly for
869
- # operations that take them.
876
+ # The ISO 639-1 code for the language in which Amazon Web Services
877
+ # provides support. Amazon Web Services Support currently supports
878
+ # English ("en") and Japanese ("ja"). Language parameters must be
879
+ # passed explicitly for operations that take them.
870
880
  # @return [String]
871
881
  #
872
882
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeServicesRequest AWS API Documentation
@@ -878,10 +888,11 @@ module Aws::Support
878
888
  include Aws::Structure
879
889
  end
880
890
 
881
- # The list of AWS services returned by the DescribeServices operation.
891
+ # The list of Amazon Web Services services returned by the
892
+ # DescribeServices operation.
882
893
  #
883
894
  # @!attribute [rw] services
884
- # A JSON-formatted list of AWS services.
895
+ # A JSON-formatted list of Amazon Web Services services.
885
896
  # @return [Array<Types::Service>]
886
897
  #
887
898
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeServicesResponse AWS API Documentation
@@ -900,10 +911,10 @@ module Aws::Support
900
911
  # }
901
912
  #
902
913
  # @!attribute [rw] language
903
- # The ISO 639-1 code for the language in which AWS provides support.
904
- # AWS Support currently supports English ("en") and Japanese
905
- # ("ja"). Language parameters must be passed explicitly for
906
- # operations that take them.
914
+ # The ISO 639-1 code for the language in which Amazon Web Services
915
+ # provides support. Amazon Web Services Support currently supports
916
+ # English ("en") and Japanese ("ja"). Language parameters must be
917
+ # passed explicitly for operations that take them.
907
918
  # @return [String]
908
919
  #
909
920
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeSeverityLevelsRequest AWS API Documentation
@@ -920,7 +931,7 @@ module Aws::Support
920
931
  # @!attribute [rw] severity_levels
921
932
  # The available severity levels for the support case. Available
922
933
  # severity levels are defined by your service level agreement with
923
- # AWS.
934
+ # Amazon Web Services.
924
935
  # @return [Array<Types::SeverityLevel>]
925
936
  #
926
937
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeSeverityLevelsResponse AWS API Documentation
@@ -983,10 +994,10 @@ module Aws::Support
983
994
  # @return [String]
984
995
  #
985
996
  # @!attribute [rw] language
986
- # The ISO 639-1 code for the language in which AWS provides support.
987
- # AWS Support currently supports English ("en") and Japanese
988
- # ("ja"). Language parameters must be passed explicitly for
989
- # operations that take them.
997
+ # The ISO 639-1 code for the language in which Amazon Web Services
998
+ # provides support. Amazon Web Services Support currently supports
999
+ # English ("en") and Japanese ("ja"). Language parameters must be
1000
+ # passed explicitly for operations that take them.
990
1001
  # @return [String]
991
1002
  #
992
1003
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeTrustedAdvisorCheckResultRequest AWS API Documentation
@@ -1055,10 +1066,10 @@ module Aws::Support
1055
1066
  # }
1056
1067
  #
1057
1068
  # @!attribute [rw] language
1058
- # The ISO 639-1 code for the language in which AWS provides support.
1059
- # AWS Support currently supports English ("en") and Japanese
1060
- # ("ja"). Language parameters must be passed explicitly for
1061
- # operations that take them.
1069
+ # The ISO 639-1 code for the language in which Amazon Web Services
1070
+ # provides support. Amazon Web Services Support currently supports
1071
+ # English ("en") and Japanese ("ja"). Language parameters must be
1072
+ # passed explicitly for operations that take them.
1062
1073
  # @return [String]
1063
1074
  #
1064
1075
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeTrustedAdvisorChecksRequest AWS API Documentation
@@ -1196,25 +1207,25 @@ module Aws::Support
1196
1207
  include Aws::Structure
1197
1208
  end
1198
1209
 
1199
- # Information about an AWS service returned by the DescribeServices
1200
- # operation.
1210
+ # Information about an Amazon Web Services service returned by the
1211
+ # DescribeServices operation.
1201
1212
  #
1202
1213
  # @!attribute [rw] code
1203
- # The code for an AWS service returned by the DescribeServices
1204
- # response. The `name` element contains the corresponding friendly
1205
- # name.
1214
+ # The code for an Amazon Web Services service returned by the
1215
+ # DescribeServices response. The `name` element contains the
1216
+ # corresponding friendly name.
1206
1217
  # @return [String]
1207
1218
  #
1208
1219
  # @!attribute [rw] name
1209
- # The friendly name for an AWS service. The `code` element contains
1210
- # the corresponding code.
1220
+ # The friendly name for an Amazon Web Services service. The `code`
1221
+ # element contains the corresponding code.
1211
1222
  # @return [String]
1212
1223
  #
1213
1224
  # @!attribute [rw] categories
1214
1225
  # A list of categories that describe the type of support issue a case
1215
1226
  # describes. Categories consist of a category name and a category
1216
- # code. Category names and codes are passed to AWS Support when you
1217
- # call CreateCase.
1227
+ # code. Category names and codes are passed to Amazon Web Services
1228
+ # Support when you call CreateCase.
1218
1229
  # @return [Array<Types::Category>]
1219
1230
  #
1220
1231
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/Service AWS API Documentation
@@ -1229,8 +1240,8 @@ module Aws::Support
1229
1240
 
1230
1241
  # A code and name pair that represents the severity level of a support
1231
1242
  # case. The available values depend on the support plan for the account.
1232
- # For more information, see [Choosing a severity][1] in the *AWS Support
1233
- # User Guide*.
1243
+ # For more information, see [Choosing a severity][1] in the *Amazon Web
1244
+ # Services Support User Guide*.
1234
1245
  #
1235
1246
  #
1236
1247
  #
@@ -1247,8 +1258,9 @@ module Aws::Support
1247
1258
  # level code.
1248
1259
  #
1249
1260
  # <note markdown="1"> The values returned by the API are different from the values that
1250
- # appear in the AWS Support Center. For example, the API uses the code
1251
- # `low`, but the name appears as General guidance in Support Center.
1261
+ # appear in the Amazon Web Services Support Center. For example, the
1262
+ # API uses the code `low`, but the name appears as General guidance in
1263
+ # Support Center.
1252
1264
  #
1253
1265
  # The following are the API code names and how they appear in the
1254
1266
  # console:
@@ -1265,8 +1277,8 @@ module Aws::Support
1265
1277
  #
1266
1278
  # </note>
1267
1279
  #
1268
- # For more information, see [Choosing a severity][1] in the *AWS
1269
- # Support User Guide*.
1280
+ # For more information, see [Choosing a severity][1] in the *Amazon
1281
+ # Web Services Support User Guide*.
1270
1282
  #
1271
1283
  #
1272
1284
  #
@@ -1394,8 +1406,8 @@ module Aws::Support
1394
1406
  # @return [String]
1395
1407
  #
1396
1408
  # @!attribute [rw] resources_summary
1397
- # Details about AWS resources that were analyzed in a call to Trusted
1398
- # Advisor DescribeTrustedAdvisorCheckSummaries.
1409
+ # Details about Amazon Web Services resources that were analyzed in a
1410
+ # call to Trusted Advisor DescribeTrustedAdvisorCheckSummaries.
1399
1411
  # @return [Types::TrustedAdvisorResourcesSummary]
1400
1412
  #
1401
1413
  # @!attribute [rw] category_specific_summary
@@ -1441,8 +1453,8 @@ module Aws::Support
1441
1453
  # @return [Boolean]
1442
1454
  #
1443
1455
  # @!attribute [rw] resources_summary
1444
- # Details about AWS resources that were analyzed in a call to Trusted
1445
- # Advisor DescribeTrustedAdvisorCheckSummaries.
1456
+ # Details about Amazon Web Services resources that were analyzed in a
1457
+ # call to Trusted Advisor DescribeTrustedAdvisorCheckSummaries.
1446
1458
  # @return [Types::TrustedAdvisorResourcesSummary]
1447
1459
  #
1448
1460
  # @!attribute [rw] category_specific_summary
@@ -1494,7 +1506,8 @@ module Aws::Support
1494
1506
  # @return [String]
1495
1507
  #
1496
1508
  # @!attribute [rw] region
1497
- # The AWS Region in which the identified resource is located.
1509
+ # The Amazon Web Services Region in which the identified resource is
1510
+ # located.
1498
1511
  # @return [String]
1499
1512
  #
1500
1513
  # @!attribute [rw] resource_id
@@ -1502,8 +1515,8 @@ module Aws::Support
1502
1515
  # @return [String]
1503
1516
  #
1504
1517
  # @!attribute [rw] is_suppressed
1505
- # Specifies whether the AWS resource was ignored by Trusted Advisor
1506
- # because it was marked as suppressed by the user.
1518
+ # Specifies whether the Amazon Web Services resource was ignored by
1519
+ # Trusted Advisor because it was marked as suppressed by the user.
1507
1520
  # @return [Boolean]
1508
1521
  #
1509
1522
  # @!attribute [rw] metadata
@@ -1527,27 +1540,27 @@ module Aws::Support
1527
1540
  include Aws::Structure
1528
1541
  end
1529
1542
 
1530
- # Details about AWS resources that were analyzed in a call to Trusted
1531
- # Advisor DescribeTrustedAdvisorCheckSummaries.
1543
+ # Details about Amazon Web Services resources that were analyzed in a
1544
+ # call to Trusted Advisor DescribeTrustedAdvisorCheckSummaries.
1532
1545
  #
1533
1546
  # @!attribute [rw] resources_processed
1534
- # The number of AWS resources that were analyzed by the Trusted
1535
- # Advisor check.
1547
+ # The number of Amazon Web Services resources that were analyzed by
1548
+ # the Trusted Advisor check.
1536
1549
  # @return [Integer]
1537
1550
  #
1538
1551
  # @!attribute [rw] resources_flagged
1539
- # The number of AWS resources that were flagged (listed) by the
1540
- # Trusted Advisor check.
1552
+ # The number of Amazon Web Services resources that were flagged
1553
+ # (listed) by the Trusted Advisor check.
1541
1554
  # @return [Integer]
1542
1555
  #
1543
1556
  # @!attribute [rw] resources_ignored
1544
- # The number of AWS resources ignored by Trusted Advisor because
1545
- # information was unavailable.
1557
+ # The number of Amazon Web Services resources ignored by Trusted
1558
+ # Advisor because information was unavailable.
1546
1559
  # @return [Integer]
1547
1560
  #
1548
1561
  # @!attribute [rw] resources_suppressed
1549
- # The number of AWS resources ignored by Trusted Advisor because they
1550
- # were marked as suppressed by the user.
1562
+ # The number of Amazon Web Services resources ignored by Trusted
1563
+ # Advisor because they were marked as suppressed by the user.
1551
1564
  # @return [Integer]
1552
1565
  #
1553
1566
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/TrustedAdvisorResourcesSummary AWS API Documentation
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-support/customizations'
48
48
  # @!group service
49
49
  module Aws::Support
50
50
 
51
- GEM_VERSION = '1.34.0'
51
+ GEM_VERSION = '1.38.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-support
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.34.0
4
+ version: 1.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2021-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.120.0
22
+ version: 3.122.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement