PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::Support; use Moose; sub service { 'support' } sub signing_name { 'support' } sub version { '2013-04-15' } sub target_prefix { 'AWSSupport_20130415' } sub json_version { "1.1" } has max_attempts => (is => 'ro', isa => 'Int', default => 5); has retry => (is => 'ro', isa => 'HashRef', default => sub { { base => 'rand', type => 'exponential', growth_factor => 2 } }); has retriables => (is => 'ro', isa => 'ArrayRef', default => sub { [ ] }); with 'Paws::API::Caller', 'Paws::API::EndpointResolver', 'Paws::Net::V4Signature', 'Paws::Net::JsonCaller'; sub AddAttachmentsToSet { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::AddAttachmentsToSet', @_); return $self->caller->do_call($self, $call_object); } sub AddCommunicationToCase { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::AddCommunicationToCase', @_); return $self->caller->do_call($self, $call_object); } sub CreateCase { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::CreateCase', @_); return $self->caller->do_call($self, $call_object); } sub DescribeAttachment { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::DescribeAttachment', @_); return $self->caller->do_call($self, $call_object); } sub DescribeCases { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::DescribeCases', @_); return $self->caller->do_call($self, $call_object); } sub DescribeCommunications { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::DescribeCommunications', @_); return $self->caller->do_call($self, $call_object); } sub DescribeServices { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::DescribeServices', @_); return $self->caller->do_call($self, $call_object); } sub DescribeSeverityLevels { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::DescribeSeverityLevels', @_); return $self->caller->do_call($self, $call_object); } sub DescribeTrustedAdvisorCheckRefreshStatuses { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::DescribeTrustedAdvisorCheckRefreshStatuses', @_); return $self->caller->do_call($self, $call_object); } sub DescribeTrustedAdvisorCheckResult { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::DescribeTrustedAdvisorCheckResult', @_); return $self->caller->do_call($self, $call_object); } sub DescribeTrustedAdvisorChecks { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::DescribeTrustedAdvisorChecks', @_); return $self->caller->do_call($self, $call_object); } sub DescribeTrustedAdvisorCheckSummaries { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::DescribeTrustedAdvisorCheckSummaries', @_); return $self->caller->do_call($self, $call_object); } sub RefreshTrustedAdvisorCheck { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::RefreshTrustedAdvisorCheck', @_); return $self->caller->do_call($self, $call_object); } sub ResolveCase { my $self = shift; my $call_object = $self->new_with_coercions('Paws::Support::ResolveCase', @_); return $self->caller->do_call($self, $call_object); } sub DescribeAllCases { my $self = shift; my $callback = shift @_ if (ref($_[0]) eq 'CODE'); my $result = $self->DescribeCases(@_); my $next_result = $result; if (not defined $callback) { while ($next_result->nextToken) { $next_result = $self->DescribeCases(@_, nextToken => $next_result->nextToken); push @{ $result->cases }, @{ $next_result->cases }; } return $result; } else { while ($result->nextToken) { $callback->($_ => 'cases') foreach (@{ $result->cases }); $result = $self->DescribeCases(@_, nextToken => $result->nextToken); } $callback->($_ => 'cases') foreach (@{ $result->cases }); } return undef } sub DescribeAllCommunications { my $self = shift; my $callback = shift @_ if (ref($_[0]) eq 'CODE'); my $result = $self->DescribeCommunications(@_); my $next_result = $result; if (not defined $callback) { while ($next_result->nextToken) { $next_result = $self->DescribeCommunications(@_, nextToken => $next_result->nextToken); push @{ $result->communications }, @{ $next_result->communications }; } return $result; } else { while ($result->nextToken) { $callback->($_ => 'communications') foreach (@{ $result->communications }); $result = $self->DescribeCommunications(@_, nextToken => $result->nextToken); } $callback->($_ => 'communications') foreach (@{ $result->communications }); } return undef } sub operations { qw/AddAttachmentsToSet AddCommunicationToCase CreateCase DescribeAttachment DescribeCases DescribeCommunications DescribeServices DescribeSeverityLevels DescribeTrustedAdvisorCheckRefreshStatuses DescribeTrustedAdvisorCheckResult DescribeTrustedAdvisorChecks DescribeTrustedAdvisorCheckSummaries RefreshTrustedAdvisorCheck ResolveCase / } 1; ### main pod documentation begin ### =head1 NAME Paws::Support - Perl Interface to AWS AWS Support =head1 SYNOPSIS use Paws; my $obj = Paws->service('Support'); my $res = $obj->Method( Arg1 => $val1, Arg2 => [ 'V1', 'V2' ], # if Arg3 is an object, the HashRef will be used as arguments to the constructor # of the arguments type Arg3 => { Att1 => 'Val1' }, # if Arg4 is an array of objects, the HashRefs will be passed as arguments to # the constructor of the arguments type Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ], ); =head1 DESCRIPTION AWS Support The I is intended for programmers who need detailed information about the AWS Support operations and data types. You can use the API to manage your support cases programmatically. The AWS Support API uses HTTP methods that return results in JSON format. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back The AWS Support service also exposes a set of AWS Trusted Advisor (http://aws.amazon.com/premiumsupport/trustedadvisor/) features. You can retrieve a list of checks and their descriptions, get check results, specify checks to refresh, and get the refresh status of checks. The following list describes the AWS Support case management operations: =over =item * Service names, issue categories, and available severity levels - The DescribeServices and DescribeSeverityLevels operations return AWS service names, service codes, service categories, and problem severity levels. You use these values when you call the CreateCase operation. =item * Case creation, case details, and case resolution - The CreateCase, DescribeCases, DescribeAttachment, and ResolveCase operations create AWS Support cases, retrieve information about cases, and resolve cases. =item * Case communication - The DescribeCommunications, AddCommunicationToCase, and AddAttachmentsToSet operations retrieve and add communications and attachments to AWS Support cases. =back The following list describes the operations available from the AWS Support service for Trusted Advisor: =over =item * DescribeTrustedAdvisorChecks returns the list of checks that run against your AWS resources. =item * Using the C for a specific check returned by DescribeTrustedAdvisorChecks, you can call DescribeTrustedAdvisorCheckResult to obtain the results for the check that you specified. =item * DescribeTrustedAdvisorCheckSummaries returns summarized results for one or more Trusted Advisor checks. =item * RefreshTrustedAdvisorCheck requests that Trusted Advisor rerun a specified check. =item * DescribeTrustedAdvisorCheckRefreshStatuses reports the refresh status of one or more checks. =back For authentication of requests, AWS Support uses Signature Version 4 Signing Process (https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html). See About the AWS Support API (https://docs.aws.amazon.com/awssupport/latest/user/Welcome.html) in the I for information about how to use this service to create and manage your support cases, and how to call Trusted Advisor for results of checks on your resources. For the AWS API documentation, see L =head1 METHODS =head2 AddAttachmentsToSet =over =item Attachments => ArrayRef[L] =item [AttachmentSetId => Str] =back Each argument is described in detail in: L Returns: a L instance Adds one or more attachments to an attachment set. An attachment set is a temporary container for attachments that you add to a case or case communication. The set is available for 1 hour after it's created. The C returned in the response is when the set expires. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 AddCommunicationToCase =over =item CommunicationBody => Str =item [AttachmentSetId => Str] =item [CaseId => Str] =item [CcEmailAddresses => ArrayRef[Str|Undef]] =back Each argument is described in detail in: L Returns: a L instance Adds additional customer communication to an AWS Support case. Use the C parameter to identify the case to which to add communication. You can list a set of email addresses to copy on the communication by using the C parameter. The C value contains the text of the communication. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 CreateCase =over =item CommunicationBody => Str =item Subject => Str =item [AttachmentSetId => Str] =item [CategoryCode => Str] =item [CcEmailAddresses => ArrayRef[Str|Undef]] =item [IssueType => Str] =item [Language => Str] =item [ServiceCode => Str] =item [SeverityCode => Str] =back Each argument is described in detail in: L Returns: a L instance Creates a case in the AWS Support Center. This operation is similar to how you create a case in the AWS Support Center Create Case (https://console.aws.amazon.com/support/home#/case/create) page. The AWS Support API doesn't support requesting service limit increases. You can submit a service limit increase in the following ways: =over =item * Submit a request from the AWS Support Center Create Case (https://console.aws.amazon.com/support/home#/case/create) page. =item * Use the Service Quotas RequestServiceQuotaIncrease (https://docs.aws.amazon.com/servicequotas/2019-06-24/apireference/API_RequestServiceQuotaIncrease.html) operation. =back A successful C request returns an AWS Support case number. You can use the DescribeCases operation and specify the case number to get existing AWS Support cases. After you create a case, use the AddCommunicationToCase operation to add additional communication or attachments to an existing case. The C is separate from the C that appears in the AWS Support Center (https://console.aws.amazon.com/support). Use the DescribeCases operation to get the C. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 DescribeAttachment =over =item AttachmentId => Str =back Each argument is described in detail in: L Returns: a L instance Returns the attachment that has the specified ID. Attachments can include screenshots, error logs, or other files that describe your issue. Attachment IDs are generated by the case management system when you add an attachment to a case or case communication. Attachment IDs are returned in the AttachmentDetails objects that are returned by the DescribeCommunications operation. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 DescribeCases =over =item [AfterTime => Str] =item [BeforeTime => Str] =item [CaseIdList => ArrayRef[Str|Undef]] =item [DisplayId => Str] =item [IncludeCommunications => Bool] =item [IncludeResolvedCases => Bool] =item [Language => Str] =item [MaxResults => Int] =item [NextToken => Str] =back Each argument is described in detail in: L Returns: a L instance Returns a list of cases that you specify by passing one or more case IDs. You can use the C and C parameters to filter the cases by date. You can set values for the C and C parameters to specify how much information to return. The response returns the following in JSON format: =over =item * One or more CaseDetails (https://docs.aws.amazon.com/awssupport/latest/APIReference/API_CaseDetails.html) data types. =item * One or more C values, which specify where to paginate the returned records represented by the C objects. =back Case data is available for 12 months after creation. If a case was created more than 12 months ago, a request might return an error. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 DescribeCommunications =over =item CaseId => Str =item [AfterTime => Str] =item [BeforeTime => Str] =item [MaxResults => Int] =item [NextToken => Str] =back Each argument is described in detail in: L Returns: a L instance Returns communications and attachments for one or more support cases. Use the C and C parameters to filter by date. You can use the C parameter to restrict the results to a specific case. Case data is available for 12 months after creation. If a case was created more than 12 months ago, a request for data might cause an error. You can use the C and C parameters to control the pagination of the results. Set C to the number of cases that you want to display on each page, and use C to specify the resumption of pagination. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 DescribeServices =over =item [Language => Str] =item [ServiceCodeList => ArrayRef[Str|Undef]] =back Each argument is described in detail in: L Returns: a L instance Returns the current list of AWS services and a list of service categories for each service. You then use service names and categories in your CreateCase requests. Each AWS service has its own set of categories. The service codes and category codes correspond to the values that appear in the B and B lists on the AWS Support Center Create Case (https://console.aws.amazon.com/support/home#/case/create) page. The values in those fields don't necessarily match the service codes and categories returned by the C operation. Always use the service codes and categories that the C operation returns, so that you have the most recent set of service and category codes. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 DescribeSeverityLevels =over =item [Language => Str] =back Each argument is described in detail in: L Returns: a L instance Returns the list of severity levels that you can assign to a support case. The severity level for a case is also a field in the CaseDetails data type that you include for a CreateCase request. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 DescribeTrustedAdvisorCheckRefreshStatuses =over =item CheckIds => ArrayRef[Str|Undef] =back Each argument is described in detail in: L Returns: a L instance Returns the refresh status of the AWS Trusted Advisor checks that have the specified check IDs. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. Some checks are refreshed automatically, and you can't return their refresh statuses by using the C operation. If you call this operation for these checks, you might see an C error. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 DescribeTrustedAdvisorCheckResult =over =item CheckId => Str =item [Language => Str] =back Each argument is described in detail in: L Returns: a L instance Returns the results of the AWS Trusted Advisor check that has the specified check ID. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. The response contains a TrustedAdvisorCheckResult object, which contains these three objects: =over =item * TrustedAdvisorCategorySpecificSummary =item * TrustedAdvisorResourceDetail =item * TrustedAdvisorResourcesSummary =back In addition, the response contains these fields: =over =item * B - The alert status of the check can be C (green), C (yellow), C (red), or C. =item * B - The time of the last refresh of the check. =item * B - The unique identifier for the check. =back =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 DescribeTrustedAdvisorChecks =over =item Language => Str =back Each argument is described in detail in: L Returns: a L instance Returns information about all available AWS Trusted Advisor checks, including the name, ID, category, description, and metadata. You must specify a language code. The AWS Support API currently supports English ("en") and Japanese ("ja"). The response contains a TrustedAdvisorCheckDescription object for each check. You must set the AWS Region to us-east-1. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =item * The names and descriptions for Trusted Advisor checks are subject to change. We recommend that you specify the check ID in your code to uniquely identify a check. =back =head2 DescribeTrustedAdvisorCheckSummaries =over =item CheckIds => ArrayRef[Str|Undef] =back Each argument is described in detail in: L Returns: a L instance Returns the results for the AWS Trusted Advisor check summaries for the check IDs that you specified. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. The response contains an array of TrustedAdvisorCheckSummary objects. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 RefreshTrustedAdvisorCheck =over =item CheckId => Str =back Each argument is described in detail in: L Returns: a L instance Refreshes the AWS Trusted Advisor check that you specify using the check ID. You can get the check IDs by calling the DescribeTrustedAdvisorChecks operation. Some checks are refreshed automatically. If you call the C operation to refresh them, you might see the C error. The response contains a TrustedAdvisorCheckRefreshStatus object. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head2 ResolveCase =over =item [CaseId => Str] =back Each argument is described in detail in: L Returns: a L instance Resolves a support case. This operation takes a C and returns the initial and final state of the case. =over =item * You must have a Business or Enterprise Support plan to use the AWS Support API. =item * If you call the AWS Support API from an account that does not have a Business or Enterprise Support plan, the C error message appears. For information about changing your support plan, see AWS Support (http://aws.amazon.com/premiumsupport/). =back =head1 PAGINATORS Paginator methods are helpers that repetively call methods that return partial results =head2 DescribeAllCases(sub { },[AfterTime => Str, BeforeTime => Str, CaseIdList => ArrayRef[Str|Undef], DisplayId => Str, IncludeCommunications => Bool, IncludeResolvedCases => Bool, Language => Str, MaxResults => Int, NextToken => Str]) =head2 DescribeAllCases([AfterTime => Str, BeforeTime => Str, CaseIdList => ArrayRef[Str|Undef], DisplayId => Str, IncludeCommunications => Bool, IncludeResolvedCases => Bool, Language => Str, MaxResults => Int, NextToken => Str]) If passed a sub as first parameter, it will call the sub for each element found in : - cases, passing the object as the first parameter, and the string 'cases' as the second parameter If not, it will return a a L instance with all the Cs; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory. =head2 DescribeAllCommunications(sub { },CaseId => Str, [AfterTime => Str, BeforeTime => Str, MaxResults => Int, NextToken => Str]) =head2 DescribeAllCommunications(CaseId => Str, [AfterTime => Str, BeforeTime => Str, MaxResults => Int, NextToken => Str]) If passed a sub as first parameter, it will call the sub for each element found in : - communications, passing the object as the first parameter, and the string 'communications' as the second parameter If not, it will return a a L instance with all the Cs; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory. =head1 SEE ALSO This service class forms part of L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut