Class: Textus::Operations::Reads

Inherits:
Object
  • Object
show all
Defined in:
lib/textus/operations/reads.rb

Instance Method Summary collapse

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

#auditObject



13
# File 'lib/textus/operations/reads.rb', line 13

def audit          = Application::Reads::Audit.new(ctx: @ctx)

#blameObject



14
# File 'lib/textus/operations/reads.rb', line 14

def blame          = Application::Reads::Blame.new(ctx: @ctx)

#depsObject



20
# File 'lib/textus/operations/reads.rb', line 20

def deps            = Application::Reads::Deps.new(ctx: @ctx)

#freshnessObject



12
# File 'lib/textus/operations/reads.rb', line 12

def freshness      = Application::Reads::Freshness.new(ctx: @ctx)

#getObject



8
9
10
# File 'lib/textus/operations/reads.rb', line 8

def get
  Application::Reads::Get.new(ctx: @ctx, orchestrator: orchestrator)
end

#listObject



16
# File 'lib/textus/operations/reads.rb', line 16

def list           = Application::Reads::List.new(ctx: @ctx)

#policy_explainObject



15
# File 'lib/textus/operations/reads.rb', line 15

def policy_explain = Application::Reads::PolicyExplain.new(ctx: @ctx)

#publishedObject



22
# File 'lib/textus/operations/reads.rb', line 22

def published       = Application::Reads::Published.new(ctx: @ctx)

#rdepsObject



21
# File 'lib/textus/operations/reads.rb', line 21

def rdeps           = Application::Reads::Rdeps.new(ctx: @ctx)

#schema_envelopeObject



19
# File 'lib/textus/operations/reads.rb', line 19

def schema_envelope = Application::Reads::SchemaEnvelope.new(ctx: @ctx)

#staleObject



23
# File 'lib/textus/operations/reads.rb', line 23

def stale           = Application::Reads::Stale.new(ctx: @ctx)

#uidObject



18
# File 'lib/textus/operations/reads.rb', line 18

def uid             = Application::Reads::Uid.new(ctx: @ctx)

#validate_allObject



24
# File 'lib/textus/operations/reads.rb', line 24

def validate_all    = Application::Reads::ValidateAll.new(ctx: @ctx)

#whereObject



17
# File 'lib/textus/operations/reads.rb', line 17

def where           = Application::Reads::Where.new(ctx: @ctx)