Get Container Application

Get Container Application

Returns information about a specific Container Application within a project.

Request
URI
GET
https://nsxmanager.your.domain/api/v1/fabric/container-applications/{container-application-id}
COPY
Path Parameters
string
container-application-id
Required

container-application-id


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns ContainerApplication of type(s) application/json
This response body class contains all of the following: InlineContainerApplication1
{
    "_links": [
        {
            "action": "string",
            "href": "string",
            "rel": "string"
        }
    ],
    "_schema": "string",
    "_self": {},
    "_last_sync_time": 0,
    "description": "string",
    "display_name": "string",
    "resource_type": "string",
    "scope": [
        {
            "scope_id": "string",
            "scope_type": "string"
        }
    ],
    "tags": [
        {
            "scope": "string",
            "tag": "string"
        }
    ],
    "cluster_ips": [
        "string"
    ],
    "container_cluster_id": "string",
    "container_project_id": "string",
    "external_id": "string",
    "load_balancer_ingress": [
        {
            "hostname": "string",
            "ip": "string",
            "ports": [
                {
                    "port": 0,
                    "protocol": "string"
                }
            ]
        }
    ],
    "network_errors": [
        {
            "error_code": "string",
            "error_message": "string",
            "spec": "string"
        }
    ],
    "network_status": "string",
    "node_port_local_endpoints": [
        {
            "node_ip": "string",
            "node_port": 0,
            "protocol": "string"
        }
    ],
    "origin_properties": [
        {
            "key": "string",
            "value": "string"
        }
    ],
    "service_ports": [
        {
            "name": "string",
            "node_port": 0,
            "port": 0,
            "protocol": "string",
            "target_port": "string"
        }
    ],
    "status": "string",
    "type": "string"
}

400
Returns BadRequest of type(s) application/json
Operation doesn't return any data structure

403
Returns Forbidden of type(s) application/json
Operation doesn't return any data structure

404

Not Found

Operation doesn't return any data structure

412
Returns PreconditionFailed of type(s) application/json
Operation doesn't return any data structure

500
Returns InternalServerError of type(s) application/json
Operation doesn't return any data structure

503
Returns ServiceUnavailable of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/api/v1/fabric/container-applications/{container-application-id}