pub struct GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime {
pub image: Option<String>,
pub java_jars: Option<Vec<String>>,
pub properties: Option<HashMap<String, String>>,
pub python_packages: Option<Vec<String>>,
}
Expand description
Container Image Runtime Configuration used with Batch execution.
This type is not used in any activity, and only used as part of another schema.
Fields§
§image: Option<String>
Optional. Container image to use.
java_jars: Option<Vec<String>>
Optional. A list of Java JARS to add to the classpath. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar
properties: Option<HashMap<String, String>>
Optional. Override to common configuration of open source components installed on the Dataproc cluster. The properties to set on daemon config files. Property keys are specified in prefix:property format, for example core:hadoop.tmp.dir. For more information, see Cluster properties (https://cloud.google.com/dataproc/docs/concepts/cluster-properties).
python_packages: Option<Vec<String>>
Optional. A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
impl Clone for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
Source§fn clone(
&self,
) -> GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
fn clone( &self, ) -> GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
impl Default for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
Source§fn default() -> GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
fn default() -> GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
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>,
impl Part for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
impl RefUnwindSafe for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
impl Send for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
impl Sync for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
impl Unpin for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
impl UnwindSafe for GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more