Sha256: 27a19767b72a5e9e69f8988321156716ee30d19ffb51d35ac9e9e1ba83979137

Contents?: true

Size: 633 Bytes

Versions: 1

Compression:

Stored size: 633 Bytes

Contents

# frozen_string_literal: true

module Rancher
  module Api
    class Backup
      include Her::Model
      include Helpers::Model

      belongs_to :account
      belongs_to :backuptarget
      belongs_to :snapshot
      belongs_to :volume
      has_one :volume
      has_one :account
      has_one :snapshot
      has_one :backuptarget

      attributes :accountId, :backupTargetId, :created, :data, :description,
                 :id, :kind, :name, :removeTime, :removed,
                 :snapshotId, :state, :uri, :uuid, :volumeId,
                 :transitioning, :transitioningMessage, :transitioningProgress
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rancher-api-beta-0.8.1 lib/rancher/api/models/backup.rb