aws-sdk-support 1.36.0 → 1.40.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: 34b8f7813b28c3b103f22b30d8e926e212b54103dd405b481fafc9eb022c9376
4
- data.tar.gz: ef20303606db64ea1adc3991bf89469f17cf1b97eebed2ac86e1c69eb71e1cd4
3
+ metadata.gz: d9575b218817eb7cac12373e15b261e2dee6d60cb29d9b13ff4bffd1162802f1
4
+ data.tar.gz: 53f08b0f23a60f16962b7264ca4bdf3f8edc7a4c88a71c96399b90b80c9a7b11
5
5
  SHA512:
6
- metadata.gz: 10e12a4956e5b95dc92e714b641dcc5562ca5badacda94036bcb3d3c286f2ffc886951abd315330f6a7642c784a326b755bb8ad617f1bb6ff8639e38b681dbe7
7
- data.tar.gz: 8f1b466c51f56f6a622d7355ea3fa0526224b131445869de94fe8312f70907229193a85532de6fc46e978b9501e3de929a81d35b6ab747d83bf9b520b1309812
6
+ metadata.gz: 7448d715888b473d7d7f477fe3ee36fe87f7bf184b422a9c78733986cf948c5eb892779b53737ea34afc198d279c54de25600ae93bbe0a905c1f407e618e28f1
7
+ data.tar.gz: d653786a4c99c2c2b81f33eaf368f646976d9cf9e3d7c9917bceb22924598abc151bbd30e46042eea0d86e4449a5832023a77d1f3879bda70abadcab93052039
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.39.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.38.0 (2021-12-08)
15
+ ------------------
16
+
17
+ * Feature - Documentation updates for AWS Support.
18
+
19
+ 1.37.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.36.0 (2021-11-04)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.36.0
1
+ 1.40.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::Support
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
82
 
@@ -119,7 +123,9 @@ module Aws::Support
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::Support
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -305,7 +315,7 @@ module Aws::Support
305
315
  # seconds to wait when opening a HTTP session before raising a
306
316
  # `Timeout::Error`.
307
317
  #
308
- # @option options [Integer] :http_read_timeout (60) The default
318
+ # @option options [Float] :http_read_timeout (60) The default
309
319
  # number of seconds to wait for response data. This value can
310
320
  # safely be set per-request on the session.
311
321
  #
@@ -321,6 +331,9 @@ module Aws::Support
321
331
  # disables this behaviour. This value can safely be set per
322
332
  # request on the session.
323
333
  #
334
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
335
+ # in seconds.
336
+ #
324
337
  # @option options [Boolean] :http_wire_trace (false) When `true`,
325
338
  # HTTP debug output will be sent to the `:logger`.
326
339
  #
@@ -353,13 +366,14 @@ module Aws::Support
353
366
  # after it's created. The `expiryTime` returned in the response is when
354
367
  # the set expires.
355
368
  #
356
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
357
- # Support API.
369
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
370
+ # plan to use the Amazon Web Services Support API.
358
371
  #
359
- # * If you call the AWS Support API from an account that does not have a
360
- # Business or Enterprise Support plan, the
361
- # `SubscriptionRequiredException` error message appears. For
362
- # information about changing your support plan, see [AWS Support][1].
372
+ # * If you call the Amazon Web Services Support API from an account that
373
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
374
+ # plan, the `SubscriptionRequiredException` error message appears. For
375
+ # information about changing your support plan, see [Amazon Web
376
+ # Services Support][1].
363
377
  #
364
378
  # </note>
365
379
  #
@@ -414,19 +428,20 @@ module Aws::Support
414
428
  req.send_request(options)
415
429
  end
416
430
 
417
- # Adds additional customer communication to an AWS Support case. Use the
418
- # `caseId` parameter to identify the case to which to add communication.
419
- # You can list a set of email addresses to copy on the communication by
420
- # using the `ccEmailAddresses` parameter. The `communicationBody` value
421
- # contains the text of the communication.
431
+ # Adds additional customer communication to an Amazon Web Services
432
+ # Support case. Use the `caseId` parameter to identify the case to which
433
+ # to add communication. You can list a set of email addresses to copy on
434
+ # the communication by using the `ccEmailAddresses` parameter. The
435
+ # `communicationBody` value contains the text of the communication.
422
436
  #
423
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
424
- # Support API.
437
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
438
+ # plan to use the Amazon Web Services Support API.
425
439
  #
