Struct k8s_openapi::PatchOptional
source · pub struct PatchOptional<'a> {
pub dry_run: Option<&'a str>,
pub field_manager: Option<&'a str>,
pub field_validation: Option<&'a str>,
pub force: Option<bool>,
}
Expand description
Common parameters for all patch 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. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
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.
force: Option<bool>
Force is going to “force” Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
Trait Implementations§
source§impl<'a> Clone for PatchOptional<'a>
impl<'a> Clone for PatchOptional<'a>
source§fn clone(&self) -> PatchOptional<'a>
fn clone(&self) -> PatchOptional<'a>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'a> Debug for PatchOptional<'a>
impl<'a> Debug for PatchOptional<'a>
source§impl<'a> Default for PatchOptional<'a>
impl<'a> Default for PatchOptional<'a>
source§fn default() -> PatchOptional<'a>
fn default() -> PatchOptional<'a>
source§impl<'a> PartialEq<PatchOptional<'a>> for PatchOptional<'a>
impl<'a> PartialEq<PatchOptional<'a>> for PatchOptional<'a>
source§fn eq(&self, other: &PatchOptional<'a>) -> bool
fn eq(&self, other: &PatchOptional<'a>) -> bool
self
and other
values to be equal, and is used
by ==
.