aws-sdk-support 1.18.0 → 1.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: aff2ac1184b30e73c0928562cb25cc55adfb16ea
4
- data.tar.gz: eff10ed9ccee91ef3cab2e2de4516345faff75ae
2
+ SHA256:
3
+ metadata.gz: a00d8a0a0188cd1d792207407d7c1b47aaf368ea0969ff1cbe46daead17c93d0
4
+ data.tar.gz: 808208aef7d11116420b923bfe296f15fdc2bbcb5d7101c35372c0267b73a15b
5
5
  SHA512:
6
- metadata.gz: eebefd28b214211ae4c861e1d19085b12da3c0eecef9ab28b0e63cd459a6fdb14d2e42fe19c2e076a89701dd29cb1a2e4348d331a4b3dda6d342fdbe3a1336fb
7
- data.tar.gz: a752e7cc55e502b86140523d963ac14ac97ad0e8c89980e71ce5f403f6d86eaa28895a903c915ed75b7b1ba45ac15c237fdb75aed6722e37c0b9e96f611e2512
6
+ metadata.gz: 713168a23b3c1533098176facfebe583ad80f9b5f9aa16c1265eb093ada64f8ce8ea1f4b0ec19511c4ea14dcce933c011dac6f27b8f0002806289a9c3cf79dbe
7
+ data.tar.gz: 46333a7f119613582101058ca2c97882e0d67e30eedc5b668b52854436472f7bffe60c41ce9711946971de7c3265decc90cf9d5790abf09f9353e247e5d1280d
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-support/customizations'
45
45
  # @service
46
46
  module Aws::Support
47
47
 
48
- GEM_VERSION = '1.18.0'
48
+ GEM_VERSION = '1.19.0'
49
49
 
50
50
  end
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:support)
32
32
  module Aws::Support
33
33
  # An API client for Support. To construct a client, you need to configure a `:region` and `:credentials`.
34
34
  #
35
- # client = Aws::Support::Client.new(
36
- # region: region_name,
37
- # credentials: credentials,
38
- # # ...
39
- # )
35
+ # client = Aws::Support::Client.new(
36
+ # region: region_name,
37
+ # credentials: credentials,
38
+ # # ...
39
+ # )
40
40
  #
41
41
  # For details on configuring region and credentials see
42
42
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -229,15 +229,19 @@ module Aws::Support
229
229
  #
230
230
  # @option options [String] :retry_mode ("legacy")
231
231
  # Specifies which retry algorithm to use. Values are:
232
- # * `legacy` - The pre-existing retry behavior. This is default value if
233
- # no retry mode is provided.
234
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
- # This includes support for retry quotas, which limit the number of
236
- # unsuccessful retries a client can make.
237
- # * `adaptive` - An experimental retry mode that includes all the
238
- # functionality of `standard` mode along with automatic client side
239
- # throttling. This is a provisional mode that may change behavior
240
- # in the future.
232
+ #
233
+ # * `legacy` - The pre-existing retry behavior. This is default value if
234
+ # no retry mode is provided.
235
+ #
236
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
237
+ # This includes support for retry quotas, which limit the number of
238
+ # unsuccessful retries a client can make.
239
+ #
240
+ # * `adaptive` - An experimental retry mode that includes all the
241
+ # functionality of `standard` mode along with automatic client side
242
+ # throttling. This is a provisional mode that may change behavior
243
+ # in the future.
244
+ #
241
245
  #
242
246
  # @option options [String] :secret_access_key
243
247
  #
@@ -275,8 +279,7 @@ module Aws::Support
275
279
  #
276
280
  # @option options [Integer] :http_read_timeout (60) The default
277
281
  # number of seconds to wait for response data. This value can
278
- # safely be set
279
- # per-request on the session yielded by {#session_for}.
282
+ # safely be set per-request on the session.
280
283
  #
281
284
  # @option options [Float] :http_idle_timeout (5) The number of
282
285
  # seconds a connection is allowed to sit idle before it is