426
- # * If you call the AWS Support API from an account that does not have a
427
- # Business or Enterprise Support plan, the
428
- # `SubscriptionRequiredException` error message appears. For
429
- # information about changing your support plan, see [AWS Support][1].
440
+ # * If you call the Amazon Web Services Support API from an account that
441
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
442
+ # plan, the `SubscriptionRequiredException` error message appears. For
443
+ # information about changing your support plan, see [Amazon Web
444
+ # Services Support][1].
430
445
  #
431
446
  # </note>
432
447
  #
@@ -476,34 +491,38 @@ module Aws::Support
476
491
  req.send_request(options)
477
492
  end
478
493
 
479
- # Creates a case in the AWS Support Center. This operation is similar to
480
- # how you create a case in the AWS Support Center [Create Case][1] page.
494
+ # Creates a case in the Amazon Web Services Support Center. This
495
+ # operation is similar to how you create a case in the Amazon Web
496
+ # Services Support Center [Create Case][1] page.
481
497
  #
482
- # The AWS Support API doesn't support requesting service limit
483
- # increases. You can submit a service limit increase in the following
484
- # ways:
498
+ # The Amazon Web Services Support API doesn't support requesting
499
+ # service limit increases. You can submit a service limit increase in
500
+ # the following ways:
485
501
  #
486
- # * Submit a request from the AWS Support Center [Create Case][1] page.
502
+ # * Submit a request from the Amazon Web Services Support Center [Create
503
+ # Case][1] page.
487
504
  #
488
505
  # * Use the Service Quotas [RequestServiceQuotaIncrease][2] operation.
489
506
  #
490
- # A successful `CreateCase` request returns an AWS Support case number.
491
- # You can use the DescribeCases operation and specify the case number to
492
- # get existing AWS Support cases. After you create a case, use the
493
- # AddCommunicationToCase operation to add additional communication or
494
- # attachments to an existing case.
507
+ # A successful `CreateCase` request returns an Amazon Web Services
508
+ # Support case number. You can use the DescribeCases operation and
509
+ # specify the case number to get existing Amazon Web Services Support
510
+ # cases. After you create a case, use the AddCommunicationToCase
511
+ # operation to add additional communication or attachments to an
512
+ # existing case.
495
513
  #
496
- # The `caseId` is separate from the `displayId` that appears in the [AWS
497
- # Support Center][3]. Use the DescribeCases operation to get the
498
- # `displayId`.
514
+ # The `caseId` is separate from the `displayId` that appears in the
515
+ # [Amazon Web Services Support Center][3]. Use the DescribeCases
516
+ # operation to get the `displayId`.
499
517
  #
500
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
501
- # Support API.
518
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
519
+ # plan to use the Amazon Web Services Support API.
502
520
  #
503
- # * If you call the AWS Support API from an account that does not have a
504
- # Business or Enterprise Support plan, the
505
- # `SubscriptionRequiredException` error message appears. For
506
- # information about changing your support plan, see [AWS Support][4].
521
+ # * If you call the Amazon Web Services Support API from an account that
522
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
523
+ # plan, the `SubscriptionRequiredException` error message appears. For
524
+ # information about changing your support plan, see [Amazon Web
525
+ # Services Support][4].
507
526
  #
508
527
  # </note>
509
528
  #
@@ -516,27 +535,27 @@ module Aws::Support
516
535
  #
517
536
  # @option params [required, String] :subject
518
537
  # The title of the support case. The title appears in the **Subject**
519
- # field on the AWS Support Center [Create Case][1] page.
538
+ # field on the Amazon Web Services Support Center [Create Case][1] page.
520
539
  #
521
540
  #
522
541
  #
523
542
  # [1]: https://console.aws.amazon.com/support/home#/case/create
524
543
  #
525
544
  # @option params [String] :service_code
526
- # The code for the AWS service. You can use the DescribeServices
527
- # operation to get the possible `serviceCode` values.
545
+ # The code for the Amazon Web Services service. You can use the
546
+ # DescribeServices operation to get the possible `serviceCode` values.
528
547
  #
529
548
  # @option params [String] :severity_code
530
549
  # A value that indicates the urgency of the case. This value determines
