Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EntityCompatibilityStatusCompatibility
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1EntityCompatibilityStatusCompatibility
- 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
Provides compatibility information for a specific metadata store.
Instance Attribute Summary collapse
-
#compatible ⇒ Boolean
(also: #compatible?)
Output only.
-
#reason ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1EntityCompatibilityStatusCompatibility
constructor
A new instance of GoogleCloudDataplexV1EntityCompatibilityStatusCompatibility.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1EntityCompatibilityStatusCompatibility
Returns a new instance of GoogleCloudDataplexV1EntityCompatibilityStatusCompatibility.
4271 4272 4273 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4271 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compatible ⇒ Boolean Also known as: compatible?
Output only. Whether the entity is compatible and can be represented in the
metadata store.
Corresponds to the JSON property compatible
4262 4263 4264 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4262 def compatible @compatible end |
#reason ⇒ String
Output only. Provides additional detail if the entity is incompatible with the
metadata store.
Corresponds to the JSON property reason
4269 4270 4271 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4269 def reason @reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4276 4277 4278 4279 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4276 def update!(**args) @compatible = args[:compatible] if args.key?(:compatible) @reason = args[:reason] if args.key?(:reason) end |