pub struct GoogleCloudDataplexV1DataAttributeBinding {
pub attributes: Option<Vec<String>>,
pub create_time: Option<DateTime<Utc>>,
pub description: Option<String>,
pub display_name: Option<String>,
pub etag: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub name: Option<String>,
pub paths: Option<Vec<GoogleCloudDataplexV1DataAttributeBindingPath>>,
pub resource: Option<String>,
pub uid: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
DataAttributeBinding represents binding of attributes to resources. Eg: Bind ‘CustomerInfo’ entity with ‘PII’ attribute.
§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).
Fields§
§attributes: Option<Vec<String>>
Optional. List of attributes to be associated with the resource, provided in the form: projects/{project}/locations/{location}/dataTaxonomies/{dataTaxonomy}/attributes/{data_attribute_id}
create_time: Option<DateTime<Utc>>
Output only. The time when the DataAttributeBinding was created.
description: Option<String>
Optional. Description of the DataAttributeBinding.
display_name: Option<String>
Optional. User friendly display name.
etag: Option<String>
This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. Etags must be used when calling the DeleteDataAttributeBinding and the UpdateDataAttributeBinding method.
labels: Option<HashMap<String, String>>
Optional. User-defined labels for the DataAttributeBinding.
name: Option<String>
Output only. The relative resource name of the Data Attribute Binding, of the form: projects/{project_number}/locations/{location}/dataAttributeBindings/{data_attribute_binding_id}
paths: Option<Vec<GoogleCloudDataplexV1DataAttributeBindingPath>>
Optional. The list of paths for items within the associated resource (eg. columns and partitions within a table) along with attribute bindings.
resource: Option<String>
Optional. Immutable. The resource name of the resource that is associated to attributes. Presently, only entity resource is supported in the form: projects/{project}/locations/{location}/lakes/{lake}/zones/{zone}/entities/{entity_id} Must belong in the same project and region as the attribute binding, and there can only exist one active binding for a resource.
uid: Option<String>
Output only. System generated globally unique ID for the DataAttributeBinding. This ID will be different if the DataAttributeBinding is deleted and re-created with the same name.
update_time: Option<DateTime<Utc>>
Output only. The time when the DataAttributeBinding was last updated.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1DataAttributeBinding
impl Clone for GoogleCloudDataplexV1DataAttributeBinding
Source§fn clone(&self) -> GoogleCloudDataplexV1DataAttributeBinding
fn clone(&self) -> GoogleCloudDataplexV1DataAttributeBinding
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDataplexV1DataAttributeBinding
impl Default for GoogleCloudDataplexV1DataAttributeBinding
Source§fn default() -> GoogleCloudDataplexV1DataAttributeBinding
fn default() -> GoogleCloudDataplexV1DataAttributeBinding
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataAttributeBinding
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataAttributeBinding
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 GoogleCloudDataplexV1DataAttributeBinding
impl ResponseResult for GoogleCloudDataplexV1DataAttributeBinding
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1DataAttributeBinding
impl RefUnwindSafe for GoogleCloudDataplexV1DataAttributeBinding
impl Send for GoogleCloudDataplexV1DataAttributeBinding
impl Sync for GoogleCloudDataplexV1DataAttributeBinding
impl Unpin for GoogleCloudDataplexV1DataAttributeBinding
impl UnwindSafe for GoogleCloudDataplexV1DataAttributeBinding
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