531
- # the response time according to your service level agreement with AWS
532
- # Support. You can use the DescribeSeverityLevels operation to get the
533
- # possible values for `severityCode`.
550
+ # the response time according to your service level agreement with
551
+ # Amazon Web Services Support. You can use the DescribeSeverityLevels
552
+ # operation to get the possible values for `severityCode`.
534
553
  #
535
554
  # For more information, see SeverityLevel and [Choosing a Severity][1]
536
- # in the *AWS Support User Guide*.
555
+ # in the *Amazon Web Services Support User Guide*.
537
556
  #
538
557
  # <note markdown="1"> The availability of severity levels depends on the support plan for
539
- # the AWS account.
558
+ # the Amazon Web Services account.
540
559
  #
541
560
  # </note>
542
561
  #
@@ -547,32 +566,34 @@ module Aws::Support
547
566
  # @option params [String] :category_code
548
567
  # The category of problem for the support case. You also use the
549
568
  # DescribeServices operation to get the category code for a service.
550
- # Each AWS service defines its own set of category codes.
569
+ # Each Amazon Web Services service defines its own set of category
570
+ # codes.
551
571
  #
552
572
  # @option params [required, String] :communication_body
553
573
  # The communication body text that describes the issue. This text
554
- # appears in the **Description** field on the AWS Support Center [Create
555
- # Case][1] page.
574
+ # appears in the **Description** field on the Amazon Web Services
575
+ # Support Center [Create Case][1] page.
556
576
  #
557
577
  #
558
578
  #
559
579
  # [1]: https://console.aws.amazon.com/support/home#/case/create
560
580
  #
561
581
  # @option params [Array<String>] :cc_email_addresses
562
- # A list of email addresses that AWS Support copies on case
563
- # correspondence. AWS Support identifies the account that creates the
564
- # case when you specify your AWS credentials in an HTTP POST method or
565
- # use the [AWS SDKs][1].
582
+ # A list of email addresses that Amazon Web Services Support copies on
583
+ # case correspondence. Amazon Web Services Support identifies the
584
+ # account that creates the case when you specify your Amazon Web
585
+ # Services credentials in an HTTP POST method or use the [Amazon Web
586
+ # Services SDKs][1].
566
587
  #
567
588
  #
568
589
  #
569
590
  # [1]: http://aws.amazon.com/tools/
570
591
  #
571
592
  # @option params [String] :language
572
- # The language in which AWS Support handles the case. You must specify
573
- # the ISO 639-1 code for the `language` parameter if you want support in
574
- # that language. Currently, English ("en") and Japanese ("ja") are
575
- # supported.
593
+ # The language in which Amazon Web Services Support handles the case.
594
+ # You must specify the ISO 639-1 code for the `language` parameter if
595
+ # you want support in that language. Currently, English ("en") and
596
+ # Japanese ("ja") are supported.
576
597
  #
577
598
  # @option params [String] :issue_type
578
599
  # The type of issue for the case. You can specify `customer-service` or
@@ -621,13 +642,14 @@ module Aws::Support
621
642
  # are returned in the AttachmentDetails objects that are returned by the
622
643
  # DescribeCommunications operation.
623
644
  #
624
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
625
- # Support API.
645
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
646
+ # plan to use the Amazon Web Services Support API.
626
647
  #
627
- # * If you call the AWS Support API from an account that does not have a
628
- # Business or Enterprise Support plan, the
629
- # `SubscriptionRequiredException` error message appears. For
630
- # information about changing your support plan, see [AWS Support][1].
648
+ # * If you call the Amazon Web Services Support API from an account that
649
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
650
+ # plan, the `SubscriptionRequiredException` error message appears. For
651
+ # information about changing your support plan, see [Amazon Web
652
+ # Services Support][1].
631
653
  #
632
654
  # </note>
633
655
  #
@@ -679,13 +701,14 @@ module Aws::Support
679
701
  # Case data is available for 12 months after creation. If a case was
680
702
  # created more than 12 months ago, a request might return an error.
681
703
  #
682
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
683
- # Support API.
704
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
705
+ # plan to use the Amazon Web Services Support API.
684
706
  #
685
- # * If you call the AWS Support API from an account that does not have a
686
- # Business or Enterprise Support plan, the
687
- # `SubscriptionRequiredException` error message appears. For
688
- # information about changing your support plan, see [AWS Support][2].
707
+ # * If you call the Amazon Web Services Support API from an account that
708
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
709
+ # plan, the `SubscriptionRequiredException` error message appears. For
710
+ # information about changing your support plan, see [Amazon Web
711
+ # Services Support][2].
689
712
  #
