pub struct HTTPSEdgeRouteCreate {
Show 16 fields pub edge_id: String, pub match_type: String, pub match: String, pub description: String, pub metadata: String, pub backend: Option<EndpointBackendMutate>, pub ip_restriction: Option<EndpointIPPolicyMutate>, pub circuit_breaker: Option<EndpointCircuitBreaker>, pub compression: Option<EndpointCompression>, pub request_headers: Option<EndpointRequestHeaders>, pub response_headers: Option<EndpointResponseHeaders>, pub webhook_verification: Option<EndpointWebhookValidation>, pub oauth: Option<EndpointOAuth>, pub saml: Option<EndpointSAMLMutate>, pub oidc: Option<EndpointOIDC>, pub websocket_tcp_converter: Option<EndpointWebsocketTCPConverter>,
}

Fields

edge_id: String

unique identifier of this edge

match_type: String

Type of match to use for this route. Valid values are “exact_path” and “path_prefix”.

match: String

Route selector: “/blog” or “example.com” or “example.com/blog”

description: String

human-readable description of what this edge will be used for; optional, max 255 bytes.

metadata: String

arbitrary user-defined machine-readable data of this edge. Optional, max 4096 bytes.

backend: Option<EndpointBackendMutate>

backend module configuration or null

ip_restriction: Option<EndpointIPPolicyMutate>

ip restriction module configuration or null

circuit_breaker: Option<EndpointCircuitBreaker>

circuit breaker module configuration or null

compression: Option<EndpointCompression>

compression module configuration or null

request_headers: Option<EndpointRequestHeaders>

request headers module configuration or null

response_headers: Option<EndpointResponseHeaders>

response headers module configuration or null

webhook_verification: Option<EndpointWebhookValidation>

webhook verification module configuration or null

oauth: Option<EndpointOAuth>

oauth module configuration or null

saml: Option<EndpointSAMLMutate>

saml module configuration or null

oidc: Option<EndpointOIDC>

oidc module configuration or null

websocket_tcp_converter: Option<EndpointWebsocketTCPConverter>

websocket to tcp adapter configuration or null

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

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

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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