Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1AssetResourceStatus

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

Status of the resource referenced by an asset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1AssetResourceStatus

Returns a new instance of GoogleCloudDataplexV1AssetResourceStatus.



1091
1092
1093
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1091

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

Instance Attribute Details

#managed_access_identityString

Output only. Service account associated with the BigQuery Connection. Corresponds to the JSON property managedAccessIdentity

Returns:

  • (String)


1074
1075
1076
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1074

def managed_access_identity
  @managed_access_identity
end

#messageString

Additional information about the current state. Corresponds to the JSON property message

Returns:

  • (String)


1079
1080
1081
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1079

def message
  @message
end

#stateString

The current state of the managed resource. Corresponds to the JSON property state

Returns:

  • (String)


1084
1085
1086
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1084

def state
  @state
end

#update_timeString

Last update time of the status. Corresponds to the JSON property updateTime

Returns:

  • (String)


1089
1090
1091
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1089

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1096
1097
1098
1099
1100
1101
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1096

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