Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datacatalog_v1beta1/classes.rb,
generated/google/apis/datacatalog_v1beta1/representations.rb,
generated/google/apis/datacatalog_v1beta1/representations.rb
Overview
The criteria that select the subspace used for query matching.
Instance Attribute Summary collapse
-
#include_gcp_public_datasets ⇒ Boolean
(also: #include_gcp_public_datasets?)
If
true, include Google Cloud Platform (GCP) public datasets in the search results. -
#include_org_ids ⇒ Array<String>
The list of organization IDs to search within.
-
#include_project_ids ⇒ Array<String>
The list of project IDs to search within.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope
constructor
A new instance of GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope
Returns a new instance of GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope.
1055 1056 1057 |
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1055 def initialize(**args) update!(**args) end |
Instance Attribute Details
#include_gcp_public_datasets ⇒ Boolean Also known as: include_gcp_public_datasets?
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.
Corresponds to the JSON property includeGcpPublicDatasets
1038 1039 1040 |
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1038 def include_gcp_public_datasets @include_gcp_public_datasets end |
#include_org_ids ⇒ Array<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.
Corresponds to the JSON property includeOrgIds
1046 1047 1048 |
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1046 def include_org_ids @include_org_ids end |
#include_project_ids ⇒ Array<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.
Corresponds to the JSON property includeProjectIds
1053 1054 1055 |
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1053 def include_project_ids @include_project_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1060 1061 1062 1063 1064 |
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1060 def update!(**args) @include_gcp_public_datasets = args[:include_gcp_public_datasets] if args.key?(:include_gcp_public_datasets) @include_org_ids = args[:include_org_ids] if args.key?(:include_org_ids) @include_project_ids = args[:include_project_ids] if args.key?(:include_project_ids) end |