python-botocore/botocore/data/meteringmarketplace/2016-01-14/service-2.json
2018-07-11 09:25:50 +03:00

341 lines
15 KiB
JSON

{
"version":"2.0",
"metadata":{
"uid":"meteringmarketplace-2016-01-14",
"apiVersion":"2016-01-14",
"endpointPrefix":"metering.marketplace",
"jsonVersion":"1.1",
"protocol":"json",
"serviceFullName":"AWSMarketplace Metering",
"serviceId":"Marketplace Metering",
"signatureVersion":"v4",
"signingName":"aws-marketplace",
"targetPrefix":"AWSMPMeteringService"
},
"operations":{
"BatchMeterUsage":{
"name":"BatchMeterUsage",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"BatchMeterUsageRequest"},
"output":{"shape":"BatchMeterUsageResult"},
"errors":[
{"shape":"InternalServiceErrorException"},
{"shape":"InvalidProductCodeException"},
{"shape":"InvalidUsageDimensionException"},
{"shape":"InvalidCustomerIdentifierException"},
{"shape":"TimestampOutOfBoundsException"},
{"shape":"ThrottlingException"}
],
"documentation":"<p>BatchMeterUsage is called from a SaaS application listed on the AWS Marketplace to post metering records for a set of customers.</p> <p>For identical requests, the API is idempotent; requests can be retried with the same records or a subset of the input records.</p> <p>Every request to BatchMeterUsage is for one product. If you need to meter usage for multiple products, you must make multiple calls to BatchMeterUsage.</p> <p>BatchMeterUsage can process up to 25 UsageRecords at a time.</p>"
},
"MeterUsage":{
"name":"MeterUsage",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"MeterUsageRequest"},
"output":{"shape":"MeterUsageResult"},
"errors":[
{"shape":"InternalServiceErrorException"},
{"shape":"InvalidProductCodeException"},
{"shape":"InvalidUsageDimensionException"},
{"shape":"InvalidEndpointRegionException"},
{"shape":"TimestampOutOfBoundsException"},
{"shape":"DuplicateRequestException"},
{"shape":"ThrottlingException"}
],
"documentation":"<p>API to emit metering records. For identical requests, the API is idempotent. It simply returns the metering record ID.</p> <p>MeterUsage is authenticated on the buyer's AWS account, generally when running from an EC2 instance on the AWS Marketplace.</p>"
},
"ResolveCustomer":{
"name":"ResolveCustomer",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ResolveCustomerRequest"},
"output":{"shape":"ResolveCustomerResult"},
"errors":[
{"shape":"InvalidTokenException"},
{"shape":"ExpiredTokenException"},
{"shape":"ThrottlingException"},
{"shape":"InternalServiceErrorException"}
],
"documentation":"<p>ResolveCustomer is called by a SaaS application during the registration process. When a buyer visits your website during the registration process, the buyer submits a registration token through their browser. The registration token is resolved through this API to obtain a CustomerIdentifier and product code.</p>"
}
},
"shapes":{
"BatchMeterUsageRequest":{
"type":"structure",
"required":[
"UsageRecords",
"ProductCode"
],
"members":{
"UsageRecords":{
"shape":"UsageRecordList",
"documentation":"<p>The set of UsageRecords to submit. BatchMeterUsage accepts up to 25 UsageRecords at a time.</p>"
},
"ProductCode":{
"shape":"ProductCode",
"documentation":"<p>Product code is used to uniquely identify a product in AWS Marketplace. The product code should be the same as the one used during the publishing of a new product.</p>"
}
},
"documentation":"<p>A BatchMeterUsageRequest contains UsageRecords, which indicate quantities of usage within your application.</p>"
},
"BatchMeterUsageResult":{
"type":"structure",
"members":{
"Results":{
"shape":"UsageRecordResultList",
"documentation":"<p>Contains all UsageRecords processed by BatchMeterUsage. These records were either honored by AWS Marketplace Metering Service or were invalid.</p>"
},
"UnprocessedRecords":{
"shape":"UsageRecordList",
"documentation":"<p>Contains all UsageRecords that were not processed by BatchMeterUsage. This is a list of UsageRecords. You can retry the failed request by making another BatchMeterUsage call with this list as input in the BatchMeterUsageRequest.</p>"
}
},
"documentation":"<p>Contains the UsageRecords processed by BatchMeterUsage and any records that have failed due to transient error.</p>"
},
"Boolean":{"type":"boolean"},
"CustomerIdentifier":{
"type":"string",
"max":255,
"min":1
},
"DuplicateRequestException":{
"type":"structure",
"members":{
"message":{"shape":"errorMessage"}
},
"documentation":"<p>A metering record has already been emitted by the same EC2 instance for the given {usageDimension, timestamp} with a different usageQuantity.</p>",
"exception":true
},
"ExpiredTokenException":{
"type":"structure",
"members":{
"message":{"shape":"errorMessage"}
},
"documentation":"<p>The submitted registration token has expired. This can happen if the buyer's browser takes too long to redirect to your page, the buyer has resubmitted the registration token, or your application has held on to the registration token for too long. Your SaaS registration website should redeem this token as soon as it is submitted by the buyer's browser.</p>",
"exception":true
},
"InternalServiceErrorException":{
"type":"structure",
"members":{
"message":{"shape":"errorMessage"}
},
"documentation":"<p>An internal error has occurred. Retry your request. If the problem persists, post a message with details on the AWS forums.</p>",
"exception":true,
"fault":true
},
"InvalidCustomerIdentifierException":{
"type":"structure",
"members":{
"message":{"shape":"errorMessage"}
},
"documentation":"<p>You have metered usage for a CustomerIdentifier that does not exist.</p>",
"exception":true
},
"InvalidEndpointRegionException":{
"type":"structure",
"members":{
"message":{"shape":"errorMessage"}
},
"documentation":"<p>The endpoint being called is in a region different from your EC2 instance. The region of the Metering service endpoint and the region of the EC2 instance must match.</p>",
"exception":true
},
"InvalidProductCodeException":{
"type":"structure",
"members":{
"message":{"shape":"errorMessage"}
},
"documentation":"<p>The product code passed does not match the product code used for publishing the product.</p>",
"exception":true
},
"InvalidTokenException":{
"type":"structure",
"members":{
"message":{"shape":"errorMessage"}
},
"exception":true
},
"InvalidUsageDimensionException":{
"type":"structure",
"members":{
"message":{"shape":"errorMessage"}
},
"documentation":"<p>The usage dimension does not match one of the UsageDimensions associated with products.</p>",
"exception":true
},
"MeterUsageRequest":{
"type":"structure",
"required":[
"ProductCode",
"Timestamp",
"UsageDimension",
"UsageQuantity",
"DryRun"
],
"members":{
"ProductCode":{
"shape":"ProductCode",
"documentation":"<p>Product code is used to uniquely identify a product in AWS Marketplace. The product code should be the same as the one used during the publishing of a new product.</p>"
},
"Timestamp":{
"shape":"Timestamp",
"documentation":"<p>Timestamp of the hour, recorded in UTC. The seconds and milliseconds portions of the timestamp will be ignored.</p>"
},
"UsageDimension":{
"shape":"UsageDimension",
"documentation":"<p>It will be one of the fcp dimension name provided during the publishing of the product.</p>"
},
"UsageQuantity":{
"shape":"UsageQuantity",
"documentation":"<p>Consumption value for the hour.</p>"
},
"DryRun":{
"shape":"Boolean",
"documentation":"<p>Checks whether you have the permissions required for the action, but does not make the request. If you have the permissions, the request returns DryRunOperation; otherwise, it returns UnauthorizedException.</p>"
}
}
},
"MeterUsageResult":{
"type":"structure",
"members":{
"MeteringRecordId":{"shape":"String"}
}
},
"NonEmptyString":{
"type":"string",
"pattern":"\\S+"
},
"ProductCode":{
"type":"string",
"max":255,
"min":1
},
"ResolveCustomerRequest":{
"type":"structure",
"required":["RegistrationToken"],
"members":{
"RegistrationToken":{
"shape":"NonEmptyString",
"documentation":"<p>When a buyer visits your website during the registration process, the buyer submits a registration token through the browser. The registration token is resolved to obtain a CustomerIdentifier and product code.</p>"
}
},
"documentation":"<p>Contains input to the ResolveCustomer operation.</p>"
},
"ResolveCustomerResult":{
"type":"structure",
"members":{
"CustomerIdentifier":{
"shape":"CustomerIdentifier",
"documentation":"<p>The CustomerIdentifier is used to identify an individual customer in your application. Calls to BatchMeterUsage require CustomerIdentifiers for each UsageRecord.</p>"
},
"ProductCode":{
"shape":"ProductCode",
"documentation":"<p>The product code is returned to confirm that the buyer is registering for your product. Subsequent BatchMeterUsage calls should be made using this product code.</p>"
}
},
"documentation":"<p>The result of the ResolveCustomer operation. Contains the CustomerIdentifier and product code.</p>"
},
"String":{"type":"string"},
"ThrottlingException":{
"type":"structure",
"members":{
"message":{"shape":"errorMessage"}
},
"documentation":"<p>The calls to the MeterUsage API are throttled.</p>",
"exception":true
},
"Timestamp":{"type":"timestamp"},
"TimestampOutOfBoundsException":{
"type":"structure",
"members":{
"message":{"shape":"errorMessage"}
},
"documentation":"<p>The timestamp value passed in the meterUsage() is out of allowed range.</p>",
"exception":true
},
"UsageDimension":{
"type":"string",
"max":255,
"min":1
},
"UsageQuantity":{
"type":"integer",
"max":1000000,
"min":0
},
"UsageRecord":{
"type":"structure",
"required":[
"Timestamp",
"CustomerIdentifier",
"Dimension",
"Quantity"
],
"members":{
"Timestamp":{
"shape":"Timestamp",
"documentation":"<p>Timestamp of the hour, recorded in UTC. The seconds and milliseconds portions of the timestamp will be ignored.</p> <p>Your application can meter usage for up to one hour in the past.</p>"
},
"CustomerIdentifier":{
"shape":"CustomerIdentifier",
"documentation":"<p>The CustomerIdentifier is obtained through the ResolveCustomer operation and represents an individual buyer in your application.</p>"
},
"Dimension":{
"shape":"UsageDimension",
"documentation":"<p>During the process of registering a product on AWS Marketplace, up to eight dimensions are specified. These represent different units of value in your application.</p>"
},
"Quantity":{
"shape":"UsageQuantity",
"documentation":"<p>The quantity of usage consumed by the customer for the given dimension and time.</p>"
}
},
"documentation":"<p>A UsageRecord indicates a quantity of usage for a given product, customer, dimension and time.</p> <p>Multiple requests with the same UsageRecords as input will be deduplicated to prevent double charges.</p>"
},
"UsageRecordList":{
"type":"list",
"member":{"shape":"UsageRecord"},
"max":25,
"min":0
},
"UsageRecordResult":{
"type":"structure",
"members":{
"UsageRecord":{
"shape":"UsageRecord",
"documentation":"<p>The UsageRecord that was part of the BatchMeterUsage request.</p>"
},
"MeteringRecordId":{
"shape":"String",
"documentation":"<p>The MeteringRecordId is a unique identifier for this metering event.</p>"
},
"Status":{
"shape":"UsageRecordResultStatus",
"documentation":"<p>The UsageRecordResult Status indicates the status of an individual UsageRecord processed by BatchMeterUsage.</p> <ul> <li> <p> <i>Success</i>- The UsageRecord was accepted and honored by BatchMeterUsage.</p> </li> <li> <p> <i>CustomerNotSubscribed</i>- The CustomerIdentifier specified is not subscribed to your product. The UsageRecord was not honored. Future UsageRecords for this customer will fail until the customer subscribes to your product.</p> </li> <li> <p> <i>DuplicateRecord</i>- Indicates that the UsageRecord was invalid and not honored. A previously metered UsageRecord had the same customer, dimension, and time, but a different quantity.</p> </li> </ul>"
}
},
"documentation":"<p>A UsageRecordResult indicates the status of a given UsageRecord processed by BatchMeterUsage.</p>"
},
"UsageRecordResultList":{
"type":"list",
"member":{"shape":"UsageRecordResult"}
},
"UsageRecordResultStatus":{
"type":"string",
"enum":[
"Success",
"CustomerNotSubscribed",
"DuplicateRecord"
]
},
"errorMessage":{"type":"string"}
},
"documentation":"<fullname>AWS Marketplace Metering Service</fullname> <p>This reference provides descriptions of the low-level AWS Marketplace Metering Service API.</p> <p>AWS Marketplace sellers can use this API to submit usage data for custom usage dimensions.</p> <p> <b>Submitting Metering Records</b> </p> <ul> <li> <p> <i>MeterUsage</i>- Submits the metering record for a Marketplace product. MeterUsage is called from an EC2 instance.</p> </li> <li> <p> <i>BatchMeterUsage</i>- Submits the metering record for a set of customers. BatchMeterUsage is called from a software-as-a-service (SaaS) application.</p> </li> </ul> <p> <b>Accepting New Customers</b> </p> <ul> <li> <p> <i>ResolveCustomer</i>- Called by a SaaS application during the registration process. When a buyer visits your website during the registration process, the buyer submits a Registration Token through the browser. The Registration Token is resolved through this API to obtain a CustomerIdentifier and Product Code.</p> </li> </ul>"
}