pub struct DynamicSecretUpdateCustom {Show 18 fields
pub admin_rotation_interval_days: Option<i64>,
pub create_sync_url: String,
pub delete_protection: Option<String>,
pub description: Option<String>,
pub enable_admin_rotation: Option<bool>,
pub item_custom_fields: Option<HashMap<String, String>>,
pub json: Option<bool>,
pub name: String,
pub new_name: Option<String>,
pub payload: Option<String>,
pub producer_encryption_key_name: Option<String>,
pub revoke_sync_url: String,
pub rotate_sync_url: Option<String>,
pub tags: Option<Vec<String>>,
pub timeout_sec: Option<i64>,
pub token: Option<String>,
pub uid_token: Option<String>,
pub user_ttl: Option<String>,
}Fields§
§admin_rotation_interval_days: Option<i64>Define rotation interval in days
create_sync_url: StringURL of an endpoint that implements /sync/create method, for example https://webhook.example.com/sync/create
delete_protection: Option<String>Protection from accidental deletion of this object [true/false]
description: Option<String>Description of the object
enable_admin_rotation: Option<bool>Should admin credentials be rotated
item_custom_fields: Option<HashMap<String, String>>Additional custom fields to associate with the item
json: Option<bool>Set output format to JSON
name: StringDynamic secret name
new_name: Option<String>Dynamic secret name
payload: Option<String>Secret payload to be sent with each create/revoke webhook request
producer_encryption_key_name: Option<String>Dynamic producer encryption key
revoke_sync_url: StringURL of an endpoint that implements /sync/revoke method, for example https://webhook.example.com/sync/revoke
rotate_sync_url: Option<String>URL of an endpoint that implements /sync/rotate method, for example https://webhook.example.com/sync/rotate
Add tags attached to this object
timeout_sec: Option<i64>Maximum allowed time in seconds for the webhook to return the results
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
user_ttl: Option<String>User TTL
Implementations§
Trait Implementations§
Source§impl Clone for DynamicSecretUpdateCustom
impl Clone for DynamicSecretUpdateCustom
Source§fn clone(&self) -> DynamicSecretUpdateCustom
fn clone(&self) -> DynamicSecretUpdateCustom
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 DynamicSecretUpdateCustom
impl Debug for DynamicSecretUpdateCustom
Source§impl Default for DynamicSecretUpdateCustom
impl Default for DynamicSecretUpdateCustom
Source§fn default() -> DynamicSecretUpdateCustom
fn default() -> DynamicSecretUpdateCustom
Source§impl<'de> Deserialize<'de> for DynamicSecretUpdateCustom
impl<'de> Deserialize<'de> for DynamicSecretUpdateCustom
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 DynamicSecretUpdateCustom
impl PartialEq for DynamicSecretUpdateCustom
Source§fn eq(&self, other: &DynamicSecretUpdateCustom) -> bool
fn eq(&self, other: &DynamicSecretUpdateCustom) -> bool
self and other values to be equal, and is used by ==.