690
713
  # </note>
691
714
  #
@@ -699,7 +722,8 @@ module Aws::Support
699
722
  # maximum number of cases is 100.
700
723
  #
701
724
  # @option params [String] :display_id
702
- # The ID displayed for a case in the AWS Support Center user interface.
725
+ # The ID displayed for a case in the Amazon Web Services Support Center
726
+ # user interface.
703
727
  #
704
728
  # @option params [String] :after_time
705
729
  # The start date for a filtered date search on support case
@@ -722,10 +746,10 @@ module Aws::Support
722
746
  # The maximum number of results to return before paginating.
723
747
  #
724
748
  # @option params [String] :language
725
- # The ISO 639-1 code for the language in which AWS provides support. AWS
726
- # Support currently supports English ("en") and Japanese ("ja").
727
- # Language parameters must be passed explicitly for operations that take
728
- # them.
749
+ # The ISO 639-1 code for the language in which Amazon Web Services
750
+ # provides support. Amazon Web Services Support currently supports
751
+ # English ("en") and Japanese ("ja"). Language parameters must be
752
+ # passed explicitly for operations that take them.
729
753
  #
730
754
  # @option params [Boolean] :include_communications
731
755
  # Specifies whether to include communications in the `DescribeCases`
@@ -801,13 +825,14 @@ module Aws::Support
801
825
  # that you want to display on each page, and use `nextToken` to specify
802
826
  # the resumption of pagination.
803
827
  #
804
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
805
- # Support API.
828
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
829
+ # plan to use the Amazon Web Services Support API.
806
830
  #
807
- # * If you call the AWS Support API from an account that does not have a
808
- # Business or Enterprise Support plan, the
809
- # `SubscriptionRequiredException` error message appears. For
810
- # information about changing your support plan, see [AWS Support][1].
831
+ # * If you call the Amazon Web Services Support API from an account that
832
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
833
+ # plan, the `SubscriptionRequiredException` error message appears. For
834
+ # information about changing your support plan, see [Amazon Web
835
+ # Services Support][1].
811
836
  #
812
837
  # </note>
813
838
  #
@@ -874,26 +899,27 @@ module Aws::Support
874
899
  req.send_request(options)
875
900
  end
876
901
 
877
- # Returns the current list of AWS services and a list of service
878
- # categories for each service. You then use service names and categories
879
- # in your CreateCase requests. Each AWS service has its own set of
880
- # categories.
902
+ # Returns the current list of Amazon Web Services services and a list of
903
+ # service categories for each service. You then use service names and
904
+ # categories in your CreateCase requests. Each Amazon Web Services
905
+ # service has its own set of categories.
881
906
  #
882
907
  # The service codes and category codes correspond to the values that
883
- # appear in the **Service** and **Category** lists on the AWS Support
884
- # Center [Create Case][1] page. The values in those fields don't
885
- # necessarily match the service codes and categories returned by the
886
- # `DescribeServices` operation. Always use the service codes and
887
- # categories that the `DescribeServices` operation returns, so that you
888
- # have the most recent set of service and category codes.
889
- #
890
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
891
- # Support API.
892
- #
893
- # * If you call the AWS Support API from an account that does not have a
894
- # Business or Enterprise Support plan, the
895
- # `SubscriptionRequiredException` error message appears. For
896
- # information about changing your support plan, see [AWS Support][2].
908
+ # appear in the **Service** and **Category** lists on the Amazon Web
909
+ # Services Support Center [Create Case][1] page. The values in those
910
+ # fields don't necessarily match the service codes and categories
911
+ # returned by the `DescribeServices` operation. Always use the service
912
+ # codes and categories that the `DescribeServices` operation returns, so
913
+ # that you have the most recent set of service and category codes.
914
+ #
915
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
916
+ # plan to use the Amazon Web Services Support API.
917
+ #
918
+ # * If you call the Amazon Web Services Support API from an account that
919
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
920
+ # plan, the `SubscriptionRequiredException` error message appears. For
921
+ # information about changing your support plan, see [Amazon Web
922
+ # Services Support][2].
897
923
  #
898
924
  # </note>
899
925
  #
@@ -903,13 +929,14 @@ module Aws::Support
903
929
  # [2]: http://aws.amazon.com/premiumsupport/
904
930
  #
905
931
  # @option params [Array<String>] :service_code_list
