Struct mz_cloud_resources::crd::materialize::v1alpha1::Materialize
source · pub struct Materialize {
pub metadata: ObjectMeta,
pub spec: MaterializeSpec,
pub status: Option<MaterializeStatus>,
}
Expand description
Auto-generated derived type for MaterializeSpec via CustomResource
Fields§
§metadata: ObjectMeta
§spec: MaterializeSpec
§status: Option<MaterializeStatus>
Implementations§
source§impl Materialize
impl Materialize
sourcepub fn new(name: &str, spec: MaterializeSpec) -> Self
pub fn new(name: &str, spec: MaterializeSpec) -> Self
Spec based constructor for derived custom resource
source§impl Materialize
impl Materialize
pub fn backend_secret_name(&self) -> String
pub fn namespace(&self) -> String
pub fn service_account_name(&self) -> String
pub fn role_name(&self) -> String
pub fn role_binding_name(&self) -> String
pub fn environmentd_statefulset_name(&self, generation: u64) -> String
pub fn environmentd_app_name(&self) -> String
pub fn environmentd_service_name(&self) -> String
pub fn environmentd_generation_service_name(&self, generation: u64) -> String
pub fn balancerd_app_name(&self) -> String
pub fn balancerd_deployment_name(&self) -> String
pub fn balancerd_service_name(&self) -> String
pub fn console_app_name(&self) -> String
pub fn console_deployment_name(&self) -> String
pub fn console_service_name(&self) -> String
pub fn persist_pubsub_service_name(&self, generation: u64) -> String
pub fn name_prefixed(&self, suffix: &str) -> String
pub fn resource_id(&self) -> &str
pub fn environmentd_scratch_volume_storage_requirement(&self) -> Quantity
pub fn default_labels(&self) -> BTreeMap<String, String>
pub fn environment_id(&self, cloud_provider: &str, region: &str) -> String
pub fn requested_reconciliation_id(&self) -> Uuid
pub fn in_place_rollout(&self) -> bool
pub fn rollout_requested(&self) -> bool
pub fn conditions_need_update(&self) -> bool
pub fn update_in_progress(&self) -> bool
sourcepub fn meets_minimum_version(&self, minimum: &Version) -> bool
pub fn meets_minimum_version(&self, minimum: &Version) -> bool
Checks that the given version is greater than or equal to the existing version, if the existing version can be parsed.
pub fn managed_resource_meta(&self, name: String) -> ObjectMeta
pub fn status(&self) -> MaterializeStatus
Trait Implementations§
source§impl Clone for Materialize
impl Clone for Materialize
source§fn clone(&self) -> Materialize
fn clone(&self) -> Materialize
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl CustomResourceExt for Materialize
impl CustomResourceExt for Materialize
source§fn crd() -> CustomResourceDefinition
fn crd() -> CustomResourceDefinition
Helper to generate the CRD including the JsonSchema Read more
source§fn crd_name() -> &'static str
fn crd_name() -> &'static str
Helper to return the name of this
CustomResourceDefinition
in kubernetes. Read moresource§fn api_resource() -> ApiResource
fn api_resource() -> ApiResource
Helper to generate the api information type for use with the dynamic
Api
source§fn shortnames() -> &'static [&'static str]
fn shortnames() -> &'static [&'static str]
Shortnames of this resource type. Read more
source§impl Debug for Materialize
impl Debug for Materialize
source§impl<'de> Deserialize<'de> for Materialize
impl<'de> Deserialize<'de> for Materialize
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl HasSpec for Materialize
impl HasSpec for Materialize
§type Spec = MaterializeSpec
type Spec = MaterializeSpec
The type of the
spec
of this resourcesource§fn spec(&self) -> &MaterializeSpec
fn spec(&self) -> &MaterializeSpec
Returns a reference to the
spec
of the objectsource§fn spec_mut(&mut self) -> &mut MaterializeSpec
fn spec_mut(&mut self) -> &mut MaterializeSpec
Returns a mutable reference to the
spec
of the objectsource§impl HasStatus for Materialize
impl HasStatus for Materialize
§type Status = MaterializeStatus
type Status = MaterializeStatus
The type of the
status
objectsource§fn status(&self) -> Option<&MaterializeStatus>
fn status(&self) -> Option<&MaterializeStatus>
Returns an optional reference to the
status
of the objectsource§fn status_mut(&mut self) -> &mut Option<MaterializeStatus>
fn status_mut(&mut self) -> &mut Option<MaterializeStatus>
Returns an optional mutable reference to the
status
of the objectsource§impl JsonSchema for Materialize
impl JsonSchema for Materialize
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl Resource for Materialize
impl Resource for Materialize
§type DynamicType = ()
type DynamicType = ()
Type information for types that do not know their resource information at compile time. Read more
§type Scope = NamespaceResourceScope
type Scope = NamespaceResourceScope
Type information for the api scope of the resource when known at compile time Read more
source§fn meta(&self) -> &ObjectMeta
fn meta(&self) -> &ObjectMeta
Metadata that all persisted resources must have
source§fn meta_mut(&mut self) -> &mut ObjectMeta
fn meta_mut(&mut self) -> &mut ObjectMeta
Metadata that all persisted resources must have
source§fn url_path(dt: &Self::DynamicType, namespace: Option<&str>) -> String
fn url_path(dt: &Self::DynamicType, namespace: Option<&str>) -> String
Creates a url path for http requests for this resource
source§fn object_ref(&self, dt: &Self::DynamicType) -> ObjectReference
fn object_ref(&self, dt: &Self::DynamicType) -> ObjectReference
Generates an object reference for the resource
source§fn controller_owner_ref(&self, dt: &Self::DynamicType) -> Option<OwnerReference>
fn controller_owner_ref(&self, dt: &Self::DynamicType) -> Option<OwnerReference>
Generates a controller owner reference pointing to this resource Read more
source§fn owner_ref(&self, dt: &Self::DynamicType) -> Option<OwnerReference>
fn owner_ref(&self, dt: &Self::DynamicType) -> Option<OwnerReference>
Generates an owner reference pointing to this resource Read more
Auto Trait Implementations§
impl Freeze for Materialize
impl RefUnwindSafe for Materialize
impl Send for Materialize
impl Sync for Materialize
impl Unpin for Materialize
impl UnwindSafe for Materialize
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
source§impl<K> Lookup for Kwhere
K: Resource,
impl<K> Lookup for Kwhere
K: Resource,
§type DynamicType = <K as Resource>::DynamicType
type DynamicType = <K as Resource>::DynamicType
Type information for types that do not know their resource information at compile time.
This is equivalent to
Resource::DynamicType
.source§fn resource_version(&self) -> Option<Cow<'_, str>>
fn resource_version(&self) -> Option<Cow<'_, str>>
The resource version of the object.
source§fn api_version(dyntype: &Self::DynamicType) -> Cow<'_, str>
fn api_version(dyntype: &Self::DynamicType) -> Cow<'_, str>
The apiVersion for this object.
source§fn to_object_ref(&self, dyntype: Self::DynamicType) -> ObjectRef<Self>
fn to_object_ref(&self, dyntype: Self::DynamicType) -> ObjectRef<Self>
Constructs an
ObjectRef
for this object.source§impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> ProgressEventTimestamp for T
impl<T> ProgressEventTimestamp for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
See
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
See
RustType::into_proto
.source§impl<K> ResourceExt for Kwhere
K: Resource,
impl<K> ResourceExt for Kwhere
K: Resource,
source§fn name_unchecked(&self) -> String
fn name_unchecked(&self) -> String
Returns the name of the resource, panicking if it is unset Read more
source§fn resource_version(&self) -> Option<String>
fn resource_version(&self) -> Option<String>
The resource version
source§fn uid(&self) -> Option<String>
fn uid(&self) -> Option<String>
Unique ID (if you delete resource and then create a new
resource with the same name, it will have different ID)
source§fn labels_mut(&mut self) -> &mut BTreeMap<String, String>
fn labels_mut(&mut self) -> &mut BTreeMap<String, String>
Provides mutable access to the labels
source§fn annotations_mut(&mut self) -> &mut BTreeMap<String, String>
fn annotations_mut(&mut self) -> &mut BTreeMap<String, String>
Provider mutable access to the annotations
source§fn owner_references(&self) -> &[OwnerReference]
fn owner_references(&self) -> &[OwnerReference]
Returns resource owner references
source§fn owner_references_mut(&mut self) -> &mut Vec<OwnerReference>
fn owner_references_mut(&mut self) -> &mut Vec<OwnerReference>
Provides mutable access to the owner references
source§fn finalizers(&self) -> &[String]
fn finalizers(&self) -> &[String]
Returns resource finalizers
source§fn finalizers_mut(&mut self) -> &mut Vec<String>
fn finalizers_mut(&mut self) -> &mut Vec<String>
Provides mutable access to the finalizers
source§fn managed_fields(&self) -> &[ManagedFieldsEntry]
fn managed_fields(&self) -> &[ManagedFieldsEntry]
Returns managed fields
source§fn managed_fields_mut(&mut self) -> &mut Vec<ManagedFieldsEntry>
fn managed_fields_mut(&mut self) -> &mut Vec<ManagedFieldsEntry>
Provides mutable access to managed fields
source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.