Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DiscoveryEventTableDetails
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1DiscoveryEventTableDetails
 
 
- 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
Details about the published table.
Instance Attribute Summary collapse
- 
  
    
      #table  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The fully-qualified resource name of the table resource.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the table resource.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1DiscoveryEventTableDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1DiscoveryEventTableDetails.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DiscoveryEventTableDetails
Returns a new instance of GoogleCloudDataplexV1DiscoveryEventTableDetails.
      3829 3830 3831  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 3829 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#table ⇒ String
The fully-qualified resource name of the table resource.
Corresponds to the JSON property table
      3822 3823 3824  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 3822 def table @table end  | 
  
#type ⇒ String
The type of the table resource.
Corresponds to the JSON property type
      3827 3828 3829  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 3827 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3834 3835 3836 3837  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 3834 def update!(**args) @table = args[:table] if args.key?(:table) @type = args[:type] if args.key?(:type) end  |