906
- # A JSON-formatted list of service codes available for AWS services.
932
+ # A JSON-formatted list of service codes available for Amazon Web
933
+ # Services services.
907
934
  #
908
935
  # @option params [String] :language
909
- # The ISO 639-1 code for the language in which AWS provides support. AWS
910
- # Support currently supports English ("en") and Japanese ("ja").
911
- # Language parameters must be passed explicitly for operations that take
912
- # them.
936
+ # The ISO 639-1 code for the language in which Amazon Web Services
937
+ # provides support. Amazon Web Services Support currently supports
938
+ # English ("en") and Japanese ("ja"). Language parameters must be
939
+ # passed explicitly for operations that take them.
913
940
  #
914
941
  # @return [Types::DescribeServicesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
915
942
  #
@@ -944,13 +971,14 @@ module Aws::Support
944
971
  # case. The severity level for a case is also a field in the CaseDetails
945
972
  # data type that you include for a CreateCase request.
946
973
  #
947
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
948
- # Support API.
974
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
975
+ # plan to use the Amazon Web Services Support API.
949
976
  #
950
- # * If you call the AWS Support API from an account that does not have a
951
- # Business or Enterprise Support plan, the
952
- # `SubscriptionRequiredException` error message appears. For
953
- # information about changing your support plan, see [AWS Support][1].
977
+ # * If you call the Amazon Web Services Support API from an account that
978
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
979
+ # plan, the `SubscriptionRequiredException` error message appears. For
980
+ # information about changing your support plan, see [Amazon Web
981
+ # Services Support][1].
954
982
  #
955
983
  # </note>
956
984
  #
@@ -959,10 +987,10 @@ module Aws::Support
959
987
  # [1]: http://aws.amazon.com/premiumsupport/
960
988
  #
961
989
  # @option params [String] :language
962
- # The ISO 639-1 code for the language in which AWS provides support. AWS
963
- # Support currently supports English ("en") and Japanese ("ja").
964
- # Language parameters must be passed explicitly for operations that take
965
- # them.
990
+ # The ISO 639-1 code for the language in which Amazon Web Services
991
+ # provides support. Amazon Web Services Support currently supports
992
+ # English ("en") and Japanese ("ja"). Language parameters must be
993
+ # passed explicitly for operations that take them.
966
994
  #
967
995
  # @return [Types::DescribeSeverityLevelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
968
996
  #
@@ -989,8 +1017,8 @@ module Aws::Support
989
1017
  req.send_request(options)
990
1018
  end
991
1019
 
992
- # Returns the refresh status of the AWS Trusted Advisor checks that have
993
- # the specified check IDs. You can get the check IDs by calling the
1020
+ # Returns the refresh status of the Trusted Advisor checks that have the
1021
+ # specified check IDs. You can get the check IDs by calling the
994
1022
  # DescribeTrustedAdvisorChecks operation.
995
1023
  #
996
1024
  # Some checks are refreshed automatically, and you can't return their
@@ -999,13 +1027,14 @@ module Aws::Support
999
1027
  # this operation for these checks, you might see an
1000
1028
  # `InvalidParameterValue` error.
1001
1029
  #
1002
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
1003
- # Support API.
1030
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1031
+ # plan to use the Amazon Web Services Support API.
1004
1032
  #
1005
- # * If you call the AWS Support API from an account that does not have a
1006
- # Business or Enterprise Support plan, the
1007
- # `SubscriptionRequiredException` error message appears. For
1008
- # information about changing your support plan, see [AWS Support][1].
1033
+ # * If you call the Amazon Web Services Support API from an account that
1034
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1035
+ # plan, the `SubscriptionRequiredException` error message appears. For
1036
+ # information about changing your support plan, see [Amazon Web
1037
+ # Services Support][1].
1009
1038
  #
1010
1039
  # </note>
1011
1040
  #
@@ -1047,7 +1076,7 @@ module Aws::Support
1047
1076
  req.send_request(options)
1048
1077
  end
1049
1078
 
1050
- # Returns the results of the AWS Trusted Advisor check that has the
1079
+ # Returns the results of the Trusted Advisor check that has the
1051
1080
  # specified check ID. You can get the check IDs by calling the
1052
1081
  # DescribeTrustedAdvisorChecks operation.
1053
1082
  #
@@ -1069,13 +1098,14 @@ module Aws::Support
1069
1098
  #
