pub struct ListTargets {
pub filter: Option<String>,
pub json: Option<bool>,
pub pagination_token: Option<String>,
pub token: Option<String>,
pub type: Option<Vec<String>>,
pub uid_token: Option<String>,
}Expand description
ListTargets : listTargets is a command that returns a list of targets. [Deprecated: Use target-list command]
Fields§
§filter: Option<String>Filter by auth method name or part of it
json: Option<bool>Set output format to JSON
pagination_token: Option<String>Next page reference
token: Option<String>Authentication token (see /auth and /configure)
type: Option<Vec<String>>The target types list . In case it is empty, all types of targets will be returned. options: [hanadb cassandra aws ssh gke eks mysql mongodb snowflake mssql redshift artifactory azure rabbitmq k8s venafi gcp oracle dockerhub ldap github chef web salesforce postgres]
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Source§impl ListTargets
impl ListTargets
Sourcepub fn new() -> ListTargets
pub fn new() -> ListTargets
listTargets is a command that returns a list of targets. [Deprecated: Use target-list command]
Trait Implementations§
Source§impl Clone for ListTargets
impl Clone for ListTargets
Source§fn clone(&self) -> ListTargets
fn clone(&self) -> ListTargets
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListTargets
impl Debug for ListTargets
Source§impl Default for ListTargets
impl Default for ListTargets
Source§fn default() -> ListTargets
fn default() -> ListTargets
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTargets
impl<'de> Deserialize<'de> for ListTargets
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListTargets
impl PartialEq for ListTargets
Source§fn eq(&self, other: &ListTargets) -> bool
fn eq(&self, other: &ListTargets) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ListTargets
impl Serialize for ListTargets
impl StructuralPartialEq for ListTargets
Auto Trait Implementations§
impl Freeze for ListTargets
impl RefUnwindSafe for ListTargets
impl Send for ListTargets
impl Sync for ListTargets
impl Unpin for ListTargets
impl UnsafeUnpin for ListTargets
impl UnwindSafe for ListTargets
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more