#[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 RegisterContainerizedExtractorRequest {
#[builder(into)]
#[serde(rename = "name")]
name: String,
#[builder(default, into)]
#[serde(rename = "description", skip_serializing_if = "Option::is_none", default)]
description: Option<String>,
#[builder(
default,
custom(
type = impl
Into<Option<super::DockerImageSource>>,
convert = |v|v.into().map(Box::new)
)
)]
#[serde(rename = "image", skip_serializing_if = "Option::is_none", default)]
image: Option<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 = "workspace")]
workspace: super::super::super::api::rids::WorkspaceRid,
#[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>>,
#[builder(default, into)]
#[serde(
rename = "outputFileFormat",
skip_serializing_if = "Option::is_none",
default
)]
output_file_format: Option<super::FileOutputFormat>,
}
impl RegisterContainerizedExtractorRequest {
#[inline]
pub fn new(
name: impl Into<String>,
workspace: super::super::super::api::rids::WorkspaceRid,
) -> Self {
Self::builder().name(name).workspace(workspace).build()
}
#[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) -> Option<&super::DockerImageSource> {
self.image.as_ref().map(|o| &**o)
}
#[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 workspace(&self) -> &super::super::super::api::rids::WorkspaceRid {
&self.workspace
}
#[inline]
pub fn timestamp_metadata(&self) -> Option<&super::TimestampMetadata> {
self.timestamp_metadata.as_ref().map(|o| &**o)
}
#[inline]
pub fn output_file_format(&self) -> Option<&super::FileOutputFormat> {
self.output_file_format.as_ref().map(|o| &*o)
}
}