Sha256: 5e2ae1326c275d41b4b9e3a17e134e438849f2c9691c3a00d063761415fda35b

Contents?: true

Size: 1.17 KB

Versions: 4

Compression:

Stored size: 1.17 KB

Contents

require 'fog/huaweicloud/models/model'

module Fog
  module Network
    class HuaweiCloud
      class IkePolicy < Fog::HuaweiCloud::Model
        identity :id

        attribute :name
        attribute :description
        attribute :status
        attribute :admin_state_up
        attribute :tenant_id
        attribute :auth_algorithm
        attribute :encryption_algorithm
        attribute :pfs
        attribute :phase1_negotiation_mode
        attribute :lifetime
        attribute :ike_version

        def create
          requires :name, :auth_algorithm, :encryption_algorithm, :ike_version,
                   :lifetime, :pfs, :phase1_negotiation_mode
          merge_attributes(service.create_ike_policy(attributes).body['ikepolicy'])
          self
        end

        def update
          requires :id, :name, :auth_algorithm, :encryption_algorithm, :ike_version,
                   :lifetime, :pfs, :phase1_negotiation_mode
          merge_attributes(service.update_ike_policy(id, attributes).body['ikepolicy'])
          self
        end

        def destroy
          requires :id
          service.delete_ike_policy(id)
          true
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/network/huaweicloud/models/ike_policy.rb
fog-huaweicloud-0.0.2 lib/fog/network/huaweicloud/models/ike_policy.rb
fog-huaweicloud-0.1.3 lib/fog/network/huaweicloud/models/ike_policy.rb
fog-huaweicloud-0.1.2 lib/fog/network/huaweicloud/models/ike_policy.rb