Struct k8s_openapi::CreateOptional
source · [−]pub struct CreateOptional<'a> {
pub dry_run: Option<&'a str>,
pub field_manager: Option<&'a str>,
pub field_validation: Option<&'a str>,
}
Expand description
Common parameters for all create operations.
Fields
dry_run: Option<&'a str>
When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
field_manager: Option<&'a str>
fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
field_validation: Option<&'a str>
fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the ServerSideFieldValidation
feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the ServerSideFieldValidation
feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the ServerSideFieldValidation
feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
Trait Implementations
sourceimpl<'a> Clone for CreateOptional<'a>
impl<'a> Clone for CreateOptional<'a>
sourcefn clone(&self) -> CreateOptional<'a>
fn clone(&self) -> CreateOptional<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for CreateOptional<'a>
impl<'a> Debug for CreateOptional<'a>
sourceimpl<'a> Default for CreateOptional<'a>
impl<'a> Default for CreateOptional<'a>
sourcefn default() -> CreateOptional<'a>
fn default() -> CreateOptional<'a>
Returns the “default value” for a type. Read more
sourceimpl<'a> PartialEq<CreateOptional<'a>> for CreateOptional<'a>
impl<'a> PartialEq<CreateOptional<'a>> for CreateOptional<'a>
sourcefn eq(&self, other: &CreateOptional<'a>) -> bool
fn eq(&self, other: &CreateOptional<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl<'a> Copy for CreateOptional<'a>
impl<'a> StructuralPartialEq for CreateOptional<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for CreateOptional<'a>
impl<'a> Send for CreateOptional<'a>
impl<'a> Sync for CreateOptional<'a>
impl<'a> Unpin for CreateOptional<'a>
impl<'a> UnwindSafe for CreateOptional<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more