/** * 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'; import { ComparisonInfo } from './comparisonInfo'; import { ESBInputNodeTypeComparisonInfoAllOf } from './eSBInputNodeTypeComparisonInfoAllOf'; /** * Comparison for `IIB_INPUT_NODE_TYPE` attributes. */ export class IIBInputNodeTypeComparisonInfo extends ComparisonInfo { /** * Operator of the comparision. You can reverse it by setting **negate** to `true`. */ 'comparison': IIBInputNodeTypeComparisonInfo.ComparisonEnum; /** * The value to compare to. */ 'value'?: IIBInputNodeTypeComparisonInfo.ValueEnum; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "comparison", "baseName": "comparison", "type": "IIBInputNodeTypeComparisonInfo.ComparisonEnum" }, { "name": "value", "baseName": "value", "type": "IIBInputNodeTypeComparisonInfo.ValueEnum" } ]; static getAttributeTypeMap() { return super.getAttributeTypeMap().concat(IIBInputNodeTypeComparisonInfo.attributeTypeMap); } } export namespace IIBInputNodeTypeComparisonInfo { export enum ComparisonEnum { EQUALS = 'EQUALS', EXISTS = 'EXISTS' } export enum ValueEnum { CALLABLEFLOWASYNCRESPONSENODE = 'CALLABLE_FLOW_ASYNC_RESPONSE_NODE', CALLABLEFLOWINPUTNODE = 'CALLABLE_FLOW_INPUT_NODE', DATABASEINPUTNODE = 'DATABASE_INPUT_NODE', DOTNETINPUTNODE = 'DOTNET_INPUT_NODE', EMAILINPUTNODE = 'EMAIL_INPUT_NODE', EVENTINPUT = 'EVENT_INPUT', EVENTINPUTNODE = 'EVENT_INPUT_NODE', FILEINPUTNODE = 'FILE_INPUT_NODE', FTEINPUTNODE = 'FTE_INPUT_NODE', HTTPASYNCRESPONSE = 'HTTP_ASYNC_RESPONSE', JDEDWARDSINPUTNODE = 'JD_EDWARDS_INPUT_NODE', JMSCLIENTINPUTNODE = 'JMS_CLIENT_INPUT_NODE', LABELNODE = 'LABEL_NODE', MQINPUTNODE = 'MQ_INPUT_NODE', PEOPLESOFTINPUTNODE = 'PEOPLE_SOFT_INPUT_NODE', RESTASYNCRESPONSE = 'REST_ASYNC_RESPONSE', RESTREQUEST = 'REST_REQUEST', SAPINPUTNODE = 'SAP_INPUT_NODE', SCAASYNCRESPONSENODE = 'SCA_ASYNC_RESPONSE_NODE', SCAINPUTNODE = 'SCA_INPUT_NODE', SIEBELINPUTNODE = 'SIEBEL_INPUT_NODE', SOAPINPUTNODE = 'SOAP_INPUT_NODE', TCPIPCLIENTINPUTNODE = 'TCPIP_CLIENT_INPUT_NODE', TCPIPCLIENTREQUESTNODE = 'TCPIP_CLIENT_REQUEST_NODE', TCPIPSERVERINPUTNODE = 'TCPIP_SERVER_INPUT_NODE', TCPIPSERVERREQUESTNODE = 'TCPIP_SERVER_REQUEST_NODE', TIMEOUTNOTIFICATIONNODE = 'TIMEOUT_NOTIFICATION_NODE', WSINPUTNODE = 'WS_INPUT_NODE' } }