ApiPaths

Struct ApiPaths 

Source
pub struct ApiPaths;

Implementations§

Source§

impl ApiPaths

Source

pub const API_BASE: &'static str = "/api"

Source

pub const API_V1: &'static str = "/api/v1"

Source

pub const CORE_BASE: &'static str = "/api/v1/core"

Source

pub const AGENTS_BASE: &'static str = "/api/v1/agents"

Source

pub const MCP_BASE: &'static str = "/api/v1/mcp"

Source

pub const STREAM_BASE: &'static str = "/api/v1/stream"

Source

pub const CONTENT_BASE: &'static str = "/api/v1/content"

Source

pub const META_BASE: &'static str = "/api/v1/meta"

Source

pub const CORE_CONTEXTS: &'static str = "/api/v1/core/contexts"

Source

pub const CORE_TASKS: &'static str = "/api/v1/core/tasks"

Source

pub const CORE_ARTIFACTS: &'static str = "/api/v1/core/artifacts"

Source

pub const CONTEXTS_WEBHOOK: &'static str = "/api/v1/core/contexts/webhook"

Source

pub const AGENTS_REGISTRY: &'static str = "/api/v1/agents/registry"

Source

pub const MCP_REGISTRY: &'static str = "/api/v1/mcp/registry"

Source

pub const STREAM_CONTEXTS: &'static str = "/api/v1/stream/contexts"

Source

pub const STREAM_AGUI: &'static str = "/api/v1/stream/agui"

Source

pub const STREAM_A2A: &'static str = "/api/v1/stream/a2a"

Source

pub const AUTH_ME: &'static str = "/api/v1/auth/me"

Source

pub const OAUTH_BASE: &'static str = "/api/v1/core/oauth"

Source

pub const OAUTH_SESSION: &'static str = "/api/v1/core/oauth/session"

Source

pub const OAUTH_REGISTER: &'static str = "/api/v1/core/oauth/register"

Source

pub const OAUTH_AUTHORIZE: &'static str = "/api/v1/core/oauth/authorize"

Source

pub const OAUTH_TOKEN: &'static str = "/api/v1/core/oauth/token"

Source

pub const OAUTH_CALLBACK: &'static str = "/api/v1/core/oauth/callback"

Source

pub const OAUTH_WEBAUTHN_COMPLETE: &'static str = "/api/v1/core/oauth/webauthn/complete"

Source

pub const OAUTH_CLIENTS: &'static str = "/api/v1/core/oauth/clients"

Source

pub const WEBHOOK: &'static str = "/api/v1/webhook"

Source

pub const WEBHOOK_AGUI: &'static str = "/api/v1/webhook/agui"

Source

pub const WEBHOOK_A2A: &'static str = "/api/v1/webhook/a2a"

Source

pub const HEALTH: &'static str = "/api/v1/health"

Source

pub const DISCOVERY: &'static str = "/api/v1"

Source

pub const WELLKNOWN_BASE: &'static str = "/.well-known"

Source

pub const WELLKNOWN_AGENT_CARD: &'static str = "/.well-known/agent-card.json"

Source

pub const WELLKNOWN_AGENT_CARDS: &'static str = "/.well-known/agent-cards"

Source

pub const WELLKNOWN_OAUTH_SERVER: &'static str = "/.well-known/oauth-authorization-server"

Source

pub const WELLKNOWN_OPENID_CONFIG: &'static str = "/.well-known/openid-configuration"

Source

pub const WELLKNOWN_OAUTH_PROTECTED: &'static str = "/.well-known/oauth-protected-resource"

Source

pub const A2A_CARD: &'static str = "/api/a2a/card"

Source

pub const ASSETS_BASE: &'static str = "/assets"

Source

pub const FILES_BASE: &'static str = "/files"

Source

pub const GENERATED_BASE: &'static str = "/generated"

Source

pub const IMAGES_BASE: &'static str = "/images"

Source

pub const STATIC_BASE: &'static str = "/static"

Source

pub const NEXT_BASE: &'static str = "/_next"

Source

pub const DOCS_BASE: &'static str = "/docs"

Source

pub const SWAGGER_BASE: &'static str = "/swagger"

Source

pub const OPENAPI_BASE: &'static str = "/openapi"

Source

pub const ADMIN_BASE: &'static str = "/api/v1/admin"

Source

pub const ADMIN_LOGS: &'static str = "/api/v1/admin/logs"

Source

pub const ADMIN_USERS: &'static str = "/api/v1/admin/users"

Source

pub const ADMIN_ANALYTICS: &'static str = "/api/v1/admin/analytics"

Source

pub const ADMIN_SESSIONS: &'static str = "/api/v1/admin/sessions"

Source

pub const CLOUD_TENANTS: &'static str = "/api/v1/tenants"

Source

pub const CLOUD_CHECKOUT: &'static str = "/api/v1/checkout"

Source

pub const CLOUD_CHECKOUT_PLANS: &'static str = "/api/v1/checkout/plans"

Source

pub fn tenant(tenant_id: &str) -> String

Source

pub fn tenant_status(tenant_id: &str) -> String

Source

pub fn tenant_registry_token(tenant_id: &str) -> String

Source

pub fn tenant_deploy(tenant_id: &str) -> String

Source

pub fn tenant_events(tenant_id: &str) -> String

Source

pub fn tenant_restart(tenant_id: &str) -> String

Source

pub fn tenant_retry_provision(tenant_id: &str) -> String

Source

pub fn tenant_secrets(tenant_id: &str) -> String

Source

pub fn tenant_external_db_access(tenant_id: &str) -> String

Source

pub fn tenant_rotate_credentials(tenant_id: &str) -> String

Source

pub fn tenant_rotate_sync_token(tenant_id: &str) -> String

Source

pub fn mcp_server_endpoint(server_name: &str) -> String

Source

pub fn oauth_client_location(client_id: &str) -> String

Source

pub fn wellknown_agent_card_named(agent_name: &str) -> String

Source

pub fn agent_endpoint(agent_id: &str) -> String

Source

pub fn tenant_custom_domain(tenant_id: &str) -> String

Trait Implementations§

Source§

impl Clone for ApiPaths

Source§

fn clone(&self) -> ApiPaths

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ApiPaths

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for ApiPaths

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,