pub struct GoogleCloudDataplexV1Partition {
pub etag: Option<String>,
pub location: Option<String>,
pub name: Option<String>,
pub values: Option<Vec<String>>,
}
Expand description
Represents partition metadata contained within entity instances.
§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 zones entities partitions create projects (request|response)
- locations lakes zones entities partitions get projects (response)
Fields§
§etag: Option<String>
Optional. The etag for this partition.
location: Option<String>
Required. Immutable. The location of the entity data within the partition, for example, gs://bucket/path/to/entity/key1=value1/key2=value2. Or projects//datasets//tables/
name: Option<String>
Output only. Partition values used in the HTTP URL must be double encoded. For example, url_encode(url_encode(value)) can be used to encode “US:CA/CA#Sunnyvale so that the request URL ends with “/partitions/US%253ACA/CA%2523Sunnyvale”. The name field in the response retains the encoded format.
values: Option<Vec<String>>
Required. Immutable. The set of values representing the partition, which correspond to the partition schema defined in the parent entity.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1Partition
impl Clone for GoogleCloudDataplexV1Partition
Source§fn clone(&self) -> GoogleCloudDataplexV1Partition
fn clone(&self) -> GoogleCloudDataplexV1Partition
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDataplexV1Partition
impl Default for GoogleCloudDataplexV1Partition
Source§fn default() -> GoogleCloudDataplexV1Partition
fn default() -> GoogleCloudDataplexV1Partition
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1Partition
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1Partition
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 GoogleCloudDataplexV1Partition
impl ResponseResult for GoogleCloudDataplexV1Partition
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1Partition
impl RefUnwindSafe for GoogleCloudDataplexV1Partition
impl Send for GoogleCloudDataplexV1Partition
impl Sync for GoogleCloudDataplexV1Partition
impl Unpin for GoogleCloudDataplexV1Partition
impl UnwindSafe for GoogleCloudDataplexV1Partition
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