Class: Miasma::Models::Orchestration
- Inherits:
-
Types::Api
- Object
- Types::Api
- Miasma::Models::Orchestration
- Defined in:
- lib/miasma/models/orchestration.rb,
lib/miasma/models/orchestration/event.rb,
lib/miasma/models/orchestration/stack.rb,
lib/miasma/models/orchestration/events.rb,
lib/miasma/models/orchestration/stacks.rb,
lib/miasma/models/orchestration/resource.rb,
lib/miasma/models/orchestration/resources.rb
Overview
Abstract orchestration API
Defined Under Namespace
Constant Summary collapse
- RESOURCE_MAPPING =
Returns mapping of remote type to internal type.
Smash.new
- VALID_RESOURCE_STATES =
Returns valid resource states.
[ :create_complete, :create_in_progress, :create_failed, :delete_complete, :delete_in_progress, :delete_failed, :rollback_complete, :rollback_in_progress, :rollback_failed, :update_complete, :update_in_progress, :update_failed, :update_rollback_complete, :update_rollback_in_progress, :update_rollback_failed, :unknown ]
Constants inherited from Types::Api
Types::Api::MAX_REQUEST_RETRIES, Types::Api::REQUEST_RETRY_DELAY, Types::Api::VALID_REQUEST_RETRY_METHODS
Instance Method Summary collapse
-
#event_all(stack) ⇒ Array<Models::Orchestration::Stack::Event>
Return all events for stack.
-
#event_all_new(events) ⇒ Array<Models::Orchestration::Stack::Event>
Return all new events for event collection.
-
#event_reload(event) ⇒ Models::Orchestration::Event
Reload the stack event data from the API.
-
#resource_all(stack) ⇒ Array<Models::Orchestration::Stack::Resource>
Return all resources for stack.
-
#resource_reload(resource) ⇒ Models::Orchestration::Resource
Reload the stack resource data from the API.
-
#stack_all(options = {}) ⇒ Array<Models::Orchestration::Stack>
Return all stacks.
-
#stack_destroy(stack) ⇒ TrueClass, FalseClass
Delete the stack.
-
#stack_reload(stack) ⇒ Models::Orchestration::Stack
Reload the stack data from the API.
-
#stack_save(stack) ⇒ Models::Orchestration::Stack
Save the stack.
-
#stack_template_load(stack) ⇒ Smash
Fetch stack template.
-
#stack_template_validate(stack) ⇒ NilClass, String
Validate stack template.
-
#stacks(args = {}) ⇒ Types::Collection<Models::Orchestration::Stack>
Orchestration stacks.
Methods inherited from Types::Api
#api_for, #connect, #connection, #custom_setup, #endpoint, #format_response, #from_json, #from_xml, #initialize, #make_request, #provider, #request, #retryable_request
Methods included from Utils::Memoization
#_memo, #clear_memoizations!, #memoize, #unmemoize
Methods included from Utils::Lazy
Constructor Details
This class inherits a constructor from Miasma::Types::Api
Instance Method Details
#event_all(stack) ⇒ Array<Models::Orchestration::Stack::Event>
Return all events for stack
107 108 109 |
# File 'lib/miasma/models/orchestration.rb', line 107 def event_all(stack) raise NotImplementedError end |
#event_all_new(events) ⇒ Array<Models::Orchestration::Stack::Event>
Return all new events for event collection
115 116 117 |
# File 'lib/miasma/models/orchestration.rb', line 115 def event_all_new(events) raise NotImplementedError end |
#event_reload(event) ⇒ Models::Orchestration::Event
Reload the stack event data from the API
123 124 125 |
# File 'lib/miasma/models/orchestration.rb', line 123 def event_reload(event) raise NotImplementedError end |
#resource_all(stack) ⇒ Array<Models::Orchestration::Stack::Resource>
Return all resources for stack
91 92 93 |
# File 'lib/miasma/models/orchestration.rb', line 91 def resource_all(stack) raise NotImplementedError end |
#resource_reload(resource) ⇒ Models::Orchestration::Resource
Reload the stack resource data from the API
99 100 101 |
# File 'lib/miasma/models/orchestration.rb', line 99 def resource_reload(resource) raise NotImplementedError end |
#stack_all(options = {}) ⇒ Array<Models::Orchestration::Stack>
Return all stacks
67 68 69 |
# File 'lib/miasma/models/orchestration.rb', line 67 def stack_all(={}) raise NotImplementedError end |
#stack_destroy(stack) ⇒ TrueClass, FalseClass
Delete the stack
59 60 61 |
# File 'lib/miasma/models/orchestration.rb', line 59 def stack_destroy(stack) raise NotImplementedError end |
#stack_reload(stack) ⇒ Models::Orchestration::Stack
Reload the stack data from the API
51 52 53 |
# File 'lib/miasma/models/orchestration.rb', line 51 def stack_reload(stack) raise NotImplementedError end |
#stack_save(stack) ⇒ Models::Orchestration::Stack
Save the stack
43 44 45 |
# File 'lib/miasma/models/orchestration.rb', line 43 def stack_save(stack) raise NotImplementedError end |
#stack_template_load(stack) ⇒ Smash
Fetch stack template
75 76 77 |
# File 'lib/miasma/models/orchestration.rb', line 75 def stack_template_load(stack) raise NotImplementedError end |
#stack_template_validate(stack) ⇒ NilClass, String
Validate stack template
83 84 85 |
# File 'lib/miasma/models/orchestration.rb', line 83 def stack_template_validate(stack) raise NotImplementedError end |
#stacks(args = {}) ⇒ Types::Collection<Models::Orchestration::Stack>
Orchestration stacks
33 34 35 36 37 |
# File 'lib/miasma/models/orchestration.rb', line 33 def stacks(args={}) memoize(:stacks) do Stacks.new(self) end end |