Sha256: 52471a6300878969478e86d6c9992e0684997786d12dfab13146766441c61d9f

Contents?: true

Size: 672 Bytes

Versions: 56

Compression:

Stored size: 672 Bytes

Contents

module Awspec::Helper
  module Finder
    module Batch
      def find_batch_compute_environment(name)
        res = batch_client.describe_compute_environments(compute_environments: [name], max_results: 1)
        res.compute_environments[0] if res.compute_environments
      end

      def find_batch_job_definition(name)
        res = batch_client.describe_job_definitions(job_definitions: [name], max_results: 1)
        res.job_definitions[0] if res.job_definitions
      end

      def find_batch_job_queue(name)
        res = batch_client.describe_job_queues(job_queues: [name], max_results: 1)
        res.job_queues[0] if res.job_queues
      end
    end
  end
end

Version data entries

56 entries across 56 versions & 3 rubygems

Version Path
awspec-1.25.1 lib/awspec/helper/finder/batch.rb
awspec-1.25.0 lib/awspec/helper/finder/batch.rb
awspec-1.24.4 lib/awspec/helper/finder/batch.rb
awspec-1.24.3 lib/awspec/helper/finder/batch.rb
awspec-1.24.2 lib/awspec/helper/finder/batch.rb
awspec-1.24.1 lib/awspec/helper/finder/batch.rb
awspec-1.24.0 lib/awspec/helper/finder/batch.rb
awspec-1.23.0 lib/awspec/helper/finder/batch.rb
awspec-1.22.1 lib/awspec/helper/finder/batch.rb
awspec-1.22.0 lib/awspec/helper/finder/batch.rb
awspec-1.21.1 lib/awspec/helper/finder/batch.rb
awspec-1.21.0 lib/awspec/helper/finder/batch.rb
awspec-1.20.0 lib/awspec/helper/finder/batch.rb
awspec-1.19.2 lib/awspec/helper/finder/batch.rb
awspec-1.19.1 lib/awspec/helper/finder/batch.rb
awspec-1.19.0 lib/awspec/helper/finder/batch.rb
cthiesfork-awspec-1.2.4 lib/awspec/helper/finder/batch.rb
awspec-api_gateway_extended-1.2.4 lib/awspec/helper/finder/batch.rb
awspec-api_gateway_extended-1.2.3 lib/awspec/helper/finder/batch.rb
awspec-1.18.6 lib/awspec/helper/finder/batch.rb