#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct ContainerizedExtractor {
#[serde(rename = "rid")]
rid: super::ContainerizedExtractorRid,
#[builder(into)]
#[serde(rename = "name")]
name: String,
#[builder(default, into)]
#[serde(rename = "description", skip_serializing_if = "Option::is_none", default)]
description: Option<String>,
#[builder(custom(type = super::DockerImageSource, convert = Box::new))]
#[serde(rename = "image")]
image: Box<super::DockerImageSource>,
#[builder(default, into)]
#[serde(
rename = "containerImageRid",
skip_serializing_if = "Option::is_none",
default
)]
container_image_rid: Option<super::super::super::api::rids::ContainerImageRid>,
#[builder(default, list(item(type = super::FileExtractionInput)))]
#[serde(rename = "inputs", skip_serializing_if = "Vec::is_empty", default)]
inputs: Vec<super::FileExtractionInput>,
#[builder(default, list(item(type = super::FileExtractionParameter)))]
#[serde(rename = "parameters", skip_serializing_if = "Vec::is_empty", default)]
parameters: Vec<super::FileExtractionParameter>,
#[builder(
default,
map(
key(type = super::super::super::api::PropertyName),
value(type = super::super::super::api::PropertyValue)
)
)]
#[serde(
rename = "properties",
skip_serializing_if = "std::collections::BTreeMap::is_empty",
default
)]
properties: std::collections::BTreeMap<
super::super::super::api::PropertyName,
super::super::super::api::PropertyValue,
>,
#[builder(default, set(item(type = super::super::super::api::Label)))]
#[serde(
rename = "labels",
skip_serializing_if = "std::collections::BTreeSet::is_empty",
default
)]
labels: std::collections::BTreeSet<super::super::super::api::Label>,
#[serde(rename = "createdAt")]
created_at: conjure_object::DateTime<conjure_object::Utc>,
#[serde(rename = "isArchived")]
is_archived: bool,
#[builder(
default,
custom(
type = impl
Into<Option<super::TimestampMetadata>>,
convert = |v|v.into().map(Box::new)
)
)]
#[serde(
rename = "timestampMetadata",
skip_serializing_if = "Option::is_none",
default
)]
timestamp_metadata: Option<Box<super::TimestampMetadata>>,
#[serde(rename = "outputFileFormat")]
output_file_format: super::FileOutputFormat,
}
impl ContainerizedExtractor {
#[inline]
pub fn rid(&self) -> &super::ContainerizedExtractorRid {
&self.rid
}
#[inline]
pub fn name(&self) -> &str {
&*self.name
}
#[inline]
pub fn description(&self) -> Option<&str> {
self.description.as_ref().map(|o| &**o)
}
#[deprecated(note = "Use containerImageRid for self-hosted images.")]
#[inline]
pub fn image(&self) -> &super::DockerImageSource {
&*self.image
}
#[inline]
pub fn container_image_rid(
&self,
) -> Option<&super::super::super::api::rids::ContainerImageRid> {
self.container_image_rid.as_ref().map(|o| &*o)
}
#[inline]
pub fn inputs(&self) -> &[super::FileExtractionInput] {
&*self.inputs
}
#[inline]
pub fn parameters(&self) -> &[super::FileExtractionParameter] {
&*self.parameters
}
#[inline]
pub fn properties(
&self,
) -> &std::collections::BTreeMap<
super::super::super::api::PropertyName,
super::super::super::api::PropertyValue,
> {
&self.properties
}
#[inline]
pub fn labels(
&self,
) -> &std::collections::BTreeSet<super::super::super::api::Label> {
&self.labels
}
#[inline]
pub fn created_at(&self) -> conjure_object::DateTime<conjure_object::Utc> {
self.created_at
}
#[inline]
pub fn is_archived(&self) -> bool {
self.is_archived
}
#[inline]
pub fn timestamp_metadata(&self) -> Option<&super::TimestampMetadata> {
self.timestamp_metadata.as_ref().map(|o| &**o)
}
#[inline]
pub fn output_file_format(&self) -> &super::FileOutputFormat {
&self.output_file_format
}
}