pub struct UpdateGodaddyTarget {Show 19 fields
pub api_key: String,
pub comment: Option<String>,
pub customer_id: Option<String>,
pub description: Option<String>,
pub imap_fqdn: String,
pub imap_password: String,
pub imap_port: Option<String>,
pub imap_username: 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 secret: String,
pub timeout: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
pub update_version: Option<bool>,
}Expand description
UpdateGodaddyTarget : updateGodaddyTarget is a command that updates an existing target. [Deprecated: Use target-update-godaddy command]
Fields§
§api_key: StringKey of the api credentials to the Godaddy account
comment: Option<String>Deprecated - use description
customer_id: Option<String>Customer ID (ShopperId) required for renewal of imported certificates
description: Option<String>Description of the object
imap_fqdn: StringImapFQDN of the IMAP service, FQDN or IPv4 address. Must be FQDN if the IMAP is using TLS
imap_password: StringImapPassword to access the IMAP service
imap_port: Option<String>ImapPort of the IMAP service
imap_username: StringImapUsername to access the IMAP service
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
secret: StringSecret of the api credentials to the Godaddy account
timeout: Option<String>Timeout waiting for certificate validation in Duration format (1h - 1 Hour, 20m - 20 Minutes, 33m3s - 33 Minutes and 3 Seconds), maximum 1h.
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
update_version: Option<bool>Deprecated
Implementations§
Trait Implementations§
Source§impl Clone for UpdateGodaddyTarget
impl Clone for UpdateGodaddyTarget
Source§fn clone(&self) -> UpdateGodaddyTarget
fn clone(&self) -> UpdateGodaddyTarget
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 UpdateGodaddyTarget
impl Debug for UpdateGodaddyTarget
Source§impl Default for UpdateGodaddyTarget
impl Default for UpdateGodaddyTarget
Source§fn default() -> UpdateGodaddyTarget
fn default() -> UpdateGodaddyTarget
Source§impl<'de> Deserialize<'de> for UpdateGodaddyTarget
impl<'de> Deserialize<'de> for UpdateGodaddyTarget
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 UpdateGodaddyTarget
impl PartialEq for UpdateGodaddyTarget
Source§fn eq(&self, other: &UpdateGodaddyTarget) -> bool
fn eq(&self, other: &UpdateGodaddyTarget) -> bool
self and other values to be equal, and is used by ==.