# frozen_string_literal: true module Rancher module Api class Account include Her::Model include Helpers::Model has_many :projectmembers has_many :scheduledupgrades has_many :auditlogs has_many :credentials has_many :instances has_many :processinstances has_many :serviceexposemaps has_many :networks has_many :ports has_many :serviceconsumemaps has_many :instancelinks has_many :ipaddresses has_many :storagepools has_many :externalevents has_many :subnets has_many :userpreferences has_many :projecttemplates has_many :images has_many :volumetemplates has_many :hosts has_many :stacks has_many :volumes has_many :mounts has_many :serviceevents has_many :services has_many :networkdrivers has_many :secrets has_many :agents has_many :labels has_many :healthcheckinstancehostmaps has_many :snapshots has_many :hosttemplates has_many :certificates has_many :backuptargets has_many :genericobjects has_many :storagedrivers has_many :configitemstatuses has_many :physicalhosts has_many :containerevents has_many :servicelogs has_many :backups attributes :created, :data, :description, :externalId, :externalIdType, :id, :kind, :name, :removeTime, :removed, :state, :uuid, :version, :transitioning, :transitioningMessage, :transitioningProgress, :identity end end end