Sha256: 805a2a0c3cba2548ef893dc0957079cf7e7b72190f046dccd6ba2f13a429438a
Contents?: true
Size: 1019 Bytes
Versions: 95
Compression:
Stored size: 1019 Bytes
Contents
module Fog module AWS class EMR class Real require 'fog/aws/parsers/emr/terminate_job_flows' # shuts a list of job flows down. # http://docs.amazonwebservices.com/ElasticMapReduce/latest/API/API_TerminateJobFlows.html # ==== Parameters # * JobFlowIds <~String list> - list of strings that uniquely identify the job flows to protect # # ==== Returns # * response<~Excon::Response>: # * body<~Hash> def terminate_job_flows(options={}) if job_ids = options.delete('JobFlowIds') options.merge!(Fog::AWS.serialize_keys('JobFlowIds', job_ids)) end request({ 'Action' => 'TerminateJobFlows', :parser => Fog::Parsers::AWS::EMR::TerminateJobFlows.new, }.merge(options)) end end class Mock def terminate_job_flows(db_name, options={}) Fog::Mock.not_implemented end end end end end
Version data entries
95 entries across 95 versions & 16 rubygems