pub async fn list_namespaces(
configuration: &Configuration,
id: &str,
delimiter: Option<&str>,
page_token: Option<&str>,
limit: Option<i32>,
) -> Result<ListNamespacesResponse, Error<ListNamespacesError>>
Expand description
List all child namespace names of the parent namespace id
. REST NAMESPACE ONLY REST namespace uses GET to perform this operation without a request body. It passes in the ListNamespacesRequest
information in the following way: - id
: pass through path parameter of the same name - page_token
: pass through query parameter of the same name - limit
: pass through query parameter of the same name