Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope

Returns a new instance of GoogleCloudDatacatalogV1beta1SearchCatalogRequestScope.



1082
1083
1084
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1082

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#include_gcp_public_datasetsBoolean 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

Returns:

  • (Boolean)


1065
1066
1067
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1065

def include_gcp_public_datasets
  @include_gcp_public_datasets
end

#include_org_idsArray<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

Returns:

  • (Array<String>)


1073
1074
1075
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1073

def include_org_ids
  @include_org_ids
end

#include_project_idsArray<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

Returns:

  • (Array<String>)


1080
1081
1082
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1080

def include_project_ids
  @include_project_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1087
1088
1089
1090
1091
# File 'generated/google/apis/datacatalog_v1beta1/classes.rb', line 1087

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