[][src]Struct google_datacatalog1_beta1::GoogleCloudDatacatalogV1beta1Taxonomy

pub struct GoogleCloudDatacatalogV1beta1Taxonomy {
    pub display_name: Option<String>,
    pub description: Option<String>,
    pub activated_policy_types: Option<Vec<String>>,
    pub name: Option<String>,
}

A taxonomy is a collection of policy tags that classify data along a common axis. For instance a data sensitivity taxonomy could contain policy tags denoting PII such as age, zipcode, and SSN. A data origin taxonomy could contain policy tags to distinguish user data, employee data, partner data, public data.

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

display_name: Option<String>

Required. User defined name of this taxonomy. It must: contain only unicode letters, numbers, underscores, dashes and spaces; not start or end with spaces; and be at most 200 bytes long when encoded in UTF-8.

description: Option<String>

Optional. Description of this taxonomy. It must: contain only unicode characters, tabs, newlines, carriage returns and page breaks; and be at most 2000 bytes long when encoded in UTF-8. If not set, defaults to an empty description.

activated_policy_types: Option<Vec<String>>

Optional. A list of policy types that are activated for this taxonomy. If not set, defaults to an empty list.

name: Option<String>

Output only. Resource name of this taxonomy, whose format is: "projects/{project_number}/locations/{location_id}/taxonomies/{id}".

Trait Implementations

impl Clone for GoogleCloudDatacatalogV1beta1Taxonomy[src]

impl Debug for GoogleCloudDatacatalogV1beta1Taxonomy[src]

impl Default for GoogleCloudDatacatalogV1beta1Taxonomy[src]

impl<'de> Deserialize<'de> for GoogleCloudDatacatalogV1beta1Taxonomy[src]

impl RequestValue for GoogleCloudDatacatalogV1beta1Taxonomy[src]

impl ResponseResult for GoogleCloudDatacatalogV1beta1Taxonomy[src]

impl Serialize for GoogleCloudDatacatalogV1beta1Taxonomy[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any