Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AsyncQuery

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1AsyncQuery

Returns a new instance of GoogleCloudApigeeV1AsyncQuery.



1113
1114
1115
# File 'lib/google/apis/apigee_v1/classes.rb', line 1113

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#createdString

Creation time of the query. Corresponds to the JSON property created

Returns:

  • (String)


1048
1049
1050
# File 'lib/google/apis/apigee_v1/classes.rb', line 1048

def created
  @created
end

#envgroup_hostnameString

Hostname is available only when query is executed at host level. Corresponds to the JSON property envgroupHostname

Returns:

  • (String)


1053
1054
1055
# File 'lib/google/apis/apigee_v1/classes.rb', line 1053

def envgroup_hostname
  @envgroup_hostname
end

#errorString

Error is set when query fails. Corresponds to the JSON property error

Returns:

  • (String)


1058
1059
1060
# File 'lib/google/apis/apigee_v1/classes.rb', line 1058

def error
  @error
end

#execution_timeString

ExecutionTime is available only after the query is completed. Corresponds to the JSON property executionTime

Returns:

  • (String)


1063
1064
1065
# File 'lib/google/apis/apigee_v1/classes.rb', line 1063

def execution_time
  @execution_time
end

#nameString

Asynchronous Query Name. Corresponds to the JSON property name

Returns:

  • (String)


1068
1069
1070
# File 'lib/google/apis/apigee_v1/classes.rb', line 1068

def name
  @name
end

#query_paramsGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1QueryMetadata

Contains information like metrics, dimenstions etc of the AsyncQuery. Corresponds to the JSON property queryParams



1073
1074
1075
# File 'lib/google/apis/apigee_v1/classes.rb', line 1073

def query_params
  @query_params
end

#report_definition_idString

Asynchronous Report ID. Corresponds to the JSON property reportDefinitionId

Returns:

  • (String)


1078
1079
1080
# File 'lib/google/apis/apigee_v1/classes.rb', line 1078

def report_definition_id
  @report_definition_id
end

#resultGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1AsyncQueryResult

Result is available only after the query is completed. Corresponds to the JSON property result



1083
1084
1085
# File 'lib/google/apis/apigee_v1/classes.rb', line 1083

def result
  @result
end

#result_file_sizeString

ResultFileSize is available only after the query is completed. Corresponds to the JSON property resultFileSize

Returns:

  • (String)


1088
1089
1090
# File 'lib/google/apis/apigee_v1/classes.rb', line 1088

def result_file_size
  @result_file_size
end

#result_rowsFixnum

ResultRows is available only after the query is completed. Corresponds to the JSON property resultRows

Returns:

  • (Fixnum)


1093
1094
1095
# File 'lib/google/apis/apigee_v1/classes.rb', line 1093

def result_rows
  @result_rows
end

#selfString

Self link of the query. Example: /organizations/myorg/environments/myenv/ queries/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd or following format if query is running at host level: /organizations/myorg/hostQueries/9cfc0d85-0f30-46d6- ae6f-318d0cb961bd Corresponds to the JSON property self

Returns:

  • (String)


1101
1102
1103
# File 'lib/google/apis/apigee_v1/classes.rb', line 1101

def self
  @self
end

#stateString

Query state could be "enqueued", "running", "completed", "failed". Corresponds to the JSON property state

Returns:

  • (String)


1106
1107
1108
# File 'lib/google/apis/apigee_v1/classes.rb', line 1106

def state
  @state
end

#updatedString

Last updated timestamp for the query. Corresponds to the JSON property updated

Returns:

  • (String)


1111
1112
1113
# File 'lib/google/apis/apigee_v1/classes.rb', line 1111

def updated
  @updated
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
# File 'lib/google/apis/apigee_v1/classes.rb', line 1118

def update!(**args)
  @created = args[:created] if args.key?(:created)
  @envgroup_hostname = args[:envgroup_hostname] if args.key?(:envgroup_hostname)
  @error = args[:error] if args.key?(:error)
  @execution_time = args[:execution_time] if args.key?(:execution_time)
  @name = args[:name] if args.key?(:name)
  @query_params = args[:query_params] if args.key?(:query_params)
  @report_definition_id = args[:report_definition_id] if args.key?(:report_definition_id)
  @result = args[:result] if args.key?(:result)
  @result_file_size = args[:result_file_size] if args.key?(:result_file_size)
  @result_rows = args[:result_rows] if args.key?(:result_rows)
  @self = args[:self] if args.key?(:self)
  @state = args[:state] if args.key?(:state)
  @updated = args[:updated] if args.key?(:updated)
end