Sha256: a97f35c8034d8622a96d47825527faf9b9adb94b44b322307ff4247a49df3898
Contents?: true
Size: 1.04 KB
Versions: 7
Compression:
Stored size: 1.04 KB
Contents
module Elasticsearch module XPack module API module MachineLearning module Actions # Delete an existing model snapshot # # @option arguments [String] :job_id The ID of the job to fetch (*Required*) # @option arguments [String] :snapshot_id The ID of the snapshot to delete (*Required*) # # @see http://www.elastic.co/guide/en/elasticsearch/reference/current/ml-delete-snapshot.html # def delete_model_snapshot(arguments={}) raise ArgumentError, "Required argument 'job_id' missing" unless arguments[:job_id] raise ArgumentError, "Required argument 'snapshot_id' missing" unless arguments[:snapshot_id] method = Elasticsearch::API::HTTP_DELETE path = "_xpack/ml/anomaly_detectors/#{arguments[:job_id]}/model_snapshots/#{arguments[:snapshot_id]}" params = {} body = nil perform_request(method, path, params, body).body end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems