Sha256: 504436b76b7dc0347b939509bb18f899bf65df4ed6fc74c3aa8cc7a4bcccdc39

Contents?: true

Size: 1.17 KB

Versions: 4

Compression:

Stored size: 1.17 KB

Contents

module Fog
  module Identity
    class HuaweiCloud
      class V2
        class Real
          ##
          # Destroy an EC2 credential for a user.  Requires administrator
          # credentials.
          #
          # ==== Parameters
          # * user_id<~String>: The id of the user to delete the credential
          #   for
          # * access<~String>: The access key of the credential to destroy
          #
          # ==== Returns
          # * response<~Excon::Response>:
          #   * body<~String>:  Empty string

          def delete_ec2_credential(user_id, access)
            request(
              :expects => [200, 204],
              :method  => 'DELETE',
              :path    => "users/#{user_id}/credentials/OS-EC2/#{access}"
            )
          end
        end

        class Mock
          def delete_ec2_credential(user_id, access)
            raise Fog::Identity::HuaweiCloud::NotFound unless data[:ec2_credentials][user_id][access]

            data[:ec2_credentials][user_id].delete access

            response = Excon::Response.new
            response.status = 204
            response
          rescue
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/identity/huaweicloud/v2/requests/delete_ec2_credential.rb
fog-huaweicloud-0.0.2 lib/fog/identity/huaweicloud/v2/requests/delete_ec2_credential.rb
fog-huaweicloud-0.1.3 lib/fog/identity/huaweicloud/v2/requests/delete_ec2_credential.rb
fog-huaweicloud-0.1.2 lib/fog/identity/huaweicloud/v2/requests/delete_ec2_credential.rb