Sha256: 098a960083c2864184b98932c3f244ddbbfe3d96a61da7c414e4170aadf85d3d
Contents?: true
Size: 1.18 KB
Versions: 37
Compression:
Stored size: 1.18 KB
Contents
# Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. require "date" require "time" module Algolia module Monitoring class Metric AVG_BUILD_TIME = "avg_build_time".freeze SSD_USAGE = "ssd_usage".freeze RAM_SEARCH_USAGE = "ram_search_usage".freeze RAM_INDEXING_USAGE = "ram_indexing_usage".freeze CPU_USAGE = "cpu_usage".freeze ALL = "*".freeze def self.all_vars @all_vars ||= [AVG_BUILD_TIME, SSD_USAGE, RAM_SEARCH_USAGE, RAM_INDEXING_USAGE, CPU_USAGE, ALL].freeze end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def self.build_from_hash(value) new.build_from_hash(value) end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def build_from_hash(value) return value if Metric.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #Metric" end end end end
Version data entries
37 entries across 37 versions & 1 rubygems