github.com/aldelo/common@v1.5.1/wrapper/cloudmap/sdoperationfilter/sdoperationfilter.go (about) 1 package sdoperationfilter 2 3 /* 4 * Copyright 2020-2023 Aldelo, LP 5 * 6 * Licensed under the Apache License, Version 2.0 (the "License"); 7 * you may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, software 13 * distributed under the License is distributed on an "AS IS" BASIS, 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 * See the License for the specific language governing permissions and 16 * limitations under the License. 17 */ 18 19 // go:generate gen-enumer -type SdOperationFilter 20 21 type SdOperationFilter int 22 23 const ( 24 UNKNOWN SdOperationFilter = 0 25 EQ_NameSpaceID SdOperationFilter = 1 26 EQ_ServiceID SdOperationFilter = 2 27 EQ_Status SdOperationFilter = 3 28 EQ_Type SdOperationFilter = 4 29 IN_Status SdOperationFilter = 5 30 IN_Type SdOperationFilter = 6 31 BETWEEN_UpdateDate SdOperationFilter = 7 32 ) 33 34 const ( 35 _SdOperationFilterKey_0 = "UNKNOWN" 36 _SdOperationFilterKey_1 = "EQ_NameSpaceID" 37 _SdOperationFilterKey_2 = "EQ_ServiceID" 38 _SdOperationFilterKey_3 = "EQ_Status" 39 _SdOperationFilterKey_4 = "EQ_Type" 40 _SdOperationFilterKey_5 = "IN_Status" 41 _SdOperationFilterKey_6 = "IN_Type" 42 _SdOperationFilterKey_7 = "BETWEEN_UpdateDate" 43 ) 44 45 const ( 46 _SdOperationFilterCaption_0 = "UNKNOWN" 47 _SdOperationFilterCaption_1 = "EQ_NameSpaceID" 48 _SdOperationFilterCaption_2 = "EQ_ServiceID" 49 _SdOperationFilterCaption_3 = "EQ_Status" 50 _SdOperationFilterCaption_4 = "EQ_Type" 51 _SdOperationFilterCaption_5 = "IN_Status" 52 _SdOperationFilterCaption_6 = "IN_Type" 53 _SdOperationFilterCaption_7 = "BETWEEN_UpdateDate" 54 ) 55 56 const ( 57 _SdOperationFilterDescription_0 = "UNKNOWN" 58 _SdOperationFilterDescription_1 = "EQ_NameSpaceID" 59 _SdOperationFilterDescription_2 = "EQ_ServiceID" 60 _SdOperationFilterDescription_3 = "EQ_Status" 61 _SdOperationFilterDescription_4 = "EQ_Type" 62 _SdOperationFilterDescription_5 = "IN_Status" 63 _SdOperationFilterDescription_6 = "IN_Type" 64 _SdOperationFilterDescription_7 = "BETWEEN_UpdateDate" 65 )