Class: Stripe::Sigma::ScheduledQueryRun

Inherits:
APIResource show all
Extended by:
APIOperations::List
Defined in:
lib/stripe/resources/sigma/scheduled_query_run.rb

Overview

If you have [scheduled a Sigma query](stripe.com/docs/sigma/scheduled-queries), you’ll receive a ‘sigma.scheduled_query_run.created` webhook each time the query runs. The webhook contains a `ScheduledQueryRun` object, which you can use to retrieve the query results.

Defined Under Namespace

Classes: Error

Constant Summary collapse

OBJECT_NAME =
"scheduled_query_run"

Constants inherited from Stripe::StripeObject

Stripe::StripeObject::RESERVED_FIELD_NAMES

Instance Attribute Summary collapse

Attributes inherited from APIResource

#save_with_parent

Attributes inherited from Stripe::StripeObject

#last_response

Class Method Summary collapse

Methods included from APIOperations::List

list

Methods inherited from APIResource

class_name, custom_method, #refresh, #request_stripe_object, #resource_url, retrieve, save_nested_resource

Methods included from APIOperations::Request

included

Methods inherited from Stripe::StripeObject

#==, #[], #[]=, #_get_inner_class_type, additive_object_param, additive_object_param?, #as_json, construct_from, #deleted?, #dirty!, #each, #eql?, #hash, #initialize, #inspect, #keys, #marshal_dump, #marshal_load, protected_fields, #serialize_params, #to_hash, #to_json, #to_s, #update_attributes, #values

Constructor Details

This class inherits a constructor from Stripe::StripeObject

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Stripe::StripeObject

Instance Attribute Details

#createdObject (readonly)

Time at which the object was created. Measured in seconds since the Unix epoch.



31
32
33
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 31

def created
  @created
end

#data_load_timeObject (readonly)

When the query was run, Sigma contained a snapshot of your Stripe data at this time.



33
34
35
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 33

def data_load_time
  @data_load_time
end

#errorObject (readonly)

Attribute for field error



35
36
37
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 35

def error
  @error
end

#fileObject (readonly)

The file object representing the results of the query.



37
38
39
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 37

def file
  @file
end

#idObject (readonly)

Unique identifier for the object.



39
40
41
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 39

def id
  @id
end

#livemodeObject (readonly)

Has the value ‘true` if the object exists in live mode or the value `false` if the object exists in test mode.



41
42
43
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 41

def livemode
  @livemode
end

#objectObject (readonly)

String representing the object’s type. Objects of the same type share the same value.



43
44
45
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 43

def object
  @object
end

#result_available_untilObject (readonly)

Time at which the result expires and is no longer available for download.



45
46
47
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 45

def result_available_until
  @result_available_until
end

#sqlObject (readonly)

SQL for the query.



47
48
49
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 47

def sql
  @sql
end

#statusObject (readonly)

The query’s execution status, which will be ‘completed` for successful runs, and `canceled`, `failed`, or `timed_out` otherwise.



49
50
51
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 49

def status
  @status
end

#titleObject (readonly)

Title of the query.



51
52
53
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 51

def title
  @title
end

Class Method Details

.field_remappingsObject



71
72
73
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 71

def self.field_remappings
  @field_remappings = {}
end

.inner_class_typesObject



67
68
69
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 67

def self.inner_class_types
  @inner_class_types = { error: Error }
end

.list(params = {}, opts = {}) ⇒ Object

Returns a list of scheduled query runs.



54
55
56
57
58
59
60
61
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 54

def self.list(params = {}, opts = {})
  request_stripe_object(
    method: :get,
    path: "/v1/sigma/scheduled_query_runs",
    params: params,
    opts: opts
  )
end

.object_nameObject



14
15
16
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 14

def self.object_name
  "scheduled_query_run"
end

.resource_urlObject



63
64
65
# File 'lib/stripe/resources/sigma/scheduled_query_run.rb', line 63

def self.resource_url
  "/v1/sigma/scheduled_query_runs"
end