Sha256: 2cffb08991cb16658657e27b488f85e2b268435d264281e1077d5059f35fa7d0
Contents?: true
Size: 473 Bytes
Versions: 14
Compression:
Stored size: 473 Bytes
Contents
# frozen_string_literal: true module Awspec::Helper module Finder module Codedeploy def find_codedeploy_app(name) res = codedeploy_client.get_application(application_name: name) res.application end def find_codedeploy_deployment_group(application, group) res = codedeploy_client.get_deployment_group(application_name: application, deployment_group_name: group) res.deployment_group_info end end end end
Version data entries
14 entries across 14 versions & 1 rubygems