aws-sdk-support 1.22.1 → 1.27.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 +5 -2
- data/lib/aws-sdk-support/client.rb +283 -105
- 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 +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1acce5c5cda0becaccbe40cffc0eaca5436c2ec30225c58fc6c6c41cd1d0cb8a
|
4
|
+
data.tar.gz: f536bd0f54398edd102b66ccf42a21cbc5b46acb0229c4526e238e3ab9dd5023
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 611663ae0f6eb76527f43679de20578d491be24faeb60e0b3f9c83dcb9215ef3bbcc41af9a804f06f25002dc3b2d2f5ebdde6d0b9bfeb0e5b4a125b2136a94cc
|
7
|
+
data.tar.gz: 9316dea1a4cc7877718729f55226e9fe988d70000b7e4d5eae446bc54f507c41ee30758b98d9fb2bf0ebfae7ab3eee380161769c9b73debb2c07908ef447ca3d
|
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:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-support/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::Support
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.27.0'
|
49
52
|
|
50
53
|
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:
|
@@ -83,13 +85,28 @@ module Aws::Support
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::Support
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -327,6 +344,20 @@ module Aws::Support
|
|
327
344
|
# after it's created. The `expiryTime` returned in the response is when
|
328
345
|
# the set expires.
|
329
346
|
#
|
347
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
348
|
+
# Support API.
|
349
|
+
#
|
350
|
+
# * If you call the AWS Support API from an account that does not have a
|
351
|
+
# Business or Enterprise support plan, the
|
352
|
+
# `SubscriptionRequiredException` error message appears. For
|
353
|
+
# information about changing your support plan, see [AWS Support][1].
|
354
|
+
#
|
355
|
+
# </note>
|
356
|
+
#
|
357
|
+
#
|
358
|
+
#
|
359
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
360
|
+
#
|
330
361
|
# @option params [String] :attachment_set_id
|
331
362
|
# The ID of the attachment set. If an `attachmentSetId` is not
|
332
363
|
# specified, a new attachment set is created, and the ID of the set is
|
@@ -374,16 +405,25 @@ module Aws::Support
|
|
374
405
|
req.send_request(options)
|
375
406
|
end
|
376
407
|
|
377
|
-
# Adds additional customer communication to an AWS Support case.
|
378
|
-
#
|
379
|
-
# can list a set of email addresses to copy on the communication
|
380
|
-
# the `ccEmailAddresses`
|
381
|
-
# the text of the communication.
|
408
|
+
# Adds additional customer communication to an AWS Support case. Use the
|
409
|
+
# `caseId` parameter to identify the case to which to add communication.
|
410
|
+
# You can list a set of email addresses to copy on the communication by
|
411
|
+
# using the `ccEmailAddresses` parameter. The `communicationBody` value
|
412
|
+
# contains the text of the communication.
|
413
|
+
#
|
414
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
415
|
+
# Support API.
|
416
|
+
#
|
417
|
+
# * If you call the AWS Support API from an account that does not have a
|
418
|
+
# Business or Enterprise support plan, the
|
419
|
+
# `SubscriptionRequiredException` error message appears. For
|
420
|
+
# information about changing your support plan, see [AWS Support][1].
|
421
|
+
#
|
422
|
+
# </note>
|
423
|
+
#
|
382
424
|
#
|
383
|
-
# The response indicates the success or failure of the request.
|
384
425
|
#
|
385
|
-
#
|
386
|
-
# Center.
|
426
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
387
427
|
#
|
388
428
|
# @option params [String] :case_id
|
389
429
|
# The AWS Support case ID requested or returned in the call. The case ID
|
@@ -438,17 +478,23 @@ module Aws::Support
|
|
438
478
|
#
|
439
479
|
# * Use the Service Quotas [RequestServiceQuotaIncrease][2] operation.
|
440
480
|
#
|
441
|
-
# A successful CreateCase request returns an AWS Support case number.
|
481
|
+
# A successful `CreateCase` request returns an AWS Support case number.
|
442
482
|
# You can use the DescribeCases operation and specify the case number to
|
443
|
-
# get existing AWS Support cases. After you create a case,
|
444
|
-
#
|
445
|
-
#
|
483
|
+
# get existing AWS Support cases. After you create a case, use the
|
484
|
+
# AddCommunicationToCase operation to add additional communication or
|
485
|
+
# attachments to an existing case.
|
446
486
|
#
|
447
|
-
#
|
448
|
-
#
|
449
|
-
#
|
487
|
+
# The `caseId` is separate from the `displayId` that appears in the [AWS
|
488
|
+
# Support Center][3]. Use the DescribeCases operation to get the
|
489
|
+
# `displayId`.
|
450
490
|
#
|
451
|
-
#
|
491
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
492
|
+
# Support API.
|
493
|
+
#
|
494
|
+
# * If you call the AWS Support API from an account that does not have a
|
495
|
+
# Business or Enterprise support plan, the
|
496
|
+
# `SubscriptionRequiredException` error message appears. For
|
497
|
+
# information about changing your support plan, see [AWS Support][4].
|
452
498
|
#
|
453
499
|
# </note>
|
454
500
|
#
|
@@ -457,6 +503,7 @@ module Aws::Support
|
|
457
503
|
# [1]: https://console.aws.amazon.com/support/home#/case/create
|
458
504
|
# [2]: https://docs.aws.amazon.com/servicequotas/2019-06-24/apireference/API_RequestServiceQuotaIncrease.html
|
459
505
|
# [3]: https://console.aws.amazon.com/support
|
506
|
+
# [4]: http://aws.amazon.com/premiumsupport/
|
460
507
|
#
|
461
508
|
# @option params [required, String] :subject
|
462
509
|
# The title of the AWS Support case. The title appears in the
|
@@ -565,6 +612,20 @@ module Aws::Support
|
|
565
612
|
# are returned in the AttachmentDetails objects that are returned by the
|
566
613
|
# DescribeCommunications operation.
|
567
614
|
#
|
615
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
616
|
+
# Support API.
|
617
|
+
#
|
618
|
+
# * If you call the AWS Support API from an account that does not have a
|
619
|
+
# Business or Enterprise support plan, the
|
620
|
+
# `SubscriptionRequiredException` error message appears. For
|
621
|
+
# information about changing your support plan, see [AWS Support][1].
|
622
|
+
#
|
623
|
+
# </note>
|
624
|
+
#
|
625
|
+
#
|
626
|
+
#
|
627
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
628
|
+
#
|
568
629
|
# @option params [required, String] :attachment_id
|
569
630
|
# The ID of the attachment to return. Attachment IDs are returned by the
|
570
631
|
# DescribeCommunications operation.
|
@@ -594,22 +655,36 @@ module Aws::Support
|
|
594
655
|
end
|
595
656
|
|
596
657
|
# Returns a list of cases that you specify by passing one or more case
|
597
|
-
# IDs.
|
598
|
-
#
|
599
|
-
#
|
600
|
-
#
|
601
|
-
#
|
602
|
-
# Case data is available for 12 months after creation. If a case was
|
603
|
-
# created more than 12 months ago, a request for data might cause an
|
604
|
-
# error.
|
658
|
+
# IDs. You can use the `afterTime` and `beforeTime` parameters to filter
|
659
|
+
# the cases by date. You can set values for the `includeResolvedCases`
|
660
|
+
# and `includeCommunications` parameters to specify how much information
|
661
|
+
# to return.
|
605
662
|
#
|
606
663
|
# The response returns the following in JSON format:
|
607
664
|
#
|
608
|
-
# * One or more CaseDetails data types.
|
665
|
+
# * One or more [CaseDetails][1] data types.
|
609
666
|
#
|
610
667
|
# * One or more `nextToken` values, which specify where to paginate the
|
611
668
|
# returned records represented by the `CaseDetails` objects.
|
612
669
|
#
|
670
|
+
# Case data is available for 12 months after creation. If a case was
|
671
|
+
# created more than 12 months ago, a request might return an error.
|
672
|
+
#
|
673
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
674
|
+
# Support API.
|
675
|
+
#
|
676
|
+
# * If you call the AWS Support API from an account that does not have a
|
677
|
+
# Business or Enterprise support plan, the
|
678
|
+
# `SubscriptionRequiredException` error message appears. For
|
679
|
+
# information about changing your support plan, see [AWS Support][2].
|
680
|
+
#
|
681
|
+
# </note>
|
682
|
+
#
|
683
|
+
#
|
684
|
+
#
|
685
|
+
# [1]: https://docs.aws.amazon.com/awssupport/latest/APIReference/API_CaseDetails.html
|
686
|
+
# [2]: http://aws.amazon.com/premiumsupport/
|
687
|
+
#
|
613
688
|
# @option params [Array<String>] :case_id_list
|
614
689
|
# A list of ID numbers of the support cases you want returned. The
|
615
690
|
# maximum number of cases is 100.
|
@@ -628,8 +703,8 @@ module Aws::Support
|
|
628
703
|
# creation.
|
629
704
|
#
|
630
705
|
# @option params [Boolean] :include_resolved_cases
|
631
|
-
# Specifies whether resolved support cases
|
632
|
-
# DescribeCases
|
706
|
+
# Specifies whether to include resolved support cases in the
|
707
|
+
# `DescribeCases` response. By default, resolved cases aren't included.
|
633
708
|
#
|
634
709
|
# @option params [String] :next_token
|
635
710
|
# A resumption point for pagination.
|
@@ -644,8 +719,8 @@ module Aws::Support
|
|
644
719
|
# them.
|
645
720
|
#
|
646
721
|
# @option params [Boolean] :include_communications
|
647
|
-
# Specifies whether
|
648
|
-
#
|
722
|
+
# Specifies whether to include communications in the `DescribeCases`
|
723
|
+
# response. By default, communications are incuded.
|
649
724
|
#
|
650
725
|
# @return [Types::DescribeCasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
651
726
|
#
|
@@ -703,19 +778,33 @@ module Aws::Support
|
|
703
778
|
req.send_request(options)
|
704
779
|
end
|
705
780
|
|
706
|
-
# Returns communications
|
707
|
-
#
|
708
|
-
#
|
709
|
-
#
|
781
|
+
# Returns communications and attachments for one or more support cases.
|
782
|
+
# Use the `afterTime` and `beforeTime` parameters to filter by date. You
|
783
|
+
# can use the `caseId` parameter to restrict the results to a specific
|
784
|
+
# case.
|
710
785
|
#
|
711
786
|
# Case data is available for 12 months after creation. If a case was
|
712
787
|
# created more than 12 months ago, a request for data might cause an
|
713
788
|
# error.
|
714
789
|
#
|
715
790
|
# You can use the `maxResults` and `nextToken` parameters to control the
|
716
|
-
# pagination of the
|
717
|
-
# you want
|
718
|
-
# resumption of pagination.
|
791
|
+
# pagination of the results. Set `maxResults` to the number of cases
|
792
|
+
# that you want to display on each page, and use `nextToken` to specify
|
793
|
+
# the resumption of pagination.
|
794
|
+
#
|
795
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
796
|
+
# Support API.
|
797
|
+
#
|
798
|
+
# * If you call the AWS Support API from an account that does not have a
|
799
|
+
# Business or Enterprise support plan, the
|
800
|
+
# `SubscriptionRequiredException` error message appears. For
|
801
|
+
# information about changing your support plan, see [AWS Support][1].
|
802
|
+
#
|
803
|
+
# </note>
|
804
|
+
#
|
805
|
+
#
|
806
|
+
#
|
807
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
719
808
|
#
|
720
809
|
# @option params [required, String] :case_id
|
721
810
|
# The AWS Support case ID requested or returned in the call. The case ID
|
@@ -777,22 +866,32 @@ module Aws::Support
|
|
777
866
|
end
|
778
867
|
|
779
868
|
# Returns the current list of AWS services and a list of service
|
780
|
-
# categories
|
781
|
-
#
|
782
|
-
#
|
869
|
+
# categories for each service. You then use service names and categories
|
870
|
+
# in your CreateCase requests. Each AWS service has its own set of
|
871
|
+
# categories.
|
872
|
+
#
|
873
|
+
# The service codes and category codes correspond to the values that
|
874
|
+
# appear in the **Service** and **Category** lists on the AWS Support
|
875
|
+
# Center [Create Case][1] page. The values in those fields don't
|
876
|
+
# necessarily match the service codes and categories returned by the
|
877
|
+
# `DescribeServices` operation. Always use the service codes and
|
878
|
+
# categories that the `DescribeServices` operation returns, so that you
|
879
|
+
# have the most recent set of service and category codes.
|
880
|
+
#
|
881
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
882
|
+
# Support API.
|
883
|
+
#
|
884
|
+
# * If you call the AWS Support API from an account that does not have a
|
885
|
+
# Business or Enterprise support plan, the
|
886
|
+
# `SubscriptionRequiredException` error message appears. For
|
887
|
+
# information about changing your support plan, see [AWS Support][2].
|
783
888
|
#
|
784
|
-
#
|
785
|
-
# displayed in the **Service** and **Category** drop-down lists on the
|
786
|
-
# AWS Support Center [Create Case][1] page. The values in those fields,
|
787
|
-
# however, do not necessarily match the service codes and categories
|
788
|
-
# returned by the `DescribeServices` request. Always use the service
|
789
|
-
# codes and categories obtained programmatically. This practice ensures
|
790
|
-
# that you always have the most recent set of service and category
|
791
|
-
# codes.
|
889
|
+
# </note>
|
792
890
|
#
|
793
891
|
#
|
794
892
|
#
|
795
893
|
# [1]: https://console.aws.amazon.com/support/home#/case/create
|
894
|
+
# [2]: http://aws.amazon.com/premiumsupport/
|
796
895
|
#
|
797
896
|
# @option params [Array<String>] :service_code_list
|
798
897
|
# A JSON-formatted list of service codes available for AWS services.
|
@@ -834,7 +933,21 @@ module Aws::Support
|
|
834
933
|
|
835
934
|
# Returns the list of severity levels that you can assign to an AWS
|
836
935
|
# Support case. The severity level for a case is also a field in the
|
837
|
-
# CaseDetails data type
|
936
|
+
# CaseDetails data type that you include for a CreateCase request.
|
937
|
+
#
|
938
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
939
|
+
# Support API.
|
940
|
+
#
|
941
|
+
# * If you call the AWS Support API from an account that does not have a
|
942
|
+
# Business or Enterprise support plan, the
|
943
|
+
# `SubscriptionRequiredException` error message appears. For
|
944
|
+
# information about changing your support plan, see [AWS Support][1].
|
945
|
+
#
|
946
|
+
# </note>
|
947
|
+
#
|
948
|
+
#
|
949
|
+
#
|
950
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
838
951
|
#
|
839
952
|
# @option params [String] :language
|
840
953
|
# The ISO 639-1 code for the language in which AWS provides support. AWS
|
@@ -867,21 +980,37 @@ module Aws::Support
|
|
867
980
|
req.send_request(options)
|
868
981
|
end
|
869
982
|
|
870
|
-
# Returns the refresh status of the Trusted Advisor checks that have
|
871
|
-
# specified check IDs.
|
872
|
-
# DescribeTrustedAdvisorChecks.
|
983
|
+
# Returns the refresh status of the AWS Trusted Advisor checks that have
|
984
|
+
# the specified check IDs. You can get the check IDs by calling the
|
985
|
+
# DescribeTrustedAdvisorChecks operation.
|
873
986
|
#
|
874
|
-
#
|
875
|
-
#
|
876
|
-
# `DescribeTrustedAdvisorCheckRefreshStatuses` operation
|
877
|
-
# checks
|
987
|
+
# Some checks are refreshed automatically, and you can't return their
|
988
|
+
# refresh statuses by using the
|
989
|
+
# `DescribeTrustedAdvisorCheckRefreshStatuses` operation. If you call
|
990
|
+
# this operation for these checks, you might see an
|
991
|
+
# `InvalidParameterValue` error.
|
992
|
+
#
|
993
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
994
|
+
# Support API.
|
995
|
+
#
|
996
|
+
# * If you call the AWS Support API from an account that does not have a
|
997
|
+
# Business or Enterprise support plan, the
|
998
|
+
# `SubscriptionRequiredException` error message appears. For
|
999
|
+
# information about changing your support plan, see [AWS Support][1].
|
878
1000
|
#
|
879
1001
|
# </note>
|
880
1002
|
#
|
1003
|
+
#
|
1004
|
+
#
|
1005
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
1006
|
+
#
|
881
1007
|
# @option params [required, Array<String>] :check_ids
|
882
|
-
# The IDs of the Trusted Advisor checks to get the status of.
|
883
|
-
#
|
884
|
-
#
|
1008
|
+
# The IDs of the Trusted Advisor checks to get the status of.
|
1009
|
+
#
|
1010
|
+
# <note markdown="1"> If you specify the check ID of a check that is automatically
|
1011
|
+
# refreshed, you might see an `InvalidParameterValue` error.
|
1012
|
+
#
|
1013
|
+
# </note>
|
885
1014
|
#
|
886
1015
|
# @return [Types::DescribeTrustedAdvisorCheckRefreshStatusesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
887
1016
|
#
|
@@ -909,9 +1038,9 @@ module Aws::Support
|
|
909
1038
|
req.send_request(options)
|
910
1039
|
end
|
911
1040
|
|
912
|
-
# Returns the results of the Trusted Advisor check that has the
|
913
|
-
# specified check ID.
|
914
|
-
# DescribeTrustedAdvisorChecks.
|
1041
|
+
# Returns the results of the AWS Trusted Advisor check that has the
|
1042
|
+
# specified check ID. You can get the check IDs by calling the
|
1043
|
+
# DescribeTrustedAdvisorChecks operation.
|
915
1044
|
#
|
916
1045
|
# The response contains a TrustedAdvisorCheckResult object, which
|
917
1046
|
# contains these three objects:
|
@@ -924,12 +1053,26 @@ module Aws::Support
|
|
924
1053
|
#
|
925
1054
|
# In addition, the response contains these fields:
|
926
1055
|
#
|
927
|
-
# * **status
|
1056
|
+
# * **status** - The alert status of the check: "ok" (green),
|
928
1057
|
# "warning" (yellow), "error" (red), or "not\_available".
|
929
1058
|
#
|
930
|
-
# * **timestamp
|
1059
|
+
# * **timestamp** - The time of the last refresh of the check.
|
1060
|
+
#
|
1061
|
+
# * **checkId** - The unique identifier for the check.
|
1062
|
+
#
|
1063
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
1064
|
+
# Support API.
|
1065
|
+
#
|
1066
|
+
# * If you call the AWS Support API from an account that does not have a
|
1067
|
+
# Business or Enterprise support plan, the
|
1068
|
+
# `SubscriptionRequiredException` error message appears. For
|
1069
|
+
# information about changing your support plan, see [AWS Support][1].
|
1070
|
+
#
|
1071
|
+
# </note>
|
1072
|
+
#
|
1073
|
+
#
|
931
1074
|
#
|
932
|
-
#
|
1075
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
933
1076
|
#
|
934
1077
|
# @option params [required, String] :check_id
|
935
1078
|
# The unique identifier for the Trusted Advisor check.
|
@@ -979,12 +1122,26 @@ module Aws::Support
|
|
979
1122
|
req.send_request(options)
|
980
1123
|
end
|
981
1124
|
|
982
|
-
# Returns the
|
983
|
-
#
|
984
|
-
#
|
1125
|
+
# Returns the results for the AWS Trusted Advisor check summaries for
|
1126
|
+
# the check IDs that you specified. You can get the check IDs by calling
|
1127
|
+
# the DescribeTrustedAdvisorChecks operation.
|
985
1128
|
#
|
986
1129
|
# The response contains an array of TrustedAdvisorCheckSummary objects.
|
987
1130
|
#
|
1131
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
1132
|
+
# Support API.
|
1133
|
+
#
|
1134
|
+
# * If you call the AWS Support API from an account that does not have a
|
1135
|
+
# Business or Enterprise support plan, the
|
1136
|
+
# `SubscriptionRequiredException` error message appears. For
|
1137
|
+
# information about changing your support plan, see [AWS Support][1].
|
1138
|
+
#
|
1139
|
+
# </note>
|
1140
|
+
#
|
1141
|
+
#
|
1142
|
+
#
|
1143
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
1144
|
+
#
|
988
1145
|
# @option params [required, Array<String>] :check_ids
|
989
1146
|
# The IDs of the Trusted Advisor checks.
|
990
1147
|
#
|
@@ -1021,12 +1178,26 @@ module Aws::Support
|
|
1021
1178
|
req.send_request(options)
|
1022
1179
|
end
|
1023
1180
|
|
1024
|
-
# Returns information about all available Trusted Advisor checks,
|
1025
|
-
# including name, ID, category, description, and metadata. You must
|
1026
|
-
# specify a language code
|
1027
|
-
#
|
1028
|
-
# TrustedAdvisorCheckDescription for each check.
|
1029
|
-
# to us-east-1.
|
1181
|
+
# Returns information about all available AWS Trusted Advisor checks,
|
1182
|
+
# including the name, ID, category, description, and metadata. You must
|
1183
|
+
# specify a language code. The AWS Support API currently supports
|
1184
|
+
# English ("en") and Japanese ("ja"). The response contains a
|
1185
|
+
# TrustedAdvisorCheckDescription object for each check. You must set the
|
1186
|
+
# AWS Region to us-east-1.
|
1187
|
+
#
|
1188
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
1189
|
+
# Support API.
|
1190
|
+
#
|
1191
|
+
# * If you call the AWS Support API from an account that does not have a
|
1192
|
+
# Business or Enterprise support plan, the
|
1193
|
+
# `SubscriptionRequiredException` error message appears. For
|
1194
|
+
# information about changing your support plan, see [AWS Support][1].
|
1195
|
+
#
|
1196
|
+
# </note>
|
1197
|
+
#
|
1198
|
+
#
|
1199
|
+
#
|
1200
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
1030
1201
|
#
|
1031
1202
|
# @option params [required, String] :language
|
1032
1203
|
# The ISO 639-1 code for the language in which AWS provides support. AWS
|
@@ -1063,38 +1234,31 @@ module Aws::Support
|
|
1063
1234
|
req.send_request(options)
|
1064
1235
|
end
|
1065
1236
|
|
1066
|
-
#
|
1067
|
-
# check ID.
|
1068
|
-
# DescribeTrustedAdvisorChecks.
|
1237
|
+
# Refreshes the AWS Trusted Advisor check that you specify using the
|
1238
|
+
# check ID. You can get the check IDs by calling the
|
1239
|
+
# DescribeTrustedAdvisorChecks operation.
|
1069
1240
|
#
|
1070
|
-
# <note markdown="1"> Some checks are refreshed automatically
|
1071
|
-
#
|
1072
|
-
#
|
1241
|
+
# <note markdown="1"> Some checks are refreshed automatically. If you call the
|
1242
|
+
# `RefreshTrustedAdvisorCheck` operation to refresh them, you might see
|
1243
|
+
# the `InvalidParameterValue` error.
|
1073
1244
|
#
|
1074
1245
|
# </note>
|
1075
1246
|
#
|
1076
|
-
# The response contains a TrustedAdvisorCheckRefreshStatus object
|
1077
|
-
# contains these fields:
|
1078
|
-
#
|
1079
|
-
# * **status.** The refresh status of the check:
|
1247
|
+
# The response contains a TrustedAdvisorCheckRefreshStatus object.
|
1080
1248
|
#
|
1081
|
-
#
|
1082
|
-
#
|
1249
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
1250
|
+
# Support API.
|
1083
1251
|
#
|
1084
|
-
#
|
1085
|
-
#
|
1252
|
+
# * If you call the AWS Support API from an account that does not have a
|
1253
|
+
# Business or Enterprise support plan, the
|
1254
|
+
# `SubscriptionRequiredException` error message appears. For
|
1255
|
+
# information about changing your support plan, see [AWS Support][1].
|
1086
1256
|
#
|
1087
|
-
#
|
1088
|
-
# processing engine
|
1089
|
-
#
|
1090
|
-
# * `success:` The check is successfully refreshed
|
1257
|
+
# </note>
|
1091
1258
|
#
|
1092
|
-
# * `abandoned:` The check refresh has failed
|
1093
1259
|
#
|
1094
|
-
# * **millisUntilNextRefreshable.** The amount of time, in milliseconds,
|
1095
|
-
# until the check is eligible for refresh.
|
1096
1260
|
#
|
1097
|
-
#
|
1261
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
1098
1262
|
#
|
1099
1263
|
# @option params [required, String] :check_id
|
1100
1264
|
# The unique identifier for the Trusted Advisor check to refresh.
|
@@ -1126,8 +1290,22 @@ module Aws::Support
|
|
1126
1290
|
req.send_request(options)
|
1127
1291
|
end
|
1128
1292
|
|
1129
|
-
#
|
1130
|
-
# the state of the case
|
1293
|
+
# Resolves a support case. This operation takes a `caseId` and returns
|
1294
|
+
# the initial and final state of the case.
|
1295
|
+
#
|
1296
|
+
# <note markdown="1"> * You must have a Business or Enterprise support plan to use the AWS
|
1297
|
+
# Support API.
|
1298
|
+
#
|
1299
|
+
# * If you call the AWS Support API from an account that does not have a
|
1300
|
+
# Business or Enterprise support plan, the
|
1301
|
+
# `SubscriptionRequiredException` error message appears. For
|
1302
|
+
# information about changing your support plan, see [AWS Support][1].
|
1303
|
+
#
|
1304
|
+
# </note>
|
1305
|
+
#
|
1306
|
+
#
|
1307
|
+
#
|
1308
|
+
# [1]: http://aws.amazon.com/premiumsupport/
|
1131
1309
|
#
|
1132
1310
|
# @option params [String] :case_id
|
1133
1311
|
# The AWS Support case ID requested or returned in the call. The case ID
|
@@ -1172,7 +1350,7 @@ module Aws::Support
|
|
1172
1350
|
params: params,
|
1173
1351
|
config: config)
|
1174
1352
|
context[:gem_name] = 'aws-sdk-support'
|
1175
|
-
context[:gem_version] = '1.
|
1353
|
+
context[:gem_version] = '1.27.0'
|
1176
1354
|
Seahorse::Client::Request.new(handlers, context)
|
1177
1355
|
end
|
1178
1356
|
|
@@ -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.27.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-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|