1070
1099
  # * **checkId** - The unique identifier for the check.
1071
1100
  #
1072
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
1073
- # Support API.
1101
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1102
+ # plan to use the Amazon Web Services Support API.
1074
1103
  #
1075
- # * If you call the AWS Support API from an account that does not have a
1076
- # Business or Enterprise Support plan, the
1077
- # `SubscriptionRequiredException` error message appears. For
1078
- # information about changing your support plan, see [AWS Support][1].
1104
+ # * If you call the Amazon Web Services Support API from an account that
1105
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1106
+ # plan, the `SubscriptionRequiredException` error message appears. For
1107
+ # information about changing your support plan, see [Amazon Web
1108
+ # Services Support][1].
1079
1109
  #
1080
1110
  # </note>
1081
1111
  #
@@ -1087,10 +1117,10 @@ module Aws::Support
1087
1117
  # The unique identifier for the Trusted Advisor check.
1088
1118
  #
1089
1119
  # @option params [String] :language
1090
- # The ISO 639-1 code for the language in which AWS provides support. AWS
1091
- # Support currently supports English ("en") and Japanese ("ja").
1092
- # Language parameters must be passed explicitly for operations that take
1093
- # them.
1120
+ # The ISO 639-1 code for the language in which Amazon Web Services
1121
+ # provides support. Amazon Web Services Support currently supports
1122
+ # English ("en") and Japanese ("ja"). Language parameters must be
1123
+ # passed explicitly for operations that take them.
1094
1124
  #
1095
1125
  # @return [Types::DescribeTrustedAdvisorCheckResultResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1096
1126
  #
@@ -1131,19 +1161,20 @@ module Aws::Support
1131
1161
  req.send_request(options)
1132
1162
  end
1133
1163
 
1134
- # Returns the results for the AWS Trusted Advisor check summaries for
1135
- # the check IDs that you specified. You can get the check IDs by calling
1136
- # the DescribeTrustedAdvisorChecks operation.
1164
+ # Returns the results for the Trusted Advisor check summaries for the
1165
+ # check IDs that you specified. You can get the check IDs by calling the
1166
+ # DescribeTrustedAdvisorChecks operation.
1137
1167
  #
1138
1168
  # The response contains an array of TrustedAdvisorCheckSummary objects.
1139
1169
  #
1140
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
1141
- # Support API.
1170
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1171
+ # plan to use the Amazon Web Services Support API.
1142
1172
  #
1143
- # * If you call the AWS Support API from an account that does not have a
1144
- # Business or Enterprise Support plan, the
1145
- # `SubscriptionRequiredException` error message appears. For
1146
- # information about changing your support plan, see [AWS Support][1].
1173
+ # * If you call the Amazon Web Services Support API from an account that
1174
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1175
+ # plan, the `SubscriptionRequiredException` error message appears. For
1176
+ # information about changing your support plan, see [Amazon Web
1177
+ # Services Support][1].
1147
1178
  #
1148
1179
  # </note>
1149
1180
  #
@@ -1187,20 +1218,21 @@ module Aws::Support
1187
1218
  req.send_request(options)
1188
1219
  end
1189
1220
 
1190
- # Returns information about all available AWS Trusted Advisor checks,
1221
+ # Returns information about all available Trusted Advisor checks,
1191
1222
  # including the name, ID, category, description, and metadata. You must
1192
- # specify a language code. The AWS Support API currently supports
1193
- # English ("en") and Japanese ("ja"). The response contains a
1194
- # TrustedAdvisorCheckDescription object for each check. You must set the
1195
- # AWS Region to us-east-1.
1223
+ # specify a language code. The Amazon Web Services Support API currently
1224
+ # supports English ("en") and Japanese ("ja"). The response contains
1225
+ # a TrustedAdvisorCheckDescription object for each check. You must set
1226
+ # the Amazon Web Services Region to us-east-1.
1196
1227
  #
1197
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
1198
- # Support API.
1228
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1229
+ # plan to use the Amazon Web Services Support API.
1199
1230
  #
1200
- # * If you call the AWS Support API from an account that does not have a
1201
- # Business or Enterprise Support plan, the
1202
- # `SubscriptionRequiredException` error message appears. For
1203
- # information about changing your support plan, see [AWS Support][1].
1231
+ # * If you call the Amazon Web Services Support API from an account that
1232
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1233
+ # plan, the `SubscriptionRequiredException` error message appears. For
1234
+ # information about changing your support plan, see [Amazon Web
1235
+ # Services Support][1].
1204
1236
  #
