/** * Dynatrace Configuration API * Documentation of the Dynatrace Configuration API. Refer to the [help page](https://www.dynatrace.com/support/help/shortlink/config-api) to read about use-cases and examples. Notes about compatibility: * Operations marked as early adopter or preview may be changed in non-compatible ways, although we try to avoid this. * We may add new enum constants without incrementing the API version; thus, clients need to handle unknown enum constants gracefully. * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from '../api'; export class DcrumDecoderComparisonAllOf { /** * Operator of the comparison. You can reverse it by setting **negate** to `true`. Possible values depend on the **type** of the comparison. Find the list of actual models in the description of the **type** field and check the description of the model you need. */ 'operator'?: DcrumDecoderComparisonAllOf.OperatorEnum; /** * The value to compare to. */ 'value'?: DcrumDecoderComparisonAllOf.ValueEnum; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "operator", "baseName": "operator", "type": "DcrumDecoderComparisonAllOf.OperatorEnum" }, { "name": "value", "baseName": "value", "type": "DcrumDecoderComparisonAllOf.ValueEnum" } ]; static getAttributeTypeMap() { return DcrumDecoderComparisonAllOf.attributeTypeMap; } } export namespace DcrumDecoderComparisonAllOf { export enum OperatorEnum { EQUALS = 'EQUALS', EXISTS = 'EXISTS' } export enum ValueEnum { ALLOTHER = 'ALL_OTHER', CITRIXAPPFLOW = 'CITRIX_APPFLOW', CITRIXICA = 'CITRIX_ICA', CITRIXICAOVERSSL = 'CITRIX_ICA_OVER_SSL', DB2DRDA = 'DB2_DRDA', HTTP = 'HTTP', HTTPS = 'HTTPS', HTTPEXPRESS = 'HTTP_EXPRESS', INFORMIX = 'INFORMIX', MYSQL = 'MYSQL', ORACLE = 'ORACLE', SAPGUI = 'SAP_GUI', SAPGUIOVERHTTP = 'SAP_GUI_OVER_HTTP', SAPGUIOVERHTTPS = 'SAP_GUI_OVER_HTTPS', SAPHANADB = 'SAP_HANA_DB', SAPRFC = 'SAP_RFC', SSL = 'SSL', TDS = 'TDS' } }