Sha256: 05a7607f3ff1d75d51c386559f60d24ac3abc55856d0b281b30218caba901e12
Contents?: true
Size: 1.47 KB
Versions: 2
Compression:
Stored size: 1.47 KB
Contents
# Copyright (C) 2009-2014 MongoDB, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. module MongoOrchestration class Standalone include Requestable attr_reader :client attr_reader :id # Stop this resource. # # @since 2.0.0 def stop request_content = { body: { action: 'stop' } } @config = post("#{orchestration}/#{id}", request_content) self end private def create(options = {}) unless alive? @config = post(orchestration, { body: initialize_config[:request_content] }) @id = @config['id'] @client = Mongo::Client.new("#{@config['mongodb_uri']}") end self end def orchestration initialize_config[:orchestration] end def initialize_config { orchestration: 'servers', request_content: { name: 'mongod', procParams: { journal: true } } } end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mongo-2.0.0.rc | spec/support/mongo_orchestration/standalone.rb |
mongo-2.0.0.beta | spec/support/mongo_orchestration/standalone.rb |