Skip to main content

outposts_service_connections_docker_retrieve

GET 

/api/v3//outposts/service_connections/docker/:uuid/

DockerServiceConnection Viewset

Request

Path Parameters

    uuid uuidrequired

    A UUID string identifying this Docker Service-Connection.

Responses

Schema
    pkuuidrequired
    namestringrequired
    localboolean

    If enabled, use the local connection. Required Docker socket/Kubernetes Integration

    componentstringrequired
    verbose_namestringrequired

    Return object's verbose_name

    verbose_name_pluralstringrequired

    Return object's plural verbose_name

    meta_model_namestringrequired

    Return internal model name

    urlstringrequired

    Can be in the format of 'unix://' when connecting to a local docker daemon, or 'https://:2376' when connecting to a remote system.

    tls_verificationuuidnullable

    CA which the endpoint's Certificate is verified against. Can be left empty for no validation.

    tls_authenticationuuidnullable

    Certificate/Key used for authentication. Can be left empty for no authentication.

Authorization: http

name: authentiktype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/api/v3/outposts/service_connections/docker/:uuid/");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
/api/v3
Auth
Parameters
— pathrequired