@@ -288,7 +291,7 @@ module Aws::Support
288
291
  # request body. This option has no effect unless the request has
289
292
  # "Expect" header set to "100-continue". Defaults to `nil` which
290
293
  # disables this behaviour. This value can safely be set per
291
- # request on the session yielded by {#session_for}.
294
+ # request on the session.
292
295
  #
293
296
  # @option options [Boolean] :http_wire_trace (false) When `true`,
294
297
  # HTTP debug output will be sent to the `:logger`.
@@ -315,17 +318,12 @@ module Aws::Support
315
318
 
316
319
  # @!group API Operations
317
320
 
318
- # Adds one or more attachments to an attachment set. If an
319
- # `attachmentSetId` is not specified, a new attachment set is created,
320
- # and the ID of the set is returned in the response. If an
321
- # `attachmentSetId` is specified, the attachments are added to the
322
- # specified set, if it exists.
323
- #
324
- # An attachment set is a temporary container for attachments that are to
325
- # be added to a case or case communication. The set is available for one
326
- # hour after it is created; the `expiryTime` returned in the response
327
- # indicates when the set expires. The maximum number of attachments in a
328
- # set is 3, and the maximum size of any attachment in the set is 5 MB.
321
+ # Adds one or more attachments to an attachment set.
322
+ #
323
+ # An attachment set is a temporary container for attachments that you
324
+ # add to a case or case communication. The set is available for 1 hour
325
+ # after it's created. The `expiryTime` returned in the response is when
326
+ # the set expires.
329
327
  #
330
328
  # @option params [String] :attachment_set_id
331
329
  # The ID of the attachment set. If an `attachmentSetId` is not
@@ -334,8 +332,14 @@ module Aws::Support
334
332
  # attachments are added to the specified set, if it exists.
335
333
  #
336
334
  # @option params [required, Array<Types::Attachment>] :attachments
337
- # One or more attachments to add to the set. The limit is 3 attachments
338
- # per set, and the size limit is 5 MB per attachment.
335
+ # One or more attachments to add to the set. You can add up to three
336
+ # attachments per set. The size limit is 5 MB per attachment.
337
+ #
338
+ # In the `Attachment` object, use the `data` parameter to specify the
339
+ # contents of the attachment file. In the previous request syntax, the
340
+ # value for `data` appear as `blob`, which is represented as a
341
+ # base64-encoded string. The value for `fileName` is the name of the
342
+ # attachment, such as `troubleshoot-screenshot.png`.
339
343
  #
340
344
  # @return [Types::AddAttachmentsToSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
341
345
  #
@@ -421,122 +425,105 @@ module Aws::Support
421
425
  req.send_request(options)
422
426
  end
423
427
 
424
- # Creates a new case in the AWS Support Center. This operation is
425
- # modeled on the behavior of the AWS Support Center [Create Case][1]
426
- # page. Its parameters require you to specify the following information:
427
- #
428
- # * **issueType.** The type of issue for the case. You can specify
429
- # either "customer-service" or "technical." If you do not indicate
430
- # a value, the default is "technical."
431
- #
432
- # <note markdown="1"> Service limit increases are not supported by the Support API; you
433
- # must submit service limit increase requests in [Support Center][2].
434
- #
435
- # The `caseId` is not the `displayId` that appears in [Support
436
- # Center][2]. You can use the DescribeCases API to get the
437
- # `displayId`.
438
- #
439
- # </note>
428
+ # Creates a case in the AWS Support Center. This operation is similar to
429
+ # how you create a case in the AWS Support Center [Create Case][1] page.
440
430
  #
441
- # * **serviceCode.** The code for an AWS service. You can get the
442
- # possible `serviceCode` values by calling DescribeServices.
431
+ # The AWS Support API doesn't support requesting service limit
432
+ # increases. You can submit a service limit increase in the following
433
+ # ways:
443
434
  #
