pub struct TargetUpdatePing {Show 14 fields
pub administrative_port: Option<String>,
pub authorization_port: Option<String>,
pub description: 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 password: Option<String>,
pub ping_url: Option<String>,
pub privileged_user: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Expand description
TargetUpdatePing : targetUpdatePing is a command that updates an existing ping target
Fields§
§administrative_port: Option<String>Ping Federate administrative port
Ping Federate authorization port
description: Option<String>Description of the object
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
password: Option<String>Ping Federate privileged user password
ping_url: Option<String>Ping URL
privileged_user: Option<String>Ping Federate privileged user
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Source§impl TargetUpdatePing
impl TargetUpdatePing
Sourcepub fn new(name: String) -> TargetUpdatePing
pub fn new(name: String) -> TargetUpdatePing
targetUpdatePing is a command that updates an existing ping target
Trait Implementations§
Source§impl Clone for TargetUpdatePing
impl Clone for TargetUpdatePing
Source§fn clone(&self) -> TargetUpdatePing
fn clone(&self) -> TargetUpdatePing
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for TargetUpdatePing
impl Debug for TargetUpdatePing
Source§impl Default for TargetUpdatePing
impl Default for TargetUpdatePing
Source§fn default() -> TargetUpdatePing
fn default() -> TargetUpdatePing
Source§impl<'de> Deserialize<'de> for TargetUpdatePing
impl<'de> Deserialize<'de> for TargetUpdatePing
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>,
Source§impl PartialEq for TargetUpdatePing
impl PartialEq for TargetUpdatePing
Source§fn eq(&self, other: &TargetUpdatePing) -> bool
fn eq(&self, other: &TargetUpdatePing) -> bool
self and other values to be equal, and is used by ==.