Sha256: 5ebc98387bdb0aa259d72571ab7ada3668c0e3d89e042f45f1fb483b1c8a9af9

Contents?: true

Size: 1.49 KB

Versions: 4

Compression:

Stored size: 1.49 KB

Contents

require 'fog/huaweicloud/models/collection'
require 'fog/identity/huaweicloud/v2/models/ec2_credential'

module Fog
  module Identity
    class HuaweiCloud
      class V2
        class Ec2Credentials < Fog::HuaweiCloud::Collection
          model Fog::Identity::HuaweiCloud::V2::Ec2Credential

          attribute :user

          def all(options = {})
            user_id = user ? user.id : nil

            options[:user_id] = user_id
            ec2_credentials = service.list_ec2_credentials(options)

            load_response(ec2_credentials, 'credentials')
          end

          def create(attributes = {})
            if user
              attributes[:user_id] ||= user.id
              attributes[:tenant_id] ||= user.tenant_id
            end

            super attributes
          end

          def destroy(access_key)
            ec2_credential = find_by_access_key(access_key)
            ec2_credential.destroy
          end

          def find_by_access_key(access_key)
            user_id = user ? user.id : nil

            ec2_credential =
              find { |ec2_cred| ec2_cred.access == access_key }

            unless ec2_credential
              response = service.get_ec2_credential(user_id, access_key)
              body = response.body['credential']
              body = body.merge 'service' => service

              ec2_credential = Fog::Identity::HuaweiCloud::V2::EC2Credential.new(body)
            end

            ec2_credential
          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/models/ec2_credentials.rb
fog-huaweicloud-0.0.2 lib/fog/identity/huaweicloud/v2/models/ec2_credentials.rb
fog-huaweicloud-0.1.3 lib/fog/identity/huaweicloud/v2/models/ec2_credentials.rb
fog-huaweicloud-0.1.2 lib/fog/identity/huaweicloud/v2/models/ec2_credentials.rb