aws-sdk-support 1.35.0 → 1.39.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/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-support/client.rb +213 -172
- data/lib/aws-sdk-support/types.rb +117 -104
- data/lib/aws-sdk-support.rb +1 -1
- 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: c89d99b2d5eb2d5f2b4b928a89da9e95f0b0a1fbe9b11ce5421cf8dae3d782d4
|
|
4
|
+
data.tar.gz: 828b9b1598593dfced0dd52d94ade038b306911d78521977091dde0949df8fb3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2cfd04d62dba493be0c1c4afd4814638706d27efe17260e5facde882e34efd96123a3a0cc6a9afc8a6bdcd70e9654d8a4a67634799dbb5da7edbd9517bae20c0
|
|
7
|
+
data.tar.gz: 12cd8a0c09f22a721dc1c9dd3a2b49b1e652a5698152fd86ea2e8e4d315d0f17caf2106532b2d962bdae6fa3006baedbc7acca0cb477727f86ccd93a390787ef
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.39.0 (2021-12-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.38.0 (2021-12-08)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Documentation updates for AWS Support.
|
|
13
|
+
|
|
14
|
+
1.37.0 (2021-11-30)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.36.0 (2021-11-04)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
23
|
+
|
|
4
24
|
1.35.0 (2021-10-18)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.39.0
|
|
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
|
31
32
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
32
33
|
|
|
@@ -73,6 +74,7 @@ module Aws::Support
|
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
77
79
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
|
78
80
|
|
|
@@ -119,7 +121,9 @@ module Aws::Support
|
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
-
# enable retries and extended timeouts.
|
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
|
126
|
+
# to true.
|
|
123
127
|
#
|
|
124
128
|
# @option options [required, String] :region
|
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -173,6 +177,10 @@ module Aws::Support
|
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
175
179
|
#
|
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
|
183
|
+
#
|
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
|
178
186
|
# to default service endpoint when available.
|
|
@@ -285,6 +293,15 @@ module Aws::Support
|
|
|
285
293
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
286
294
|
# requests are made, and retries are disabled.
|
|
287
295
|
#
|
|
296
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
|
297
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
|
298
|
+
# will be used if available.
|
|
299
|
+
#
|
|
300
|
+
# @option options [Boolean] :use_fips_endpoint
|
|
301
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
|
302
|
+
# When a `fips` region is used, the region is normalized and this config
|
|
303
|
+
# is set to `true`.
|
|
304
|
+
#
|
|
288
305
|
# @option options [Boolean] :validate_params (true)
|
|
289
306
|
# When `true`, request parameters are validated before
|
|
290
307
|
# sending the request.
|
|
@@ -296,7 +313,7 @@ module Aws::Support
|
|
|
296
313
|
# seconds to wait when opening a HTTP session before raising a
|
|
297
314
|
# `Timeout::Error`.
|
|
298
315
|
#
|
|
299
|
-
# @option options [
|
|
316
|
+
# @option options [Float] :http_read_timeout (60) The default
|
|
300
317
|
# number of seconds to wait for response data. This value can
|
|
301
318
|
# safely be set per-request on the session.
|
|
302
319
|
#
|
|
@@ -312,6 +329,9 @@ module Aws::Support
|
|
|
312
329
|
# disables this behaviour. This value can safely be set per
|
|
313
330
|
# request on the session.
|
|
314
331
|
#
|
|
332
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
|
333
|
+
# in seconds.
|
|
334
|
+
#
|
|
315
335
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
|
316
336
|
# HTTP debug output will be sent to the `:logger`.
|
|
317
337
|
#
|
|
@@ -344,13 +364,14 @@ module Aws::Support
|
|
|
344
364
|
# after it's created. The `expiryTime` returned in the response is when
|
|
345
365
|
# the set expires.
|
|
346
366
|
#
|
|
347
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
348
|
-
# Support API.
|
|
367
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
368
|
+
# plan to use the Amazon Web Services Support API.
|
|
349
369
|
#
|
|
350
|
-
# * If you call the
|
|
351
|
-
# Business or Enterprise Support
|
|
352
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
353
|
-
# information about changing your support plan, see [
|
|
370
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
371
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
372
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
373
|
+
# information about changing your support plan, see [Amazon Web
|
|
374
|
+
# Services Support][1].
|
|
354
375
|
#
|
|
355
376
|
# </note>
|
|
356
377
|
#
|
|
@@ -405,19 +426,20 @@ module Aws::Support
|
|
|
405
426
|
req.send_request(options)
|
|
406
427
|
end
|
|
407
428
|
|
|
408
|
-
# Adds additional customer communication to an
|
|
409
|
-
# `caseId` parameter to identify the case to which
|
|
410
|
-
# You can list a set of email addresses to copy on
|
|
411
|
-
# using the `ccEmailAddresses` parameter. The
|
|
412
|
-
# contains the text of the communication.
|
|
429
|
+
# Adds additional customer communication to an Amazon Web Services
|
|
430
|
+
# Support case. Use the `caseId` parameter to identify the case to which
|
|
431
|
+
# to add communication. You can list a set of email addresses to copy on
|
|
432
|
+
# the communication by using the `ccEmailAddresses` parameter. The
|
|
433
|
+
# `communicationBody` value contains the text of the communication.
|
|
413
434
|
#
|
|
414
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
415
|
-
# Support API.
|
|
435
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
436
|
+
# plan to use the Amazon Web Services Support API.
|
|
416
437
|
#
|
|
417
|
-
# * If you call the
|
|
418
|
-
# Business or Enterprise Support
|
|
419
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
420
|
-
# information about changing your support plan, see [
|
|
438
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
439
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
440
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
441
|
+
# information about changing your support plan, see [Amazon Web
|
|
442
|
+
# Services Support][1].
|
|
421
443
|
#
|
|
422
444
|
# </note>
|
|
423
445
|
#
|
|
@@ -467,34 +489,38 @@ module Aws::Support
|
|
|
467
489
|
req.send_request(options)
|
|
468
490
|
end
|
|
469
491
|
|
|
470
|
-
# Creates a case in the
|
|
471
|
-
# how you create a case in the
|
|
492
|
+
# Creates a case in the Amazon Web Services Support Center. This
|
|
493
|
+
# operation is similar to how you create a case in the Amazon Web
|
|
494
|
+
# Services Support Center [Create Case][1] page.
|
|
472
495
|
#
|
|
473
|
-
# The
|
|
474
|
-
# increases. You can submit a service limit increase in
|
|
475
|
-
# ways:
|
|
496
|
+
# The Amazon Web Services Support API doesn't support requesting
|
|
497
|
+
# service limit increases. You can submit a service limit increase in
|
|
498
|
+
# the following ways:
|
|
476
499
|
#
|
|
477
|
-
# * Submit a request from the
|
|
500
|
+
# * Submit a request from the Amazon Web Services Support Center [Create
|
|
501
|
+
# Case][1] page.
|
|
478
502
|
#
|
|
479
503
|
# * Use the Service Quotas [RequestServiceQuotaIncrease][2] operation.
|
|
480
504
|
#
|
|
481
|
-
# A successful `CreateCase` request returns an
|
|
482
|
-
# You can use the DescribeCases operation and
|
|
483
|
-
#
|
|
484
|
-
#
|
|
485
|
-
# attachments to an
|
|
505
|
+
# A successful `CreateCase` request returns an Amazon Web Services
|
|
506
|
+
# Support case number. You can use the DescribeCases operation and
|
|
507
|
+
# specify the case number to get existing Amazon Web Services Support
|
|
508
|
+
# cases. After you create a case, use the AddCommunicationToCase
|
|
509
|
+
# operation to add additional communication or attachments to an
|
|
510
|
+
# existing case.
|
|
486
511
|
#
|
|
487
|
-
# The `caseId` is separate from the `displayId` that appears in the
|
|
488
|
-
# Support Center][3]. Use the DescribeCases
|
|
489
|
-
# `displayId`.
|
|
512
|
+
# The `caseId` is separate from the `displayId` that appears in the
|
|
513
|
+
# [Amazon Web Services Support Center][3]. Use the DescribeCases
|
|
514
|
+
# operation to get the `displayId`.
|
|
490
515
|
#
|
|
491
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
492
|
-
# Support API.
|
|
516
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
517
|
+
# plan to use the Amazon Web Services Support API.
|
|
493
518
|
#
|
|
494
|
-
# * If you call the
|
|
495
|
-
# Business or Enterprise Support
|
|
496
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
497
|
-
# information about changing your support plan, see [
|
|
519
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
520
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
521
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
522
|
+
# information about changing your support plan, see [Amazon Web
|
|
523
|
+
# Services Support][4].
|
|
498
524
|
#
|
|
499
525
|
# </note>
|
|
500
526
|
#
|
|
@@ -507,27 +533,27 @@ module Aws::Support
|
|
|
507
533
|
#
|
|
508
534
|
# @option params [required, String] :subject
|
|
509
535
|
# The title of the support case. The title appears in the **Subject**
|
|
510
|
-
# field on the
|
|
536
|
+
# field on the Amazon Web Services Support Center [Create Case][1] page.
|
|
511
537
|
#
|
|
512
538
|
#
|
|
513
539
|
#
|
|
514
540
|
# [1]: https://console.aws.amazon.com/support/home#/case/create
|
|
515
541
|
#
|
|
516
542
|
# @option params [String] :service_code
|
|
517
|
-
# The code for the
|
|
518
|
-
# operation to get the possible `serviceCode` values.
|
|
543
|
+
# The code for the Amazon Web Services service. You can use the
|
|
544
|
+
# DescribeServices operation to get the possible `serviceCode` values.
|
|
519
545
|
#
|
|
520
546
|
# @option params [String] :severity_code
|
|
521
547
|
# A value that indicates the urgency of the case. This value determines
|
|
522
|
-
# the response time according to your service level agreement with
|
|
523
|
-
# Support. You can use the DescribeSeverityLevels
|
|
524
|
-
# possible values for `severityCode`.
|
|
548
|
+
# the response time according to your service level agreement with
|
|
549
|
+
# Amazon Web Services Support. You can use the DescribeSeverityLevels
|
|
550
|
+
# operation to get the possible values for `severityCode`.
|
|
525
551
|
#
|
|
526
552
|
# For more information, see SeverityLevel and [Choosing a Severity][1]
|
|
527
|
-
# in the *
|
|
553
|
+
# in the *Amazon Web Services Support User Guide*.
|
|
528
554
|
#
|
|
529
555
|
# <note markdown="1"> The availability of severity levels depends on the support plan for
|
|
530
|
-
# the
|
|
556
|
+
# the Amazon Web Services account.
|
|
531
557
|
#
|
|
532
558
|
# </note>
|
|
533
559
|
#
|
|
@@ -538,32 +564,34 @@ module Aws::Support
|
|
|
538
564
|
# @option params [String] :category_code
|
|
539
565
|
# The category of problem for the support case. You also use the
|
|
540
566
|
# DescribeServices operation to get the category code for a service.
|
|
541
|
-
# Each
|
|
567
|
+
# Each Amazon Web Services service defines its own set of category
|
|
568
|
+
# codes.
|
|
542
569
|
#
|
|
543
570
|
# @option params [required, String] :communication_body
|
|
544
571
|
# The communication body text that describes the issue. This text
|
|
545
|
-
# appears in the **Description** field on the
|
|
546
|
-
# Case][1] page.
|
|
572
|
+
# appears in the **Description** field on the Amazon Web Services
|
|
573
|
+
# Support Center [Create Case][1] page.
|
|
547
574
|
#
|
|
548
575
|
#
|
|
549
576
|
#
|
|
550
577
|
# [1]: https://console.aws.amazon.com/support/home#/case/create
|
|
551
578
|
#
|
|
552
579
|
# @option params [Array<String>] :cc_email_addresses
|
|
553
|
-
# A list of email addresses that
|
|
554
|
-
# correspondence.
|
|
555
|
-
# case when you specify your
|
|
556
|
-
# use the [
|
|
580
|
+
# A list of email addresses that Amazon Web Services Support copies on
|
|
581
|
+
# case correspondence. Amazon Web Services Support identifies the
|
|
582
|
+
# account that creates the case when you specify your Amazon Web
|
|
583
|
+
# Services credentials in an HTTP POST method or use the [Amazon Web
|
|
584
|
+
# Services SDKs][1].
|
|
557
585
|
#
|
|
558
586
|
#
|
|
559
587
|
#
|
|
560
588
|
# [1]: http://aws.amazon.com/tools/
|
|
561
589
|
#
|
|
562
590
|
# @option params [String] :language
|
|
563
|
-
# The language in which
|
|
564
|
-
# the ISO 639-1 code for the `language` parameter if
|
|
565
|
-
# that language. Currently, English ("en") and
|
|
566
|
-
# supported.
|
|
591
|
+
# The language in which Amazon Web Services Support handles the case.
|
|
592
|
+
# You must specify the ISO 639-1 code for the `language` parameter if
|
|
593
|
+
# you want support in that language. Currently, English ("en") and
|
|
594
|
+
# Japanese ("ja") are supported.
|
|
567
595
|
#
|
|
568
596
|
# @option params [String] :issue_type
|
|
569
597
|
# The type of issue for the case. You can specify `customer-service` or
|
|
@@ -612,13 +640,14 @@ module Aws::Support
|
|
|
612
640
|
# are returned in the AttachmentDetails objects that are returned by the
|
|
613
641
|
# DescribeCommunications operation.
|
|
614
642
|
#
|
|
615
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
616
|
-
# Support API.
|
|
643
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
644
|
+
# plan to use the Amazon Web Services Support API.
|
|
617
645
|
#
|
|
618
|
-
# * If you call the
|
|
619
|
-
# Business or Enterprise Support
|
|
620
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
621
|
-
# information about changing your support plan, see [
|
|
646
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
647
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
648
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
649
|
+
# information about changing your support plan, see [Amazon Web
|
|
650
|
+
# Services Support][1].
|
|
622
651
|
#
|
|
623
652
|
# </note>
|
|
624
653
|
#
|
|
@@ -670,13 +699,14 @@ module Aws::Support
|
|
|
670
699
|
# Case data is available for 12 months after creation. If a case was
|
|
671
700
|
# created more than 12 months ago, a request might return an error.
|
|
672
701
|
#
|
|
673
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
674
|
-
# Support API.
|
|
702
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
703
|
+
# plan to use the Amazon Web Services Support API.
|
|
675
704
|
#
|
|
676
|
-
# * If you call the
|
|
677
|
-
# Business or Enterprise Support
|
|
678
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
679
|
-
# information about changing your support plan, see [
|
|
705
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
706
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
707
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
708
|
+
# information about changing your support plan, see [Amazon Web
|
|
709
|
+
# Services Support][2].
|
|
680
710
|
#
|
|
681
711
|
# </note>
|
|
682
712
|
#
|
|
@@ -690,7 +720,8 @@ module Aws::Support
|
|
|
690
720
|
# maximum number of cases is 100.
|
|
691
721
|
#
|
|
692
722
|
# @option params [String] :display_id
|
|
693
|
-
# The ID displayed for a case in the
|
|
723
|
+
# The ID displayed for a case in the Amazon Web Services Support Center
|
|
724
|
+
# user interface.
|
|
694
725
|
#
|
|
695
726
|
# @option params [String] :after_time
|
|
696
727
|
# The start date for a filtered date search on support case
|
|
@@ -713,10 +744,10 @@ module Aws::Support
|
|
|
713
744
|
# The maximum number of results to return before paginating.
|
|
714
745
|
#
|
|
715
746
|
# @option params [String] :language
|
|
716
|
-
# The ISO 639-1 code for the language in which
|
|
717
|
-
#
|
|
718
|
-
#
|
|
719
|
-
# them.
|
|
747
|
+
# The ISO 639-1 code for the language in which Amazon Web Services
|
|
748
|
+
# provides support. Amazon Web Services Support currently supports
|
|
749
|
+
# English ("en") and Japanese ("ja"). Language parameters must be
|
|
750
|
+
# passed explicitly for operations that take them.
|
|
720
751
|
#
|
|
721
752
|
# @option params [Boolean] :include_communications
|
|
722
753
|
# Specifies whether to include communications in the `DescribeCases`
|
|
@@ -792,13 +823,14 @@ module Aws::Support
|
|
|
792
823
|
# that you want to display on each page, and use `nextToken` to specify
|
|
793
824
|
# the resumption of pagination.
|
|
794
825
|
#
|
|
795
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
796
|
-
# Support API.
|
|
826
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
827
|
+
# plan to use the Amazon Web Services Support API.
|
|
797
828
|
#
|
|
798
|
-
# * If you call the
|
|
799
|
-
# Business or Enterprise Support
|
|
800
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
801
|
-
# information about changing your support plan, see [
|
|
829
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
830
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
831
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
832
|
+
# information about changing your support plan, see [Amazon Web
|
|
833
|
+
# Services Support][1].
|
|
802
834
|
#
|
|
803
835
|
# </note>
|
|
804
836
|
#
|
|
@@ -865,26 +897,27 @@ module Aws::Support
|
|
|
865
897
|
req.send_request(options)
|
|
866
898
|
end
|
|
867
899
|
|
|
868
|
-
# Returns the current list of
|
|
869
|
-
# categories for each service. You then use service names and
|
|
870
|
-
# in your CreateCase requests. Each
|
|
871
|
-
# categories.
|
|
900
|
+
# Returns the current list of Amazon Web Services services and a list of
|
|
901
|
+
# service categories for each service. You then use service names and
|
|
902
|
+
# categories in your CreateCase requests. Each Amazon Web Services
|
|
903
|
+
# service has its own set of categories.
|
|
872
904
|
#
|
|
873
905
|
# The service codes and category codes correspond to the values that
|
|
874
|
-
# appear in the **Service** and **Category** lists on the
|
|
875
|
-
# Center [Create Case][1] page. The values in those
|
|
876
|
-
# necessarily match the service codes and categories
|
|
877
|
-
# `DescribeServices` operation. Always use the service
|
|
878
|
-
# categories that the `DescribeServices` operation returns, so
|
|
879
|
-
# have the most recent set of service and category codes.
|
|
880
|
-
#
|
|
881
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
882
|
-
# Support API.
|
|
883
|
-
#
|
|
884
|
-
# * If you call the
|
|
885
|
-
# Business or Enterprise Support
|
|
886
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
887
|
-
# information about changing your support plan, see [
|
|
906
|
+
# appear in the **Service** and **Category** lists on the Amazon Web
|
|
907
|
+
# Services Support Center [Create Case][1] page. The values in those
|
|
908
|
+
# fields don't necessarily match the service codes and categories
|
|
909
|
+
# returned by the `DescribeServices` operation. Always use the service
|
|
910
|
+
# codes and categories that the `DescribeServices` operation returns, so
|
|
911
|
+
# that you have the most recent set of service and category codes.
|
|
912
|
+
#
|
|
913
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
914
|
+
# plan to use the Amazon Web Services Support API.
|
|
915
|
+
#
|
|
916
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
917
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
918
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
919
|
+
# information about changing your support plan, see [Amazon Web
|
|
920
|
+
# Services Support][2].
|
|
888
921
|
#
|
|
889
922
|
# </note>
|
|
890
923
|
#
|
|
@@ -894,13 +927,14 @@ module Aws::Support
|
|
|
894
927
|
# [2]: http://aws.amazon.com/premiumsupport/
|
|
895
928
|
#
|
|
896
929
|
# @option params [Array<String>] :service_code_list
|
|
897
|
-
# A JSON-formatted list of service codes available for
|
|
930
|
+
# A JSON-formatted list of service codes available for Amazon Web
|
|
931
|
+
# Services services.
|
|
898
932
|
#
|
|
899
933
|
# @option params [String] :language
|
|
900
|
-
# The ISO 639-1 code for the language in which
|
|
901
|
-
#
|
|
902
|
-
#
|
|
903
|
-
# them.
|
|
934
|
+
# The ISO 639-1 code for the language in which Amazon Web Services
|
|
935
|
+
# provides support. Amazon Web Services Support currently supports
|
|
936
|
+
# English ("en") and Japanese ("ja"). Language parameters must be
|
|
937
|
+
# passed explicitly for operations that take them.
|
|
904
938
|
#
|
|
905
939
|
# @return [Types::DescribeServicesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
906
940
|
#
|
|
@@ -935,13 +969,14 @@ module Aws::Support
|
|
|
935
969
|
# case. The severity level for a case is also a field in the CaseDetails
|
|
936
970
|
# data type that you include for a CreateCase request.
|
|
937
971
|
#
|
|
938
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
939
|
-
# Support API.
|
|
972
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
973
|
+
# plan to use the Amazon Web Services Support API.
|
|
940
974
|
#
|
|
941
|
-
# * If you call the
|
|
942
|
-
# Business or Enterprise Support
|
|
943
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
944
|
-
# information about changing your support plan, see [
|
|
975
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
976
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
977
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
978
|
+
# information about changing your support plan, see [Amazon Web
|
|
979
|
+
# Services Support][1].
|
|
945
980
|
#
|
|
946
981
|
# </note>
|
|
947
982
|
#
|
|
@@ -950,10 +985,10 @@ module Aws::Support
|
|
|
950
985
|
# [1]: http://aws.amazon.com/premiumsupport/
|
|
951
986
|
#
|
|
952
987
|
# @option params [String] :language
|
|
953
|
-
# The ISO 639-1 code for the language in which
|
|
954
|
-
#
|
|
955
|
-
#
|
|
956
|
-
# them.
|
|
988
|
+
# The ISO 639-1 code for the language in which Amazon Web Services
|
|
989
|
+
# provides support. Amazon Web Services Support currently supports
|
|
990
|
+
# English ("en") and Japanese ("ja"). Language parameters must be
|
|
991
|
+
# passed explicitly for operations that take them.
|
|
957
992
|
#
|
|
958
993
|
# @return [Types::DescribeSeverityLevelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
959
994
|
#
|
|
@@ -980,8 +1015,8 @@ module Aws::Support
|
|
|
980
1015
|
req.send_request(options)
|
|
981
1016
|
end
|
|
982
1017
|
|
|
983
|
-
# Returns the refresh status of the
|
|
984
|
-
#
|
|
1018
|
+
# Returns the refresh status of the Trusted Advisor checks that have the
|
|
1019
|
+
# specified check IDs. You can get the check IDs by calling the
|
|
985
1020
|
# DescribeTrustedAdvisorChecks operation.
|
|
986
1021
|
#
|
|
987
1022
|
# Some checks are refreshed automatically, and you can't return their
|
|
@@ -990,13 +1025,14 @@ module Aws::Support
|
|
|
990
1025
|
# this operation for these checks, you might see an
|
|
991
1026
|
# `InvalidParameterValue` error.
|
|
992
1027
|
#
|
|
993
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
994
|
-
# Support API.
|
|
1028
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1029
|
+
# plan to use the Amazon Web Services Support API.
|
|
995
1030
|
#
|
|
996
|
-
# * If you call the
|
|
997
|
-
# Business or Enterprise Support
|
|
998
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
999
|
-
# information about changing your support plan, see [
|
|
1031
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
1032
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1033
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
1034
|
+
# information about changing your support plan, see [Amazon Web
|
|
1035
|
+
# Services Support][1].
|
|
1000
1036
|
#
|
|
1001
1037
|
# </note>
|
|
1002
1038
|
#
|
|
@@ -1038,7 +1074,7 @@ module Aws::Support
|
|
|
1038
1074
|
req.send_request(options)
|
|
1039
1075
|
end
|
|
1040
1076
|
|
|
1041
|
-
# Returns the results of the
|
|
1077
|
+
# Returns the results of the Trusted Advisor check that has the
|
|
1042
1078
|
# specified check ID. You can get the check IDs by calling the
|
|
1043
1079
|
# DescribeTrustedAdvisorChecks operation.
|
|
1044
1080
|
#
|
|
@@ -1060,13 +1096,14 @@ module Aws::Support
|
|
|
1060
1096
|
#
|
|
1061
1097
|
# * **checkId** - The unique identifier for the check.
|
|
1062
1098
|
#
|
|
1063
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
1064
|
-
# Support API.
|
|
1099
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1100
|
+
# plan to use the Amazon Web Services Support API.
|
|
1065
1101
|
#
|
|
1066
|
-
# * If you call the
|
|
1067
|
-
# Business or Enterprise Support
|
|
1068
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
1069
|
-
# information about changing your support plan, see [
|
|
1102
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
1103
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1104
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
1105
|
+
# information about changing your support plan, see [Amazon Web
|
|
1106
|
+
# Services Support][1].
|
|
1070
1107
|
#
|
|
1071
1108
|
# </note>
|
|
1072
1109
|
#
|
|
@@ -1078,10 +1115,10 @@ module Aws::Support
|
|
|
1078
1115
|
# The unique identifier for the Trusted Advisor check.
|
|
1079
1116
|
#
|
|
1080
1117
|
# @option params [String] :language
|
|
1081
|
-
# The ISO 639-1 code for the language in which
|
|
1082
|
-
#
|
|
1083
|
-
#
|
|
1084
|
-
# them.
|
|
1118
|
+
# The ISO 639-1 code for the language in which Amazon Web Services
|
|
1119
|
+
# provides support. Amazon Web Services Support currently supports
|
|
1120
|
+
# English ("en") and Japanese ("ja"). Language parameters must be
|
|
1121
|
+
# passed explicitly for operations that take them.
|
|
1085
1122
|
#
|
|
1086
1123
|
# @return [Types::DescribeTrustedAdvisorCheckResultResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1087
1124
|
#
|
|
@@ -1122,19 +1159,20 @@ module Aws::Support
|
|
|
1122
1159
|
req.send_request(options)
|
|
1123
1160
|
end
|
|
1124
1161
|
|
|
1125
|
-
# Returns the results for the
|
|
1126
|
-
#
|
|
1127
|
-
#
|
|
1162
|
+
# Returns the results for the Trusted Advisor check summaries for the
|
|
1163
|
+
# check IDs that you specified. You can get the check IDs by calling the
|
|
1164
|
+
# DescribeTrustedAdvisorChecks operation.
|
|
1128
1165
|
#
|
|
1129
1166
|
# The response contains an array of TrustedAdvisorCheckSummary objects.
|
|
1130
1167
|
#
|
|
1131
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
1132
|
-
# Support API.
|
|
1168
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1169
|
+
# plan to use the Amazon Web Services Support API.
|
|
1133
1170
|
#
|
|
1134
|
-
# * If you call the
|
|
1135
|
-
# Business or Enterprise Support
|
|
1136
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
1137
|
-
# information about changing your support plan, see [
|
|
1171
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
1172
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1173
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
1174
|
+
# information about changing your support plan, see [Amazon Web
|
|
1175
|
+
# Services Support][1].
|
|
1138
1176
|
#
|
|
1139
1177
|
# </note>
|
|
1140
1178
|
#
|
|
@@ -1178,20 +1216,21 @@ module Aws::Support
|
|
|
1178
1216
|
req.send_request(options)
|
|
1179
1217
|
end
|
|
1180
1218
|
|
|
1181
|
-
# Returns information about all available
|
|
1219
|
+
# Returns information about all available Trusted Advisor checks,
|
|
1182
1220
|
# including the name, ID, category, description, and metadata. You must
|
|
1183
|
-
# specify a language code. The
|
|
1184
|
-
# English ("en") and Japanese ("ja"). The response contains
|
|
1185
|
-
# TrustedAdvisorCheckDescription object for each check. You must set
|
|
1186
|
-
#
|
|
1221
|
+
# specify a language code. The Amazon Web Services Support API currently
|
|
1222
|
+
# supports English ("en") and Japanese ("ja"). The response contains
|
|
1223
|
+
# a TrustedAdvisorCheckDescription object for each check. You must set
|
|
1224
|
+
# the Amazon Web Services Region to us-east-1.
|
|
1187
1225
|
#
|
|
1188
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
1189
|
-
# Support API.
|
|
1226
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1227
|
+
# plan to use the Amazon Web Services Support API.
|
|
1190
1228
|
#
|
|
1191
|
-
# * If you call the
|
|
1192
|
-
# Business or Enterprise Support
|
|
1193
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
1194
|
-
# information about changing your support plan, see [
|
|
1229
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
1230
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1231
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
1232
|
+
# information about changing your support plan, see [Amazon Web
|
|
1233
|
+
# Services Support][1].
|
|
1195
1234
|
#
|
|
1196
1235
|
# * The names and descriptions for Trusted Advisor checks are subject to
|
|
1197
1236
|
# change. We recommend that you specify the check ID in your code to
|
|
@@ -1204,10 +1243,10 @@ module Aws::Support
|
|
|
1204
1243
|
# [1]: http://aws.amazon.com/premiumsupport/
|
|
1205
1244
|
#
|
|
1206
1245
|
# @option params [required, String] :language
|
|
1207
|
-
# The ISO 639-1 code for the language in which
|
|
1208
|
-
#
|
|
1209
|
-
#
|
|
1210
|
-
# them.
|
|
1246
|
+
# The ISO 639-1 code for the language in which Amazon Web Services
|
|
1247
|
+
# provides support. Amazon Web Services Support currently supports
|
|
1248
|
+
# English ("en") and Japanese ("ja"). Language parameters must be
|
|
1249
|
+
# passed explicitly for operations that take them.
|
|
1211
1250
|
#
|
|
1212
1251
|
# @return [Types::DescribeTrustedAdvisorChecksResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1213
1252
|
#
|
|
@@ -1238,8 +1277,8 @@ module Aws::Support
|
|
|
1238
1277
|
req.send_request(options)
|
|
1239
1278
|
end
|
|
1240
1279
|
|
|
1241
|
-
# Refreshes the
|
|
1242
|
-
#
|
|
1280
|
+
# Refreshes the Trusted Advisor check that you specify using the check
|
|
1281
|
+
# ID. You can get the check IDs by calling the
|
|
1243
1282
|
# DescribeTrustedAdvisorChecks operation.
|
|
1244
1283
|
#
|
|
1245
1284
|
# <note markdown="1"> Some checks are refreshed automatically. If you call the
|
|
@@ -1250,13 +1289,14 @@ module Aws::Support
|
|
|
1250
1289
|
#
|
|
1251
1290
|
# The response contains a TrustedAdvisorCheckRefreshStatus object.
|
|
1252
1291
|
#
|
|
1253
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
1254
|
-
# Support API.
|
|
1292
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1293
|
+
# plan to use the Amazon Web Services Support API.
|
|
1255
1294
|
#
|
|
1256
|
-
# * If you call the
|
|
1257
|
-
# Business or Enterprise Support
|
|
1258
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
1259
|
-
# information about changing your support plan, see [
|
|
1295
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
1296
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1297
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
1298
|
+
# information about changing your support plan, see [Amazon Web
|
|
1299
|
+
# Services Support][1].
|
|
1260
1300
|
#
|
|
1261
1301
|
# </note>
|
|
1262
1302
|
#
|
|
@@ -1300,13 +1340,14 @@ module Aws::Support
|
|
|
1300
1340
|
# Resolves a support case. This operation takes a `caseId` and returns
|
|
1301
1341
|
# the initial and final state of the case.
|
|
1302
1342
|
#
|
|
1303
|
-
# <note markdown="1"> * You must have a Business or Enterprise Support
|
|
1304
|
-
# Support API.
|
|
1343
|
+
# <note markdown="1"> * You must have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1344
|
+
# plan to use the Amazon Web Services Support API.
|
|
1305
1345
|
#
|
|
1306
|
-
# * If you call the
|
|
1307
|
-
# Business or Enterprise Support
|
|
1308
|
-
# `SubscriptionRequiredException` error message appears. For
|
|
1309
|
-
# information about changing your support plan, see [
|
|
1346
|
+
# * If you call the Amazon Web Services Support API from an account that
|
|
1347
|
+
# does not have a Business, Enterprise On-Ramp, or Enterprise Support
|
|
1348
|
+
# plan, the `SubscriptionRequiredException` error message appears. For
|
|
1349
|
+
# information about changing your support plan, see [Amazon Web
|
|
1350
|
+
# Services Support][1].
|
|
1310
1351
|
#
|
|
1311
1352
|
# </note>
|
|
1312
1353
|
#
|
|
@@ -1357,7 +1398,7 @@ module Aws::Support
|
|
|
1357
1398
|
params: params,
|
|
1358
1399
|
config: config)
|
|
1359
1400
|
context[:gem_name] = 'aws-sdk-support'
|
|
1360
|
-
context[:gem_version] = '1.
|
|
1401
|
+
context[:gem_version] = '1.39.0'
|
|
1361
1402
|
Seahorse::Client::Request.new(handlers, context)
|
|
1362
1403
|
end
|
|
1363
1404
|
|
|
@@ -281,13 +281,13 @@ module Aws::Support
|
|
|
281
281
|
# Corresponds to the `CategoryCode` values returned by a call to
|
|
282
282
|
# DescribeServices.
|
|
283
283
|
#
|
|
284
|
-
# * **displayId** - The identifier for the case on pages in the
|
|
285
|
-
# Support Center.
|
|
284
|
+
# * **displayId** - The identifier for the case on pages in the Amazon
|
|
285
|
+
# Web Services Support Center.
|
|
286
286
|
#
|
|
287
|
-
# * **language** - The ISO 639-1 code for the language in which
|
|
288
|
-
# provides support.
|
|
289
|
-
# and Japanese ("ja"). Language parameters
|
|
290
|
-
# for operations that take them.
|
|
287
|
+
# * **language** - The ISO 639-1 code for the language in which Amazon
|
|
288
|
+
# Web Services provides support. Amazon Web Services Support currently
|
|
289
|
+
# supports English ("en") and Japanese ("ja"). Language parameters
|
|
290
|
+
# must be passed explicitly for operations that take them.
|
|
291
291
|
#
|
|
292
292
|
# * **nextToken** - A resumption point for pagination.
|
|
293
293
|
#
|
|
@@ -295,8 +295,8 @@ module Aws::Support
|
|
|
295
295
|
# of these objects are `attachments`, `body`, `caseId`, `submittedBy`,
|
|
296
296
|
# and `timeCreated`.
|
|
297
297
|
#
|
|
298
|
-
# * **serviceCode** - The identifier for the
|
|
299
|
-
# corresponds to the service code defined in the call to
|
|
298
|
+
# * **serviceCode** - The identifier for the Amazon Web Services service
|
|
299
|
+
# that corresponds to the service code defined in the call to
|
|
300
300
|
# DescribeServices.
|
|
301
301
|
#
|
|
302
302
|
# * **severityCode** - The severity code assigned to the case. Contains
|
|
@@ -304,8 +304,8 @@ module Aws::Support
|
|
|
304
304
|
# The possible values are: `low`, `normal`, `high`, `urgent`, and
|
|
305
305
|
# `critical`.
|
|
306
306
|
#
|
|
307
|
-
# * **status** - The status of the case in the
|
|
308
|
-
# values:
|
|
307
|
+
# * **status** - The status of the case in the Amazon Web Services
|
|
308
|
+
# Support Center. Valid values:
|
|
309
309
|
#
|
|
310
310
|
# * `opened`
|
|
311
311
|
#
|
|
@@ -333,12 +333,13 @@ module Aws::Support
|
|
|
333
333
|
# @return [String]
|
|
334
334
|
#
|
|
335
335
|
# @!attribute [rw] display_id
|
|
336
|
-
# The ID displayed for the case in the
|
|
337
|
-
# numeric string.
|
|
336
|
+
# The ID displayed for the case in the Amazon Web Services Support
|
|
337
|
+
# Center. This is a numeric string.
|
|
338
338
|
# @return [String]
|
|
339
339
|
#
|
|
340
340
|
# @!attribute [rw] subject
|
|
341
|
-
# The subject line for the case in the
|
|
341
|
+
# The subject line for the case in the Amazon Web Services Support
|
|
342
|
+
# Center.
|
|
342
343
|
# @return [String]
|
|
343
344
|
#
|
|
344
345
|
# @!attribute [rw] status
|
|
@@ -360,8 +361,9 @@ module Aws::Support
|
|
|
360
361
|
# @return [String]
|
|
361
362
|
#
|
|
362
363
|
# @!attribute [rw] service_code
|
|
363
|
-
# The code for the
|
|
364
|
-
# corresponding service names by calling
|
|
364
|
+
# The code for the Amazon Web Services service. You can get a list of
|
|
365
|
+
# codes and the corresponding service names by calling
|
|
366
|
+
# DescribeServices.
|
|
365
367
|
# @return [String]
|
|
366
368
|
#
|
|
367
369
|
# @!attribute [rw] category_code
|
|
@@ -378,14 +380,15 @@ module Aws::Support
|
|
|
378
380
|
# @return [String]
|
|
379
381
|
#
|
|
380
382
|
# @!attribute [rw] time_created
|
|
381
|
-
# The time that the case was created in the
|
|
383
|
+
# The time that the case was created in the Amazon Web Services
|
|
384
|
+
# Support Center.
|
|
382
385
|
# @return [String]
|
|
383
386
|
#
|
|
384
387
|
# @!attribute [rw] recent_communications
|
|
385
|
-
# The five most recent communications between you and
|
|
386
|
-
# Center, including the IDs of any attachments to the
|
|
387
|
-
# Also includes a `nextToken` that you can use to
|
|
388
|
-
# communications.
|
|
388
|
+
# The five most recent communications between you and Amazon Web
|
|
389
|
+
# Services Support Center, including the IDs of any attachments to the
|
|
390
|
+
# communications. Also includes a `nextToken` that you can use to
|
|
391
|
+
# retrieve earlier communications.
|
|
389
392
|
# @return [Types::RecentCaseCommunications]
|
|
390
393
|
#
|
|
391
394
|
# @!attribute [rw] cc_email_addresses
|
|
@@ -394,10 +397,10 @@ module Aws::Support
|
|
|
394
397
|
# @return [Array<String>]
|
|
395
398
|
#
|
|
396
399
|
# @!attribute [rw] language
|
|
397
|
-
# The ISO 639-1 code for the language in which
|
|
398
|
-
#
|
|
399
|
-
# ("ja"). Language parameters must be
|
|
400
|
-
# operations that take them.
|
|
400
|
+
# The ISO 639-1 code for the language in which Amazon Web Services
|
|
401
|
+
# provides support. Amazon Web Services Support currently supports
|
|
402
|
+
# English ("en") and Japanese ("ja"). Language parameters must be
|
|
403
|
+
# passed explicitly for operations that take them.
|
|
401
404
|
# @return [String]
|
|
402
405
|
#
|
|
403
406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/CaseDetails AWS API Documentation
|
|
@@ -435,7 +438,7 @@ module Aws::Support
|
|
|
435
438
|
|
|
436
439
|
# A JSON-formatted name/value pair that represents the category name and
|
|
437
440
|
# category code of the problem, selected from the DescribeServices
|
|
438
|
-
# response for each
|
|
441
|
+
# response for each Amazon Web Services service.
|
|
439
442
|
#
|
|
440
443
|
# @!attribute [rw] code
|
|
441
444
|
# The category code for the support case.
|
|
@@ -466,15 +469,17 @@ module Aws::Support
|
|
|
466
469
|
# @return [String]
|
|
467
470
|
#
|
|
468
471
|
# @!attribute [rw] body
|
|
469
|
-
# The text of the communication between the customer and
|
|
472
|
+
# The text of the communication between the customer and Amazon Web
|
|
473
|
+
# Services Support.
|
|
470
474
|
# @return [String]
|
|
471
475
|
#
|
|
472
476
|
# @!attribute [rw] submitted_by
|
|
473
477
|
# The identity of the account that submitted, or responded to, the
|
|
474
478
|
# support case. Customer entries include the role or IAM user as well
|
|
475
479
|
# as the email address. For example, "AdminRole (Role)
|
|
476
|
-
# <janedoe@example.com>. Entries from the
|
|
477
|
-
# display "Amazon Web Services," and don't show an
|
|
480
|
+
# <janedoe@example.com>. Entries from the Amazon Web Services
|
|
481
|
+
# Support team display "Amazon Web Services," and don't show an
|
|
482
|
+
# email address.
|
|
478
483
|
# @return [String]
|
|
479
484
|
#
|
|
480
485
|
# @!attribute [rw] time_created
|
|
@@ -514,7 +519,8 @@ module Aws::Support
|
|
|
514
519
|
#
|
|
515
520
|
# @!attribute [rw] subject
|
|
516
521
|
# The title of the support case. The title appears in the **Subject**
|
|
517
|
-
# field on the
|
|
522
|
+
# field on the Amazon Web Services Support Center [Create Case][1]
|
|
523
|
+
# page.
|
|
518
524
|
#
|
|
519
525
|
#
|
|
520
526
|
#
|
|
@@ -522,21 +528,22 @@ module Aws::Support
|
|
|
522
528
|
# @return [String]
|
|
523
529
|
#
|
|
524
530
|
# @!attribute [rw] service_code
|
|
525
|
-
# The code for the
|
|
526
|
-
# operation to get the possible `serviceCode` values.
|
|
531
|
+
# The code for the Amazon Web Services service. You can use the
|
|
532
|
+
# DescribeServices operation to get the possible `serviceCode` values.
|
|
527
533
|
# @return [String]
|
|
528
534
|
#
|
|
529
535
|
# @!attribute [rw] severity_code
|
|
530
536
|
# A value that indicates the urgency of the case. This value
|
|
531
537
|
# determines the response time according to your service level
|
|
532
|
-
# agreement with
|
|
533
|
-
# operation to get the possible values for
|
|
538
|
+
# agreement with Amazon Web Services Support. You can use the
|
|
539
|
+
# DescribeSeverityLevels operation to get the possible values for
|
|
540
|
+
# `severityCode`.
|
|
534
541
|
#
|
|
535
542
|
# For more information, see SeverityLevel and [Choosing a Severity][1]
|
|
536
|
-
# in the *
|
|
543
|
+
# in the *Amazon Web Services Support User Guide*.
|
|
537
544
|
#
|
|
538
545
|
# <note markdown="1"> The availability of severity levels depends on the support plan for
|
|
539
|
-
# the
|
|
546
|
+
# the Amazon Web Services account.
|
|
540
547
|
#
|
|
541
548
|
# </note>
|
|
542
549
|
#
|
|
@@ -548,13 +555,14 @@ module Aws::Support
|
|
|
548
555
|
# @!attribute [rw] category_code
|
|
549
556
|
# The category of problem for the support case. You also use the
|
|
550
557
|
# DescribeServices operation to get the category code for a service.
|
|
551
|
-
# Each
|
|
558
|
+
# Each Amazon Web Services service defines its own set of category
|
|
559
|
+
# codes.
|
|
552
560
|
# @return [String]
|
|
553
561
|
#
|
|
554
562
|
# @!attribute [rw] communication_body
|
|
555
563
|
# The communication body text that describes the issue. This text
|
|
556
|
-
# appears in the **Description** field on the
|
|
557
|
-
# [Create Case][1] page.
|
|
564
|
+
# appears in the **Description** field on the Amazon Web Services
|
|
565
|
+
# Support Center [Create Case][1] page.
|
|
558
566
|
#
|
|
559
567
|
#
|
|
560
568
|
#
|
|
@@ -562,10 +570,11 @@ module Aws::Support
|
|
|
562
570
|
# @return [String]
|
|
563
571
|
#
|
|
564
572
|
# @!attribute [rw] cc_email_addresses
|
|
565
|
-
# A list of email addresses that
|
|
566
|
-
# correspondence.
|
|
567
|
-
# case when you specify your
|
|
568
|
-
# use the [
|
|
573
|
+
# A list of email addresses that Amazon Web Services Support copies on
|
|
574
|
+
# case correspondence. Amazon Web Services Support identifies the
|
|
575
|
+
# account that creates the case when you specify your Amazon Web
|
|
576
|
+
# Services credentials in an HTTP POST method or use the [Amazon Web
|
|
577
|
+
# Services SDKs][1].
|
|
569
578
|
#
|
|
570
579
|
#
|
|
571
580
|
#
|
|
@@ -573,10 +582,10 @@ module Aws::Support
|
|
|
573
582
|
# @return [Array<String>]
|
|
574
583
|
#
|
|
575
584
|
# @!attribute [rw] language
|
|
576
|
-
# The language in which
|
|
577
|
-
# the ISO 639-1 code for the `language` parameter if
|
|
578
|
-
# in that language. Currently, English ("en") and
|
|
579
|
-
# are supported.
|
|
585
|
+
# The language in which Amazon Web Services Support handles the case.
|
|
586
|
+
# You must specify the ISO 639-1 code for the `language` parameter if
|
|
587
|
+
# you want support in that language. Currently, English ("en") and
|
|
588
|
+
# Japanese ("ja") are supported.
|
|
580
589
|
# @return [String]
|
|
581
590
|
#
|
|
582
591
|
# @!attribute [rw] issue_type
|
|
@@ -700,8 +709,8 @@ module Aws::Support
|
|
|
700
709
|
# @return [Array<String>]
|
|
701
710
|
#
|
|
702
711
|
# @!attribute [rw] display_id
|
|
703
|
-
# The ID displayed for a case in the
|
|
704
|
-
# interface.
|
|
712
|
+
# The ID displayed for a case in the Amazon Web Services Support
|
|
713
|
+
# Center user interface.
|
|
705
714
|
# @return [String]
|
|
706
715
|
#
|
|
707
716
|
# @!attribute [rw] after_time
|
|
@@ -731,10 +740,10 @@ module Aws::Support
|
|
|
731
740
|
# @return [Integer]
|
|
732
741
|
#
|
|
733
742
|
# @!attribute [rw] language
|
|
734
|
-
# The ISO 639-1 code for the language in which
|
|
735
|
-
#
|
|
736
|
-
# ("ja"). Language parameters must be
|
|
737
|
-
# operations that take them.
|
|
743
|
+
# The ISO 639-1 code for the language in which Amazon Web Services
|
|
744
|
+
# provides support. Amazon Web Services Support currently supports
|
|
745
|
+
# English ("en") and Japanese ("ja"). Language parameters must be
|
|
746
|
+
# passed explicitly for operations that take them.
|
|
738
747
|
# @return [String]
|
|
739
748
|
#
|
|
740
749
|
# @!attribute [rw] include_communications
|
|
@@ -859,14 +868,15 @@ module Aws::Support
|
|
|
859
868
|
# }
|
|
860
869
|
#
|
|
861
870
|
# @!attribute [rw] service_code_list
|
|
862
|
-
# A JSON-formatted list of service codes available for
|
|
871
|
+
# A JSON-formatted list of service codes available for Amazon Web
|
|
872
|
+
# Services services.
|
|
863
873
|
# @return [Array<String>]
|
|
864
874
|
#
|
|
865
875
|
# @!attribute [rw] language
|
|
866
|
-
# The ISO 639-1 code for the language in which
|
|
867
|
-
#
|
|
868
|
-
# ("ja"). Language parameters must be
|
|
869
|
-
# operations that take them.
|
|
876
|
+
# The ISO 639-1 code for the language in which Amazon Web Services
|
|
877
|
+
# provides support. Amazon Web Services Support currently supports
|
|
878
|
+
# English ("en") and Japanese ("ja"). Language parameters must be
|
|
879
|
+
# passed explicitly for operations that take them.
|
|
870
880
|
# @return [String]
|
|
871
881
|
#
|
|
872
882
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeServicesRequest AWS API Documentation
|
|
@@ -878,10 +888,11 @@ module Aws::Support
|
|
|
878
888
|
include Aws::Structure
|
|
879
889
|
end
|
|
880
890
|
|
|
881
|
-
# The list of
|
|
891
|
+
# The list of Amazon Web Services services returned by the
|
|
892
|
+
# DescribeServices operation.
|
|
882
893
|
#
|
|
883
894
|
# @!attribute [rw] services
|
|
884
|
-
# A JSON-formatted list of
|
|
895
|
+
# A JSON-formatted list of Amazon Web Services services.
|
|
885
896
|
# @return [Array<Types::Service>]
|
|
886
897
|
#
|
|
887
898
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeServicesResponse AWS API Documentation
|
|
@@ -900,10 +911,10 @@ module Aws::Support
|
|
|
900
911
|
# }
|
|
901
912
|
#
|
|
902
913
|
# @!attribute [rw] language
|
|
903
|
-
# The ISO 639-1 code for the language in which
|
|
904
|
-
#
|
|
905
|
-
# ("ja"). Language parameters must be
|
|
906
|
-
# operations that take them.
|
|
914
|
+
# The ISO 639-1 code for the language in which Amazon Web Services
|
|
915
|
+
# provides support. Amazon Web Services Support currently supports
|
|
916
|
+
# English ("en") and Japanese ("ja"). Language parameters must be
|
|
917
|
+
# passed explicitly for operations that take them.
|
|
907
918
|
# @return [String]
|
|
908
919
|
#
|
|
909
920
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeSeverityLevelsRequest AWS API Documentation
|
|
@@ -920,7 +931,7 @@ module Aws::Support
|
|
|
920
931
|
# @!attribute [rw] severity_levels
|
|
921
932
|
# The available severity levels for the support case. Available
|
|
922
933
|
# severity levels are defined by your service level agreement with
|
|
923
|
-
#
|
|
934
|
+
# Amazon Web Services.
|
|
924
935
|
# @return [Array<Types::SeverityLevel>]
|
|
925
936
|
#
|
|
926
937
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeSeverityLevelsResponse AWS API Documentation
|
|
@@ -983,10 +994,10 @@ module Aws::Support
|
|
|
983
994
|
# @return [String]
|
|
984
995
|
#
|
|
985
996
|
# @!attribute [rw] language
|
|
986
|
-
# The ISO 639-1 code for the language in which
|
|
987
|
-
#
|
|
988
|
-
# ("ja"). Language parameters must be
|
|
989
|
-
# operations that take them.
|
|
997
|
+
# The ISO 639-1 code for the language in which Amazon Web Services
|
|
998
|
+
# provides support. Amazon Web Services Support currently supports
|
|
999
|
+
# English ("en") and Japanese ("ja"). Language parameters must be
|
|
1000
|
+
# passed explicitly for operations that take them.
|
|
990
1001
|
# @return [String]
|
|
991
1002
|
#
|
|
992
1003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeTrustedAdvisorCheckResultRequest AWS API Documentation
|
|
@@ -1055,10 +1066,10 @@ module Aws::Support
|
|
|
1055
1066
|
# }
|
|
1056
1067
|
#
|
|
1057
1068
|
# @!attribute [rw] language
|
|
1058
|
-
# The ISO 639-1 code for the language in which
|
|
1059
|
-
#
|
|
1060
|
-
# ("ja"). Language parameters must be
|
|
1061
|
-
# operations that take them.
|
|
1069
|
+
# The ISO 639-1 code for the language in which Amazon Web Services
|
|
1070
|
+
# provides support. Amazon Web Services Support currently supports
|
|
1071
|
+
# English ("en") and Japanese ("ja"). Language parameters must be
|
|
1072
|
+
# passed explicitly for operations that take them.
|
|
1062
1073
|
# @return [String]
|
|
1063
1074
|
#
|
|
1064
1075
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeTrustedAdvisorChecksRequest AWS API Documentation
|
|
@@ -1196,25 +1207,25 @@ module Aws::Support
|
|
|
1196
1207
|
include Aws::Structure
|
|
1197
1208
|
end
|
|
1198
1209
|
|
|
1199
|
-
# Information about an
|
|
1200
|
-
# operation.
|
|
1210
|
+
# Information about an Amazon Web Services service returned by the
|
|
1211
|
+
# DescribeServices operation.
|
|
1201
1212
|
#
|
|
1202
1213
|
# @!attribute [rw] code
|
|
1203
|
-
# The code for an
|
|
1204
|
-
# response. The `name` element contains the
|
|
1205
|
-
# name.
|
|
1214
|
+
# The code for an Amazon Web Services service returned by the
|
|
1215
|
+
# DescribeServices response. The `name` element contains the
|
|
1216
|
+
# corresponding friendly name.
|
|
1206
1217
|
# @return [String]
|
|
1207
1218
|
#
|
|
1208
1219
|
# @!attribute [rw] name
|
|
1209
|
-
# The friendly name for an
|
|
1210
|
-
# the corresponding code.
|
|
1220
|
+
# The friendly name for an Amazon Web Services service. The `code`
|
|
1221
|
+
# element contains the corresponding code.
|
|
1211
1222
|
# @return [String]
|
|
1212
1223
|
#
|
|
1213
1224
|
# @!attribute [rw] categories
|
|
1214
1225
|
# A list of categories that describe the type of support issue a case
|
|
1215
1226
|
# describes. Categories consist of a category name and a category
|
|
1216
|
-
# code. Category names and codes are passed to
|
|
1217
|
-
# call CreateCase.
|
|
1227
|
+
# code. Category names and codes are passed to Amazon Web Services
|
|
1228
|
+
# Support when you call CreateCase.
|
|
1218
1229
|
# @return [Array<Types::Category>]
|
|
1219
1230
|
#
|
|
1220
1231
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/Service AWS API Documentation
|
|
@@ -1229,8 +1240,8 @@ module Aws::Support
|
|
|
1229
1240
|
|
|
1230
1241
|
# A code and name pair that represents the severity level of a support
|
|
1231
1242
|
# case. The available values depend on the support plan for the account.
|
|
1232
|
-
# For more information, see [Choosing a severity][1] in the *
|
|
1233
|
-
# User Guide*.
|
|
1243
|
+
# For more information, see [Choosing a severity][1] in the *Amazon Web
|
|
1244
|
+
# Services Support User Guide*.
|
|
1234
1245
|
#
|
|
1235
1246
|
#
|
|
1236
1247
|
#
|
|
@@ -1247,8 +1258,9 @@ module Aws::Support
|
|
|
1247
1258
|
# level code.
|
|
1248
1259
|
#
|
|
1249
1260
|
# <note markdown="1"> The values returned by the API are different from the values that
|
|
1250
|
-
# appear in the
|
|
1251
|
-
# `low`, but the name appears as General guidance in
|
|
1261
|
+
# appear in the Amazon Web Services Support Center. For example, the
|
|
1262
|
+
# API uses the code `low`, but the name appears as General guidance in
|
|
1263
|
+
# Support Center.
|
|
1252
1264
|
#
|
|
1253
1265
|
# The following are the API code names and how they appear in the
|
|
1254
1266
|
# console:
|
|
@@ -1265,8 +1277,8 @@ module Aws::Support
|
|
|
1265
1277
|
#
|
|
1266
1278
|
# </note>
|
|
1267
1279
|
#
|
|
1268
|
-
# For more information, see [Choosing a severity][1] in the *
|
|
1269
|
-
# Support User Guide*.
|
|
1280
|
+
# For more information, see [Choosing a severity][1] in the *Amazon
|
|
1281
|
+
# Web Services Support User Guide*.
|
|
1270
1282
|
#
|
|
1271
1283
|
#
|
|
1272
1284
|
#
|
|
@@ -1394,8 +1406,8 @@ module Aws::Support
|
|
|
1394
1406
|
# @return [String]
|
|
1395
1407
|
#
|
|
1396
1408
|
# @!attribute [rw] resources_summary
|
|
1397
|
-
# Details about
|
|
1398
|
-
# Advisor DescribeTrustedAdvisorCheckSummaries.
|
|
1409
|
+
# Details about Amazon Web Services resources that were analyzed in a
|
|
1410
|
+
# call to Trusted Advisor DescribeTrustedAdvisorCheckSummaries.
|
|
1399
1411
|
# @return [Types::TrustedAdvisorResourcesSummary]
|
|
1400
1412
|
#
|
|
1401
1413
|
# @!attribute [rw] category_specific_summary
|
|
@@ -1441,8 +1453,8 @@ module Aws::Support
|
|
|
1441
1453
|
# @return [Boolean]
|
|
1442
1454
|
#
|
|
1443
1455
|
# @!attribute [rw] resources_summary
|
|
1444
|
-
# Details about
|
|
1445
|
-
# Advisor DescribeTrustedAdvisorCheckSummaries.
|
|
1456
|
+
# Details about Amazon Web Services resources that were analyzed in a
|
|
1457
|
+
# call to Trusted Advisor DescribeTrustedAdvisorCheckSummaries.
|
|
1446
1458
|
# @return [Types::TrustedAdvisorResourcesSummary]
|
|
1447
1459
|
#
|
|
1448
1460
|
# @!attribute [rw] category_specific_summary
|
|
@@ -1494,7 +1506,8 @@ module Aws::Support
|
|
|
1494
1506
|
# @return [String]
|
|
1495
1507
|
#
|
|
1496
1508
|
# @!attribute [rw] region
|
|
1497
|
-
# The
|
|
1509
|
+
# The Amazon Web Services Region in which the identified resource is
|
|
1510
|
+
# located.
|
|
1498
1511
|
# @return [String]
|
|
1499
1512
|
#
|
|
1500
1513
|
# @!attribute [rw] resource_id
|
|
@@ -1502,8 +1515,8 @@ module Aws::Support
|
|
|
1502
1515
|
# @return [String]
|
|
1503
1516
|
#
|
|
1504
1517
|
# @!attribute [rw] is_suppressed
|
|
1505
|
-
# Specifies whether the
|
|
1506
|
-
# because it was marked as suppressed by the user.
|
|
1518
|
+
# Specifies whether the Amazon Web Services resource was ignored by
|
|
1519
|
+
# Trusted Advisor because it was marked as suppressed by the user.
|
|
1507
1520
|
# @return [Boolean]
|
|
1508
1521
|
#
|
|
1509
1522
|
# @!attribute [rw] metadata
|
|
@@ -1527,27 +1540,27 @@ module Aws::Support
|
|
|
1527
1540
|
include Aws::Structure
|
|
1528
1541
|
end
|
|
1529
1542
|
|
|
1530
|
-
# Details about
|
|
1531
|
-
# Advisor DescribeTrustedAdvisorCheckSummaries.
|
|
1543
|
+
# Details about Amazon Web Services resources that were analyzed in a
|
|
1544
|
+
# call to Trusted Advisor DescribeTrustedAdvisorCheckSummaries.
|
|
1532
1545
|
#
|
|
1533
1546
|
# @!attribute [rw] resources_processed
|
|
1534
|
-
# The number of
|
|
1535
|
-
# Advisor check.
|
|
1547
|
+
# The number of Amazon Web Services resources that were analyzed by
|
|
1548
|
+
# the Trusted Advisor check.
|
|
1536
1549
|
# @return [Integer]
|
|
1537
1550
|
#
|
|
1538
1551
|
# @!attribute [rw] resources_flagged
|
|
1539
|
-
# The number of
|
|
1540
|
-
# Trusted Advisor check.
|
|
1552
|
+
# The number of Amazon Web Services resources that were flagged
|
|
1553
|
+
# (listed) by the Trusted Advisor check.
|
|
1541
1554
|
# @return [Integer]
|
|
1542
1555
|
#
|
|
1543
1556
|
# @!attribute [rw] resources_ignored
|
|
1544
|
-
# The number of
|
|
1545
|
-
# information was unavailable.
|
|
1557
|
+
# The number of Amazon Web Services resources ignored by Trusted
|
|
1558
|
+
# Advisor because information was unavailable.
|
|
1546
1559
|
# @return [Integer]
|
|
1547
1560
|
#
|
|
1548
1561
|
# @!attribute [rw] resources_suppressed
|
|
1549
|
-
# The number of
|
|
1550
|
-
# were marked as suppressed by the user.
|
|
1562
|
+
# The number of Amazon Web Services resources ignored by Trusted
|
|
1563
|
+
# Advisor because they were marked as suppressed by the user.
|
|
1551
1564
|
# @return [Integer]
|
|
1552
1565
|
#
|
|
1553
1566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/TrustedAdvisorResourcesSummary AWS API Documentation
|
data/lib/aws-sdk-support.rb
CHANGED
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.39.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-12-21 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.125.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.125.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|