action digitalocean_functions_get_namespace { label: "Get Namespace" description: "Gets the namespace details for the given namespace UUID. To get namespace details, send a GET request to `/v2/functions/namespaces/$NAMESPACE_ID` with no parameters." provider: digitalocean method: GET path: "/v2/functions/namespaces/{namespace_id}" encoding: json input: { type: "object" properties: { namespace_id: { type: "string" } } required: ["namespace_id"] additionalProperties: false } output: { type: "object" properties: { namespace: { type: "object" properties: { api_host: { type: "string" description: "The namespace's API hostname. Each function in a namespace is provided an endpoint at the namespace's hostname." } created_at: { type: "string" description: "UTC time string." } key: { type: "string" description: "A random alpha numeric string. This key is used in conjunction with the namespace's UUID to authenticate \na user to use the namespace via `doctl`, DigitalOcean's official CLI." } label: { type: "string" description: "The namespace's unique name." } namespace: { type: "string" description: "A unique string format of UUID with a prefix fn-." } region: { type: "string" description: "The namespace's datacenter region." } updated_at: { type: "string" description: "UTC time string." } uuid: { type: "string" description: "The namespace's Universally Unique Identifier." } } } } } }