class Google::Apis::DataflowV1b3::ValidateResponse

Response to the validation request.

Attributes

error_message[RW]

Will be empty if validation succeeds. Corresponds to the JSON property `errorMessage` @return [String]

query_info[RW]

Information about a validated query. Corresponds to the JSON property `queryInfo` @return [Google::Apis::DataflowV1b3::QueryInfo]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 5784
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 5789
def update!(**args)
  @error_message = args[:error_message] if args.key?(:error_message)
  @query_info = args[:query_info] if args.key?(:query_info)
end