Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DiscoveryEventEntityDetails
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DiscoveryEventEntityDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
Details about the entity.
Instance Attribute Summary collapse
-
#entity ⇒ String
The name of the entity resource.
-
#type ⇒ String
The type of the entity resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DiscoveryEventEntityDetails
constructor
A new instance of GoogleCloudDataplexV1DiscoveryEventEntityDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DiscoveryEventEntityDetails
Returns a new instance of GoogleCloudDataplexV1DiscoveryEventEntityDetails.
1026 1027 1028 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1026 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity ⇒ String
The name of the entity resource. The name is the fully-qualified resource name.
Corresponds to the JSON property entity
1019 1020 1021 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1019 def entity @entity end |
#type ⇒ String
The type of the entity resource.
Corresponds to the JSON property type
1024 1025 1026 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1024 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1031 1032 1033 1034 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1031 def update!(**args) @entity = args[:entity] if args.key?(:entity) @type = args[:type] if args.key?(:type) end |