File: delete_service.rb

package info (click to toggle)
ruby-fog-aws 3.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 8,092 kB
  • sloc: ruby: 72,795; javascript: 14; makefile: 9; sh: 4
file content (72 lines) | stat: -rw-r--r-- 2,410 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module Fog
  module AWS
    class ECS
      class Real
        require 'fog/aws/parsers/ecs/delete_service'

        # Deletes a specified service within a cluster.
        # http://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_DeleteService.html
        # ==== Parameters
        # * cluster <~String> - name of the cluster that hosts the service you want to delete.
        # * service <~String> - name of the service you want to delete.
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'Service'<~Hash> - The full description of the deleted service
        def delete_service(params={})
          request({
            'Action'  => 'DeleteService',
            :parser   => Fog::Parsers::AWS::ECS::DeleteService.new
          }.merge(params))
        end
      end

      class Mock
        def delete_service(params={})
          response = Excon::Response.new
          response.status = 200

          service_id = params.delete('service')
          msg = 'ClientException => Service cannot be empty.'
          raise Fog::AWS::ECS::Error, msg unless service_id

          owner_id = Fog::AWS::Mock.owner_id

          cluster = params.delete('cluster') || 'default'
          if !cluster.match(/^arn:aws:ecs:.+:.+:cluster\/(.+)$/)
            cluster_path = "cluster/#{cluster}"
            cluster_arn = Fog::AWS::Mock.arn('ecs', owner_id, cluster_path, region)
          else
            cluster_arn = cluster
          end

          if match = service_id.match(/^arn:aws:ecs:.+:\d{1,12}:service\/(.+)$/)
            i = self.data[:services].index do |s|
              s['clusterArn'].eql?(cluster_arn) && s['serviceArn'].eql?(service_id)
            end
          else
            i = self.data[:services].index do |s|
              s['clusterArn'].eql?(cluster_arn) && s['serviceName'].eql?(service_id)
            end
          end

          msg = "ServiceNotFoundException => Service not found."
          raise Fog::AWS::ECS::Error, msg unless i

          service = self.data[:services][i]
          self.data[:services].delete_at(i)

          response.body = {
            'DeleteServiceResult' => {
              'service' => service
            },
            'ResponseMetadata' => {
              'RequestId' => Fog::AWS::Mock.request_id
            }
          }
          response
        end
      end
    end
  end
end