pub struct GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig {
pub kms_key: Option<String>,
}
Expand description
Encryption settings for encrypting workflow template job arguments.
This type is not used in any activity, and only used as part of another schema.
Fields§
§kms_key: Option<String>
Optional. The Cloud KMS key name to use for encrypting workflow template job arguments.When this this key is provided, the following workflow template job arguments (https://cloud.google.com/dataproc/docs/concepts/workflows/use-workflows#adding_jobs_to_a_template), if present, are CMEK encrypted (https://cloud.google.com/dataproc/docs/concepts/configuring-clusters/customer-managed-encryption#use_cmek_with_workflow_template_data): FlinkJob args (https://cloud.google.com/dataproc/docs/reference/rest/v1/FlinkJob) HadoopJob args (https://cloud.google.com/dataproc/docs/reference/rest/v1/HadoopJob) SparkJob args (https://cloud.google.com/dataproc/docs/reference/rest/v1/SparkJob) SparkRJob args (https://cloud.google.com/dataproc/docs/reference/rest/v1/SparkRJob) PySparkJob args (https://cloud.google.com/dataproc/docs/reference/rest/v1/PySparkJob) SparkSqlJob (https://cloud.google.com/dataproc/docs/reference/rest/v1/SparkSqlJob) scriptVariables and queryList.queries HiveJob (https://cloud.google.com/dataproc/docs/reference/rest/v1/HiveJob) scriptVariables and queryList.queries PigJob (https://cloud.google.com/dataproc/docs/reference/rest/v1/PigJob) scriptVariables and queryList.queries PrestoJob (https://cloud.google.com/dataproc/docs/reference/rest/v1/PrestoJob) scriptVariables and queryList.queries
Trait Implementations§
Source§impl Clone for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
impl Clone for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
Source§fn clone(&self) -> GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
fn clone(&self) -> GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
impl Default for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
Source§fn default() -> GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
fn default() -> GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
Source§impl<'de> Deserialize<'de> for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
impl<'de> Deserialize<'de> for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
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 GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
Auto Trait Implementations§
impl Freeze for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
impl RefUnwindSafe for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
impl Send for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
impl Sync for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
impl Unpin for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
impl UnwindSafe for GoogleCloudDataprocV1WorkflowTemplateEncryptionConfig
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