Sha256: 9bcedb90e8f0bbfc40dcaa7de7c84a6aee41f5940b7aba80ac4dcfd76c8ba44f

Contents?: true

Size: 525 Bytes

Versions: 20

Compression:

Stored size: 525 Bytes

Contents

module Fog
  module Compute
    class Google
      class Mock
        def delete_zone_operation(_zone, _operation)
          Fog::Mock.not_implemented
        end
      end

      class Real
        # https://developers.google.com/compute/docs/reference/latest/zoneOperations

        def delete_zone_operation(zone_name, operation)
          zone_name = zone_name.split("/")[-1] if zone_name.start_with? "http"
          @compute.delete_zone_operation(@project, zone_name, operation)
        end
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
fog-google-1.9.1 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.9.0 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.8.2 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.8.1 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.8.0 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.7.1 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.7.0 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.6.0 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.5.0 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.4.0 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.3.3 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.3.2 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.3.1 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.3.0 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.2.2 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.2.1 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.2.0 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.1.0 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.0.1 lib/fog/compute/google/requests/delete_zone_operation.rb
fog-google-1.0.0 lib/fog/compute/google/requests/delete_zone_operation.rb