Class: Textus::Operations::Reads
- Inherits:
-
Object
- Object
- Textus::Operations::Reads
- Defined in:
- lib/textus/operations/reads.rb
Instance Method Summary collapse
- #audit ⇒ Object
- #blame ⇒ Object
- #deps ⇒ Object
- #freshness ⇒ Object
- #get ⇒ Object
-
#initialize(ctx) ⇒ Reads
constructor
A new instance of Reads.
- #list ⇒ Object
- #policy_explain ⇒ Object
- #published ⇒ Object
- #rdeps ⇒ Object
- #schema_envelope ⇒ Object
- #stale ⇒ Object
- #uid ⇒ Object
- #validate_all ⇒ Object
- #where ⇒ Object
Constructor Details
#initialize(ctx) ⇒ Reads
Returns a new instance of Reads.
4 5 6 |
# File 'lib/textus/operations/reads.rb', line 4 def initialize(ctx) @ctx = ctx end |
Instance Method Details
#audit ⇒ Object
13 |
# File 'lib/textus/operations/reads.rb', line 13 def audit = Application::Reads::Audit.new(ctx: @ctx) |
#blame ⇒ Object
14 |
# File 'lib/textus/operations/reads.rb', line 14 def blame = Application::Reads::Blame.new(ctx: @ctx) |
#deps ⇒ Object
20 |
# File 'lib/textus/operations/reads.rb', line 20 def deps = Application::Reads::Deps.new(ctx: @ctx) |
#freshness ⇒ Object
12 |
# File 'lib/textus/operations/reads.rb', line 12 def freshness = Application::Reads::Freshness.new(ctx: @ctx) |
#get ⇒ Object
8 9 10 |
# File 'lib/textus/operations/reads.rb', line 8 def get Application::Reads::Get.new(ctx: @ctx, orchestrator: orchestrator) end |
#list ⇒ Object
16 |
# File 'lib/textus/operations/reads.rb', line 16 def list = Application::Reads::List.new(ctx: @ctx) |
#policy_explain ⇒ Object
15 |
# File 'lib/textus/operations/reads.rb', line 15 def policy_explain = Application::Reads::PolicyExplain.new(ctx: @ctx) |
#published ⇒ Object
22 |
# File 'lib/textus/operations/reads.rb', line 22 def published = Application::Reads::Published.new(ctx: @ctx) |
#rdeps ⇒ Object
21 |
# File 'lib/textus/operations/reads.rb', line 21 def rdeps = Application::Reads::Rdeps.new(ctx: @ctx) |
#schema_envelope ⇒ Object
19 |
# File 'lib/textus/operations/reads.rb', line 19 def schema_envelope = Application::Reads::SchemaEnvelope.new(ctx: @ctx) |
#stale ⇒ Object
23 |
# File 'lib/textus/operations/reads.rb', line 23 def stale = Application::Reads::Stale.new(ctx: @ctx) |
#uid ⇒ Object
18 |
# File 'lib/textus/operations/reads.rb', line 18 def uid = Application::Reads::Uid.new(ctx: @ctx) |
#validate_all ⇒ Object
24 |
# File 'lib/textus/operations/reads.rb', line 24 def validate_all = Application::Reads::ValidateAll.new(ctx: @ctx) |
#where ⇒ Object
17 |
# File 'lib/textus/operations/reads.rb', line 17 def where = Application::Reads::Where.new(ctx: @ctx) |