Sha256: cd8c3001a209aac574fb0d29d9a7dd6ad3437f2eefe0ed5d0cfcc56d281c694a
Contents?: true
Size: 442 Bytes
Versions: 42
Compression:
Stored size: 442 Bytes
Contents
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
42 entries across 42 versions & 3 rubygems