update_pod
Modify pod configurations including status, credentials, and test information in Cisco API Gateway pod collections to maintain current operational settings.
Instructions
Update an existing pod in a collection. Can update status, credentials, test information, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name | |
number | Yes | Pod number to update | |
updates | Yes | Fields to update |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection name",
"type": "string"
},
"number": {
"description": "Pod number to update",
"type": "number"
},
"updates": {
"description": "Fields to update",
"properties": {
"CRMPassword": {
"type": "string"
},
"Password": {
"type": "string"
},
"Status": {
"type": "string"
},
"TestDate": {
"type": "string"
},
"TestStatus": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"collection",
"number",
"updates"
],
"type": "object"
}