Sha256: 82328a94fc3d42c37278c3b79fe26f1d4a35a76499d5b68f5498b09598085773

Contents?: true

Size: 788 Bytes

Versions: 20

Compression:

Stored size: 788 Bytes

Contents

module Fog
  module Compute
    class Google
      class Mock
        def insert_target_https_proxy(_proxy_name, _description: nil,
                                      _url_map: nil, _ssl_certificates: nil)
          Fog::Mock.not_implemented
        end
      end

      class Real
        def insert_target_https_proxy(proxy_name, description: nil,
                                      url_map: nil, ssl_certificates: nil)
          @compute.insert_target_https_proxy(
            @project,
            ::Google::Apis::ComputeV1::TargetHttpsProxy.new(
              :name => proxy_name,
              :description => description,
              :url_map => url_map,
              :ssl_certificates => ssl_certificates
            )
          )
        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/insert_target_https_proxy.rb
fog-google-1.9.0 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.8.2 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.8.1 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.8.0 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.7.1 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.7.0 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.6.0 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.5.0 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.4.0 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.3.3 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.3.2 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.3.1 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.3.0 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.2.2 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.2.1 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.2.0 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.1.0 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.0.1 lib/fog/compute/google/requests/insert_target_https_proxy.rb
fog-google-1.0.0 lib/fog/compute/google/requests/insert_target_https_proxy.rb