Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1AssetDiscoveryStatus
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1AssetDiscoveryStatus
 
 
- 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 discovery for an asset.
Instance Attribute Summary collapse
- 
  
    
      #last_run_duration  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The duration of the last discovery run.
 - 
  
    
      #last_run_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The start time of the last discovery run.
 - 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Additional information about the current state.
 - 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current status of the discovery feature.
 - 
  
    
      #stats  ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1AssetDiscoveryStatusStats 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The aggregated data statistics for the asset reported by discovery.
 - 
  
    
      #update_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Last update time of the status.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1AssetDiscoveryStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1AssetDiscoveryStatus.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1AssetDiscoveryStatus
Returns a new instance of GoogleCloudDataplexV1AssetDiscoveryStatus.
      977 978 979  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 977 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#last_run_duration ⇒ String
The duration of the last discovery run.
Corresponds to the JSON property lastRunDuration
      950 951 952  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 950 def last_run_duration @last_run_duration end  | 
  
#last_run_time ⇒ String
The start time of the last discovery run.
Corresponds to the JSON property lastRunTime
      955 956 957  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 955 def last_run_time @last_run_time end  | 
  
#message ⇒ String
Additional information about the current state.
Corresponds to the JSON property message
      960 961 962  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 960 def @message end  | 
  
#state ⇒ String
The current status of the discovery feature.
Corresponds to the JSON property state
      965 966 967  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 965 def state @state end  | 
  
#stats ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1AssetDiscoveryStatusStats
The aggregated data statistics for the asset reported by discovery.
Corresponds to the JSON property stats
      970 971 972  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 970 def stats @stats end  | 
  
#update_time ⇒ String
Last update time of the status.
Corresponds to the JSON property updateTime
      975 976 977  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 975 def update_time @update_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      982 983 984 985 986 987 988 989  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 982 def update!(**args) @last_run_duration = args[:last_run_duration] if args.key?(:last_run_duration) @last_run_time = args[:last_run_time] if args.key?(:last_run_time) @message = args[:message] if args.key?(:message) @state = args[:state] if args.key?(:state) @stats = args[:stats] if args.key?(:stats) @update_time = args[:update_time] if args.key?(:update_time) end  |