Sha256: cf53eac1378e2215aefd6163592a29330f85475d039a6513347aad91f976e71c

Contents?: true

Size: 1.34 KB

Versions: 22

Compression:

Stored size: 1.34 KB

Contents

module Fog
  module Google
    class SQL
      ##
      # Lists all of the current SSL certificates for the instance
      #
      # @see https://developers.google.com/cloud-sql/docs/admin-api/v1beta3/sslCerts/list

      class Real
        def list_ssl_certs(instance_id)
          api_method = @sql.ssl_certs.list
          parameters = {
            'project' => @project,
            'instance' => instance_id,
          }

          request(api_method, parameters)
        end
      end

      class Mock
        def list_ssl_certs(instance_id)
          if self.data[:ssl_certs].has_key?(instance_id)
            body = {
              'kind' => 'sql#sslCertsList',
              'items' => self.data[:ssl_certs][instance_id].values,
            }
            status = 200
          else
            body = {
              'error' => {
                'errors' => [
                  {
                    'domain' => 'global',
                    'reason' => 'notAuthorized',
                    'message' => 'The client is not authorized to make this request.',
                  }
                ],
                'code' => 403,
                'message' => 'The client is not authorized to make this request.',
             }
            }
            status = 403
          end

          build_excon_response(body, status)
        end
      end
    end
  end
end

Version data entries

22 entries across 20 versions & 5 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-google-0.1.0/lib/fog/google/requests/sql/list_ssl_certs.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-google-0.1.0/lib/fog/google/requests/sql/list_ssl_certs.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-google-0.1.0/lib/fog/google/requests/sql/list_ssl_certs.rb
fog-google-0.1.3 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-google-0.1.2 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-google-0.1.1 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-google-0.1.0 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-google-0.0.9 lib/fog/google/requests/sql/list_ssl_certs.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-google-0.0.7/lib/fog/google/requests/sql/list_ssl_certs.rb
fog-google-0.0.7 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-google-0.0.6 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-google-0.0.5 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-google-0.0.4 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-google-0.0.3 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-google-0.0.2 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-1.29.0 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-1.28.0 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-1.27.0 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-1.26.0 lib/fog/google/requests/sql/list_ssl_certs.rb
fog-1.25.0 lib/fog/google/requests/sql/list_ssl_certs.rb