[][src]Struct google_datacatalog1_beta1::GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope

pub struct GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope {
    pub include_org_ids: Option<Vec<String>>,
    pub include_gcp_public_datasets: Option<bool>,
    pub restricted_locations: Option<Vec<String>>,
    pub include_project_ids: Option<Vec<String>>,
}

The criteria that select the subspace used for query matching.

This type is not used in any activity, and only used as part of another schema.

Fields

include_org_ids: Option<Vec<String>>

The list of organization IDs to search within. To find your organization ID, follow instructions in https://cloud.google.com/resource-manager/docs/creating-managing-organization.

include_gcp_public_datasets: Option<bool>

If true, include Google Cloud Platform (GCP) public datasets in the search results. Info on GCP public datasets is available at https://cloud.google.com/public-datasets/. By default, GCP public datasets are excluded.

restricted_locations: Option<Vec<String>>

Optional. The list of locations to search within.

  1. If empty, search will be performed in all locations;
  2. If any of the locations are NOT in the valid locations list, error will be returned;
  3. Otherwise, search only the given locations for matching results. Typical usage is to leave this field empty. When a location is unreachable as returned in the SearchCatalogResponse.unreachable field, users can repeat the search request with this parameter set to get additional information on the error.

Valid locations:

  • asia-east1
  • asia-east2
  • asia-northeast1
  • asia-northeast2
  • asia-northeast3
  • asia-south1
  • asia-southeast1
  • australia-southeast1
  • eu
  • europe-north1
  • europe-west1
  • europe-west2
  • europe-west3
  • europe-west4
  • europe-west6
  • global
  • northamerica-northeast1
  • southamerica-east1
  • us
  • us-central1
  • us-east1
  • us-east4
  • us-west1
  • us-west2
include_project_ids: Option<Vec<String>>

The list of project IDs to search within. To learn more about the distinction between project names/IDs/numbers, go to https://cloud.google.com/docs/overview/#projects.

Trait Implementations

impl Clone for GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope[src]

impl Debug for GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope[src]

impl Default for GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope[src]

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

impl Part for GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope[src]

impl Serialize for GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope[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