pub struct IoArgoprojWorkflowV1alpha1ArtifactRepository {
pub archive_logs: Option<bool>,
pub artifactory: Option<IoArgoprojWorkflowV1alpha1ArtifactoryArtifactRepository>,
pub azure: Option<IoArgoprojWorkflowV1alpha1AzureArtifactRepository>,
pub gcs: Option<IoArgoprojWorkflowV1alpha1GcsArtifactRepository>,
pub hdfs: Option<IoArgoprojWorkflowV1alpha1HdfsArtifactRepository>,
pub oss: Option<IoArgoprojWorkflowV1alpha1OssArtifactRepository>,
pub s3: Option<IoArgoprojWorkflowV1alpha1S3ArtifactRepository>,
}Expand description
ArtifactRepository represents an artifact repository in which a controller will store its artifacts
Fields§
§archive_logs: Option<bool>ArchiveLogs enables log archiving
artifactory: Option<IoArgoprojWorkflowV1alpha1ArtifactoryArtifactRepository>Artifactory stores artifacts to JFrog Artifactory
azure: Option<IoArgoprojWorkflowV1alpha1AzureArtifactRepository>Azure stores artifact in an Azure Storage account
gcs: Option<IoArgoprojWorkflowV1alpha1GcsArtifactRepository>GCS stores artifact in a GCS object store
hdfs: Option<IoArgoprojWorkflowV1alpha1HdfsArtifactRepository>HDFS stores artifacts in HDFS
oss: Option<IoArgoprojWorkflowV1alpha1OssArtifactRepository>OSS stores artifact in a OSS-compliant object store
s3: Option<IoArgoprojWorkflowV1alpha1S3ArtifactRepository>S3 stores artifact in a S3-compliant object store
Trait Implementations§
Source§impl Clone for IoArgoprojWorkflowV1alpha1ArtifactRepository
impl Clone for IoArgoprojWorkflowV1alpha1ArtifactRepository
Source§fn clone(&self) -> IoArgoprojWorkflowV1alpha1ArtifactRepository
fn clone(&self) -> IoArgoprojWorkflowV1alpha1ArtifactRepository
Returns a duplicate 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 IoArgoprojWorkflowV1alpha1ArtifactRepository
impl<'de> Deserialize<'de> for IoArgoprojWorkflowV1alpha1ArtifactRepository
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 From<&IoArgoprojWorkflowV1alpha1ArtifactRepository> for IoArgoprojWorkflowV1alpha1ArtifactRepository
impl From<&IoArgoprojWorkflowV1alpha1ArtifactRepository> for IoArgoprojWorkflowV1alpha1ArtifactRepository
Source§fn from(value: &IoArgoprojWorkflowV1alpha1ArtifactRepository) -> Self
fn from(value: &IoArgoprojWorkflowV1alpha1ArtifactRepository) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IoArgoprojWorkflowV1alpha1ArtifactRepository
impl RefUnwindSafe for IoArgoprojWorkflowV1alpha1ArtifactRepository
impl Send for IoArgoprojWorkflowV1alpha1ArtifactRepository
impl Sync for IoArgoprojWorkflowV1alpha1ArtifactRepository
impl Unpin for IoArgoprojWorkflowV1alpha1ArtifactRepository
impl UnwindSafe for IoArgoprojWorkflowV1alpha1ArtifactRepository
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