pub struct TargetUpdateSectigo {Show 16 fields
pub certificate_profile_id: i64,
pub customer_uri: String,
pub description: Option<String>,
pub external_requester: 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 organization_id: i64,
pub password: String,
pub timeout: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
pub username: String,
}Expand description
TargetUpdateSectigo : targetUpdateSectigo is a command that updates an existing Sectigo target
Fields§
§certificate_profile_id: i64Certificate Profile ID in Sectigo account
customer_uri: StringCustomer Uri of the Sectigo account
description: Option<String>Description of the object
external_requester: StringExternal Requester - a comma separated list of emails
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
organization_id: i64Organization ID in Sectigo account
password: StringPassword of the Sectigo account user
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
username: StringUsername of the Sectigo account
Implementations§
Trait Implementations§
Source§impl Clone for TargetUpdateSectigo
impl Clone for TargetUpdateSectigo
Source§fn clone(&self) -> TargetUpdateSectigo
fn clone(&self) -> TargetUpdateSectigo
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 TargetUpdateSectigo
impl Debug for TargetUpdateSectigo
Source§impl Default for TargetUpdateSectigo
impl Default for TargetUpdateSectigo
Source§fn default() -> TargetUpdateSectigo
fn default() -> TargetUpdateSectigo
Source§impl<'de> Deserialize<'de> for TargetUpdateSectigo
impl<'de> Deserialize<'de> for TargetUpdateSectigo
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 TargetUpdateSectigo
impl PartialEq for TargetUpdateSectigo
Source§fn eq(&self, other: &TargetUpdateSectigo) -> bool
fn eq(&self, other: &TargetUpdateSectigo) -> bool
self and other values to be equal, and is used by ==.