AgreementService / Client / search_agreements
search_agreements¶
- AgreementService.Client.search_agreements(**kwargs)¶
Searches across all agreements that a proposer has in AWS Marketplace. The search returns a list of agreements with basic agreement information.
The following filter combinations are supported when the
PartyTypeisProposer:AgreementTypeAgreementType+EndTimeAgreementType+ResourceTypeAgreementType+ResourceType+EndTimeAgreementType+ResourceType+StatusAgreementType+ResourceType+Status+EndTimeAgreementType+ResourceIdAgreementType+ResourceId+EndTimeAgreementType+ResourceId+StatusAgreementType+ResourceId+Status+EndTimeAgreementType+AcceptorAccountIdAgreementType+AcceptorAccountId+EndTimeAgreementType+AcceptorAccountId+StatusAgreementType+AcceptorAccountId+Status+EndTimeAgreementType+AcceptorAccountId+OfferIdAgreementType+AcceptorAccountId+OfferId+StatusAgreementType+AcceptorAccountId+OfferId+EndTimeAgreementType+AcceptorAccountId+OfferId+Status+EndTimeAgreementType+AcceptorAccountId+ResourceIdAgreementType+AcceptorAccountId+ResourceId+StatusAgreementType+AcceptorAccountId+ResourceId+EndTimeAgreementType+AcceptorAccountId+ResourceId+Status+EndTimeAgreementType+AcceptorAccountId+ResourceTypeAgreementType+AcceptorAccountId+ResourceType+EndTimeAgreementType+AcceptorAccountId+ResourceType+StatusAgreementType+AcceptorAccountId+ResourceType+Status+EndTimeAgreementType+StatusAgreementType+Status+EndTimeAgreementType+OfferIdAgreementType+OfferId+EndTimeAgreementType+OfferId+StatusAgreementType+OfferId+Status+EndTimeAgreementType+OfferSetIdAgreementType+OfferSetId+EndTimeAgreementType+OfferSetId+StatusAgreementType+OfferSetId+Status+EndTime
Note
To filter by
EndTime, you can use eitherBeforeEndTimeorAfterEndTime. OnlyEndTimeis supported for sorting.See also: AWS API Documentation
Request Syntax
response = client.search_agreements( catalog='string', filters=[ { 'name': 'string', 'values': [ 'string', ] }, ], sort={ 'sortBy': 'string', 'sortOrder': 'ASCENDING'|'DESCENDING' }, maxResults=123, nextToken='string' )
- Parameters:
catalog (string) – The catalog in which the agreement was created.
filters (list) –
The filter name and value pair used to return a specific list of results.
The following filters are supported:
ResourceIdentifier– The unique identifier of the resource.ResourceType– Type of the resource, which is the product (AmiProduct,ContainerProduct,SaaSProduct,ProfessionalServicesProduct, orMachineLearningProduct).PartyType– The party type of the caller. For agreements where the caller is the proposer, use theProposerfilter.AcceptorAccountId– The AWS account ID of the party accepting the agreement terms.OfferId– The unique identifier of the offer in which the terms are registered in the agreement token.Status– The current status of the agreement. Values includeACTIVE,ARCHIVED,CANCELLED,EXPIRED,RENEWED,REPLACED, andTERMINATED.BeforeEndTime– A date used to filter agreements with a date before theendTimeof an agreement.AfterEndTime– A date used to filter agreements with a date after theendTimeof an agreement.AgreementType– The type of agreement. Supported value includesPurchaseAgreement.OfferSetId– A unique identifier for the offer set containing this offer. All agreements created from offers in this set include this identifier as context.
(dict) –
The filter name and value pair that is used to return a more specific list of results. Filters can be used to match a set of resources by various criteria, such as
offerIdorproductId.name (string) –
The name of the filter.
values (list) –
The filter value.
(string) –
sort (dict) –
An object that contains the
SortByandSortOrderattributes. OnlyEndTimeis supported forSearchAgreements. The default sort isEndTimedescending.sortBy (string) –
The attribute on which the data is grouped, which can be by
StartTimeandEndTime. The default value isEndTime.sortOrder (string) –
The sorting order, which can be
ASCENDINGorDESCENDING. The default value isDESCENDING.
maxResults (integer) – The maximum number of agreements to return in the response.
nextToken (string) – A token to specify where to start pagination.
- Return type:
dict
- Returns:
Response Syntax
{ 'agreementViewSummaries': [ { 'agreementId': 'string', 'acceptanceTime': datetime(2015, 1, 1), 'startTime': datetime(2015, 1, 1), 'endTime': datetime(2015, 1, 1), 'agreementType': 'string', 'acceptor': { 'accountId': 'string' }, 'proposer': { 'accountId': 'string' }, 'proposalSummary': { 'resources': [ { 'id': 'string', 'type': 'string' }, ], 'offerId': 'string', 'offerSetId': 'string' }, 'status': 'ACTIVE'|'ARCHIVED'|'CANCELLED'|'EXPIRED'|'RENEWED'|'REPLACED'|'ROLLED_BACK'|'SUPERSEDED'|'TERMINATED' }, ], 'nextToken': 'string' }
Response Structure
(dict) –
agreementViewSummaries (list) –
A summary of the agreement, including top-level attributes (for example, the agreement ID, proposer, and acceptor).
(dict) –
A summary of the agreement, including top-level attributes (for example, the agreement ID, proposer, and acceptor).
agreementId (string) –
The unique identifier of the agreement.
acceptanceTime (datetime) –
The date and time that the agreement was accepted.
startTime (datetime) –
The date and time when the agreement starts.
endTime (datetime) –
The date and time when the agreement ends. The field is
nullfor pay-as-you-go agreements, which don’t have end dates.agreementType (string) –
The type of agreement. Value is
PurchaseAgreement.acceptor (dict) –
Details of the party accepting the agreement terms. This is commonly the buyer for
PurchaseAgreement.accountId (string) –
The AWS account ID of the acceptor.
proposer (dict) –
Details of the party proposing the agreement terms, most commonly the seller for
PurchaseAgreement.accountId (string) –
The AWS account ID of the proposer.
proposalSummary (dict) –
A summary of the proposal
resources (list) –
The list of resources involved in the agreement.
(dict) –
The list of resources involved in the agreement.
id (string) –
The unique identifier of the resource.
Note
We mention the term resource, which is most commonly a product, so a
resourceIdis also aproductId.type (string) –
Type of the resource, which is the product. Values include
SaaSProductorAmiProduct.
offerId (string) –
The unique identifier of the offer in AWS Marketplace.
offerSetId (string) –
A unique identifier for the offer set containing this offer. All agreements created from offers in this set include this identifier as context.
status (string) –
The current status of the agreement.
nextToken (string) –
The token used for pagination. The field is
nullif there are no more results.
Exceptions
AgreementService.Client.exceptions.ValidationExceptionAgreementService.Client.exceptions.AccessDeniedExceptionAgreementService.Client.exceptions.ThrottlingExceptionAgreementService.Client.exceptions.InternalServerException