Class: Google::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/analyticshub_v1beta1/classes.rb,
lib/google/apis/analyticshub_v1beta1/representations.rb,
lib/google/apis/analyticshub_v1beta1/representations.rb

Overview

Defines the destination bigquery dataset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset

Returns a new instance of GoogleCloudBigqueryDataexchangeV1beta1DestinationDataset.



486
487
488
# File 'lib/google/apis/analyticshub_v1beta1/classes.rb', line 486

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

Instance Attribute Details

#dataset_referenceGoogle::Apis::AnalyticshubV1beta1::GoogleCloudBigqueryDataexchangeV1beta1DestinationDatasetReference

Contains the reference that identifies a destination bigquery dataset. Corresponds to the JSON property datasetReference



460
461
462
# File 'lib/google/apis/analyticshub_v1beta1/classes.rb', line 460

def dataset_reference
  @dataset_reference
end

#descriptionString

Optional. A user-friendly description of the dataset. Corresponds to the JSON property description

Returns:

  • (String)


465
466
467
# File 'lib/google/apis/analyticshub_v1beta1/classes.rb', line 465

def description
  @description
end

#friendly_nameString

Optional. A descriptive name for the dataset. Corresponds to the JSON property friendlyName

Returns:

  • (String)


470
471
472
# File 'lib/google/apis/analyticshub_v1beta1/classes.rb', line 470

def friendly_name
  @friendly_name
end

#labelsHash<String,String>

Optional. The labels associated with this dataset. You can use these to organize and group your datasets. You can set this property when inserting or updating a dataset. See https://cloud.google.com/resource-manager/docs/ creating-managing-labels for more information. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


478
479
480
# File 'lib/google/apis/analyticshub_v1beta1/classes.rb', line 478

def labels
  @labels
end

#locationString

Required. The geographic location where the dataset should reside. See https:// cloud.google.com/bigquery/docs/locations for supported locations. Corresponds to the JSON property location

Returns:

  • (String)


484
485
486
# File 'lib/google/apis/analyticshub_v1beta1/classes.rb', line 484

def location
  @location
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



491
492
493
494
495
496
497
# File 'lib/google/apis/analyticshub_v1beta1/classes.rb', line 491

def update!(**args)
  @dataset_reference = args[:dataset_reference] if args.key?(:dataset_reference)
  @description = args[:description] if args.key?(:description)
  @friendly_name = args[:friendly_name] if args.key?(:friendly_name)
  @labels = args[:labels] if args.key?(:labels)
  @location = args[:location] if args.key?(:location)
end