Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1LookerSystemSpec
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1LookerSystemSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1beta1/classes.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb
Overview
Specification that applies to entries that are part LOOKER
system (
user_specified_type)
Instance Attribute Summary collapse
-
#parent_instance_display_name ⇒ String
Name of the parent Looker Instance.
-
#parent_instance_id ⇒ String
ID of the parent Looker Instance.
-
#parent_model_display_name ⇒ String
Name of the parent Model.
-
#parent_model_id ⇒ String
ID of the parent Model.
-
#parent_view_display_name ⇒ String
Name of the parent View.
-
#parent_view_id ⇒ String
ID of the parent View.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1LookerSystemSpec
constructor
A new instance of GoogleCloudDatacatalogV1LookerSystemSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1LookerSystemSpec
Returns a new instance of GoogleCloudDatacatalogV1LookerSystemSpec.
1458 1459 1460 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1458 def initialize(**args) update!(**args) end |
Instance Attribute Details
#parent_instance_display_name ⇒ String
Name of the parent Looker Instance. Empty if it does not exist.
Corresponds to the JSON property parentInstanceDisplayName
1430 1431 1432 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1430 def parent_instance_display_name @parent_instance_display_name end |
#parent_instance_id ⇒ String
ID of the parent Looker Instance. Empty if it does not exist. Example value:
someinstance.looker.com
Corresponds to the JSON property parentInstanceId
1436 1437 1438 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1436 def parent_instance_id @parent_instance_id end |
#parent_model_display_name ⇒ String
Name of the parent Model. Empty if it does not exist.
Corresponds to the JSON property parentModelDisplayName
1441 1442 1443 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1441 def parent_model_display_name @parent_model_display_name end |
#parent_model_id ⇒ String
ID of the parent Model. Empty if it does not exist.
Corresponds to the JSON property parentModelId
1446 1447 1448 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1446 def parent_model_id @parent_model_id end |
#parent_view_display_name ⇒ String
Name of the parent View. Empty if it does not exist.
Corresponds to the JSON property parentViewDisplayName
1451 1452 1453 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1451 def parent_view_display_name @parent_view_display_name end |
#parent_view_id ⇒ String
ID of the parent View. Empty if it does not exist.
Corresponds to the JSON property parentViewId
1456 1457 1458 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1456 def parent_view_id @parent_view_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1463 1464 1465 1466 1467 1468 1469 1470 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1463 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 |