pub struct DisableServiceAccountKeyRequest {
pub extended_status_message: Option<String>,
pub service_account_key_disable_reason: Option<String>,
}
Expand description
The service account key disable request.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- service accounts keys disable projects (request)
Fields§
§extended_status_message: Option<String>
Optional. Usable by internal google services only. An extended_status_message can be used to include additional information about the key, such as its private key data being exposed on a public repository like GitHub.
service_account_key_disable_reason: Option<String>
Optional. Describes the reason this key is being disabled. If unspecified, the default value of SERVICE_ACCOUNT_KEY_DISABLE_REASON_USER_INITIATED will be used.
Trait Implementations§
Source§impl Clone for DisableServiceAccountKeyRequest
impl Clone for DisableServiceAccountKeyRequest
Source§fn clone(&self) -> DisableServiceAccountKeyRequest
fn clone(&self) -> DisableServiceAccountKeyRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DisableServiceAccountKeyRequest
impl Default for DisableServiceAccountKeyRequest
Source§fn default() -> DisableServiceAccountKeyRequest
fn default() -> DisableServiceAccountKeyRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DisableServiceAccountKeyRequest
impl<'de> Deserialize<'de> for DisableServiceAccountKeyRequest
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
impl RequestValue for DisableServiceAccountKeyRequest
Auto Trait Implementations§
impl Freeze for DisableServiceAccountKeyRequest
impl RefUnwindSafe for DisableServiceAccountKeyRequest
impl Send for DisableServiceAccountKeyRequest
impl Sync for DisableServiceAccountKeyRequest
impl Unpin for DisableServiceAccountKeyRequest
impl UnwindSafe for DisableServiceAccountKeyRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more