pub struct DynamicSecretCreateDockerhub {Show 14 fields
pub delete_protection: Option<String>,
pub description: Option<String>,
pub dockerhub_password: Option<String>,
pub dockerhub_token_scopes: Option<String>,
pub dockerhub_username: Option<String>,
pub item_custom_fields: Option<HashMap<String, String>>,
pub json: Option<bool>,
pub name: String,
pub producer_encryption_key_name: Option<String>,
pub tags: Option<Vec<String>>,
pub target_name: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
pub user_ttl: Option<String>,
}Expand description
DynamicSecretCreateDockerhub : dynamicSecretCreateDockerhub is a command that creates a DOCKERHUB dynamic secret
Fields§
§delete_protection: Option<String>Protection from accidental deletion of this object [true/false]
description: Option<String>Description of the object
dockerhub_password: Option<String>DockerhubPassword is either the user’s password access token to manage the repository
dockerhub_token_scopes: Option<String>Access token scopes list (comma-separated) to give the dynamic secret valid options are in "repo:admin", "repo:write", "repo:read", "repo:public_read"
dockerhub_username: Option<String>DockerhubUsername is the name of the user in dockerhub
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
producer_encryption_key_name: Option<String>Dynamic producer encryption key
Add tags attached to this object
target_name: Option<String>Target name
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§
Source§impl DynamicSecretCreateDockerhub
impl DynamicSecretCreateDockerhub
Sourcepub fn new(name: String) -> DynamicSecretCreateDockerhub
pub fn new(name: String) -> DynamicSecretCreateDockerhub
dynamicSecretCreateDockerhub is a command that creates a DOCKERHUB dynamic secret
Trait Implementations§
Source§impl Clone for DynamicSecretCreateDockerhub
impl Clone for DynamicSecretCreateDockerhub
Source§fn clone(&self) -> DynamicSecretCreateDockerhub
fn clone(&self) -> DynamicSecretCreateDockerhub
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 DynamicSecretCreateDockerhub
impl Debug for DynamicSecretCreateDockerhub
Source§impl Default for DynamicSecretCreateDockerhub
impl Default for DynamicSecretCreateDockerhub
Source§fn default() -> DynamicSecretCreateDockerhub
fn default() -> DynamicSecretCreateDockerhub
Source§impl<'de> Deserialize<'de> for DynamicSecretCreateDockerhub
impl<'de> Deserialize<'de> for DynamicSecretCreateDockerhub
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 DynamicSecretCreateDockerhub
impl PartialEq for DynamicSecretCreateDockerhub
Source§fn eq(&self, other: &DynamicSecretCreateDockerhub) -> bool
fn eq(&self, other: &DynamicSecretCreateDockerhub) -> bool
self and other values to be equal, and is used by ==.