1205
1237
  # * The names and descriptions for Trusted Advisor checks are subject to
1206
1238
  # change. We recommend that you specify the check ID in your code to
@@ -1213,10 +1245,10 @@ module Aws::Support
1213
1245
  # [1]: http://aws.amazon.com/premiumsupport/
1214
1246
  #
1215
1247
  # @option params [required, String] :language
1216
- # The ISO 639-1 code for the language in which AWS provides support. AWS
1217
- # Support currently supports English ("en") and Japanese ("ja").
1218
- # Language parameters must be passed explicitly for operations that take
1219
- # them.
1248
+ # The ISO 639-1 code for the language in which Amazon Web Services
1249
+ # provides support. Amazon Web Services Support currently supports
1250
+ # English ("en") and Japanese ("ja"). Language parameters must be
1251
+ # passed explicitly for operations that take them.
1220
1252
  #
1221
1253
  # @return [Types::DescribeTrustedAdvisorChecksResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1222
1254
  #
@@ -1247,8 +1279,8 @@ module Aws::Support
1247
1279
  req.send_request(options)
1248
1280
  end
1249
1281
 
1250
- # Refreshes the AWS Trusted Advisor check that you specify using the
1251
- # check ID. You can get the check IDs by calling the
1282
+ # Refreshes the Trusted Advisor check that you specify using the check
1283
+ # ID. You can get the check IDs by calling the
1252
1284
  # DescribeTrustedAdvisorChecks operation.
1253
1285
  #
1254
1286
  # <note markdown="1"> Some checks are refreshed automatically. If you call the
@@ -1259,13 +1291,14 @@ module Aws::Support
1259
1291
  #
1260
1292
  # The response contains a TrustedAdvisorCheckRefreshStatus object.
1261
1293
  #
1262
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
1263
- # Support API.
1294
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1295
+ # plan to use the Amazon Web Services Support API.
1264
1296
  #
1265
- # * If you call the AWS Support API from an account that does not have a
1266
- # Business or Enterprise Support plan, the
1267
- # `SubscriptionRequiredException` error message appears. For
1268
- # information about changing your support plan, see [AWS Support][1].
1297
+ # * If you call the Amazon Web Services Support API from an account that
1298
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1299
+ # plan, the `SubscriptionRequiredException` error message appears. For
1300
+ # information about changing your support plan, see [Amazon Web
1301
+ # Services Support][1].
1269
1302
  #
1270
1303
  # </note>
1271
1304
  #
@@ -1309,13 +1342,14 @@ module Aws::Support
1309
1342
  # Resolves a support case. This operation takes a `caseId` and returns
1310
1343
  # the initial and final state of the case.
1311
1344
  #
1312
- # <note markdown="1"> * You must have a Business or Enterprise Support plan to use the AWS
1313
- # Support API.
1345
+ # <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
1346
+ # plan to use the Amazon Web Services Support API.
1314
1347
  #
1315
- # * If you call the AWS Support API from an account that does not have a
1316
- # Business or Enterprise Support plan, the
1317
- # `SubscriptionRequiredException` error message appears. For
1318
- # information about changing your support plan, see [AWS Support][1].
1348
+ # * If you call the Amazon Web Services Support API from an account that
1349
+ # does not have a Business, Enterprise On-Ramp, or Enterprise Support
1350
+ # plan, the `SubscriptionRequiredException` error message appears. For
1351
+ # information about changing your support plan, see [Amazon Web
1352
+ # Services Support][1].
1319
1353
  #
1320
1354
  # </note>
1321
1355
  #
@@ -1366,7 +1400,7 @@ module Aws::Support
1366
1400
  params: params,
1367
1401
  config: config)
1368
1402
  context[:gem_name] = 'aws-sdk-support'
1369
- context[:gem_version] = '1.36.0'
1403
+ context[:gem_version] = '1.40.0'
1370
1404
  Seahorse::Client::Request.new(handlers, context)
1371
1405
  end
1372
1406
 
@@ -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.36.0'
51
+ GEM_VERSION = '1.40.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.36.0
4
+ version: 1.40.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-11-04 00:00:00.000000000 Z
11
+ date: 2022-02-03 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.122.0
22
+ version: 3.126.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.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement