pub struct GoogleCloudDataplexV1RunTaskRequest {
pub args: Option<HashMap<String, String>>,
pub labels: Option<HashMap<String, String>>,
}Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations lakes tasks run projects (request)
Fields§
§args: Option<HashMap<String, String>>Optional. Execution spec arguments. If the map is left empty, the task will run with existing execution spec args from task definition. If the map contains an entry with a new key, the same will be added to existing set of args. If the map contains an entry with an existing arg key in task definition, the task will run with new arg value for that entry. Clearing an existing arg will require arg value to be explicitly set to a hyphen “-”. The arg value cannot be empty.
labels: Option<HashMap<String, String>>Optional. User-defined labels for the task. If the map is left empty, the task will run with existing labels from task definition. If the map contains an entry with a new key, the same will be added to existing set of labels. If the map contains an entry with an existing label key in task definition, the task will run with new label value for that entry. Clearing an existing label will require label value to be explicitly set to a hyphen “-”. The label value cannot be empty.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1RunTaskRequest
impl Clone for GoogleCloudDataplexV1RunTaskRequest
Source§fn clone(&self) -> GoogleCloudDataplexV1RunTaskRequest
fn clone(&self) -> GoogleCloudDataplexV1RunTaskRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudDataplexV1RunTaskRequest
impl Default for GoogleCloudDataplexV1RunTaskRequest
Source§fn default() -> GoogleCloudDataplexV1RunTaskRequest
fn default() -> GoogleCloudDataplexV1RunTaskRequest
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1RunTaskRequest
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1RunTaskRequest
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 RequestValue for GoogleCloudDataplexV1RunTaskRequest
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1RunTaskRequest
impl RefUnwindSafe for GoogleCloudDataplexV1RunTaskRequest
impl Send for GoogleCloudDataplexV1RunTaskRequest
impl Sync for GoogleCloudDataplexV1RunTaskRequest
impl Unpin for GoogleCloudDataplexV1RunTaskRequest
impl UnwindSafe for GoogleCloudDataplexV1RunTaskRequest
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