Sha256: 820867bd280f3f8106260a1fc7d8f82475e2ea78facc5f35421319fb8c506dda
Contents?: true
Size: 1.23 KB
Versions: 24
Compression:
Stored size: 1.23 KB
Contents
=begin #Datadog API V2 Collection #Collection of all Datadog Public endpoints. The version of the OpenAPI document: 1.0 Contact: support@datadoghq.com Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2020-Present Datadog, Inc. =end require 'date' require 'time' module DatadogAPIClient::V2 # Type of the replacement text. None means no replacement. # hash means the data will be stubbed. replacement_string means that # one can chose a text to replace the data. partial_replacement_from_beginning # allows a user to partially replace the data from the beginning, and # partial_replacement_from_end on the other hand, allows to replace data from # the end. class SensitiveDataScannerTextReplacementType include BaseEnumModel NONE = "none".freeze HASH = "hash".freeze REPLACEMENT_STRING = "replacement_string".freeze PARTIAL_REPLACEMENT_FROM_BEGINNING = "partial_replacement_from_beginning".freeze PARTIAL_REPLACEMENT_FROM_END = "partial_replacement_from_end".freeze end end
Version data entries
24 entries across 24 versions & 1 rubygems