444
- # * **categoryCode.** The category for the service defined for the
445
- # `serviceCode` value. You also get the category code for a service by
446
- # calling DescribeServices. Each AWS service defines its own set of
447
- # category codes.
435
+ # * Submit a request from the AWS Support Center [Create Case][1] page.
448
436
  #
449
- # * **severityCode.** A value that indicates the urgency of the case,
450
- # which in turn determines the response time according to your service
451
- # level agreement with AWS Support. You can get the possible
452
- # `severityCode` values by calling DescribeSeverityLevels. For more
453
- # information about the meaning of the codes, see SeverityLevel and
454
- # [Choosing a Severity][3].
437
+ # * Use the Service Quotas [RequestServiceQuotaIncrease][2] operation.
455
438
  #
456
- # * **subject.** The **Subject** field on the AWS Support Center [Create
457
- # Case][1] page.
458
- #
459
- # * **communicationBody.** The **Description** field on the AWS Support
460
- # Center [Create Case][1] page.
461
- #
462
- # * **attachmentSetId.** The ID of a set of attachments that has been
463
- # created by using AddAttachmentsToSet.
464
- #
465
- # * **language.** The human language in which AWS Support handles the
466
- # case. English and Japanese are currently supported.
439
+ # A successful CreateCase request returns an AWS Support case number.
440
+ # You can use the DescribeCases operation and specify the case number to
441
+ # get existing AWS Support cases. After you create a case, you can use
442
+ # the AddCommunicationToCase operation to add additional communication
443
+ # or attachments to an existing case.
467
444
  #
468
- # * **ccEmailAddresses.** The AWS Support Center **CC** field on the
469
- # [Create Case][1] page. You can list email addresses to be copied on
470
- # any correspondence about the case. The account that opens the case
471
- # is already identified by passing the AWS Credentials in the HTTP
472
- # POST method or in a method or function call from one of the
473
- # programming languages supported by an [AWS SDK][4].
445
+ # <note markdown="1"> * The `caseId` is separate from the `displayId` that appears in the
446
+ # [Support Center][3]. You can use the DescribeCases operation to get
447
+ # the `displayId`.
474
448
  #
475
- # <note markdown="1"> To add additional communication or attachments to an existing case,
476
- # use AddCommunicationToCase.
449
+ # ^
477
450
  #
478
451
  # </note>
479
452
  #
480
- # A successful CreateCase request returns an AWS Support case number.
481
- # Case numbers are used by the DescribeCases operation to retrieve
482
- # existing AWS Support cases.
483
- #
484
453
  #
485
454
  #
486
455
  # [1]: https://console.aws.amazon.com/support/home#/case/create
487
- # [2]: https://console.aws.amazon.com/support
488
- # [3]: https://docs.aws.amazon.com/awssupport/latest/user/getting-started.html#choosing-severity
489
- # [4]: http://aws.amazon.com/tools/
456
+ # [2]: https://docs.aws.amazon.com/servicequotas/2019-06-24/apireference/API_RequestServiceQuotaIncrease.html
457
+ # [3]: https://console.aws.amazon.com/support
490
458
  #
491
459
  # @option params [required, String] :subject
492
- # The title of the AWS Support case.
460
+ # The title of the AWS Support case. The title appears in the
461
+ # **Subject** field on the AWS Support Center [Create Case][1] page.
462
+ #
463
+ #
464
+ #
465
+ # [1]: https://console.aws.amazon.com/support/home#/case/create
493
466
  #
494
467
  # @option params [String] :service_code
495
- # The code for the AWS service returned by the call to DescribeServices.
468
+ # The code for the AWS service. You can use the DescribeServices
469
+ # operation to get the possible `serviceCode` values.
496
470
  #
497
471
  # @option params [String] :severity_code
498
- # The code for the severity level returned by the call to
499
- # DescribeSeverityLevels.
472
+ # A value that indicates the urgency of the case. This value determines
473
+ # the response time according to your service level agreement with AWS
474
+ # Support. You can use the DescribeSeverityLevels operation to get the
475
+ # possible values for `severityCode`.
476
+ #
477
+ # For more information, see SeverityLevel and [Choosing a Severity][1]
478
+ # in the *AWS Support User Guide*.
500
479
  #
