Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1AssetResourceStatus
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1AssetResourceStatus
- 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
Status of the resource referenced by an asset.
Instance Attribute Summary collapse
-
#managed_access_identity ⇒ String
Output only.
-
#message ⇒ String
Additional information about the current state.
-
#state ⇒ String
The current state of the managed resource.
-
#update_time ⇒ String
Last update time of the status.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1AssetResourceStatus
constructor
A new instance of GoogleCloudDataplexV1AssetResourceStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1AssetResourceStatus
Returns a new instance of GoogleCloudDataplexV1AssetResourceStatus.
1507 1508 1509 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1507 def initialize(**args) update!(**args) end |
Instance Attribute Details
#managed_access_identity ⇒ String
Output only. Service account associated with the BigQuery Connection.
Corresponds to the JSON property managedAccessIdentity
1490 1491 1492 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1490 def managed_access_identity @managed_access_identity end |
#message ⇒ String
Additional information about the current state.
Corresponds to the JSON property message
1495 1496 1497 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1495 def @message end |
#state ⇒ String
The current state of the managed resource.
Corresponds to the JSON property state
1500 1501 1502 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1500 def state @state end |
#update_time ⇒ String
Last update time of the status.
Corresponds to the JSON property updateTime
1505 1506 1507 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1505 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1512 1513 1514 1515 1516 1517 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1512 def update!(**args) @managed_access_identity = args[:managed_access_identity] if args.key?(:managed_access_identity) @message = args[:message] if args.key?(:message) @state = args[:state] if args.key?(:state) @update_time = args[:update_time] if args.key?(:update_time) end |