pub struct GoogleCloudDatapipelinesV1LaunchFlexTemplateParameter {
    pub container_spec_gcs_path: Option<String>,
    pub environment: Option<GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironment>,
    pub job_name: Option<String>,
    pub launch_options: Option<HashMap<String, String>>,
    pub parameters: Option<HashMap<String, String>>,
    pub transform_name_mappings: Option<HashMap<String, String>>,
    pub update: Option<bool>,
}
Expand description

Launch Flex Template parameter.

This type is not used in any activity, and only used as part of another schema.

Fields

container_spec_gcs_path: Option<String>

Cloud Storage path to a file with a JSON-serialized ContainerSpec as content.

environment: Option<GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironment>

The runtime environment for the Flex Template job.

job_name: Option<String>

Required. The job name to use for the created job. For an update job request, the job name should be the same as the existing running job.

launch_options: Option<HashMap<String, String>>

Launch options for this Flex Template job. This is a common set of options across languages and templates. This should not be used to pass job parameters.

parameters: Option<HashMap<String, String>>

The parameters for the Flex Template. Example: {"num_workers":"5"}

transform_name_mappings: Option<HashMap<String, String>>

Use this to pass transform name mappings for streaming update jobs. Example: {"oldTransformName":"newTransformName",...}

update: Option<bool>

Set this to true if you are sending a request to update a running streaming job. When set, the job name should be the same as the running job.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more