pub struct RuntimeMetadata {
pub last_synced_env_vars_hash: Option<String>,
pub prepared_stack: Option<Stack>,
pub registry_access_granted: bool,
pub delete_scope: Option<DeleteScope>,
pub pending_delete_scope: Option<DeleteScope>,
}Expand description
Runtime metadata for deployment
Stores deployment state that needs to persist across step calls.
Fields§
§last_synced_env_vars_hash: Option<String>Hash of the environment variables snapshot that was last synced to the vault Used to avoid redundant sync operations during incremental deployment
prepared_stack: Option<Stack>The prepared (mutated) stack from the last successful deployment phase This is the stack AFTER mutations have been applied (with service accounts, vault, etc.) Used for compatibility checks during updates to compare mutated stacks
registry_access_granted: boolWhether cross-account registry access has been successfully granted. Set to true after the manager successfully sets the ECR/GAR repo policy for this deployment’s target account. Prevents redundant API calls on every reconcile tick.
delete_scope: Option<DeleteScope>Scope selected by the caller that requested deletion.
pending_delete_scope: Option<DeleteScope>Delete scope requested while another actor owns the deployment lock.
The lock owner consumes this on its next reconcile and yields to deletion without overwriting the queued delete request.
Trait Implementations§
Source§impl Clone for RuntimeMetadata
impl Clone for RuntimeMetadata
Source§fn clone(&self) -> RuntimeMetadata
fn clone(&self) -> RuntimeMetadata
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 RuntimeMetadata
impl Debug for RuntimeMetadata
Source§impl Default for RuntimeMetadata
impl Default for RuntimeMetadata
Source§fn default() -> RuntimeMetadata
fn default() -> RuntimeMetadata
Source§impl<'de> Deserialize<'de> for RuntimeMetadata
impl<'de> Deserialize<'de> for RuntimeMetadata
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 RuntimeMetadata
impl PartialEq for RuntimeMetadata
Source§fn eq(&self, other: &RuntimeMetadata) -> bool
fn eq(&self, other: &RuntimeMetadata) -> bool
self and other values to be equal, and is used by ==.Source§impl Serialize for RuntimeMetadata
impl Serialize for RuntimeMetadata
impl Eq for RuntimeMetadata
impl StructuralPartialEq for RuntimeMetadata
Auto Trait Implementations§
impl Freeze for RuntimeMetadata
impl !RefUnwindSafe for RuntimeMetadata
impl Send for RuntimeMetadata
impl Sync for RuntimeMetadata
impl Unpin for RuntimeMetadata
impl UnsafeUnpin for RuntimeMetadata
impl !UnwindSafe for RuntimeMetadata
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.