DistinctNamespaces
List distinct Kestra namespaces
Retrieves a list of all distinct namespaces within a Kestra instance, optionally filtered by a prefix.
yaml
type: "io.kestra.plugin.kestra.flows.DistinctNamespaces"
List all distinct namespaces
yaml
id: distinct_all_namespaces
namespace: company.team
tasks:
- id: list_namespaces
type: io.kestra.plugin.kestra.flows.DistinctNamespaces
kestraUrl: http://localhost:8080
List distinct namespaces with a specific prefix
yaml
id: distinct_prefixed_namespaces
namespace: company.team
tasks:
- id: list_prefixed_namespaces
type: io.kestra.plugin.kestra.flows.DistinctNamespaces
kestraUrl: https://my-ee-instance.io
auth:
username: myuser
password: mypassword
prefix: dev
tenantId: mytenant
Authentication information.
Kestra API URL, if null, http://localhost: 8080
will be used.
The namespace prefix, if null, all namespaces will be listed.
Default
main
The tenant ID to use for the request, defaults to 'main'.
SubType string
A list of distinct Kestra namespaces
API token.
Password for HTTP Basic authentication.
Username for HTTP Basic authentication.