Class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SearchCatalogRequestScope
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SearchCatalogRequestScope
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1/classes.rb,
lib/google/apis/datacatalog_v1/representations.rb,
lib/google/apis/datacatalog_v1/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 public datasets in 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.
-
#include_public_tag_templates ⇒ Boolean
(also: #include_public_tag_templates?)
Optional.
-
#restricted_locations ⇒ Array<String>
Optional.
-
#starred_only ⇒ Boolean
(also: #starred_only?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1SearchCatalogRequestScope
constructor
A new instance of GoogleCloudDatacatalogV1SearchCatalogRequestScope.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1SearchCatalogRequestScope
Returns a new instance of GoogleCloudDatacatalogV1SearchCatalogRequestScope.
2251 2252 2253 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2251 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 public datasets in search results. By default,
they are excluded. See Google Cloud Public Datasets for
more information.
Corresponds to the JSON property includeGcpPublicDatasets
2209 2210 2211 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2209 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 the steps from Creating and managing organizations.
Corresponds to the JSON property includeOrgIds
2217 2218 2219 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2217 def include_org_ids @include_org_ids end |
#include_project_ids ⇒ Array<String>
The list of project IDs to search within. For more information on the
distinction between project names, IDs, and numbers, see Projects.
Corresponds to the JSON property includeProjectIds
2224 2225 2226 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2224 def include_project_ids @include_project_ids end |
#include_public_tag_templates ⇒ Boolean Also known as: include_public_tag_templates?
Optional. This field is deprecated. The search mechanism for public and
private tag templates is the same.
Corresponds to the JSON property includePublicTagTemplates
2230 2231 2232 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2230 def include_public_tag_templates @include_public_tag_templates end |
#restricted_locations ⇒ Array<String>
Optional. The list of locations to search within. If empty, all locations are
searched. Returns an error if any location in the list isn't one of the
Supported regions. If a location is unreachable, its name is returned in the
SearchCatalogResponse.unreachable field. To get additional information on the
error, repeat the search request and set the location name as the value of
this parameter.
Corresponds to the JSON property restrictedLocations
2242 2243 2244 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2242 def restricted_locations @restricted_locations end |
#starred_only ⇒ Boolean Also known as: starred_only?
Optional. If true, search only among starred entries. By default, all
results are returned, starred or not.
Corresponds to the JSON property starredOnly
2248 2249 2250 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2248 def starred_only @starred_only end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2256 2257 2258 2259 2260 2261 2262 2263 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2256 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) @include_public_tag_templates = args[:include_public_tag_templates] if args.key?(:include_public_tag_templates) @restricted_locations = args[:restricted_locations] if args.key?(:restricted_locations) @starred_only = args[:starred_only] if args.key?(:starred_only) end |