Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1AspectSource
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1AspectSource
 
 
- 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
Information related to the source system of the aspect.
Instance Attribute Summary collapse
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time the aspect was created in the source system.
 - 
  
    
      #update_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time the aspect was last updated in the source system.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1AspectSource 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1AspectSource.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1AspectSource
Returns a new instance of GoogleCloudDataplexV1AspectSource.
      400 401 402  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 400 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#create_time ⇒ String
The time the aspect was created in the source system.
Corresponds to the JSON property createTime
      393 394 395  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 393 def create_time @create_time end  | 
  
#update_time ⇒ String
The time the aspect was last updated in the source system.
Corresponds to the JSON property updateTime
      398 399 400  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 398 def update_time @update_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      405 406 407 408  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 405 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @update_time = args[:update_time] if args.key?(:update_time) end  |