Sha256: be7f754bef8a08cc5805bb14f56ad32d4b87c123c23afe09b9c33ba3de74c378

Contents?: true

Size: 1.16 KB

Versions: 48

Compression:

Stored size: 1.16 KB

Contents

require 'fog/openstack/models/model'

module Fog
  module Network
    class OpenStack
      class IkePolicy < Fog::OpenStack::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

48 entries across 46 versions & 3 rubygems

Version Path
fog-openstack-0.1.9 lib/fog/openstack/models/network/ike_policy.rb
fog-openstack-0.1.8 lib/fog/openstack/models/network/ike_policy.rb
fog-openstack-0.1.7 lib/fog/openstack/models/network/ike_policy.rb
fog-openstack-0.1.6 lib/fog/openstack/models/network/ike_policy.rb
fog-openstack-0.1.5 lib/fog/openstack/models/network/ike_policy.rb
fog-openstack-0.1.4 lib/fog/openstack/models/network/ike_policy.rb
fog-openstack-0.1.3 lib/fog/openstack/models/network/ike_policy.rb
fog-openstack-0.1.2 lib/fog/openstack/models/network/ike_policy.rb