Struct mz_orchestratord::controller::materialize::Args

source ·
pub struct Args {
Show 45 fields cloud_provider: CloudProvider, region: String, create_balancers: bool, create_console: bool, helm_chart_version: Option<String>, secrets_controller: String, collect_pod_metrics: bool, enable_prometheus_scrape_annotations: bool, disable_authentication: bool, segment_api_key: Option<String>, segment_client_side: bool, console_image_tag_default: String, console_image_tag_map: Vec<KeyValueArg<String, String>>, aws_info: AwsInfo, ephemeral_volume_class: Option<String>, scheduler_name: Option<String>, enable_security_context: bool, enable_internal_statement_logging: bool, orchestratord_pod_selector_labels: Vec<KeyValueArg<String, String>>, environmentd_node_selector: Vec<KeyValueArg<String, String>>, clusterd_node_selector: Vec<KeyValueArg<String, String>>, balancerd_node_selector: Vec<KeyValueArg<String, String>>, console_node_selector: Vec<KeyValueArg<String, String>>, image_pull_policy: KubernetesImagePullPolicy, network_policies: NetworkPolicyConfig, environmentd_cluster_replica_sizes: Option<String>, bootstrap_default_cluster_replica_size: Option<String>, bootstrap_builtin_system_cluster_replica_size: Option<String>, bootstrap_builtin_probe_cluster_replica_size: Option<String>, bootstrap_builtin_support_cluster_replica_size: Option<String>, bootstrap_builtin_catalog_server_cluster_replica_size: Option<String>, bootstrap_builtin_analytics_cluster_replica_size: Option<String>, environmentd_allowed_origins: Vec<HeaderValue>, internal_console_proxy_url: String, environmentd_sql_port: i32, environmentd_http_port: i32, environmentd_internal_sql_port: i32, environmentd_internal_http_port: i32, environmentd_internal_http_host_override: Option<String>, environmentd_internal_persist_pubsub_port: i32, balancerd_sql_port: i32, balancerd_http_port: i32, balancerd_internal_http_port: i32, console_http_port: i32, default_certificate_specs: DefaultCertificateSpecs,
}

Fields§

§cloud_provider: CloudProvider§region: String§create_balancers: bool§create_console: bool§helm_chart_version: Option<String>§secrets_controller: String§collect_pod_metrics: bool§enable_prometheus_scrape_annotations: bool§disable_authentication: bool§segment_api_key: Option<String>§segment_client_side: bool§console_image_tag_default: String§console_image_tag_map: Vec<KeyValueArg<String, String>>§aws_info: AwsInfo§ephemeral_volume_class: Option<String>§scheduler_name: Option<String>§enable_security_context: bool§enable_internal_statement_logging: bool§orchestratord_pod_selector_labels: Vec<KeyValueArg<String, String>>§environmentd_node_selector: Vec<KeyValueArg<String, String>>§clusterd_node_selector: Vec<KeyValueArg<String, String>>§balancerd_node_selector: Vec<KeyValueArg<String, String>>§console_node_selector: Vec<KeyValueArg<String, String>>§image_pull_policy: KubernetesImagePullPolicy§network_policies: NetworkPolicyConfig§environmentd_cluster_replica_sizes: Option<String>§bootstrap_default_cluster_replica_size: Option<String>§bootstrap_builtin_system_cluster_replica_size: Option<String>§bootstrap_builtin_probe_cluster_replica_size: Option<String>§bootstrap_builtin_support_cluster_replica_size: Option<String>§bootstrap_builtin_catalog_server_cluster_replica_size: Option<String>§bootstrap_builtin_analytics_cluster_replica_size: Option<String>§environmentd_allowed_origins: Vec<HeaderValue>§internal_console_proxy_url: String§environmentd_sql_port: i32§environmentd_http_port: i32§environmentd_internal_sql_port: i32§environmentd_internal_http_port: i32§environmentd_internal_http_host_override: Option<String>§environmentd_internal_persist_pubsub_port: i32§balancerd_sql_port: i32§balancerd_http_port: i32§balancerd_internal_http_port: i32§console_http_port: i32§default_certificate_specs: DefaultCertificateSpecs

Trait Implementations§

source§

impl Args for Args

source§

fn augment_args<'b>(__clap_app: Command<'b>) -> Command<'b>

Append to Command so it can instantiate Self. Read more
source§

fn augment_args_for_update<'b>(__clap_app: Command<'b>) -> Command<'b>

Append to Command so it can update self. Read more
source§

impl CommandFactory for Args

source§

fn into_app<'b>() -> Command<'b>

Deprecated, replaced with CommandFactory::command
source§

fn into_app_for_update<'b>() -> Command<'b>

Deprecated, replaced with CommandFactory::command_for_update
source§

fn command<'help>() -> App<'help>

Build a Command that can instantiate Self. Read more
source§

fn command_for_update<'help>() -> App<'help>

Build a Command that can update self. Read more
source§

impl FromArgMatches for Args

source§

fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
source§

fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
source§

fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to self.
source§

fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to self.
source§

impl Parser for Args

source§

fn parse() -> Self

Parse from std::env::args_os(), exit on error
source§

fn try_parse() -> Result<Self, Error>

Parse from std::env::args_os(), return Err on error.
source§

fn parse_from<I, T>(itr: I) -> Self
where I: IntoIterator<Item = T>, T: Into<OsString> + Clone,

Parse from iterator, exit on error
source§

fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
where I: IntoIterator<Item = T>, T: Into<OsString> + Clone,

Parse from iterator, return Err on error.
source§

fn update_from<I, T>(&mut self, itr: I)
where I: IntoIterator<Item = T>, T: Into<OsString> + Clone,

Update from iterator, exit on error
source§

fn try_update_from<I, T>(&mut self, itr: I) -> Result<(), Error>
where I: IntoIterator<Item = T>, T: Into<OsString> + Clone,

Update from iterator, return Err on error.

Auto Trait Implementations§

§

impl Freeze for Args

§

impl RefUnwindSafe for Args

§

impl Send for Args

§

impl Sync for Args

§

impl Unpin for Args

§

impl UnwindSafe for Args

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, U> CastInto<U> for T
where U: CastFrom<T>,

source§

fn cast_into(self) -> U

Performs the cast.
source§

impl<T> CopyAs<T> for T

source§

fn copy_as(self) -> T

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FutureExt for T

source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
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> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T, U> OverrideFrom<Option<&T>> for U
where U: OverrideFrom<T>,

source§

fn override_from(self, layer: &Option<&T>) -> U

Override the configuration represented by Self with values from the given layer.
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<P, R> ProtoType<R> for P
where R: RustType<P>,

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<'a, S, T> Semigroup<&'a S> for T
where T: Semigroup<S>,

source§

fn plus_equals(&mut self, rhs: &&'a S)

The method of std::ops::AddAssign, for types that do not implement AddAssign.
source§

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

§

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>,

§

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<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,