Class: Retab::Client
Instance Attribute Summary
Attributes inherited from BaseClient
#configuration
Instance Method Summary
collapse
Methods inherited from BaseClient
#api_host, #api_key, #initialize, #request
Instance Method Details
#classifications ⇒ Object
16
17
18
|
# File 'lib/retab/client.rb', line 16
def classifications
@classifications ||= Retab::Classifications.new(self)
end
|
#edit_templates ⇒ Object
104
105
106
|
# File 'lib/retab/client.rb', line 104
def edit_templates
@edit_templates ||= Retab::EditTemplates.new(self)
end
|
#edits ⇒ Object
108
109
110
|
# File 'lib/retab/client.rb', line 108
def edits
@edits ||= Retab::Edits.new(self)
end
|
#experiment_run_metrics ⇒ Object
84
85
86
|
# File 'lib/retab/client.rb', line 84
def experiment_run_metrics
@experiment_run_metrics ||= Retab::ExperimentRunMetrics.new(self)
end
|
#experiment_run_results ⇒ Object
80
81
82
|
# File 'lib/retab/client.rb', line 80
def experiment_run_results
@experiment_run_results ||= Retab::ExperimentRunResults.new(self)
end
|
#experiment_runs ⇒ Object
76
77
78
|
# File 'lib/retab/client.rb', line 76
def experiment_runs
@experiment_runs ||= Retab::ExperimentRuns.new(self)
end
|
12
13
14
|
# File 'lib/retab/client.rb', line 12
def
@extractions ||= Retab::Extractions.new(self)
end
|
#files ⇒ Object
32
33
34
|
# File 'lib/retab/client.rb', line 32
def files
@files ||= Retab::Files.new(self)
end
|
#jobs ⇒ Object
112
113
114
|
# File 'lib/retab/client.rb', line 112
def jobs
@jobs ||= Retab::Jobs.new(self)
end
|
#parses ⇒ Object
20
21
22
|
# File 'lib/retab/client.rb', line 20
def parses
@parses ||= Retab::Parses.new(self)
end
|
#partitions ⇒ Object
24
25
26
|
# File 'lib/retab/client.rb', line 24
def partitions
@partitions ||= Retab::Partitions.new(self)
end
|
#schemas ⇒ Object
8
9
10
|
# File 'lib/retab/client.rb', line 8
def schemas
@schemas ||= Retab::Schemas.new(self)
end
|
#splits ⇒ Object
28
29
30
|
# File 'lib/retab/client.rb', line 28
def splits
@splits ||= Retab::Splits.new(self)
end
|
#workflow_artifacts ⇒ Object
52
53
54
|
# File 'lib/retab/client.rb', line 52
def workflow_artifacts
@workflow_artifacts ||= Retab::WorkflowArtifacts.new(self)
end
|
#workflow_block_executions ⇒ Object
#workflow_blocks ⇒ Object
64
65
66
|
# File 'lib/retab/client.rb', line 64
def workflow_blocks
@workflow_blocks ||= Retab::WorkflowBlocks.new(self)
end
|
#workflow_edges ⇒ Object
68
69
70
|
# File 'lib/retab/client.rb', line 68
def workflow_edges
@workflow_edges ||= Retab::WorkflowEdges.new(self)
end
|
#workflow_experiments ⇒ Object
88
89
90
|
# File 'lib/retab/client.rb', line 88
def workflow_experiments
@workflow_experiments ||= Retab::WorkflowExperiments.new(self)
end
|
#workflow_review_versions ⇒ Object
#workflow_reviews ⇒ Object
44
45
46
|
# File 'lib/retab/client.rb', line 44
def workflow_reviews
@workflow_reviews ||= Retab::WorkflowReviews.new(self)
end
|
#workflow_runs ⇒ Object
36
37
38
|
# File 'lib/retab/client.rb', line 36
def workflow_runs
@workflow_runs ||= Retab::WorkflowRuns.new(self)
end
|
#workflow_specs ⇒ Object
100
101
102
|
# File 'lib/retab/client.rb', line 100
def workflow_specs
@workflow_specs ||= Retab::WorkflowSpecs.new(self)
end
|
#workflow_steps ⇒ Object
40
41
42
|
# File 'lib/retab/client.rb', line 40
def workflow_steps
@workflow_steps ||= Retab::WorkflowSteps.new(self)
end
|
#workflow_test_run_results ⇒ Object
60
61
62
|
# File 'lib/retab/client.rb', line 60
def workflow_test_run_results
@workflow_test_run_results ||= Retab::WorkflowTestRunResults.new(self)
end
|
#workflow_test_runs ⇒ Object
56
57
58
|
# File 'lib/retab/client.rb', line 56
def workflow_test_runs
@workflow_test_runs ||= Retab::WorkflowTestRuns.new(self)
end
|
#workflow_tests ⇒ Object
72
73
74
|
# File 'lib/retab/client.rb', line 72
def workflow_tests
@workflow_tests ||= Retab::WorkflowTests.new(self)
end
|
#workflows ⇒ Object
96
97
98
|
# File 'lib/retab/client.rb', line 96
def workflows
@workflows ||= Retab::Workflows.new(self)
end
|