pub struct VaultWorkloadIdentityUpgradeCheck {
pub jobs_without_vault_identity: Vec<JobListStub>,
pub outdated_nodes: Vec<NodeListStub>,
pub vault_tokens: Vec<VaultAccessor>,
}
Expand description
VaultWorkloadIdentityUpgradeCheck is the result of verifying if the cluster is ready to switch to workload identities for Vault.
This struct was generated based on the Go types of the official Nomad API client.
Fields§
§jobs_without_vault_identity: Vec<JobListStub>
JobsWithoutVaultIdentity is the list of jobs that have a vault
block
but do not have an identity
for Vault.
outdated_nodes: Vec<NodeListStub>
OutdatedNodes is the list of nodes running a version of Nomad that does not support workload identities for Vault.
vault_tokens: Vec<VaultAccessor>
VaultTokens is the list of Vault ACL token accessors that Nomad created and will no longer manage after the cluster is migrated to workload identities.
Trait Implementations§
Source§impl Clone for VaultWorkloadIdentityUpgradeCheck
impl Clone for VaultWorkloadIdentityUpgradeCheck
Source§fn clone(&self) -> VaultWorkloadIdentityUpgradeCheck
fn clone(&self) -> VaultWorkloadIdentityUpgradeCheck
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<'de> Deserialize<'de> for VaultWorkloadIdentityUpgradeCheck
impl<'de> Deserialize<'de> for VaultWorkloadIdentityUpgradeCheck
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 VaultWorkloadIdentityUpgradeCheck
impl PartialEq for VaultWorkloadIdentityUpgradeCheck
Source§fn eq(&self, other: &VaultWorkloadIdentityUpgradeCheck) -> bool
fn eq(&self, other: &VaultWorkloadIdentityUpgradeCheck) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for VaultWorkloadIdentityUpgradeCheck
Auto Trait Implementations§
impl Freeze for VaultWorkloadIdentityUpgradeCheck
impl RefUnwindSafe for VaultWorkloadIdentityUpgradeCheck
impl Send for VaultWorkloadIdentityUpgradeCheck
impl Sync for VaultWorkloadIdentityUpgradeCheck
impl Unpin for VaultWorkloadIdentityUpgradeCheck
impl UnwindSafe for VaultWorkloadIdentityUpgradeCheck
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