Class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1LookerSystemSpec

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

Specification that applies to entries that are part LOOKER system ( user_specified_type)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogV1LookerSystemSpec

Returns a new instance of GoogleCloudDatacatalogV1LookerSystemSpec.



1723
1724
1725
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1723

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

Instance Attribute Details

#parent_instance_display_nameString

Name of the parent Looker Instance. Empty if it does not exist. Corresponds to the JSON property parentInstanceDisplayName

Returns:

  • (String)


1695
1696
1697
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1695

def parent_instance_display_name
  @parent_instance_display_name
end

#parent_instance_idString

ID of the parent Looker Instance. Empty if it does not exist. Example value: someinstance.looker.com Corresponds to the JSON property parentInstanceId

Returns:

  • (String)


1701
1702
1703
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1701

def parent_instance_id
  @parent_instance_id
end

#parent_model_display_nameString

Name of the parent Model. Empty if it does not exist. Corresponds to the JSON property parentModelDisplayName

Returns:

  • (String)


1706
1707
1708
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1706

def parent_model_display_name
  @parent_model_display_name
end

#parent_model_idString

ID of the parent Model. Empty if it does not exist. Corresponds to the JSON property parentModelId

Returns:

  • (String)


1711
1712
1713
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1711

def parent_model_id
  @parent_model_id
end

#parent_view_display_nameString

Name of the parent View. Empty if it does not exist. Corresponds to the JSON property parentViewDisplayName

Returns:

  • (String)


1716
1717
1718
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1716

def parent_view_display_name
  @parent_view_display_name
end

#parent_view_idString

ID of the parent View. Empty if it does not exist. Corresponds to the JSON property parentViewId

Returns:

  • (String)


1721
1722
1723
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1721

def parent_view_id
  @parent_view_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1728
1729
1730
1731
1732
1733
1734
1735
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1728

def update!(**args)
  @parent_instance_display_name = args[:parent_instance_display_name] if args.key?(:parent_instance_display_name)
  @parent_instance_id = args[:parent_instance_id] if args.key?(:parent_instance_id)
  @parent_model_display_name = args[:parent_model_display_name] if args.key?(:parent_model_display_name)
  @parent_model_id = args[:parent_model_id] if args.key?(:parent_model_id)
  @parent_view_display_name = args[:parent_view_display_name] if args.key?(:parent_view_display_name)
  @parent_view_id = args[:parent_view_id] if args.key?(:parent_view_id)
end