Sha256: e0c5b2816c4e1e708faecf83039fd2918582033acd480a9d25c77f443035fbc8

Contents?: true

Size: 703 Bytes

Versions: 13

Compression:

Stored size: 703 Bytes

Contents

# frozen_string_literal: true

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

13 entries across 13 versions & 1 rubygems

Version Path
awspec-1.31.0 lib/awspec/helper/finder/batch.rb
awspec-1.30.0 lib/awspec/helper/finder/batch.rb
awspec-1.29.3 lib/awspec/helper/finder/batch.rb
awspec-1.29.2 lib/awspec/helper/finder/batch.rb
awspec-1.29.1 lib/awspec/helper/finder/batch.rb
awspec-1.29.0 lib/awspec/helper/finder/batch.rb
awspec-1.28.2 lib/awspec/helper/finder/batch.rb
awspec-1.28.1 lib/awspec/helper/finder/batch.rb
awspec-1.28.0 lib/awspec/helper/finder/batch.rb
awspec-1.27.1 lib/awspec/helper/finder/batch.rb
awspec-1.27.0 lib/awspec/helper/finder/batch.rb
awspec-1.26.0 lib/awspec/helper/finder/batch.rb
awspec-1.25.2 lib/awspec/helper/finder/batch.rb