list_certificates
Retrieve and filter certificates within a specific Octopus Deploy space to manage security credentials and access configurations.
Instructions
List certificates in a space
This tool lists all certificates in a given space. The space name is required. You can optionally filter by various parameters like name, archived status, tenant, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archived | No | ||
firstResult | No | ||
ids | No | ||
orderBy | No | ||
partialName | No | ||
search | No | ||
skip | No | ||
spaceName | Yes | ||
take | No | ||
tenant | No |
Input Schema (JSON Schema)
{
"properties": {
"archived": {
"type": "boolean"
},
"firstResult": {
"type": "number"
},
"ids": {
"items": {
"type": "string"
},
"type": "array"
},
"orderBy": {
"type": "string"
},
"partialName": {
"type": "string"
},
"search": {
"type": "string"
},
"skip": {
"type": "number"
},
"spaceName": {
"type": "string"
},
"take": {
"type": "number"
},
"tenant": {
"type": "string"
}
},
"required": [
"spaceName"
],
"type": "object"
}