Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EntityCompatibilityStatusCompatibility

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1EntityCompatibilityStatusCompatibility

Returns a new instance of GoogleCloudDataplexV1EntityCompatibilityStatusCompatibility.



3956
3957
3958
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3956

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

Instance Attribute Details

#compatibleBoolean 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

Returns:

  • (Boolean)


3947
3948
3949
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3947

def compatible
  @compatible
end

#reasonString

Output only. Provides additional detail if the entity is incompatible with the metadata store. Corresponds to the JSON property reason

Returns:

  • (String)


3954
3955
3956
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3954

def reason
  @reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3961
3962
3963
3964
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3961

def update!(**args)
  @compatible = args[:compatible] if args.key?(:compatible)
  @reason = args[:reason] if args.key?(:reason)
end