Secrets API

Fetch a Secret
fetchSecret
GET /resource/{tenantLocator}/secrets/{name}
    Request Parameters:
    NamePositionTypeRequired
    tenantLocatorpathuuidrequired
    namepathstringrequired
    byStaticNamequeryboolean?optional
    datequerydatetime?optional
    Security Group:secrets   Permission:read
SecretResponse
required
secret object
Create a Secret
createSecret
POST /resource/{tenantLocator}/secrets
    Request Parameters:
    NamePositionTypeRequired
    tenantLocatorpathuuidrequired
    Security Group:secrets   Permission:write
SecretCreateRequest
required
staticName string
name string
secret map<string,object>
Update a Secret
updateSecret
PATCH /resource/{tenantLocator}/secrets/{name}
    Request Parameters:
    NamePositionTypeRequired
    tenantLocatorpathuuidrequired
    namepathstringrequired
    Request:map<string,object>
    Security Group:secrets   Permission:write
Delete Secret
deleteSecret
DELETE /resource/{tenantLocator}/secrets/{name}
    Request Parameters:
    NamePositionTypeRequired
    tenantLocatorpathuuidrequired
    namepathstringrequired
    Response:void
    Security Group:secrets   Permission:write