Class: Google::Cloud::Dataplex::V1::Content::SqlScript

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/dataplex/v1/analyze.rb

Overview

Configuration for the Sql Script content.

Defined Under Namespace

Modules: QueryEngine

Instance Attribute Summary collapse

Instance Attribute Details

#engine::Google::Cloud::Dataplex::V1::Content::SqlScript::QueryEngine

Returns Required. Query Engine to be used for the Sql Query.

Returns:



227
228
229
230
231
232
233
234
235
236
237
238
239
# File 'proto_docs/google/cloud/dataplex/v1/analyze.rb', line 227

class SqlScript
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Query Engine Type of the SQL Script.
  module QueryEngine
    # Value was unspecified.
    QUERY_ENGINE_UNSPECIFIED = 0

    # Spark SQL Query.
    SPARK = 2
  end
end