pub enum ServiceAccountApiToken {
Status(AccountNamedOpt),
Generate {
aopts: AccountCommonOpt,
copt: CommonOpt,
label: String,
expiry: Option<String>,
read_write: bool,
},
Destroy {
aopts: AccountCommonOpt,
copt: CommonOpt,
token_id: Uuid,
},
}
Variants
Status(AccountNamedOpt)
Show the status of api tokens associated to this service account.
Generate
Fields
aopts: AccountCommonOpt
copt: CommonOpt
label: String
A string describing the token. This is not used to identify the token, it is only for human description of the tokens purpose.
expiry: Option<String>
An optional rfc3339 time of the format “YYYY-MM-DDTHH:MM:SS+TZ”, “2020-09-25T11:22:02+10:00”. After this time the api token will no longer be valid.
read_write: bool
Generate a new api token for this service account.
Destroy
Destroy / revoke an api token from this service account. Access to the token is NOT required, only the tag/uuid of the token.
Trait Implementations
sourceimpl Debug for ServiceAccountApiToken
impl Debug for ServiceAccountApiToken
sourceimpl FromArgMatches for ServiceAccountApiToken
impl FromArgMatches for ServiceAccountApiToken
sourcefn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
sourcefn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
sourcefn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
Assign values from
ArgMatches
to self
.sourcefn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
Assign values from
ArgMatches
to self
.sourceimpl Subcommand for ServiceAccountApiToken
impl Subcommand for ServiceAccountApiToken
sourcefn augment_subcommands<'b>(__clap_app: Command<'b>) -> Command<'b>
fn augment_subcommands<'b>(__clap_app: Command<'b>) -> Command<'b>
sourcefn augment_subcommands_for_update<'b>(__clap_app: Command<'b>) -> Command<'b>
fn augment_subcommands_for_update<'b>(__clap_app: Command<'b>) -> Command<'b>
sourcefn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self
can parse a specific subcommandAuto Trait Implementations
impl RefUnwindSafe for ServiceAccountApiToken
impl Send for ServiceAccountApiToken
impl Sync for ServiceAccountApiToken
impl Unpin for ServiceAccountApiToken
impl UnwindSafe for ServiceAccountApiToken
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more