Get Details for a Running Service

get

/api/microservice/Workload/readForServiceDetails

Gets the details for the service running at the specified path.

Request

Query Parameters
  • The full path, in /{cluster}/{namespace}/{service-name} format.
    Example:
    /cluster-1/a1-cache/servicename

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : schema
Type: object
Show Source
  • data
    Returns a subset of Kubernetes job details. For full details, you can use the following command: a1k -n {namespace} -ojson get service {service-id}
  • The response message in text.
    Example:
  • Whether the operation was a success (true) or a failure (false).
    Example: true
Nested Schema : data
Type: object
Returns a subset of Kubernetes job details. For full details, you can use the following command: a1k -n {namespace} -ojson get service {service-id}
Example:
{
    "Name":"example-poller",
    "Namespace":"a1-cache",
    "Created":"2023-10-21T11:20:46Z",
    "Selector":{
        "Selector Details":"Value"
    },
    "Labels":{
        "Labels Details":"Value"
    },
    "Annotations":{
        "Annotations Details":"Value"
    },
    "SessionAffinity":"None",
    "Type":"ClusterIP",
    "Images":[
    ],
    "Events":[
    ],
    "Pods":{
        "Pod Details":"Value"
    }
}

Default Response

Failed operation
Body ()
Root Schema : schema
Type: object
Show Source
Nested Schema : errors
Type: array
The list of errors reported. Validation errors will be keyed by record field.
Show Source
Nested Schema : items
Type: object
Back to Top