501
480
  # <note markdown="1"> The availability of severity levels depends on the support plan for
502
- # the account.
481
+ # the AWS account.
503
482
  #
504
483
  # </note>
505
484
  #
485
+ #
486
+ #
487
+ # [1]: https://docs.aws.amazon.com/awssupport/latest/user/getting-started.html#choosing-severity
488
+ #
506
489
  # @option params [String] :category_code
507
- # The category of problem for the AWS Support case.
490
+ # The category of problem for the AWS Support case. You also use the
491
+ # DescribeServices operation to get the category code for a service.
492
+ # Each AWS service defines its own set of category codes.
508
493
  #
509
494
  # @option params [required, String] :communication_body
510
- # The communication body text when you create an AWS Support case by
511
- # calling CreateCase.
495
+ # The communication body text that describes the issue. This text
496
+ # appears in the **Description** field on the AWS Support Center [Create
497
+ # Case][1] page.
512
498
  #
513
- # @option params [Array<String>] :cc_email_addresses
514
- # A list of email addresses that AWS Support copies on case
515
- # correspondence.
516
499
  #
517
- # @option params [String] :language
518
- # The ISO 639-1 code for the language in which AWS provides support. AWS
519
- # Support currently supports English ("en") and Japanese ("ja").
520
- # Language parameters must be passed explicitly for operations that take
521
- # them.
522
500
  #
523
- # @option params [String] :issue_type
524
- # The type of issue for the case. You can specify either
525
- # "customer-service" or "technical." If you do not indicate a value,
526
- # the default is "technical."
501
+ # [1]: https://console.aws.amazon.com/support/home#/case/create
527
502
  #
528
- # <note markdown="1"> Service limit increases are not supported by the Support API; you must
529
- # submit service limit increase requests in [Support Center][1].
503
+ # @option params [Array<String>] :cc_email_addresses
504
+ # A list of email addresses that AWS Support copies on case
505
+ # correspondence. AWS Support identifies the account that creates the
506
+ # case when you specify your AWS credentials in an HTTP POST method or
507
+ # use the [AWS SDKs][1].
530
508
  #
531
- # </note>
532
509
  #
533
510
  #
511
+ # [1]: http://aws.amazon.com/tools/
534
512
  #
535
- # [1]: https://console.aws.amazon.com/support
513
+ # @option params [String] :language
514
+ # The language in which AWS Support handles the case. You must specify
515
+ # the ISO 639-1 code for the `language` parameter if you want support in
516
+ # that language. Currently, English ("en") and Japanese ("ja") are
517
+ # supported.
518
+ #
519
+ # @option params [String] :issue_type
520
+ # The type of issue for the case. You can specify `customer-service` or
521
+ # `technical`. If you don't specify a value, the default is
522
+ # `technical`.
536
523
  #
537
524
  # @option params [String] :attachment_set_id
538
525
  # The ID of a set of one or more attachments for the case. Create the
539
- # set by using AddAttachmentsToSet.
526
+ # set by using the AddAttachmentsToSet operation.
540
527
  #
541
528
  # @return [Types::CreateCaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
542
529
  #
@@ -569,10 +556,11 @@ module Aws::Support
569
556
  req.send_request(options)
570
557
  end
571
558
 
572
- # Returns the attachment that has the specified ID. Attachment IDs are
573
- # generated by the case management system when you add an attachment to
574
- # a case or case communication. Attachment IDs are returned in the
575
- # AttachmentDetails objects that are returned by the
559
+ # Returns the attachment that has the specified ID. Attachments can
560
+ # include screenshots, error logs, or other files that describe your
561
+ # issue. Attachment IDs are generated by the case management system when
562
+ # you add an attachment to a case or case communication. Attachment IDs
563
+ # are returned in the AttachmentDetails objects that are returned by the
576
564
  # DescribeCommunications operation.
577
565
  #
