aws-sdk-support 1.20.0 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-support.rb +3 -1
- data/lib/aws-sdk-support/client.rb +265 -100
- data/lib/aws-sdk-support/client_api.rb +2 -0
- data/lib/aws-sdk-support/errors.rb +2 -0
- data/lib/aws-sdk-support/resource.rb +2 -0
- data/lib/aws-sdk-support/types.rb +81 -18
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a255ddc1b344d505326417a142081215b7401866f9ecd7fc6a6e8144f9cb21b
|
4
|
+
data.tar.gz: fcd8edd0a7c0f08cc4779d798b1a62f2286579990b105edb152a13b78bf19d2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '00983a28867a95aa7a5f53ecedf16644b7cb9210639fba1c18c8116189d2744be95da39eb8db27010d30cc9d1b278a662c33bb4fdbc836f30e47c5422dda2478'
|
7
|
+
data.tar.gz: 8ae48fb6e29c3d70aacc34bfd575c43ef53e2709577922916b6f3a7a1bec832f88b6c42dec614abd62345e21a5d43bc2993ef734190b38fe6d3847d424c80e17
|
data/lib/aws-sdk-support.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-support/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::Support
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.25.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::Support
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::Support
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::Support
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -325,6 +329,20 @@ module Aws::Support
|
|
325
329
|
# after it's created. The `expiryTime` returned in the response is when
|
326
330
|
# the set expires.
|
327
331
|
#
|
332
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
333
|
+
# Support API.
|
334
|
+
#
|
335
|
+
# * If you call the AWS Support API from an account that does not have a
|
336
|
+
# Business or Enterprise support plan, the
|
337
|
+
# `SubscriptionRequiredException` error message appears. For
|
338
|
+
# information about changing your support plan, see [AWS Support][1].
|
339
|
+
#
|
340
|
+
# </note>
|
341
|
+
#
|
342
|
+
#
|
343
|
+
#
|
344
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
345
|
+
#
|
328
346
|
# @option params [String] :attachment_set_id
|
329
347
|
# The ID of the attachment set. If an `attachmentSetId` is not
|
330
348
|
# specified, a new attachment set is created, and the ID of the set is
|
@@ -372,16 +390,25 @@ module Aws::Support
|
|
372
390
|
req.send_request(options)
|
373
391
|
end
|
374
392
|
|
375
|
-
# Adds additional customer communication to an AWS Support case.
|
376
|
-
#
|
377
|
-
# can list a set of email addresses to copy on the communication
|
378
|
-
# the `ccEmailAddresses`
|
379
|
-
# the text of the communication.
|
393
|
+
# Adds additional customer communication to an AWS Support case. Use the
|
394
|
+
# `caseId` parameter to identify the case to which to add communication.
|
395
|
+
# You can list a set of email addresses to copy on the communication by
|
396
|
+
# using the `ccEmailAddresses` parameter. The `communicationBody` value
|
397
|
+
# contains the text of the communication.
|
398
|
+
#
|
399
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
400
|
+
# Support API.
|
401
|
+
#
|
402
|
+
# * If you call the AWS Support API from an account that does not have a
|
403
|
+
# Business or Enterprise support plan, the
|
404
|
+
# `SubscriptionRequiredException` error message appears. For
|
405
|
+
# information about changing your support plan, see [AWS Support][1].
|
406
|
+
#
|
407
|
+
# </note>
|
408
|
+
#
|
380
409
|
#
|
381
|
-
# The response indicates the success or failure of the request.
|
382
410
|
#
|
383
|
-
#
|
384
|
-
# Center.
|
411
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
385
412
|
#
|
386
413
|
# @option params [String] :case_id
|
387
414
|
# The AWS Support case ID requested or returned in the call. The case ID
|
@@ -436,17 +463,23 @@ module Aws::Support
|
|
436
463
|
#
|
437
464
|
# * Use the Service Quotas [RequestServiceQuotaIncrease][2] operation.
|
438
465
|
#
|
439
|
-
# A successful CreateCase request returns an AWS Support case number.
|
466
|
+
# A successful `CreateCase` request returns an AWS Support case number.
|
440
467
|
# You can use the DescribeCases operation and specify the case number to
|
441
|
-
# get existing AWS Support cases. After you create a case,
|
442
|
-
#
|
443
|
-
#
|
468
|
+
# get existing AWS Support cases. After you create a case, use the
|
469
|
+
# AddCommunicationToCase operation to add additional communication or
|
470
|
+
# attachments to an existing case.
|
471
|
+
#
|
472
|
+
# The `caseId` is separate from the `displayId` that appears in the [AWS
|
473
|
+
# Support Center][3]. Use the DescribeCases operation to get the
|
474
|
+
# `displayId`.
|
444
475
|
#
|
445
|
-
# <note markdown="1"> *
|
446
|
-
#
|
447
|
-
# the `displayId`.
|
476
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
477
|
+
# Support API.
|
448
478
|
#
|
449
|
-
#
|
479
|
+
# * If you call the AWS Support API from an account that does not have a
|
480
|
+
# Business or Enterprise support plan, the
|
481
|
+
# `SubscriptionRequiredException` error message appears. For
|
482
|
+
# information about changing your support plan, see [AWS Support][4].
|
450
483
|
#
|
451
484
|
# </note>
|
452
485
|
#
|
@@ -455,6 +488,7 @@ module Aws::Support
|
|
455
488
|
# [1]: https://console.aws.amazon.com/support/home#/case/create
|
456
489
|
# [2]: https://docs.aws.amazon.com/servicequotas/2019-06-24/apireference/API_RequestServiceQuotaIncrease.html
|
457
490
|
# [3]: https://console.aws.amazon.com/support
|
491
|
+
# [4]: http://aws.amazon.com/premiumsupport/
|
458
492
|
#
|
459
493
|
# @option params [required, String] :subject
|
460
494
|
# The title of the AWS Support case. The title appears in the
|
@@ -563,6 +597,20 @@ module Aws::Support
|
|
563
597
|
# are returned in the AttachmentDetails objects that are returned by the
|
564
598
|
# DescribeCommunications operation.
|
565
599
|
#
|
600
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
601
|
+
# Support API.
|
602
|
+
#
|
603
|
+
# * If you call the AWS Support API from an account that does not have a
|
604
|
+
# Business or Enterprise support plan, the
|
605
|
+
# `SubscriptionRequiredException` error message appears. For
|
606
|
+
# information about changing your support plan, see [AWS Support][1].
|
607
|
+
#
|
608
|
+
# </note>
|
609
|
+
#
|
610
|
+
#
|
611
|
+
#
|
612
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
613
|
+
#
|
566
614
|
# @option params [required, String] :attachment_id
|
567
615
|
# The ID of the attachment to return. Attachment IDs are returned by the
|
568
616
|
# DescribeCommunications operation.
|
@@ -592,22 +640,36 @@ module Aws::Support
|
|
592
640
|
end
|
593
641
|
|
594
642
|
# Returns a list of cases that you specify by passing one or more case
|
595
|
-
# IDs.
|
596
|
-
#
|
597
|
-
#
|
598
|
-
#
|
599
|
-
#
|
600
|
-
# Case data is available for 12 months after creation. If a case was
|
601
|
-
# created more than 12 months ago, a request for data might cause an
|
602
|
-
# error.
|
643
|
+
# IDs. You can use the `afterTime` and `beforeTime` parameters to filter
|
644
|
+
# the cases by date. You can set values for the `includeResolvedCases`
|
645
|
+
# and `includeCommunications` parameters to specify how much information
|
646
|
+
# to return.
|
603
647
|
#
|
604
648
|
# The response returns the following in JSON format:
|
605
649
|
#
|
606
|
-
# * One or more CaseDetails data types.
|
650
|
+
# * One or more [CaseDetails][1] data types.
|
607
651
|
#
|
608
652
|
# * One or more `nextToken` values, which specify where to paginate the
|
609
653
|
# returned records represented by the `CaseDetails` objects.
|
610
654
|
#
|
655
|
+
# Case data is available for 12 months after creation. If a case was
|
656
|
+
# created more than 12 months ago, a request might return an error.
|
657
|
+
#
|
658
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
659
|
+
# Support API.
|
660
|
+
#
|
661
|
+
# * If you call the AWS Support API from an account that does not have a
|
662
|
+
# Business or Enterprise support plan, the
|
663
|
+
# `SubscriptionRequiredException` error message appears. For
|
664
|
+
# information about changing your support plan, see [AWS Support][2].
|
665
|
+
#
|
666
|
+
# </note>
|
667
|
+
#
|
668
|
+
#
|
669
|
+
#
|
670
|
+
# [1]: https://docs.aws.amazon.com/awssupport/latest/APIReference/API_CaseDetails.html
|
671
|
+
# [2]: http://aws.amazon.com/premiumsupport/
|
672
|
+
#
|
611
673
|
# @option params [Array<String>] :case_id_list
|
612
674
|
# A list of ID numbers of the support cases you want returned. The
|
613
675
|
# maximum number of cases is 100.
|
@@ -626,8 +688,8 @@ module Aws::Support
|
|
626
688
|
# creation.
|
627
689
|
#
|
628
690
|
# @option params [Boolean] :include_resolved_cases
|
629
|
-
# Specifies whether resolved support cases
|
630
|
-
# DescribeCases
|
691
|
+
# Specifies whether to include resolved support cases in the
|
692
|
+
# `DescribeCases` response. By default, resolved cases aren't included.
|
631
693
|
#
|
632
694
|
# @option params [String] :next_token
|
633
695
|
# A resumption point for pagination.
|
@@ -642,8 +704,8 @@ module Aws::Support
|
|
642
704
|
# them.
|
643
705
|
#
|
644
706
|
# @option params [Boolean] :include_communications
|
645
|
-
# Specifies whether
|
646
|
-
#
|
707
|
+
# Specifies whether to include communications in the `DescribeCases`
|
708
|
+
# response. By default, communications are incuded.
|
647
709
|
#
|
648
710
|
# @return [Types::DescribeCasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
649
711
|
#
|
@@ -701,19 +763,33 @@ module Aws::Support
|
|
701
763
|
req.send_request(options)
|
702
764
|
end
|
703
765
|
|
704
|
-
# Returns communications
|
705
|
-
#
|
706
|
-
#
|
707
|
-
#
|
766
|
+
# Returns communications and attachments for one or more support cases.
|
767
|
+
# Use the `afterTime` and `beforeTime` parameters to filter by date. You
|
768
|
+
# can use the `caseId` parameter to restrict the results to a specific
|
769
|
+
# case.
|
708
770
|
#
|
709
771
|
# Case data is available for 12 months after creation. If a case was
|
710
772
|
# created more than 12 months ago, a request for data might cause an
|
711
773
|
# error.
|
712
774
|
#
|
713
775
|
# You can use the `maxResults` and `nextToken` parameters to control the
|
714
|
-
# pagination of the
|
715
|
-
# you want
|
716
|
-
# resumption of pagination.
|
776
|
+
# pagination of the results. Set `maxResults` to the number of cases
|
777
|
+
# that you want to display on each page, and use `nextToken` to specify
|
778
|
+
# the resumption of pagination.
|
779
|
+
#
|
780
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
781
|
+
# Support API.
|
782
|
+
#
|
783
|
+
# * If you call the AWS Support API from an account that does not have a
|
784
|
+
# Business or Enterprise support plan, the
|
785
|
+
# `SubscriptionRequiredException` error message appears. For
|
786
|
+
# information about changing your support plan, see [AWS Support][1].
|
787
|
+
#
|
788
|
+
# </note>
|
789
|
+
#
|
790
|
+
#
|
791
|
+
#
|
792
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
717
793
|
#
|
718
794
|
# @option params [required, String] :case_id
|
719
795
|
# The AWS Support case ID requested or returned in the call. The case ID
|
@@ -775,22 +851,32 @@ module Aws::Support
|
|
775
851
|
end
|
776
852
|
|
777
853
|
# Returns the current list of AWS services and a list of service
|
778
|
-
# categories
|
779
|
-
#
|
780
|
-
#
|
854
|
+
# categories for each service. You then use service names and categories
|
855
|
+
# in your CreateCase requests. Each AWS service has its own set of
|
856
|
+
# categories.
|
857
|
+
#
|
858
|
+
# The service codes and category codes correspond to the values that
|
859
|
+
# appear in the **Service** and **Category** lists on the AWS Support
|
860
|
+
# Center [Create Case][1] page. The values in those fields don't
|
861
|
+
# necessarily match the service codes and categories returned by the
|
862
|
+
# `DescribeServices` operation. Always use the service codes and
|
863
|
+
# categories that the `DescribeServices` operation returns, so that you
|
864
|
+
# have the most recent set of service and category codes.
|
865
|
+
#
|
866
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
867
|
+
# Support API.
|
868
|
+
#
|
869
|
+
# * If you call the AWS Support API from an account that does not have a
|
870
|
+
# Business or Enterprise support plan, the
|
871
|
+
# `SubscriptionRequiredException` error message appears. For
|
872
|
+
# information about changing your support plan, see [AWS Support][2].
|
781
873
|
#
|
782
|
-
#
|
783
|
-
# displayed in the **Service** and **Category** drop-down lists on the
|
784
|
-
# AWS Support Center [Create Case][1] page. The values in those fields,
|
785
|
-
# however, do not necessarily match the service codes and categories
|
786
|
-
# returned by the `DescribeServices` request. Always use the service
|
787
|
-
# codes and categories obtained programmatically. This practice ensures
|
788
|
-
# that you always have the most recent set of service and category
|
789
|
-
# codes.
|
874
|
+
# </note>
|
790
875
|
#
|
791
876
|
#
|
792
877
|
#
|
793
878
|
# [1]: https://console.aws.amazon.com/support/home#/case/create
|
879
|
+
# [2]: http://aws.amazon.com/premiumsupport/
|
794
880
|
#
|
795
881
|
# @option params [Array<String>] :service_code_list
|
796
882
|
# A JSON-formatted list of service codes available for AWS services.
|
@@ -832,7 +918,21 @@ module Aws::Support
|
|
832
918
|
|
833
919
|
# Returns the list of severity levels that you can assign to an AWS
|
834
920
|
# Support case. The severity level for a case is also a field in the
|
835
|
-
# CaseDetails data type
|
921
|
+
# CaseDetails data type that you include for a CreateCase request.
|
922
|
+
#
|
923
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
924
|
+
# Support API.
|
925
|
+
#
|
926
|
+
# * If you call the AWS Support API from an account that does not have a
|
927
|
+
# Business or Enterprise support plan, the
|
928
|
+
# `SubscriptionRequiredException` error message appears. For
|
929
|
+
# information about changing your support plan, see [AWS Support][1].
|
930
|
+
#
|
931
|
+
# </note>
|
932
|
+
#
|
933
|
+
#
|
934
|
+
#
|
935
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
836
936
|
#
|
837
937
|
# @option params [String] :language
|
838
938
|
# The ISO 639-1 code for the language in which AWS provides support. AWS
|
@@ -865,21 +965,37 @@ module Aws::Support
|
|
865
965
|
req.send_request(options)
|
866
966
|
end
|
867
967
|
|
868
|
-
# Returns the refresh status of the Trusted Advisor checks that have
|
869
|
-
# specified check IDs.
|
870
|
-
# DescribeTrustedAdvisorChecks.
|
968
|
+
# Returns the refresh status of the AWS Trusted Advisor checks that have
|
969
|
+
# the specified check IDs. You can get the check IDs by calling the
|
970
|
+
# DescribeTrustedAdvisorChecks operation.
|
971
|
+
#
|
972
|
+
# Some checks are refreshed automatically, and you can't return their
|
973
|
+
# refresh statuses by using the
|
974
|
+
# `DescribeTrustedAdvisorCheckRefreshStatuses` operation. If you call
|
975
|
+
# this operation for these checks, you might see an
|
976
|
+
# `InvalidParameterValue` error.
|
871
977
|
#
|
872
|
-
# <note markdown="1">
|
873
|
-
#
|
874
|
-
#
|
875
|
-
#
|
978
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
979
|
+
# Support API.
|
980
|
+
#
|
981
|
+
# * If you call the AWS Support API from an account that does not have a
|
982
|
+
# Business or Enterprise support plan, the
|
983
|
+
# `SubscriptionRequiredException` error message appears. For
|
984
|
+
# information about changing your support plan, see [AWS Support][1].
|
876
985
|
#
|
877
986
|
# </note>
|
878
987
|
#
|
988
|
+
#
|
989
|
+
#
|
990
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
991
|
+
#
|
879
992
|
# @option params [required, Array<String>] :check_ids
|
880
|
-
# The IDs of the Trusted Advisor checks to get the status of.
|
881
|
-
#
|
882
|
-
#
|
993
|
+
# The IDs of the Trusted Advisor checks to get the status of.
|
994
|
+
#
|
995
|
+
# <note markdown="1"> If you specify the check ID of a check that is automatically
|
996
|
+
# refreshed, you might see an `InvalidParameterValue` error.
|
997
|
+
#
|
998
|
+
# </note>
|
883
999
|
#
|
884
1000
|
# @return [Types::DescribeTrustedAdvisorCheckRefreshStatusesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
885
1001
|
#
|
@@ -907,9 +1023,9 @@ module Aws::Support
|
|
907
1023
|
req.send_request(options)
|
908
1024
|
end
|
909
1025
|
|
910
|
-
# Returns the results of the Trusted Advisor check that has the
|
911
|
-
# specified check ID.
|
912
|
-
# DescribeTrustedAdvisorChecks.
|
1026
|
+
# Returns the results of the AWS Trusted Advisor check that has the
|
1027
|
+
# specified check ID. You can get the check IDs by calling the
|
1028
|
+
# DescribeTrustedAdvisorChecks operation.
|
913
1029
|
#
|
914
1030
|
# The response contains a TrustedAdvisorCheckResult object, which
|
915
1031
|
# contains these three objects:
|
@@ -922,12 +1038,26 @@ module Aws::Support
|
|
922
1038
|
#
|
923
1039
|
# In addition, the response contains these fields:
|
924
1040
|
#
|
925
|
-
# * **status
|
1041
|
+
# * **status** - The alert status of the check: "ok" (green),
|
926
1042
|
# "warning" (yellow), "error" (red), or "not\_available".
|
927
1043
|
#
|
928
|
-
# * **timestamp
|
1044
|
+
# * **timestamp** - The time of the last refresh of the check.
|
1045
|
+
#
|
1046
|
+
# * **checkId** - The unique identifier for the check.
|
929
1047
|
#
|
930
|
-
# *
|
1048
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
1049
|
+
# Support API.
|
1050
|
+
#
|
1051
|
+
# * If you call the AWS Support API from an account that does not have a
|
1052
|
+
# Business or Enterprise support plan, the
|
1053
|
+
# `SubscriptionRequiredException` error message appears. For
|
1054
|
+
# information about changing your support plan, see [AWS Support][1].
|
1055
|
+
#
|
1056
|
+
# </note>
|
1057
|
+
#
|
1058
|
+
#
|
1059
|
+
#
|
1060
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
931
1061
|
#
|
932
1062
|
# @option params [required, String] :check_id
|
933
1063
|
# The unique identifier for the Trusted Advisor check.
|
@@ -977,12 +1107,26 @@ module Aws::Support
|
|
977
1107
|
req.send_request(options)
|
978
1108
|
end
|
979
1109
|
|
980
|
-
# Returns the
|
981
|
-
#
|
982
|
-
#
|
1110
|
+
# Returns the results for the AWS Trusted Advisor check summaries for
|
1111
|
+
# the check IDs that you specified. You can get the check IDs by calling
|
1112
|
+
# the DescribeTrustedAdvisorChecks operation.
|
983
1113
|
#
|
984
1114
|
# The response contains an array of TrustedAdvisorCheckSummary objects.
|
985
1115
|
#
|
1116
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
1117
|
+
# Support API.
|
1118
|
+
#
|
1119
|
+
# * If you call the AWS Support API from an account that does not have a
|
1120
|
+
# Business or Enterprise support plan, the
|
1121
|
+
# `SubscriptionRequiredException` error message appears. For
|
1122
|
+
# information about changing your support plan, see [AWS Support][1].
|
1123
|
+
#
|
1124
|
+
# </note>
|
1125
|
+
#
|
1126
|
+
#
|
1127
|
+
#
|
1128
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
1129
|
+
#
|
986
1130
|
# @option params [required, Array<String>] :check_ids
|
987
1131
|
# The IDs of the Trusted Advisor checks.
|
988
1132
|
#
|
@@ -1019,12 +1163,26 @@ module Aws::Support
|
|
1019
1163
|
req.send_request(options)
|
1020
1164
|
end
|
1021
1165
|
|
1022
|
-
# Returns information about all available Trusted Advisor checks,
|
1023
|
-
# including name, ID, category, description, and metadata. You must
|
1024
|
-
# specify a language code
|
1025
|
-
#
|
1026
|
-
# TrustedAdvisorCheckDescription for each check.
|
1027
|
-
# to us-east-1.
|
1166
|
+
# Returns information about all available AWS Trusted Advisor checks,
|
1167
|
+
# including the name, ID, category, description, and metadata. You must
|
1168
|
+
# specify a language code. The AWS Support API currently supports
|
1169
|
+
# English ("en") and Japanese ("ja"). The response contains a
|
1170
|
+
# TrustedAdvisorCheckDescription object for each check. You must set the
|
1171
|
+
# AWS Region to us-east-1.
|
1172
|
+
#
|
1173
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
1174
|
+
# Support API.
|
1175
|
+
#
|
1176
|
+
# * If you call the AWS Support API from an account that does not have a
|
1177
|
+
# Business or Enterprise support plan, the
|
1178
|
+
# `SubscriptionRequiredException` error message appears. For
|
1179
|
+
# information about changing your support plan, see [AWS Support][1].
|
1180
|
+
#
|
1181
|
+
# </note>
|
1182
|
+
#
|
1183
|
+
#
|
1184
|
+
#
|
1185
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
1028
1186
|
#
|
1029
1187
|
# @option params [required, String] :language
|
1030
1188
|
# The ISO 639-1 code for the language in which AWS provides support. AWS
|
@@ -1061,38 +1219,31 @@ module Aws::Support
|
|
1061
1219
|
req.send_request(options)
|
1062
1220
|
end
|
1063
1221
|
|
1064
|
-
#
|
1065
|
-
# check ID.
|
1066
|
-
# DescribeTrustedAdvisorChecks.
|
1222
|
+
# Refreshes the AWS Trusted Advisor check that you specify using the
|
1223
|
+
# check ID. You can get the check IDs by calling the
|
1224
|
+
# DescribeTrustedAdvisorChecks operation.
|
1067
1225
|
#
|
1068
|
-
# <note markdown="1"> Some checks are refreshed automatically
|
1069
|
-
#
|
1070
|
-
#
|
1226
|
+
# <note markdown="1"> Some checks are refreshed automatically. If you call the
|
1227
|
+
# `RefreshTrustedAdvisorCheck` operation to refresh them, you might see
|
1228
|
+
# the `InvalidParameterValue` error.
|
1071
1229
|
#
|
1072
1230
|
# </note>
|
1073
1231
|
#
|
1074
|
-
# The response contains a TrustedAdvisorCheckRefreshStatus object
|
1075
|
-
# contains these fields:
|
1076
|
-
#
|
1077
|
-
# * **status.** The refresh status of the check:
|
1078
|
-
#
|
1079
|
-
# * `none:` The check is not refreshed or the non-success status
|
1080
|
-
# exceeds the timeout
|
1232
|
+
# The response contains a TrustedAdvisorCheckRefreshStatus object.
|
1081
1233
|
#
|
1082
|
-
#
|
1083
|
-
#
|
1234
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
1235
|
+
# Support API.
|
1084
1236
|
#
|
1085
|
-
#
|
1086
|
-
#
|
1237
|
+
# * If you call the AWS Support API from an account that does not have a
|
1238
|
+
# Business or Enterprise support plan, the
|
1239
|
+
# `SubscriptionRequiredException` error message appears. For
|
1240
|
+
# information about changing your support plan, see [AWS Support][1].
|
1087
1241
|
#
|
1088
|
-
#
|
1242
|
+
# </note>
|
1089
1243
|
#
|
1090
|
-
# * `abandoned:` The check refresh has failed
|
1091
1244
|
#
|
1092
|
-
# * **millisUntilNextRefreshable.** The amount of time, in milliseconds,
|
1093
|
-
# until the check is eligible for refresh.
|
1094
1245
|
#
|
1095
|
-
#
|
1246
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
1096
1247
|
#
|
1097
1248
|
# @option params [required, String] :check_id
|
1098
1249
|
# The unique identifier for the Trusted Advisor check to refresh.
|
@@ -1124,8 +1275,22 @@ module Aws::Support
|
|
1124
1275
|
req.send_request(options)
|
1125
1276
|
end
|
1126
1277
|
|
1127
|
-
#
|
1128
|
-
# the state of the case
|
1278
|
+
# Resolves a support case. This operation takes a `caseId` and returns
|
1279
|
+
# the initial and final state of the case.
|
1280
|
+
#
|
1281
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
1282
|
+
# Support API.
|
1283
|
+
#
|
1284
|
+
# * If you call the AWS Support API from an account that does not have a
|
1285
|
+
# Business or Enterprise support plan, the
|
1286
|
+
# `SubscriptionRequiredException` error message appears. For
|
1287
|
+
# information about changing your support plan, see [AWS Support][1].
|
1288
|
+
#
|
1289
|
+
# </note>
|
1290
|
+
#
|
1291
|
+
#
|
1292
|
+
#
|
1293
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
1129
1294
|
#
|
1130
1295
|
# @option params [String] :case_id
|
1131
1296
|
# The AWS Support case ID requested or returned in the call. The case ID
|
@@ -1170,7 +1335,7 @@ module Aws::Support
|
|
1170
1335
|
params: params,
|
1171
1336
|
config: config)
|
1172
1337
|
context[:gem_name] = 'aws-sdk-support'
|
1173
|
-
context[:gem_version] = '1.
|
1338
|
+
context[:gem_version] = '1.25.0'
|
1174
1339
|
Seahorse::Client::Request.new(handlers, context)
|
1175
1340
|
end
|
1176
1341
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -44,6 +46,7 @@ module Aws::Support
|
|
44
46
|
class AddAttachmentsToSetRequest < Struct.new(
|
45
47
|
:attachment_set_id,
|
46
48
|
:attachments)
|
49
|
+
SENSITIVE = []
|
47
50
|
include Aws::Structure
|
48
51
|
end
|
49
52
|
|
@@ -66,11 +69,10 @@ module Aws::Support
|
|
66
69
|
class AddAttachmentsToSetResponse < Struct.new(
|
67
70
|
:attachment_set_id,
|
68
71
|
:expiry_time)
|
72
|
+
SENSITIVE = []
|
69
73
|
include Aws::Structure
|
70
74
|
end
|
71
75
|
|
72
|
-
# To be written.
|
73
|
-
#
|
74
76
|
# @note When making an API call, you may pass AddCommunicationToCaseRequest
|
75
77
|
# data as a hash:
|
76
78
|
#
|
@@ -108,6 +110,7 @@ module Aws::Support
|
|
108
110
|
:communication_body,
|
109
111
|
:cc_email_addresses,
|
110
112
|
:attachment_set_id)
|
113
|
+
SENSITIVE = []
|
111
114
|
include Aws::Structure
|
112
115
|
end
|
113
116
|
|
@@ -122,6 +125,7 @@ module Aws::Support
|
|
122
125
|
#
|
123
126
|
class AddCommunicationToCaseResponse < Struct.new(
|
124
127
|
:result)
|
128
|
+
SENSITIVE = []
|
125
129
|
include Aws::Structure
|
126
130
|
end
|
127
131
|
|
@@ -149,6 +153,7 @@ module Aws::Support
|
|
149
153
|
class Attachment < Struct.new(
|
150
154
|
:file_name,
|
151
155
|
:data)
|
156
|
+
SENSITIVE = []
|
152
157
|
include Aws::Structure
|
153
158
|
end
|
154
159
|
|
@@ -169,6 +174,7 @@ module Aws::Support
|
|
169
174
|
class AttachmentDetails < Struct.new(
|
170
175
|
:attachment_id,
|
171
176
|
:file_name)
|
177
|
+
SENSITIVE = []
|
172
178
|
include Aws::Structure
|
173
179
|
end
|
174
180
|
|
@@ -182,6 +188,7 @@ module Aws::Support
|
|
182
188
|
#
|
183
189
|
class AttachmentIdNotFound < Struct.new(
|
184
190
|
:message)
|
191
|
+
SENSITIVE = []
|
185
192
|
include Aws::Structure
|
186
193
|
end
|
187
194
|
|
@@ -197,6 +204,7 @@ module Aws::Support
|
|
197
204
|
#
|
198
205
|
class AttachmentLimitExceeded < Struct.new(
|
199
206
|
:message)
|
207
|
+
SENSITIVE = []
|
200
208
|
include Aws::Structure
|
201
209
|
end
|
202
210
|
|
@@ -212,6 +220,7 @@ module Aws::Support
|
|
212
220
|
#
|
213
221
|
class AttachmentSetExpired < Struct.new(
|
214
222
|
:message)
|
223
|
+
SENSITIVE = []
|
215
224
|
include Aws::Structure
|
216
225
|
end
|
217
226
|
|
@@ -225,6 +234,7 @@ module Aws::Support
|
|
225
234
|
#
|
226
235
|
class AttachmentSetIdNotFound < Struct.new(
|
227
236
|
:message)
|
237
|
+
SENSITIVE = []
|
228
238
|
include Aws::Structure
|
229
239
|
end
|
230
240
|
|
@@ -240,6 +250,7 @@ module Aws::Support
|
|
240
250
|
#
|
241
251
|
class AttachmentSetSizeLimitExceeded < Struct.new(
|
242
252
|
:message)
|
253
|
+
SENSITIVE = []
|
243
254
|
include Aws::Structure
|
244
255
|
end
|
245
256
|
|
@@ -254,11 +265,12 @@ module Aws::Support
|
|
254
265
|
#
|
255
266
|
class CaseCreationLimitExceeded < Struct.new(
|
256
267
|
:message)
|
268
|
+
SENSITIVE = []
|
257
269
|
include Aws::Structure
|
258
270
|
end
|
259
271
|
|
260
272
|
# A JSON-formatted object that contains the metadata for a support case.
|
261
|
-
# It is contained the response from a DescribeCases request.
|
273
|
+
# It is contained in the response from a DescribeCases request.
|
262
274
|
# **CaseDetails** contains the following fields:
|
263
275
|
#
|
264
276
|
# * **caseId.** The AWS Support case ID requested or returned in the
|
@@ -277,12 +289,12 @@ module Aws::Support
|
|
277
289
|
# and Japanese ("ja"). Language parameters must be passed explicitly
|
278
290
|
# for operations that take them.
|
279
291
|
#
|
292
|
+
# * **nextToken.** A resumption point for pagination.
|
293
|
+
#
|
280
294
|
# * **recentCommunications.** One or more Communication objects. Fields
|
281
295
|
# of these objects are `attachments`, `body`, `caseId`, `submittedBy`,
|
282
296
|
# and `timeCreated`.
|
283
297
|
#
|
284
|
-
# * **nextToken.** A resumption point for pagination.
|
285
|
-
#
|
286
298
|
# * **serviceCode.** The identifier for the AWS service that corresponds
|
287
299
|
# to the service code defined in the call to DescribeServices.
|
288
300
|
#
|
@@ -365,7 +377,7 @@ module Aws::Support
|
|
365
377
|
# @return [String]
|
366
378
|
#
|
367
379
|
# @!attribute [rw] time_created
|
368
|
-
# The time that the case was
|
380
|
+
# The time that the case was created in the AWS Support Center.
|
369
381
|
# @return [String]
|
370
382
|
#
|
371
383
|
# @!attribute [rw] recent_communications
|
@@ -402,6 +414,7 @@ module Aws::Support
|
|
402
414
|
:recent_communications,
|
403
415
|
:cc_email_addresses,
|
404
416
|
:language)
|
417
|
+
SENSITIVE = []
|
405
418
|
include Aws::Structure
|
406
419
|
end
|
407
420
|
|
@@ -415,6 +428,7 @@ module Aws::Support
|
|
415
428
|
#
|
416
429
|
class CaseIdNotFound < Struct.new(
|
417
430
|
:message)
|
431
|
+
SENSITIVE = []
|
418
432
|
include Aws::Structure
|
419
433
|
end
|
420
434
|
|
@@ -435,6 +449,7 @@ module Aws::Support
|
|
435
449
|
class Category < Struct.new(
|
436
450
|
:code,
|
437
451
|
:name)
|
452
|
+
SENSITIVE = []
|
438
453
|
include Aws::Structure
|
439
454
|
end
|
440
455
|
|
@@ -477,6 +492,7 @@ module Aws::Support
|
|
477
492
|
:submitted_by,
|
478
493
|
:time_created,
|
479
494
|
:attachment_set)
|
495
|
+
SENSITIVE = []
|
480
496
|
include Aws::Structure
|
481
497
|
end
|
482
498
|
|
@@ -585,6 +601,7 @@ module Aws::Support
|
|
585
601
|
:language,
|
586
602
|
:issue_type,
|
587
603
|
:attachment_set_id)
|
604
|
+
SENSITIVE = []
|
588
605
|
include Aws::Structure
|
589
606
|
end
|
590
607
|
|
@@ -601,6 +618,7 @@ module Aws::Support
|
|
601
618
|
#
|
602
619
|
class CreateCaseResponse < Struct.new(
|
603
620
|
:case_id)
|
621
|
+
SENSITIVE = []
|
604
622
|
include Aws::Structure
|
605
623
|
end
|
606
624
|
|
@@ -616,6 +634,7 @@ module Aws::Support
|
|
616
634
|
#
|
617
635
|
class DescribeAttachmentLimitExceeded < Struct.new(
|
618
636
|
:message)
|
637
|
+
SENSITIVE = []
|
619
638
|
include Aws::Structure
|
620
639
|
end
|
621
640
|
|
@@ -635,6 +654,7 @@ module Aws::Support
|
|
635
654
|
#
|
636
655
|
class DescribeAttachmentRequest < Struct.new(
|
637
656
|
:attachment_id)
|
657
|
+
SENSITIVE = []
|
638
658
|
include Aws::Structure
|
639
659
|
end
|
640
660
|
|
@@ -654,6 +674,7 @@ module Aws::Support
|
|
654
674
|
#
|
655
675
|
class DescribeAttachmentResponse < Struct.new(
|
656
676
|
:attachment)
|
677
|
+
SENSITIVE = []
|
657
678
|
include Aws::Structure
|
658
679
|
end
|
659
680
|
|
@@ -695,8 +716,9 @@ module Aws::Support
|
|
695
716
|
# @return [String]
|
696
717
|
#
|
697
718
|
# @!attribute [rw] include_resolved_cases
|
698
|
-
# Specifies whether resolved support cases
|
699
|
-
# DescribeCases
|
719
|
+
# Specifies whether to include resolved support cases in the
|
720
|
+
# `DescribeCases` response. By default, resolved cases aren't
|
721
|
+
# included.
|
700
722
|
# @return [Boolean]
|
701
723
|
#
|
702
724
|
# @!attribute [rw] next_token
|
@@ -715,8 +737,8 @@ module Aws::Support
|
|
715
737
|
# @return [String]
|
716
738
|
#
|
717
739
|
# @!attribute [rw] include_communications
|
718
|
-
# Specifies whether
|
719
|
-
#
|
740
|
+
# Specifies whether to include communications in the `DescribeCases`
|
741
|
+
# response. By default, communications are incuded.
|
720
742
|
# @return [Boolean]
|
721
743
|
#
|
722
744
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeCasesRequest AWS API Documentation
|
@@ -731,11 +753,16 @@ module Aws::Support
|
|
731
753
|
:max_results,
|
732
754
|
:language,
|
733
755
|
:include_communications)
|
756
|
+
SENSITIVE = []
|
734
757
|
include Aws::Structure
|
735
758
|
end
|
736
759
|
|
737
|
-
# Returns an array of CaseDetails objects and a `nextToken` that
|
738
|
-
# a point for pagination in the result set.
|
760
|
+
# Returns an array of [CaseDetails][1] objects and a `nextToken` that
|
761
|
+
# defines a point for pagination in the result set.
|
762
|
+
#
|
763
|
+
#
|
764
|
+
#
|
765
|
+
# [1]: https://docs.aws.amazon.com/awssupport/latest/APIReference/API_CaseDetails.html
|
739
766
|
#
|
740
767
|
# @!attribute [rw] cases
|
741
768
|
# The details for the cases that match the request.
|
@@ -750,6 +777,7 @@ module Aws::Support
|
|
750
777
|
class DescribeCasesResponse < Struct.new(
|
751
778
|
:cases,
|
752
779
|
:next_token)
|
780
|
+
SENSITIVE = []
|
753
781
|
include Aws::Structure
|
754
782
|
end
|
755
783
|
|
@@ -798,6 +826,7 @@ module Aws::Support
|
|
798
826
|
:after_time,
|
799
827
|
:next_token,
|
800
828
|
:max_results)
|
829
|
+
SENSITIVE = []
|
801
830
|
include Aws::Structure
|
802
831
|
end
|
803
832
|
|
@@ -816,6 +845,7 @@ module Aws::Support
|
|
816
845
|
class DescribeCommunicationsResponse < Struct.new(
|
817
846
|
:communications,
|
818
847
|
:next_token)
|
848
|
+
SENSITIVE = []
|
819
849
|
include Aws::Structure
|
820
850
|
end
|
821
851
|
|
@@ -843,6 +873,7 @@ module Aws::Support
|
|
843
873
|
class DescribeServicesRequest < Struct.new(
|
844
874
|
:service_code_list,
|
845
875
|
:language)
|
876
|
+
SENSITIVE = []
|
846
877
|
include Aws::Structure
|
847
878
|
end
|
848
879
|
|
@@ -856,6 +887,7 @@ module Aws::Support
|
|
856
887
|
#
|
857
888
|
class DescribeServicesResponse < Struct.new(
|
858
889
|
:services)
|
890
|
+
SENSITIVE = []
|
859
891
|
include Aws::Structure
|
860
892
|
end
|
861
893
|
|
@@ -877,6 +909,7 @@ module Aws::Support
|
|
877
909
|
#
|
878
910
|
class DescribeSeverityLevelsRequest < Struct.new(
|
879
911
|
:language)
|
912
|
+
SENSITIVE = []
|
880
913
|
include Aws::Structure
|
881
914
|
end
|
882
915
|
|
@@ -893,6 +926,7 @@ module Aws::Support
|
|
893
926
|
#
|
894
927
|
class DescribeSeverityLevelsResponse < Struct.new(
|
895
928
|
:severity_levels)
|
929
|
+
SENSITIVE = []
|
896
930
|
include Aws::Structure
|
897
931
|
end
|
898
932
|
|
@@ -905,14 +939,18 @@ module Aws::Support
|
|
905
939
|
#
|
906
940
|
# @!attribute [rw] check_ids
|
907
941
|
# The IDs of the Trusted Advisor checks to get the status of.
|
908
|
-
#
|
909
|
-
#
|
942
|
+
#
|
943
|
+
# <note markdown="1"> If you specify the check ID of a check that is automatically
|
944
|
+
# refreshed, you might see an `InvalidParameterValue` error.
|
945
|
+
#
|
946
|
+
# </note>
|
910
947
|
# @return [Array<String>]
|
911
948
|
#
|
912
949
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeTrustedAdvisorCheckRefreshStatusesRequest AWS API Documentation
|
913
950
|
#
|
914
951
|
class DescribeTrustedAdvisorCheckRefreshStatusesRequest < Struct.new(
|
915
952
|
:check_ids)
|
953
|
+
SENSITIVE = []
|
916
954
|
include Aws::Structure
|
917
955
|
end
|
918
956
|
|
@@ -927,6 +965,7 @@ module Aws::Support
|
|
927
965
|
#
|
928
966
|
class DescribeTrustedAdvisorCheckRefreshStatusesResponse < Struct.new(
|
929
967
|
:statuses)
|
968
|
+
SENSITIVE = []
|
930
969
|
include Aws::Structure
|
931
970
|
end
|
932
971
|
|
@@ -954,6 +993,7 @@ module Aws::Support
|
|
954
993
|
class DescribeTrustedAdvisorCheckResultRequest < Struct.new(
|
955
994
|
:check_id,
|
956
995
|
:language)
|
996
|
+
SENSITIVE = []
|
957
997
|
include Aws::Structure
|
958
998
|
end
|
959
999
|
|
@@ -968,6 +1008,7 @@ module Aws::Support
|
|
968
1008
|
#
|
969
1009
|
class DescribeTrustedAdvisorCheckResultResponse < Struct.new(
|
970
1010
|
:result)
|
1011
|
+
SENSITIVE = []
|
971
1012
|
include Aws::Structure
|
972
1013
|
end
|
973
1014
|
|
@@ -986,6 +1027,7 @@ module Aws::Support
|
|
986
1027
|
#
|
987
1028
|
class DescribeTrustedAdvisorCheckSummariesRequest < Struct.new(
|
988
1029
|
:check_ids)
|
1030
|
+
SENSITIVE = []
|
989
1031
|
include Aws::Structure
|
990
1032
|
end
|
991
1033
|
|
@@ -1000,6 +1042,7 @@ module Aws::Support
|
|
1000
1042
|
#
|
1001
1043
|
class DescribeTrustedAdvisorCheckSummariesResponse < Struct.new(
|
1002
1044
|
:summaries)
|
1045
|
+
SENSITIVE = []
|
1003
1046
|
include Aws::Structure
|
1004
1047
|
end
|
1005
1048
|
|
@@ -1021,6 +1064,7 @@ module Aws::Support
|
|
1021
1064
|
#
|
1022
1065
|
class DescribeTrustedAdvisorChecksRequest < Struct.new(
|
1023
1066
|
:language)
|
1067
|
+
SENSITIVE = []
|
1024
1068
|
include Aws::Structure
|
1025
1069
|
end
|
1026
1070
|
|
@@ -1035,6 +1079,7 @@ module Aws::Support
|
|
1035
1079
|
#
|
1036
1080
|
class DescribeTrustedAdvisorChecksResponse < Struct.new(
|
1037
1081
|
:checks)
|
1082
|
+
SENSITIVE = []
|
1038
1083
|
include Aws::Structure
|
1039
1084
|
end
|
1040
1085
|
|
@@ -1048,6 +1093,7 @@ module Aws::Support
|
|
1048
1093
|
#
|
1049
1094
|
class InternalServerError < Struct.new(
|
1050
1095
|
:message)
|
1096
|
+
SENSITIVE = []
|
1051
1097
|
include Aws::Structure
|
1052
1098
|
end
|
1053
1099
|
|
@@ -1066,6 +1112,7 @@ module Aws::Support
|
|
1066
1112
|
class RecentCaseCommunications < Struct.new(
|
1067
1113
|
:communications,
|
1068
1114
|
:next_token)
|
1115
|
+
SENSITIVE = []
|
1069
1116
|
include Aws::Structure
|
1070
1117
|
end
|
1071
1118
|
|
@@ -1086,6 +1133,7 @@ module Aws::Support
|
|
1086
1133
|
#
|
1087
1134
|
class RefreshTrustedAdvisorCheckRequest < Struct.new(
|
1088
1135
|
:check_id)
|
1136
|
+
SENSITIVE = []
|
1089
1137
|
include Aws::Structure
|
1090
1138
|
end
|
1091
1139
|
|
@@ -1100,6 +1148,7 @@ module Aws::Support
|
|
1100
1148
|
#
|
1101
1149
|
class RefreshTrustedAdvisorCheckResponse < Struct.new(
|
1102
1150
|
:status)
|
1151
|
+
SENSITIVE = []
|
1103
1152
|
include Aws::Structure
|
1104
1153
|
end
|
1105
1154
|
|
@@ -1120,6 +1169,7 @@ module Aws::Support
|
|
1120
1169
|
#
|
1121
1170
|
class ResolveCaseRequest < Struct.new(
|
1122
1171
|
:case_id)
|
1172
|
+
SENSITIVE = []
|
1123
1173
|
include Aws::Structure
|
1124
1174
|
end
|
1125
1175
|
|
@@ -1138,6 +1188,7 @@ module Aws::Support
|
|
1138
1188
|
class ResolveCaseResponse < Struct.new(
|
1139
1189
|
:initial_case_status,
|
1140
1190
|
:final_case_status)
|
1191
|
+
SENSITIVE = []
|
1141
1192
|
include Aws::Structure
|
1142
1193
|
end
|
1143
1194
|
|
@@ -1168,16 +1219,18 @@ module Aws::Support
|
|
1168
1219
|
:code,
|
1169
1220
|
:name,
|
1170
1221
|
:categories)
|
1222
|
+
SENSITIVE = []
|
1171
1223
|
include Aws::Structure
|
1172
1224
|
end
|
1173
1225
|
|
1174
1226
|
# A code and name pair that represents the severity level of a support
|
1175
1227
|
# case. The available values depend on the support plan for the account.
|
1176
|
-
# For more information, see [Choosing a
|
1228
|
+
# For more information, see [Choosing a severity][1] in the *AWS Support
|
1229
|
+
# User Guide*.
|
1177
1230
|
#
|
1178
1231
|
#
|
1179
1232
|
#
|
1180
|
-
# [1]: https://docs.aws.amazon.com/awssupport/latest/user/
|
1233
|
+
# [1]: https://docs.aws.amazon.com/awssupport/latest/user/case-management.html#choosing-severity
|
1181
1234
|
#
|
1182
1235
|
# @!attribute [rw] code
|
1183
1236
|
# The code for case severity level.
|
@@ -1207,11 +1260,12 @@ module Aws::Support
|
|
1207
1260
|
#
|
1208
1261
|
# </note>
|
1209
1262
|
#
|
1210
|
-
# For more information, see [Choosing a
|
1263
|
+
# For more information, see [Choosing a severity][1] in the *AWS
|
1264
|
+
# Support User Guide*.
|
1211
1265
|
#
|
1212
1266
|
#
|
1213
1267
|
#
|
1214
|
-
# [1]: https://docs.aws.amazon.com/awssupport/latest/user/
|
1268
|
+
# [1]: https://docs.aws.amazon.com/awssupport/latest/user/case-management.html#choosing-severity
|
1215
1269
|
# @return [String]
|
1216
1270
|
#
|
1217
1271
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/SeverityLevel AWS API Documentation
|
@@ -1219,6 +1273,7 @@ module Aws::Support
|
|
1219
1273
|
class SeverityLevel < Struct.new(
|
1220
1274
|
:code,
|
1221
1275
|
:name)
|
1276
|
+
SENSITIVE = []
|
1222
1277
|
include Aws::Structure
|
1223
1278
|
end
|
1224
1279
|
|
@@ -1234,6 +1289,7 @@ module Aws::Support
|
|
1234
1289
|
#
|
1235
1290
|
class TrustedAdvisorCategorySpecificSummary < Struct.new(
|
1236
1291
|
:cost_optimizing)
|
1292
|
+
SENSITIVE = []
|
1237
1293
|
include Aws::Structure
|
1238
1294
|
end
|
1239
1295
|
|
@@ -1273,6 +1329,7 @@ module Aws::Support
|
|
1273
1329
|
:description,
|
1274
1330
|
:category,
|
1275
1331
|
:metadata)
|
1332
|
+
SENSITIVE = []
|
1276
1333
|
include Aws::Structure
|
1277
1334
|
end
|
1278
1335
|
|
@@ -1311,6 +1368,7 @@ module Aws::Support
|
|
1311
1368
|
:check_id,
|
1312
1369
|
:status,
|
1313
1370
|
:millis_until_next_refreshable)
|
1371
|
+
SENSITIVE = []
|
1314
1372
|
include Aws::Structure
|
1315
1373
|
end
|
1316
1374
|
|
@@ -1353,6 +1411,7 @@ module Aws::Support
|
|
1353
1411
|
:resources_summary,
|
1354
1412
|
:category_specific_summary,
|
1355
1413
|
:flagged_resources)
|
1414
|
+
SENSITIVE = []
|
1356
1415
|
include Aws::Structure
|
1357
1416
|
end
|
1358
1417
|
|
@@ -1395,6 +1454,7 @@ module Aws::Support
|
|
1395
1454
|
:has_flagged_resources,
|
1396
1455
|
:resources_summary,
|
1397
1456
|
:category_specific_summary)
|
1457
|
+
SENSITIVE = []
|
1398
1458
|
include Aws::Structure
|
1399
1459
|
end
|
1400
1460
|
|
@@ -1416,6 +1476,7 @@ module Aws::Support
|
|
1416
1476
|
class TrustedAdvisorCostOptimizingSummary < Struct.new(
|
1417
1477
|
:estimated_monthly_savings,
|
1418
1478
|
:estimated_percent_monthly_savings)
|
1479
|
+
SENSITIVE = []
|
1419
1480
|
include Aws::Structure
|
1420
1481
|
end
|
1421
1482
|
|
@@ -1457,6 +1518,7 @@ module Aws::Support
|
|
1457
1518
|
:resource_id,
|
1458
1519
|
:is_suppressed,
|
1459
1520
|
:metadata)
|
1521
|
+
SENSITIVE = []
|
1460
1522
|
include Aws::Structure
|
1461
1523
|
end
|
1462
1524
|
|
@@ -1490,6 +1552,7 @@ module Aws::Support
|
|
1490
1552
|
:resources_flagged,
|
1491
1553
|
:resources_ignored,
|
1492
1554
|
:resources_suppressed)
|
1555
|
+
SENSITIVE = []
|
1493
1556
|
include Aws::Structure
|
1494
1557
|
end
|
1495
1558
|
|
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.
|
4
|
+
version: 1.25.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: 2020-
|
11
|
+
date: 2020-07-02 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.
|
22
|
+
version: 3.99.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.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|