Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1SchemaSchemaField
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1SchemaSchemaField
 
 
- 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
Represents a column field within a table schema.
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #fields  ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1SchemaSchemaField> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #mode  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1SchemaSchemaField 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1SchemaSchemaField.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1SchemaSchemaField
Returns a new instance of GoogleCloudDataplexV1SchemaSchemaField.
      6418 6419 6420  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6418 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#description ⇒ String
Optional. User friendly field description. Must be less than or equal to 1024
characters.
Corresponds to the JSON property description
      6394 6395 6396  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6394 def description @description end  | 
  
#fields ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1SchemaSchemaField>
Optional. Any nested field for complex types.
Corresponds to the JSON property fields
      6399 6400 6401  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6399 def fields @fields end  | 
  
#mode ⇒ String
Required. Additional field semantics.
Corresponds to the JSON property mode
      6404 6405 6406  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6404 def mode @mode end  | 
  
#name ⇒ String
Required. The name of the field. Must contain only letters, numbers and
underscores, with a maximum length of 767 characters, and must begin with a
letter or underscore.
Corresponds to the JSON property name
      6411 6412 6413  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6411 def name @name end  | 
  
#type ⇒ String
Required. The type of field.
Corresponds to the JSON property type
      6416 6417 6418  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6416 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6423 6424 6425 6426 6427 6428 6429  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 6423 def update!(**args) @description = args[:description] if args.key?(:description) @fields = args[:fields] if args.key?(:fields) @mode = args[:mode] if args.key?(:mode) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end  |