578
566
  # @option params [required, String] :attachment_id
@@ -662,6 +650,8 @@ module Aws::Support
662
650
  # * {Types::DescribeCasesResponse#cases #cases} => Array&lt;Types::CaseDetails&gt;
663
651
  # * {Types::DescribeCasesResponse#next_token #next_token} => String
664
652
  #
653
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
654
+ #
665
655
  # @example Request syntax with placeholder values
666
656
  #
667
657
  # resp = client.describe_cases({
@@ -751,6 +741,8 @@ module Aws::Support
751
741
  # * {Types::DescribeCommunicationsResponse#communications #communications} => Array&lt;Types::Communication&gt;
752
742
  # * {Types::DescribeCommunicationsResponse#next_token #next_token} => String
753
743
  #
744
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
745
+ #
754
746
  # @example Request syntax with placeholder values
755
747
  #
756
748
  # resp = client.describe_communications({
@@ -1178,7 +1170,7 @@ module Aws::Support
1178
1170
  params: params,
1179
1171
  config: config)
1180
1172
  context[:gem_name] = 'aws-sdk-support'
1181
- context[:gem_version] = '1.18.0'
1173
+ context[:gem_version] = '1.19.0'
1182
1174
  Seahorse::Client::Request.new(handlers, context)
1183
1175
  end
1184
1176
 
@@ -6,13 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::Support
9
- # This class provides a resource oriented interface for Support.
10
- # To create a resource object:
11
- # resource = Aws::Support::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::Support::Client.new(region: 'us-west-2')
15
- # resource = Aws::Support::Resource.new(client: client)
9
+
16
10
  class Resource
17
11
 
18
12
  # @param options ({})
@@ -29,8 +29,14 @@ module Aws::Support
29
29
  # @return [String]
30
30
  #
31
31
  # @!attribute [rw] attachments
32
- # One or more attachments to add to the set. The limit is 3
33
- # attachments per set, and the size limit is 5 MB per attachment.
32
+ # One or more attachments to add to the set. You can add up to three
33
+ # attachments per set. The size limit is 5 MB per attachment.
34
+ #
35
+ # In the `Attachment` object, use the `data` parameter to specify the
36
+ # contents of the attachment file. In the previous request syntax, the
37
+ # value for `data` appear as `blob`, which is represented as a
38
+ # base64-encoded string. The value for `fileName` is the name of the
39
+ # attachment, such as `troubleshoot-screenshot.png`.
34
40
  # @return [Array<Types::Attachment>]
35
41
  #
36
42
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/AddAttachmentsToSetRequest AWS API Documentation
@@ -199,7 +205,7 @@ module Aws::Support
199
205
  #
200
206
  # @!attribute [rw] message
201
207
  # The expiration time of the attachment set has passed. The set
202
- # expires 1 hour after it is created.
208
+ # expires one hour after it is created.
203
209
  # @return [String]
204
210
  #
205
211
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/AttachmentSetExpired AWS API Documentation
@@ -223,11 +229,11 @@ module Aws::Support
223
229
  end
224
230
 
225
231
  # A limit for the size of an attachment set has been exceeded. The
226
- # limits are 3 attachments and 5 MB per attachment.
232
+ # limits are three attachments and 5 MB per attachment.
227
233
  #
228
234
  # @!attribute [rw] message
229
235
  # A limit for the size of an attachment set has been exceeded. The
230
- # limits are 3 attachments and 5 MB per attachment.
236
+ # limits are three attachments and 5 MB per attachment.
231
237
  # @return [String]
232
238
  #
233
239
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/AttachmentSetSizeLimitExceeded AWS API Documentation
@@ -285,9 +291,20 @@ module Aws::Support
285
291
  # The possible values are: `low`, `normal`, `high`, `urgent`, and
286
292
  # `critical`.
