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::DataExchange; use Moose; sub service { 'dataexchange' } sub signing_name { 'dataexchange' } sub version { '2017-07-25' } sub flattened_arrays { 0 } 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::RestJsonCaller'; sub CancelJob { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::CancelJob', @_); return $self->caller->do_call($self, $call_object); } sub CreateDataSet { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::CreateDataSet', @_); return $self->caller->do_call($self, $call_object); } sub CreateJob { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::CreateJob', @_); return $self->caller->do_call($self, $call_object); } sub CreateRevision { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::CreateRevision', @_); return $self->caller->do_call($self, $call_object); } sub DeleteAsset { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::DeleteAsset', @_); return $self->caller->do_call($self, $call_object); } sub DeleteDataSet { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::DeleteDataSet', @_); return $self->caller->do_call($self, $call_object); } sub DeleteRevision { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::DeleteRevision', @_); return $self->caller->do_call($self, $call_object); } sub GetAsset { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::GetAsset', @_); return $self->caller->do_call($self, $call_object); } sub GetDataSet { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::GetDataSet', @_); return $self->caller->do_call($self, $call_object); } sub GetJob { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::GetJob', @_); return $self->caller->do_call($self, $call_object); } sub GetRevision { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::GetRevision', @_); return $self->caller->do_call($self, $call_object); } sub ListDataSetRevisions { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::ListDataSetRevisions', @_); return $self->caller->do_call($self, $call_object); } sub ListDataSets { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::ListDataSets', @_); return $self->caller->do_call($self, $call_object); } sub ListJobs { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::ListJobs', @_); return $self->caller->do_call($self, $call_object); } sub ListRevisionAssets { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::ListRevisionAssets', @_); return $self->caller->do_call($self, $call_object); } sub ListTagsForResource { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::ListTagsForResource', @_); return $self->caller->do_call($self, $call_object); } sub StartJob { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::StartJob', @_); return $self->caller->do_call($self, $call_object); } sub TagResource { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::TagResource', @_); return $self->caller->do_call($self, $call_object); } sub UntagResource { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::UntagResource', @_); return $self->caller->do_call($self, $call_object); } sub UpdateAsset { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::UpdateAsset', @_); return $self->caller->do_call($self, $call_object); } sub UpdateDataSet { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::UpdateDataSet', @_); return $self->caller->do_call($self, $call_object); } sub UpdateRevision { my $self = shift; my $call_object = $self->new_with_coercions('Paws::DataExchange::UpdateRevision', @_); return $self->caller->do_call($self, $call_object); } sub ListAllDataSetRevisions { my $self = shift; my $callback = shift @_ if (ref($_[0]) eq 'CODE'); my $result = $self->ListDataSetRevisions(@_); my $next_result = $result; if (not defined $callback) { while ($next_result->NextToken) { $next_result = $self->ListDataSetRevisions(@_, NextToken => $next_result->NextToken); push @{ $result->Revisions }, @{ $next_result->Revisions }; } return $result; } else { while ($result->NextToken) { $callback->($_ => 'Revisions') foreach (@{ $result->Revisions }); $result = $self->ListDataSetRevisions(@_, NextToken => $result->NextToken); } $callback->($_ => 'Revisions') foreach (@{ $result->Revisions }); } return undef } sub ListAllDataSets { my $self = shift; my $callback = shift @_ if (ref($_[0]) eq 'CODE'); my $result = $self->ListDataSets(@_); my $next_result = $result; if (not defined $callback) { while ($next_result->NextToken) { $next_result = $self->ListDataSets(@_, NextToken => $next_result->NextToken); push @{ $result->DataSets }, @{ $next_result->DataSets }; } return $result; } else { while ($result->NextToken) { $callback->($_ => 'DataSets') foreach (@{ $result->DataSets }); $result = $self->ListDataSets(@_, NextToken => $result->NextToken); } $callback->($_ => 'DataSets') foreach (@{ $result->DataSets }); } return undef } sub ListAllJobs { my $self = shift; my $callback = shift @_ if (ref($_[0]) eq 'CODE'); my $result = $self->ListJobs(@_); my $next_result = $result; if (not defined $callback) { while ($next_result->NextToken) { $next_result = $self->ListJobs(@_, NextToken => $next_result->NextToken); push @{ $result->Jobs }, @{ $next_result->Jobs }; } return $result; } else { while ($result->NextToken) { $callback->($_ => 'Jobs') foreach (@{ $result->Jobs }); $result = $self->ListJobs(@_, NextToken => $result->NextToken); } $callback->($_ => 'Jobs') foreach (@{ $result->Jobs }); } return undef } sub ListAllRevisionAssets { my $self = shift; my $callback = shift @_ if (ref($_[0]) eq 'CODE'); my $result = $self->ListRevisionAssets(@_); my $next_result = $result; if (not defined $callback) { while ($next_result->NextToken) { $next_result = $self->ListRevisionAssets(@_, NextToken => $next_result->NextToken); push @{ $result->Assets }, @{ $next_result->Assets }; } return $result; } else { while ($result->NextToken) { $callback->($_ => 'Assets') foreach (@{ $result->Assets }); $result = $self->ListRevisionAssets(@_, NextToken => $result->NextToken); } $callback->($_ => 'Assets') foreach (@{ $result->Assets }); } return undef } sub operations { qw/CancelJob CreateDataSet CreateJob CreateRevision DeleteAsset DeleteDataSet DeleteRevision GetAsset GetDataSet GetJob GetRevision ListDataSetRevisions ListDataSets ListJobs ListRevisionAssets ListTagsForResource StartJob TagResource UntagResource UpdateAsset UpdateDataSet UpdateRevision / } 1; ### main pod documentation begin ### =head1 NAME Paws::DataExchange - Perl Interface to AWS AWS Data Exchange =head1 SYNOPSIS use Paws; my $obj = Paws->service('DataExchange'); 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 Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud. As a subscriber, you can view and access the data sets that you have an entitlement to through a subscription. You can use the APIS to download or copy your entitled data sets to Amazon S3 for use across a variety of AWS analytics and machine learning services. As a provider, you can create and manage your data sets that you would like to publish to a product. Being able to package and provide your data sets into products requires a few steps to determine eligibility. For more information, visit the AWS Data Exchange User Guide. A data set is a collection of data that can be changed or updated over time. Data sets can be updated using revisions, which represent a new version or incremental change to a data set. A revision contains one or more assets. An asset in AWS Data Exchange is a piece of data that can be stored as an Amazon S3 object. The asset can be a structured data file, an image file, or some other data file. Jobs are asynchronous import or export operations used to create or copy assets. For the AWS API documentation, see L =head1 METHODS =head2 CancelJob =over =item JobId => Str =back Each argument is described in detail in: L Returns: nothing This operation cancels a job. Jobs can be cancelled only when they are in the WAITING state. =head2 CreateDataSet =over =item AssetType => Str =item Description => Str =item Name => Str =item [Tags => L] =back Each argument is described in detail in: L Returns: a L instance This operation creates a data set. =head2 CreateJob =over =item Details => L =item Type => Str =back Each argument is described in detail in: L Returns: a L instance This operation creates a job. =head2 CreateRevision =over =item DataSetId => Str =item [Comment => Str] =item [Tags => L] =back Each argument is described in detail in: L Returns: a L instance This operation creates a revision for a data set. =head2 DeleteAsset =over =item AssetId => Str =item DataSetId => Str =item RevisionId => Str =back Each argument is described in detail in: L Returns: nothing This operation deletes an asset. =head2 DeleteDataSet =over =item DataSetId => Str =back Each argument is described in detail in: L Returns: nothing This operation deletes a data set. =head2 DeleteRevision =over =item DataSetId => Str =item RevisionId => Str =back Each argument is described in detail in: L Returns: nothing This operation deletes a revision. =head2 GetAsset =over =item AssetId => Str =item DataSetId => Str =item RevisionId => Str =back Each argument is described in detail in: L Returns: a L instance This operation returns information about an asset. =head2 GetDataSet =over =item DataSetId => Str =back Each argument is described in detail in: L Returns: a L instance This operation returns information about a data set. =head2 GetJob =over =item JobId => Str =back Each argument is described in detail in: L Returns: a L instance This operation returns information about a job. =head2 GetRevision =over =item DataSetId => Str =item RevisionId => Str =back Each argument is described in detail in: L Returns: a L instance This operation returns information about a revision. =head2 ListDataSetRevisions =over =item DataSetId => Str =item [MaxResults => Int] =item [NextToken => Str] =back Each argument is described in detail in: L Returns: a L instance This operation lists a data set's revisions sorted by CreatedAt in descending order. =head2 ListDataSets =over =item [MaxResults => Int] =item [NextToken => Str] =item [Origin => Str] =back Each argument is described in detail in: L Returns: a L instance This operation lists your data sets. When listing by origin OWNED, results are sorted by CreatedAt in descending order. When listing by origin ENTITLED, there is no order and the maxResults parameter is ignored. =head2 ListJobs =over =item [DataSetId => Str] =item [MaxResults => Int] =item [NextToken => Str] =item [RevisionId => Str] =back Each argument is described in detail in: L Returns: a L instance This operation lists your jobs sorted by CreatedAt in descending order. =head2 ListRevisionAssets =over =item DataSetId => Str =item RevisionId => Str =item [MaxResults => Int] =item [NextToken => Str] =back Each argument is described in detail in: L Returns: a L instance This operation lists a revision's assets sorted alphabetically in descending order. =head2 ListTagsForResource =over =item ResourceArn => Str =back Each argument is described in detail in: L Returns: a L instance This operation lists the tags on the resource. =head2 StartJob =over =item JobId => Str =back Each argument is described in detail in: L Returns: a L instance This operation starts a job. =head2 TagResource =over =item ResourceArn => Str =item Tags => L =back Each argument is described in detail in: L Returns: nothing This operation tags a resource. =head2 UntagResource =over =item ResourceArn => Str =item TagKeys => ArrayRef[Str|Undef] =back Each argument is described in detail in: L Returns: nothing This operation removes one or more tags from a resource. =head2 UpdateAsset =over =item AssetId => Str =item DataSetId => Str =item Name => Str =item RevisionId => Str =back Each argument is described in detail in: L Returns: a L instance This operation updates an asset. =head2 UpdateDataSet =over =item DataSetId => Str =item [Description => Str] =item [Name => Str] =back Each argument is described in detail in: L Returns: a L instance This operation updates a data set. =head2 UpdateRevision =over =item DataSetId => Str =item RevisionId => Str =item [Comment => Str] =item [Finalized => Bool] =back Each argument is described in detail in: L Returns: a L instance This operation updates a revision. =head1 PAGINATORS Paginator methods are helpers that repetively call methods that return partial results =head2 ListAllDataSetRevisions(sub { },DataSetId => Str, [MaxResults => Int, NextToken => Str]) =head2 ListAllDataSetRevisions(DataSetId => Str, [MaxResults => Int, NextToken => Str]) If passed a sub as first parameter, it will call the sub for each element found in : - Revisions, passing the object as the first parameter, and the string 'Revisions' 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 ListAllDataSets(sub { },[MaxResults => Int, NextToken => Str, Origin => Str]) =head2 ListAllDataSets([MaxResults => Int, NextToken => Str, Origin => Str]) If passed a sub as first parameter, it will call the sub for each element found in : - DataSets, passing the object as the first parameter, and the string 'DataSets' 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 ListAllJobs(sub { },[DataSetId => Str, MaxResults => Int, NextToken => Str, RevisionId => Str]) =head2 ListAllJobs([DataSetId => Str, MaxResults => Int, NextToken => Str, RevisionId => Str]) If passed a sub as first parameter, it will call the sub for each element found in : - Jobs, passing the object as the first parameter, and the string 'Jobs' 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 ListAllRevisionAssets(sub { },DataSetId => Str, RevisionId => Str, [MaxResults => Int, NextToken => Str]) =head2 ListAllRevisionAssets(DataSetId => Str, RevisionId => Str, [MaxResults => Int, NextToken => Str]) If passed a sub as first parameter, it will call the sub for each element found in : - Assets, passing the object as the first parameter, and the string 'Assets' 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