pub struct RotatedSecretUpdateSsh {Show 36 fields
pub add_tag: Option<Vec<String>>,
pub authentication_credentials: Option<String>,
pub auto_rotate: Option<String>,
pub delete_protection: Option<String>,
pub description: Option<String>,
pub item_custom_fields: Option<HashMap<String, String>>,
pub json: Option<bool>,
pub keep_prev_version: Option<String>,
pub key: Option<String>,
pub key_data_base64: Option<String>,
pub max_versions: Option<String>,
pub name: String,
pub new_name: Option<String>,
pub password_length: Option<String>,
pub public_key_remote_path: Option<String>,
pub rm_tag: Option<Vec<String>>,
pub rotate_after_disconnect: Option<String>,
pub rotated_password: Option<String>,
pub rotated_username: Option<String>,
pub rotation_event_in: Option<Vec<String>>,
pub rotation_hour: Option<i32>,
pub rotation_interval: Option<String>,
pub rotator_custom_cmd: Option<String>,
pub rotator_type: String,
pub same_password: Option<String>,
pub secure_access_allow_external_user: Option<bool>,
pub secure_access_bastion_issuer: Option<String>,
pub secure_access_certificate_issuer: Option<String>,
pub secure_access_enable: Option<String>,
pub secure_access_host: Option<Vec<String>>,
pub secure_access_rdp_domain: Option<String>,
pub secure_access_rdp_user: Option<String>,
pub secure_access_ssh_user: Option<String>,
pub secure_access_target_type: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Fields§
§add_tag: Option<Vec<String>>List of the new tags that will be attached to this item
authentication_credentials: Option<String>The credentials to connect with use-user-creds/use-target-creds
auto_rotate: Option<String>Whether to automatically rotate every –rotation-interval days, or disable existing automatic rotation [true/false]
delete_protection: Option<String>Protection from accidental deletion of this object [true/false]
description: Option<String>Description of the object
item_custom_fields: Option<HashMap<String, String>>Additional custom fields to associate with the item
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 secret value (if empty, the account default protectionKey key will be used)
key_data_base64: Option<String>Private key file contents encoded using base64
max_versions: Option<String>Set the maximum number of versions, limited by the account settings defaults.
name: StringRotated secret name
new_name: Option<String>New item name
password_length: Option<String>The length of the password to be generated
public_key_remote_path: Option<String>The path to the public key that will be rotated on the server
rm_tag: Option<Vec<String>>List of the existent tags that will be removed from this item
rotate_after_disconnect: Option<String>Rotate the value of the secret after SRA session ends [true/false]
rotated_password: Option<String>rotated-username password (relevant only for rotator-type=password)
rotated_username: Option<String>username to be rotated, if selected use-self-creds at rotator-creds-type, this username will try to rotate it’s own password, if use-target-creds is selected, target credentials will be use to rotate the rotated-password (relevant only for rotator-type=password)
rotation_event_in: Option<Vec<String>>How many days before the rotation of the item would you like to be notified
rotation_hour: Option<i32>The Hour of the rotation in UTC
rotation_interval: Option<String>The number of days to wait between every automatic key rotation (1-365)
rotator_custom_cmd: Option<String>Custom rotation command
rotator_type: StringThe rotator type. options: [target/password/key]
same_password: Option<String>Rotate same password for each host from the Linked Target (relevant only for Linked Target)
secure_access_allow_external_user: Option<bool>Allow providing external user for a domain users
secure_access_bastion_issuer: Option<String>Deprecated. use secure-access-certificate-issuer
secure_access_certificate_issuer: Option<String>Path to the SSH Certificate Issuer for your Akeyless Secure Access
secure_access_enable: Option<String>Enable/Disable secure remote access [true/false]
secure_access_host: Option<Vec<String>>Target servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts - Relevant only for Dynamic Secrets/producers)
secure_access_rdp_domain: Option<String>Default domain name server. i.e. microsoft.com
secure_access_rdp_user: Option<String>Override the RDP Domain username
secure_access_ssh_user: Option<String>Override the SSH username as indicated in SSH Certificate Issuer
secure_access_target_type: Option<String>Specify target type. Options are ssh or rdp
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 RotatedSecretUpdateSsh
impl RotatedSecretUpdateSsh
pub fn new(name: String, rotator_type: String) -> RotatedSecretUpdateSsh
Trait Implementations§
Source§impl Clone for RotatedSecretUpdateSsh
impl Clone for RotatedSecretUpdateSsh
Source§fn clone(&self) -> RotatedSecretUpdateSsh
fn clone(&self) -> RotatedSecretUpdateSsh
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 RotatedSecretUpdateSsh
impl Debug for RotatedSecretUpdateSsh
Source§impl Default for RotatedSecretUpdateSsh
impl Default for RotatedSecretUpdateSsh
Source§fn default() -> RotatedSecretUpdateSsh
fn default() -> RotatedSecretUpdateSsh
Source§impl<'de> Deserialize<'de> for RotatedSecretUpdateSsh
impl<'de> Deserialize<'de> for RotatedSecretUpdateSsh
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 RotatedSecretUpdateSsh
impl PartialEq for RotatedSecretUpdateSsh
Source§fn eq(&self, other: &RotatedSecretUpdateSsh) -> bool
fn eq(&self, other: &RotatedSecretUpdateSsh) -> bool
self and other values to be equal, and is used by ==.