287
293
  #
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`.
294
+ # * **status.** The status of the case in the AWS Support Center. Valid
295
+ # values:
296
+ #
297
+ # * `opened`
298
+ #
299
+ # * `pending-customer-action`
300
+ #
301
+ # * `reopened`
302
+ #
303
+ # * `resolved`
304
+ #
305
+ # * `unassigned`
306
+ #
307
+ # * `work-in-progress`
291
308
  #
292
309
  # * **subject.** The subject line of the case.
293
310
  #
@@ -312,9 +329,21 @@ module Aws::Support
312
329
  # @return [String]
313
330
  #
314
331
  # @!attribute [rw] status
315
- # The status of the case. Valid values: `resolved` \|
316
- # `pending-customer-action` \| `opened` \| `unassigned` \|
317
- # `work-in-progress`.
332
+ # The status of the case.
333
+ #
334
+ # Valid values:
335
+ #
336
+ # * `opened`
337
+ #
338
+ # * `pending-customer-action`
339
+ #
340
+ # * `reopened`
341
+ #
342
+ # * `resolved`
343
+ #
344
+ # * `unassigned`
345
+ #
346
+ # * `work-in-progress`
318
347
  # @return [String]
319
348
  #
320
349
  # @!attribute [rw] service_code
@@ -467,63 +496,81 @@ module Aws::Support
467
496
  # }
468
497
  #
469
498
  # @!attribute [rw] subject
470
- # The title of the AWS Support case.
499
+ # The title of the AWS Support case. The title appears in the
500
+ # **Subject** field on the AWS Support Center [Create Case][1] page.
501
+ #
502
+ #
503
+ #
504
+ # [1]: https://console.aws.amazon.com/support/home#/case/create
471
505
  # @return [String]
472
506
  #
473
507
  # @!attribute [rw] service_code
474
- # The code for the AWS service returned by the call to
475
- # DescribeServices.
508
+ # The code for the AWS service. You can use the DescribeServices
509
+ # operation to get the possible `serviceCode` values.
476
510
  # @return [String]
477
511
  #
478
512
  # @!attribute [rw] severity_code
479
- # The code for the severity level returned by the call to
480
- # DescribeSeverityLevels.
513
+ # A value that indicates the urgency of the case. This value
514
+ # determines the response time according to your service level
515
+ # agreement with AWS Support. You can use the DescribeSeverityLevels
516
+ # operation to get the possible values for `severityCode`.
517
+ #
518
+ # For more information, see SeverityLevel and [Choosing a Severity][1]
519
+ # in the *AWS Support User Guide*.
481
520
  #
482
521
  # <note markdown="1"> The availability of severity levels depends on the support plan for
483
- # the account.
522
+ # the AWS account.
484
523
  #
485
524
  # </note>
525
+ #
526
+ #
527
+ #
528
+ # [1]: https://docs.aws.amazon.com/awssupport/latest/user/getting-started.html#choosing-severity
486
529
  # @return [String]
487
530
  #
488
531
  # @!attribute [rw] category_code
489
- # The category of problem for the AWS Support case.
532
+ # The category of problem for the AWS Support case. You also use the
533
+ # DescribeServices operation to get the category code for a service.
534
+ # Each AWS service defines its own set of category codes.
490
535
  # @return [String]
491
536
  #
492
537
  # @!attribute [rw] communication_body
493
- # The communication body text when you create an AWS Support case by
494
- # calling CreateCase.
538
+ # The communication body text that describes the issue. This text
539
+ # appears in the **Description** field on the AWS Support Center
540
+ # [Create Case][1] page.
541
+ #
542
+ #
543
+ #
544
+ # [1]: https://console.aws.amazon.com/support/home#/case/create
495
545
  # @return [String]
496
546
  #
497
547
  # @!attribute [rw] cc_email_addresses
498
548
  # A list of email addresses that AWS Support copies on case
499
- # correspondence.
549
+ # correspondence. AWS Support identifies the account that creates the
550
+ # case when you specify your AWS credentials in an HTTP POST method or
551
+ # use the [AWS SDKs][1].
552
+ #
553
+ #
554
+ #
555
+ # [1]: http://aws.amazon.com/tools/
500
556
  # @return [Array<String>]
501
557
  #
502
558
  # @!attribute [rw] language
503
- # The ISO 639-1 code for the language in which AWS provides support.
504
- # AWS Support currently supports English ("en") and Japanese
505
- # ("ja"). Language parameters must be passed explicitly for
506
- # operations that take them.
559
+ # The language in which AWS Support handles the case. You must specify
560
+ # the ISO 639-1 code for the `language` parameter if you want support
561
+ # in that language. Currently, English ("en") and Japanese ("ja")
562
+ # are supported.
507
563
  # @return [String]
508
564
  #
509
565
  # @!attribute [rw] issue_type
510
- # The type of issue for the case. You can specify either
511
- # "customer-service" or "technical." If you do not indicate a
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
566
+ # The type of issue for the case. You can specify `customer-service`
567
+ # or `technical`. If you don't specify a value, the default is
568
+ # `technical`.
522
569
  # @return [String]
523
570
  #
524
571
  # @!attribute [rw] attachment_set_id
525
572
  # The ID of a set of one or more attachments for the case. Create the
526
- # set by using AddAttachmentsToSet.
573
+ # set by using the AddAttachmentsToSet operation.
527
574
  # @return [String]
528
575
  #
529
576
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/CreateCaseRequest AWS API Documentation
@@ -546,7 +593,7 @@ module Aws::Support
546
593
  #
547
594
  # @!attribute [rw] case_id
548
595
  # The AWS Support case ID requested or returned in the call. The case
549
- # ID is an alphanumeric string formatted as shown in this example:
596
+ # ID is an alphanumeric string in the following format:
550
597
  # case-*12345678910-2013-c4c1d2bf33c5cf47*
551
598
  # @return [String]
552
599
  #
@@ -595,7 +642,12 @@ module Aws::Support
595
642
  # DescribeAttachment operation.
596
643
  #
597
644
  # @!attribute [rw] attachment
598
- # The attachment content and file name.
645
+ # This object includes the attachment content and file name.
646
+ #
647
+ # In the previous response syntax, the value for the `data` parameter
648
+ # appears as `blob`, which is represented as a base64-encoded string.
649
+ # The value for `fileName` is the name of the attachment, such as
650
+ # `troubleshoot-screenshot.png`.
599
651
  # @return [Types::Attachment]
600
652
  #
601
653
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/DescribeAttachmentResponse AWS API Documentation
@@ -1197,7 +1249,7 @@ module Aws::Support
1197
1249
  #
1198
1250
  # @!attribute [rw] description
1199
1251
  # The description of the Trusted Advisor check, which includes the
1200
- # alert criteria and recommended actions (contains HTML markup).
1252
+ # alert criteria and recommended operations (contains HTML markup).
1201
1253
  # @return [String]
1202
1254
  #
1203
1255
  # @!attribute [rw] category
@@ -1347,16 +1399,16 @@ module Aws::Support
1347
1399
  end
1348
1400
 
1349
1401
  # The estimated cost savings that might be realized if the recommended
1350
- # actions are taken.
1402
+ # operations are taken.
1351
1403
  #
1352
1404
  # @!attribute [rw] estimated_monthly_savings
1353
1405
  # The estimated monthly savings that might be realized if the
1354
- # recommended actions are taken.
1406
+ # recommended operations are taken.
1355
1407
  # @return [Float]
1356
1408
  #
1357
1409
  # @!attribute [rw] estimated_percent_monthly_savings
1358
1410
  # The estimated percentage of savings that might be realized if the
1359
- # recommended actions are taken.
1411
+ # recommended operations are taken.
1360
1412
  # @return [Float]
1361
1413
  #
1362
1414
  # @see http://docs.aws.amazon.com/goto/WebAPI/support-2013-04-15/TrustedAdvisorCostOptimizingSummary AWS API Documentation
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.18.0
4
+ version: 1.19.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-03-09 00:00:00.000000000 Z
11
+ date: 2020-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - AWS Support