Class: Google::Apis::BigqueryV2::DestinationTableProperties
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BigqueryV2::DestinationTableProperties
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquery_v2/classes.rb,
 generated/google/apis/bigquery_v2/representations.rb,
 generated/google/apis/bigquery_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Optional] The description for the destination table. 
- 
  
    
      #friendly_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Optional] The friendly name for the destination table. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DestinationTableProperties 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DestinationTableProperties. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DestinationTableProperties
Returns a new instance of DestinationTableProperties
| 604 605 606 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 604 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#description ⇒ String
[Optional] The description for the destination table. This will only be used
if the destination table is newly created. If the table already exists and a
value different than the current description is provided, the job will fail.
Corresponds to the JSON property description
| 595 596 597 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 595 def description @description end | 
#friendly_name ⇒ String
[Optional] The friendly name for the destination table. This will only be used
if the destination table is newly created. If the table already exists and a
value different than the current friendly name is provided, the job will fail.
Corresponds to the JSON property friendlyName
| 602 603 604 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 602 def friendly_name @friendly_name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 609 610 611 612 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 609 def update!(**args) @description = args[:description] if args.key?(:description) @friendly_name = args[:friendly_name] if args.key?(:friendly_name) end |