Skip to content

Commit

Permalink
Regenerate library from latest models
Browse files Browse the repository at this point in the history
  • Loading branch information
jlevers committed Jun 29, 2024
1 parent ce28530 commit 29a2872
Show file tree
Hide file tree
Showing 151 changed files with 632 additions and 1,583 deletions.
56 changes: 15 additions & 41 deletions resources/models/vendor/direct-fulfillment-inventory/v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"tags": [
"DirectFulfillmentInventoryV1"
],
"description": "Submits inventory updates for the specified warehouse for either a partial or full feed of inventory items.\n\n**Usage Plan:**\n\n| Rate (requests per second) | Burst |\n| ---- | ---- |\n| 10 | 10 |\n\nThe `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).",
"description": "Submits inventory updates for the specified warehouse for either a partial or full feed of inventory items.\n\n**Usage Plan:**\n\n| Rate (requests per second) | Burst |\n| ---- | ---- |\n| 10 | 10 |\n\nThe `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that are applied to the operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the *SP-API*](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).",
"operationId": "submitInventoryUpdate",
"parameters": [
{
Expand All @@ -38,6 +38,7 @@
}
],
"requestBody": {
"description": "The request body that contains the inventory update data to submit.",
"content": {
"application/json": {
"schema": {
Expand Down Expand Up @@ -234,12 +235,6 @@
"schema": {
"type": "string"
}
},
"x-amzn-RateLimit-Limit": {
"description": "Your rate limit (requests per second) for this operation.\n_Note:_ For this status code, the rate limit header is deprecated and no longer returned.",
"schema": {
"type": "string"
}
}
},
"content": {
Expand All @@ -258,12 +253,6 @@
"schema": {
"type": "string"
}
},
"x-amzn-RateLimit-Limit": {
"description": "Your rate limit (requests per second) for this operation.\n_Note:_ For this status code, the rate limit header is deprecated and no longer returned.",
"schema": {
"type": "string"
}
}
},
"content": {
Expand All @@ -282,12 +271,6 @@
"schema": {
"type": "string"
}
},
"x-amzn-RateLimit-Limit": {
"description": "Your rate limit (requests per second) for this operation.\n_Note:_ For this status code, the rate limit header is deprecated and no longer returned.",
"schema": {
"type": "string"
}
}
},
"content": {
Expand All @@ -306,12 +289,6 @@
"schema": {
"type": "string"
}
},
"x-amzn-RateLimit-Limit": {
"description": "Your rate limit (requests per second) for this operation.\n_Note:_ For this status code, the rate limit header is deprecated and no longer returned.",
"schema": {
"type": "string"
}
}
},
"content": {
Expand All @@ -330,12 +307,6 @@
"schema": {
"type": "string"
}
},
"x-amzn-RateLimit-Limit": {
"description": "Your rate limit (requests per second) for this operation.\n_Note:_ For this status code, the rate limit header is deprecated and no longer returned.",
"schema": {
"type": "string"
}
}
},
"content": {
Expand All @@ -360,7 +331,7 @@
"$ref": "#/components/schemas/InventoryUpdate"
}
},
"description": "The request body for the submitInventoryUpdate operation."
"description": "The request body for the `submitInventoryUpdate` operation."
},
"InventoryUpdate": {
"required": [
Expand All @@ -375,7 +346,7 @@
},
"isFullUpdate": {
"type": "boolean",
"description": "When true, this request contains a full feed. Otherwise, this request contains a partial feed. When sending a full feed, you must send information about all items in the warehouse. Any items not in the full feed are updated as not available. When sending a partial feed, only include the items that need an update to inventory. The status of other items will remain unchanged."
"description": "When `true`, this request contains a full feed. When `false`, this request contains a partial feed. When sending a full feed, you must send information about all items in the warehouse. Any items not in the full feed are updated as not available. When sending a partial feed, only include the items that need an inventory update. The status of other items will remain unchanged."
},
"items": {
"type": "array",
Expand All @@ -384,7 +355,8 @@
"$ref": "#/components/schemas/ItemDetails"
}
}
}
},
"description": "Inventory details required to update some or all items for the requested warehouse."
},
"ItemDetails": {
"required": [
Expand All @@ -394,18 +366,18 @@
"properties": {
"buyerProductIdentifier": {
"type": "string",
"description": "The buyer selected product identification of the item. Either buyerProductIdentifier or vendorProductIdentifier should be submitted."
"description": "The buyer-selected product identification for the item. Either `buyerProductIdentifier` or `vendorProductIdentifier` must be submitted."
},
"vendorProductIdentifier": {
"type": "string",
"description": "The vendor selected product identification of the item. Either buyerProductIdentifier or vendorProductIdentifier should be submitted."
"description": "The vendor selected product identification for the item. Either `buyerProductIdentifier` or `vendorProductIdentifier` must be submitted."
},
"availableQuantity": {
"$ref": "#/components/schemas/ItemQuantity"
},
"isObsolete": {
"type": "boolean",
"description": "When true, the item is permanently unavailable."
"description": "When `true`, the item is permanently unavailable."
}
},
"description": "Updated inventory details for an item."
Expand All @@ -420,7 +392,8 @@
"type": "string",
"description": "Assigned identification for the party."
}
}
},
"description": "Name, address and tax details for a group."
},
"ItemQuantity": {
"required": [
Expand All @@ -437,7 +410,7 @@
"description": "Unit of measure for the available quantity."
}
},
"description": "Details of item quantity."
"description": "Details about item quantity."
},
"SubmitInventoryUpdateResponse": {
"type": "object",
Expand All @@ -449,7 +422,7 @@
"$ref": "#/components/schemas/ErrorList"
}
},
"description": "The response schema for the submitInventoryUpdate operation."
"description": "The response schema for the `submitInventoryUpdate` operation."
},
"TransactionReference": {
"type": "object",
Expand All @@ -458,7 +431,8 @@
"type": "string",
"description": "GUID to identify this transaction. This value can be used with the Transaction Status API to return the status of this transaction."
}
}
},
"description": "A response that contains the transaction ID."
},
"ErrorList": {
"type": "array",
Expand Down
Loading

0 comments on commit 29a2872

Please sign in to comment.