aws-sdk-support 1.16.0 → 1.17.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 +1 -1
- data/lib/aws-sdk-support/client.rb +49 -15
- data/lib/aws-sdk-support/client_api.rb +1 -0
- data/lib/aws-sdk-support/types.rb +78 -20
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d906fefaa7dcfc2f17c2e0f0b9cd980c4c391a1
|
4
|
+
data.tar.gz: 8f8548802aa737b18e6d807880d9441156047356
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99ee66d841bade7d9c739e31ca186ca2ac03f65d137ccb3612ae1a75d6b97921f618c647f6c4948519d3da43450e4efdcdd51a824c2960160c69f2333f754db6
|
7
|
+
data.tar.gz: ba19f60a2a73481a984b406b82b5a70a480067427fe753467b9051542d41cb2eb79dc413db67a71ed2ed1a3bfef612b9e65233c45807a0b05e3d0621eecce13e
|
data/lib/aws-sdk-support.rb
CHANGED
@@ -378,18 +378,29 @@ module Aws::Support
|
|
378
378
|
# either "customer-service" or "technical." If you do not indicate
|
379
379
|
# a value, the default is "technical."
|
380
380
|
#
|
381
|
-
#
|
382
|
-
#
|
381
|
+
# <note markdown="1"> Service limit increases are not supported by the Support API; you
|
382
|
+
# must submit service limit increase requests in [Support Center][2].
|
383
|
+
#
|
384
|
+
# The `caseId` is not the `displayId` that appears in [Support
|
385
|
+
# Center][2]. You can use the DescribeCases API to get the
|
386
|
+
# `displayId`.
|
387
|
+
#
|
388
|
+
# </note>
|
389
|
+
#
|
390
|
+
# * **serviceCode.** The code for an AWS service. You can get the
|
391
|
+
# possible `serviceCode` values by calling DescribeServices.
|
383
392
|
#
|
384
393
|
# * **categoryCode.** The category for the service defined for the
|
385
|
-
# `serviceCode` value. You also
|
386
|
-
#
|
394
|
+
# `serviceCode` value. You also get the category code for a service by
|
395
|
+
# calling DescribeServices. Each AWS service defines its own set of
|
387
396
|
# category codes.
|
388
397
|
#
|
389
398
|
# * **severityCode.** A value that indicates the urgency of the case,
|
390
399
|
# which in turn determines the response time according to your service
|
391
|
-
# level agreement with AWS Support. You
|
392
|
-
# calling DescribeSeverityLevels.
|
400
|
+
# level agreement with AWS Support. You can get the possible
|
401
|
+
# `severityCode` values by calling DescribeSeverityLevels. For more
|
402
|
+
# information about the meaning of the codes, see SeverityLevel and
|
403
|
+
# [Choosing a Severity][3].
|
393
404
|
#
|
394
405
|
# * **subject.** The **Subject** field on the AWS Support Center [Create
|
395
406
|
# Case][1] page.
|
@@ -408,7 +419,7 @@ module Aws::Support
|
|
408
419
|
# any correspondence about the case. The account that opens the case
|
409
420
|
# is already identified by passing the AWS Credentials in the HTTP
|
410
421
|
# POST method or in a method or function call from one of the
|
411
|
-
# programming languages supported by an [AWS SDK][
|
422
|
+
# programming languages supported by an [AWS SDK][4].
|
412
423
|
#
|
413
424
|
# <note markdown="1"> To add additional communication or attachments to an existing case,
|
414
425
|
# use AddCommunicationToCase.
|
@@ -422,7 +433,9 @@ module Aws::Support
|
|
422
433
|
#
|
423
434
|
#
|
424
435
|
# [1]: https://console.aws.amazon.com/support/home#/case/create
|
425
|
-
# [2]:
|
436
|
+
# [2]: https://console.aws.amazon.com/support
|
437
|
+
# [3]: https://docs.aws.amazon.com/awssupport/latest/user/getting-started.html#choosing-severity
|
438
|
+
# [4]: http://aws.amazon.com/tools/
|
426
439
|
#
|
427
440
|
# @option params [required, String] :subject
|
428
441
|
# The title of the AWS Support case.
|
@@ -434,9 +447,8 @@ module Aws::Support
|
|
434
447
|
# The code for the severity level returned by the call to
|
435
448
|
# DescribeSeverityLevels.
|
436
449
|
#
|
437
|
-
# <note markdown="1"> The availability of severity levels depends on
|
438
|
-
#
|
439
|
-
# necessarily require the urgent level of response time.
|
450
|
+
# <note markdown="1"> The availability of severity levels depends on the support plan for
|
451
|
+
# the account.
|
440
452
|
#
|
441
453
|
# </note>
|
442
454
|
#
|
@@ -462,6 +474,15 @@ module Aws::Support
|
|
462
474
|
# "customer-service" or "technical." If you do not indicate a value,
|
463
475
|
# the default is "technical."
|
464
476
|
#
|
477
|
+
# <note markdown="1"> Service limit increases are not supported by the Support API; you must
|
478
|
+
# submit service limit increase requests in [Support Center][1].
|
479
|
+
#
|
480
|
+
# </note>
|
481
|
+
#
|
482
|
+
#
|
483
|
+
#
|
484
|
+
# [1]: https://console.aws.amazon.com/support
|
485
|
+
#
|
465
486
|
# @option params [String] :attachment_set_id
|
466
487
|
# The ID of a set of one or more attachments for the case. Create the
|
467
488
|
# set by using AddAttachmentsToSet.
|
@@ -959,7 +980,8 @@ module Aws::Support
|
|
959
980
|
# including name, ID, category, description, and metadata. You must
|
960
981
|
# specify a language code; English ("en") and Japanese ("ja") are
|
961
982
|
# currently supported. The response contains a
|
962
|
-
# TrustedAdvisorCheckDescription for each check.
|
983
|
+
# TrustedAdvisorCheckDescription for each check. The region must be set
|
984
|
+
# to us-east-1.
|
963
985
|
#
|
964
986
|
# @option params [required, String] :language
|
965
987
|
# The ISO 639-1 code for the language in which AWS provides support. AWS
|
@@ -1009,8 +1031,20 @@ module Aws::Support
|
|
1009
1031
|
# The response contains a TrustedAdvisorCheckRefreshStatus object, which
|
1010
1032
|
# contains these fields:
|
1011
1033
|
#
|
1012
|
-
# * **status.** The refresh status of the check:
|
1013
|
-
#
|
1034
|
+
# * **status.** The refresh status of the check:
|
1035
|
+
#
|
1036
|
+
# * `none:` The check is not refreshed or the non-success status
|
1037
|
+
# exceeds the timeout
|
1038
|
+
#
|
1039
|
+
# * `enqueued:` The check refresh requests has entered the refresh
|
1040
|
+
# queue
|
1041
|
+
#
|
1042
|
+
# * `processing:` The check refresh request is picked up by the rule
|
1043
|
+
# processing engine
|
1044
|
+
#
|
1045
|
+
# * `success:` The check is successfully refreshed
|
1046
|
+
#
|
1047
|
+
# * `abandoned:` The check refresh has failed
|
1014
1048
|
#
|
1015
1049
|
# * **millisUntilNextRefreshable.** The amount of time, in milliseconds,
|
1016
1050
|
# until the check is eligible for refresh.
|
@@ -1093,7 +1127,7 @@ module Aws::Support
|
|
1093
1127
|
params: params,
|
1094
1128
|
config: config)
|
1095
1129
|
context[:gem_name] = 'aws-sdk-support'
|
1096
|
-
context[:gem_version] = '1.
|
1130
|
+
context[:gem_version] = '1.17.0'
|
1097
1131
|
Seahorse::Client::Request.new(handlers, context)
|
1098
1132
|
end
|
1099
1133
|
|
@@ -392,6 +392,7 @@ module Aws::Support
|
|
392
392
|
"jsonVersion" => "1.1",
|
393
393
|
"protocol" => "json",
|
394
394
|
"serviceFullName" => "AWS Support",
|
395
|
+
"serviceId" => "Support",
|
395
396
|
"signatureVersion" => "v4",
|
396
397
|
"targetPrefix" => "AWSSupport_20130415",
|
397
398
|
"uid" => "support-2013-04-15",
|
@@ -280,11 +280,14 @@ module Aws::Support
|
|
280
280
|
# * **serviceCode.** The identifier for the AWS service that corresponds
|
281
281
|
# to the service code defined in the call to DescribeServices.
|
282
282
|
#
|
283
|
-
# *
|
284
|
-
#
|
285
|
-
#
|
283
|
+
# * **severityCode.** The severity code assigned to the case. Contains
|
284
|
+
# one of the values returned by the call to DescribeSeverityLevels.
|
285
|
+
# The possible values are: `low`, `normal`, `high`, `urgent`, and
|
286
|
+
# `critical`.
|
286
287
|
#
|
287
|
-
# * **status.** The status of the case in the AWS Support Center.
|
288
|
+
# * **status.** The status of the case in the AWS Support Center. The
|
289
|
+
# possible values are: `resolved`, `pending-customer-action`,
|
290
|
+
# `opened`, `unassigned`, and `work-in-progress`.
|
288
291
|
#
|
289
292
|
# * **subject.** The subject line of the case.
|
290
293
|
#
|
@@ -309,12 +312,14 @@ module Aws::Support
|
|
309
312
|
# @return [String]
|
310
313
|
#
|
311
314
|
# @!attribute [rw] status
|
312
|
-
# The status of the case.
|
315
|
+
# The status of the case. Valid values: `resolved` \|
|
316
|
+
# `pending-customer-action` \| `opened` \| `unassigned` \|
|
317
|
+
# `work-in-progress`.
|
313
318
|
# @return [String]
|
314
319
|
#
|
315
320
|
# @!attribute [rw] service_code
|
316
|
-
# The code for the AWS service
|
317
|
-
# DescribeServices.
|
321
|
+
# The code for the AWS service. You can get a list of codes and the
|
322
|
+
# corresponding service names by calling DescribeServices.
|
318
323
|
# @return [String]
|
319
324
|
#
|
320
325
|
# @!attribute [rw] category_code
|
@@ -406,7 +411,8 @@ module Aws::Support
|
|
406
411
|
|
407
412
|
# A communication associated with an AWS Support case. The communication
|
408
413
|
# consists of the case ID, the message body, attachment information, the
|
409
|
-
#
|
414
|
+
# submitter of the communication, and the date and time of the
|
415
|
+
# communication.
|
410
416
|
#
|
411
417
|
# @!attribute [rw] case_id
|
412
418
|
# The AWS Support case ID requested or returned in the call. The case
|
@@ -419,8 +425,11 @@ module Aws::Support
|
|
419
425
|
# @return [String]
|
420
426
|
#
|
421
427
|
# @!attribute [rw] submitted_by
|
422
|
-
# The
|
423
|
-
# case.
|
428
|
+
# The identity of the account that submitted, or responded to, the
|
429
|
+
# support case. Customer entries include the role or IAM user as well
|
430
|
+
# as the email address. For example, "AdminRole (Role)
|
431
|
+
# <someone@example.com>. Entries from the AWS Support team
|
432
|
+
# display "Amazon Web Services," and do not show an email address.
|
424
433
|
# @return [String]
|
425
434
|
#
|
426
435
|
# @!attribute [rw] time_created
|
@@ -470,9 +479,8 @@ module Aws::Support
|
|
470
479
|
# The code for the severity level returned by the call to
|
471
480
|
# DescribeSeverityLevels.
|
472
481
|
#
|
473
|
-
# <note markdown="1"> The availability of severity levels depends on
|
474
|
-
#
|
475
|
-
# necessarily require the urgent level of response time.
|
482
|
+
# <note markdown="1"> The availability of severity levels depends on the support plan for
|
483
|
+
# the account.
|
476
484
|
#
|
477
485
|
# </note>
|
478
486
|
# @return [String]
|
@@ -502,6 +510,15 @@ module Aws::Support
|
|
502
510
|
# The type of issue for the case. You can specify either
|
503
511
|
# "customer-service" or "technical." If you do not indicate a
|
504
512
|
# value, the default is "technical."
|
513
|
+
#
|
514
|
+
# <note markdown="1"> Service limit increases are not supported by the Support API; you
|
515
|
+
# must submit service limit increase requests in [Support Center][1].
|
516
|
+
#
|
517
|
+
# </note>
|
518
|
+
#
|
519
|
+
#
|
520
|
+
#
|
521
|
+
# [1]: https://console.aws.amazon.com/support
|
505
522
|
# @return [String]
|
506
523
|
#
|
507
524
|
# @!attribute [rw] attachment_set_id
|
@@ -1102,18 +1119,47 @@ module Aws::Support
|
|
1102
1119
|
include Aws::Structure
|
1103
1120
|
end
|
1104
1121
|
|
1105
|
-
# A code and name pair that
|
1106
|
-
#
|
1122
|
+
# A code and name pair that represents the severity level of a support
|
1123
|
+
# case. The available values depend on the support plan for the account.
|
1124
|
+
# For more information, see [Choosing a Severity][1].
|
1125
|
+
#
|
1126
|
+
#
|
1127
|
+
#
|
1128
|
+
# [1]: https://docs.aws.amazon.com/awssupport/latest/user/getting-started.html#choosing-severity
|
1107
1129
|
#
|
1108
1130
|
# @!attribute [rw] code
|
1109
|
-
#
|
1110
|
-
#
|
1111
|
-
# `
|
1131
|
+
# The code for case severity level.
|
1132
|
+
#
|
1133
|
+
# Valid values: `low` \| `normal` \| `high` \| `urgent` \| `critical`
|
1112
1134
|
# @return [String]
|
1113
1135
|
#
|
1114
1136
|
# @!attribute [rw] name
|
1115
1137
|
# The name of the severity level that corresponds to the severity
|
1116
1138
|
# level code.
|
1139
|
+
#
|
1140
|
+
# <note markdown="1"> The values returned by the API differ from the values that are
|
1141
|
+
# displayed in the AWS Support Center. For example, for the code
|
1142
|
+
# "low", the API name is "Low", but the name in the Support Center
|
1143
|
+
# is "General guidance". These are the Support Center code/name
|
1144
|
+
# mappings:
|
1145
|
+
#
|
1146
|
+
# * `low`\: General guidance
|
1147
|
+
#
|
1148
|
+
# * `normal`\: System impaired
|
1149
|
+
#
|
1150
|
+
# * `high`\: Production system impaired
|
1151
|
+
#
|
1152
|
+
# * `urgent`\: Production system down
|
1153
|
+
#
|
1154
|
+
# * `critical`\: Business-critical system down
|
1155
|
+
#
|
1156
|
+
# </note>
|
1157
|
+
#
|
1158
|
+
# For more information, see [Choosing a Severity][1]
|
1159
|
+
#
|
1160
|
+
#
|
1161
|
+
#
|
1162
|
+
# [1]: https://docs.aws.amazon.com/awssupport/latest/user/getting-started.html#choosing-severity
|
1117
1163
|
# @return [String]
|
1118
1164
|
#
|
1119
1165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/SeverityLevel AWS API Documentation
|
@@ -1186,8 +1232,20 @@ module Aws::Support
|
|
1186
1232
|
#
|
1187
1233
|
# @!attribute [rw] status
|
1188
1234
|
# The status of the Trusted Advisor check for which a refresh has been
|
1189
|
-
# requested:
|
1190
|
-
#
|
1235
|
+
# requested:
|
1236
|
+
#
|
1237
|
+
# * `none:` The check is not refreshed or the non-success status
|
1238
|
+
# exceeds the timeout
|
1239
|
+
#
|
1240
|
+
# * `enqueued:` The check refresh requests has entered the refresh
|
1241
|
+
# queue
|
1242
|
+
#
|
1243
|
+
# * `processing:` The check refresh request is picked up by the rule
|
1244
|
+
# processing engine
|
1245
|
+
#
|
1246
|
+
# * `success:` The check is successfully refreshed
|
1247
|
+
#
|
1248
|
+
# * `abandoned:` The check refresh has failed
|
1191
1249
|
# @return [String]
|
1192
1250
|
#
|
1193
1251
|
# @!attribute [rw] millis_until_next_refreshable
|
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.17.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: 2019-10-
|
11
|
+
date: 2019-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|