pub struct TargetUpdateGke {Show 15 fields
pub description: Option<String>,
pub gke_account_key: Option<String>,
pub gke_cluster_cert: Option<String>,
pub gke_cluster_endpoint: Option<String>,
pub gke_cluster_name: Option<String>,
pub gke_service_account_email: Option<String>,
pub json: Option<bool>,
pub keep_prev_version: Option<String>,
pub key: Option<String>,
pub max_versions: Option<String>,
pub name: String,
pub new_name: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
pub use_gw_cloud_identity: Option<bool>,
}Fields§
§description: Option<String>Description of the object
gke_account_key: Option<String>GKE Service Account key file path
gke_cluster_cert: Option<String>GKE cluster CA certificate
gke_cluster_endpoint: Option<String>GKE cluster URL endpoint
gke_cluster_name: Option<String>GKE cluster name
gke_service_account_email: Option<String>GKE service account email
json: Option<bool>Set output format to JSON
keep_prev_version: Option<String>Whether to keep previous version [true/false]. If not set, use default according to account settings
key: Option<String>The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
max_versions: Option<String>Set the maximum number of versions, limited by the account settings defaults.
name: StringTarget name
new_name: Option<String>New target name
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
use_gw_cloud_identity: Option<bool>Implementations§
Source§impl TargetUpdateGke
impl TargetUpdateGke
pub fn new(name: String) -> TargetUpdateGke
Trait Implementations§
Source§impl Clone for TargetUpdateGke
impl Clone for TargetUpdateGke
Source§fn clone(&self) -> TargetUpdateGke
fn clone(&self) -> TargetUpdateGke
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TargetUpdateGke
impl Debug for TargetUpdateGke
Source§impl Default for TargetUpdateGke
impl Default for TargetUpdateGke
Source§fn default() -> TargetUpdateGke
fn default() -> TargetUpdateGke
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TargetUpdateGke
impl<'de> Deserialize<'de> for TargetUpdateGke
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 PartialEq for TargetUpdateGke
impl PartialEq for TargetUpdateGke
Source§fn eq(&self, other: &TargetUpdateGke) -> bool
fn eq(&self, other: &TargetUpdateGke) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TargetUpdateGke
impl Serialize for TargetUpdateGke
impl StructuralPartialEq for TargetUpdateGke
Auto Trait Implementations§
impl Freeze for TargetUpdateGke
impl RefUnwindSafe for TargetUpdateGke
impl Send for TargetUpdateGke
impl Sync for TargetUpdateGke
impl Unpin for TargetUpdateGke
impl UnsafeUnpin for TargetUpdateGke
impl UnwindSafe for TargetUpdateGke
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