From 187218a62459aa19aeccc9bdc955f64acdb6aeb6 Mon Sep 17 00:00:00 2001 From: Sumanth Lingappa Date: Mon, 15 Apr 2024 16:11:01 +0530 Subject: [PATCH] Fixed #400 - unset not working for systemuser --- plugins/module_utils/module_executor.py | 6 +- plugins/module_utils/nitro_resource_map.py | 6708 ++++++++--------- tests/integration/targets/systemuser/aliases | 3 + .../targets/systemuser/tasks/main.yaml | 173 + 4 files changed, 3476 insertions(+), 3414 deletions(-) create mode 100644 tests/integration/targets/systemuser/aliases create mode 100644 tests/integration/targets/systemuser/tasks/main.yaml diff --git a/plugins/module_utils/module_executor.py b/plugins/module_utils/module_executor.py index e78898051..663740574 100644 --- a/plugins/module_utils/module_executor.py +++ b/plugins/module_utils/module_executor.py @@ -253,6 +253,9 @@ def is_attribute_equal( attribute_type = NITRO_RESOURCE_MAP[self.resource_name]["readwrite_arguments"][ attribute_name ]["type"] + if attribute_type == "raw": + # for "raw" type, compare as string values + return str(existing_attribute_value) == str(module_params_attribute_value) if attribute_type == "int": return int(existing_attribute_value) == int(module_params_attribute_value) if attribute_type == "float": @@ -265,7 +268,8 @@ def is_attribute_equal( str(existing_attribute_value).lower() == str(module_params_attribute_value).lower() ) - return existing_attribute_value == module_params_attribute_value + # By default, compare as string values + return str(existing_attribute_value) == str(module_params_attribute_value) @trace def is_resource_identical(self): diff --git a/plugins/module_utils/nitro_resource_map.py b/plugins/module_utils/nitro_resource_map.py index f4da70864..fcee5301c 100644 --- a/plugins/module_utils/nitro_resource_map.py +++ b/plugins/module_utils/nitro_resource_map.py @@ -143,9 +143,9 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "groupnamefield": {"no_log": False, "type": "str"}, - "usernamefield": {"no_log": False, "type": "str"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "groupnamefield": {"no_log": False, "type": "raw"}, + "usernamefield": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -1003,16 +1003,16 @@ "primary_key": "kcdaccount", "primary_key_composite": [], "readwrite_arguments": { - "cacert": {"no_log": False, "type": "str"}, + "cacert": {"no_log": False, "type": "raw"}, "delegateduser": {"no_log": False, "type": "str"}, - "enterpriserealm": {"no_log": False, "type": "str"}, - "kcdaccount": {"no_log": False, "type": "str"}, + "enterpriserealm": {"no_log": False, "type": "raw"}, + "kcdaccount": {"no_log": False, "type": "raw"}, "kcdpassword": {"no_log": True, "type": "str"}, - "keytab": {"no_log": False, "type": "str"}, + "keytab": {"no_log": False, "type": "raw"}, "realmstr": {"no_log": False, "type": "str"}, - "servicespn": {"no_log": False, "type": "str"}, - "usercert": {"no_log": False, "type": "str"}, - "userrealm": {"no_log": False, "type": "str"}, + "servicespn": {"no_log": False, "type": "raw"}, + "usercert": {"no_log": False, "type": "raw"}, + "userrealm": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -1073,39 +1073,39 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "authtimeout": {"no_log": False, "type": "float"}, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "groupattrname": {"no_log": False, "type": "str"}, - "groupnameidentifier": {"no_log": False, "type": "str"}, - "groupsearchattribute": {"no_log": False, "type": "str"}, - "groupsearchfilter": {"no_log": False, "type": "str"}, - "groupsearchsubattribute": {"no_log": False, "type": "str"}, - "ldapbase": {"no_log": False, "type": "str"}, - "ldapbinddn": {"no_log": False, "type": "str"}, - "ldapbinddnpassword": {"no_log": True, "type": "str"}, - "ldaploginname": {"no_log": False, "type": "str"}, - "maxnestinglevel": {"no_log": False, "type": "float"}, + "authtimeout": {"no_log": False, "type": "raw"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "groupattrname": {"no_log": False, "type": "raw"}, + "groupnameidentifier": {"no_log": False, "type": "raw"}, + "groupsearchattribute": {"no_log": False, "type": "raw"}, + "groupsearchfilter": {"no_log": False, "type": "raw"}, + "groupsearchsubattribute": {"no_log": False, "type": "raw"}, + "ldapbase": {"no_log": False, "type": "raw"}, + "ldapbinddn": {"no_log": False, "type": "raw"}, + "ldapbinddnpassword": {"no_log": True, "type": "raw"}, + "ldaploginname": {"no_log": False, "type": "raw"}, + "maxnestinglevel": {"no_log": False, "type": "raw"}, "nestedgroupextraction": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "passwdchange": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "searchfilter": {"no_log": False, "type": "str"}, + "searchfilter": {"no_log": False, "type": "raw"}, "sectype": { "choices": ["PLAINTEXT", "SSL", "TLS"], "no_log": False, - "type": "str", + "type": "raw", }, - "serverip": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "int"}, - "ssonameattribute": {"no_log": False, "type": "str"}, - "subattributename": {"no_log": False, "type": "str"}, - "svrtype": {"choices": ["AD", "NDS"], "no_log": False, "type": "str"}, + "serverip": {"no_log": False, "type": "raw"}, + "serverport": {"no_log": False, "type": "raw"}, + "ssonameattribute": {"no_log": False, "type": "raw"}, + "subattributename": {"no_log": False, "type": "raw"}, + "svrtype": {"choices": ["AD", "NDS"], "no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -1155,8 +1155,8 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "encryption": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "maxotpdevices": {"no_log": False, "type": "float"}, + "encryption": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "maxotpdevices": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": ["encryption", "maxotpdevices"], @@ -1218,9 +1218,9 @@ "WARNING", ], "no_log": False, - "type": "str", + "type": "raw", }, - "aaadnatip": {"no_log": False, "type": "str"}, + "aaadnatip": {"no_log": False, "type": "raw"}, "aaasessionloglevel": { "choices": [ "ALERT", @@ -1233,67 +1233,67 @@ "WARNING", ], "no_log": False, - "type": "str", + "type": "raw", }, "apitokencache": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "defaultauthtype": { "choices": ["CERT", "LDAP", "LOCAL", "RADIUS", "TACACS"], "no_log": False, - "type": "str", + "type": "raw", }, "defaultcspheader": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dynaddr": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "dynaddr": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "enableenhancedauthfeedback": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "enablesessionstickiness": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "enablestaticpagecaching": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "failedlogintimeout": {"no_log": False, "type": "float"}, - "ftmode": {"choices": ["HA", "OFF", "ON"], "no_log": False, "type": "str"}, + "ftmode": {"choices": ["HA", "OFF", "ON"], "no_log": False, "type": "raw"}, "httponlycookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "loginencryption": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxaaausers": {"no_log": False, "type": "float"}, - "maxkbquestions": {"no_log": False, "type": "float"}, - "maxloginattempts": {"no_log": False, "type": "float"}, - "maxsamldeflatesize": {"no_log": False, "type": "float"}, + "maxaaausers": {"no_log": False, "type": "raw"}, + "maxkbquestions": {"no_log": False, "type": "raw"}, + "maxloginattempts": {"no_log": False, "type": "raw"}, + "maxsamldeflatesize": {"no_log": False, "type": "raw"}, "persistentloginattempts": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "pwdexpirynotificationdays": {"no_log": False, "type": "float"}, + "pwdexpirynotificationdays": {"no_log": False, "type": "raw"}, "samesite": { "choices": ["LAX", "None", "STRICT"], "no_log": False, - "type": "str", + "type": "raw", }, - "tokenintrospectioninterval": {"no_log": False, "type": "float"}, + "tokenintrospectioninterval": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -1358,10 +1358,10 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "defaultepagroup": {"no_log": False, "type": "str"}, - "deletefiles": {"no_log": False, "type": "str"}, - "killprocess": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "defaultepagroup": {"no_log": False, "type": "raw"}, + "deletefiles": {"no_log": False, "type": "raw"}, + "killprocess": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "preauthenticationaction": { "choices": ["ALLOW", "DENY"], "no_log": False, @@ -1400,14 +1400,14 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "deletefiles": {"no_log": False, "type": "str"}, - "killprocess": {"no_log": False, "type": "str"}, + "deletefiles": {"no_log": False, "type": "raw"}, + "killprocess": {"no_log": False, "type": "raw"}, "preauthenticationaction": { "choices": ["ALLOW", "DENY"], "no_log": False, - "type": "str", + "type": "raw", }, - "rule": {"no_log": False, "type": "str"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -1498,46 +1498,46 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "accounting": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "accounting": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "authentication": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "authservretry": {"no_log": False, "type": "float"}, - "authtimeout": {"no_log": False, "type": "float"}, + "authservretry": {"no_log": False, "type": "raw"}, + "authtimeout": {"no_log": False, "type": "raw"}, "callingstationid": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "ipattributetype": {"no_log": False, "type": "float"}, - "ipvendorid": {"no_log": False, "type": "float"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "ipattributetype": {"no_log": False, "type": "raw"}, + "ipvendorid": {"no_log": False, "type": "raw"}, "passencoding": { "choices": ["chap", "mschapv1", "mschapv2", "pap"], "no_log": False, - "type": "str", + "type": "raw", }, - "pwdattributetype": {"no_log": False, "type": "float"}, - "pwdvendorid": {"no_log": False, "type": "float"}, - "radattributetype": {"no_log": False, "type": "float"}, - "radgroupseparator": {"no_log": False, "type": "str"}, - "radgroupsprefix": {"no_log": False, "type": "str"}, + "pwdattributetype": {"no_log": False, "type": "raw"}, + "pwdvendorid": {"no_log": False, "type": "raw"}, + "radattributetype": {"no_log": False, "type": "raw"}, + "radgroupseparator": {"no_log": False, "type": "raw"}, + "radgroupsprefix": {"no_log": False, "type": "raw"}, "radkey": {"no_log": True, "type": "str"}, - "radnasid": {"no_log": False, "type": "str"}, + "radnasid": {"no_log": False, "type": "raw"}, "radnasip": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "radvendorid": {"no_log": False, "type": "float"}, - "serverip": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "int"}, + "radvendorid": {"no_log": False, "type": "raw"}, + "serverip": {"no_log": False, "type": "raw"}, + "serverport": {"no_log": False, "type": "raw"}, "tunnelendpointclientip": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -1669,19 +1669,19 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "accounting": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "accounting": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "auditfailedcmds": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "authorization": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "authtimeout": {"no_log": False, "type": "float"}, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "groupattrname": {"no_log": False, "type": "str"}, - "serverip": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "int"}, - "tacacssecret": {"no_log": True, "type": "str"}, + "authorization": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "authtimeout": {"no_log": False, "type": "raw"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "groupattrname": {"no_log": False, "type": "raw"}, + "serverip": {"no_log": False, "type": "raw"}, + "serverport": {"no_log": False, "type": "raw"}, + "tacacssecret": {"no_log": True, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -2419,7 +2419,7 @@ "admserviceconnect": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", } }, "singleton": True, @@ -2560,141 +2560,141 @@ "allhttpheaders": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "analyticsauthtoken": {"no_log": True, "type": "str"}, - "analyticsendpointcontenttype": {"no_log": False, "type": "str"}, - "analyticsendpointmetadata": {"no_log": False, "type": "str"}, - "analyticsendpointurl": {"no_log": False, "type": "str"}, + "analyticsauthtoken": {"no_log": True, "type": "raw"}, + "analyticsendpointcontenttype": {"no_log": False, "type": "raw"}, + "analyticsendpointmetadata": {"no_log": False, "type": "raw"}, + "analyticsendpointurl": {"no_log": False, "type": "raw"}, "auditlogs": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "collectors": {"no_log": False, "type": "str"}, + "collectors": {"no_log": False, "type": "raw"}, "cqareporting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "events": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "grpcstatus": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpauthentication": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpclientsidemeasurements": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpcontenttype": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpcookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpdomainname": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httphost": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httplocation": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpmethod": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httppagetracking": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpreferer": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpsetcookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpsetcookie2": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpurl": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpurlquery": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpuseragent": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpvia": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpxforwardedforheader": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "integratedcache": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "metrics": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "metricsexportfrequency": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, + "metricsexportfrequency": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "outputmode": { "choices": ["avro", "influx", "prometheus"], "no_log": False, - "type": "str", + "type": "raw", }, - "schemafile": {"no_log": False, "type": "str"}, - "servemode": {"choices": ["Pull", "Push"], "no_log": False, "type": "str"}, + "schemafile": {"no_log": False, "type": "raw"}, + "servemode": {"choices": ["Pull", "Push"], "no_log": False, "type": "raw"}, "tcpburstreporting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "type": { "choices": [ @@ -2712,12 +2712,12 @@ "webinsight", ], "no_log": False, - "type": "str", + "type": "raw", }, "urlcategory": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -2854,9 +2854,7 @@ "password_keys": [], "primary_key": "", "primary_key_composite": [], - "readwrite_arguments": { - "pptpgreidletimeout": {"no_log": False, "type": "float"} - }, + "readwrite_arguments": {"pptpgreidletimeout": {"no_log": False, "type": "raw"}}, "singleton": True, "update_payload_keys": ["pptpgreidletimeout"], }, @@ -2936,37 +2934,37 @@ "botinsight": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ciinsight": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientsidemeasurements": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "collectors": {"elements": "str", "no_log": False, "type": "list"}, - "comment": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, "distributionalgorithm": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "metricslog": {"no_log": False, "type": "bool"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "pagetracking": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "securityinsight": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "transactionlog": { "choices": ["ALL", "ANOMALOUS"], @@ -2976,12 +2974,12 @@ "videoanalytics": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "webinsight": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -3059,11 +3057,11 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "ipaddress": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "netprofile": {"no_log": False, "type": "str"}, + "ipaddress": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "netprofile": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "port": {"no_log": False, "type": "int"}, + "port": {"no_log": False, "type": "raw"}, "transport": { "choices": ["ipfix", "logstream", "rest"], "no_log": False, @@ -3235,209 +3233,209 @@ "aaausername": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "analyticsauthtoken": {"no_log": True, "type": "str"}, - "appnamerefresh": {"no_log": False, "type": "float"}, + "analyticsauthtoken": {"no_log": True, "type": "raw"}, + "appnamerefresh": {"no_log": False, "type": "raw"}, "auditlogs": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "cacheinsight": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clienttrafficonly": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "connectionchaining": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "cqareporting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "distributedtracing": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "disttracingsamplingrate": {"no_log": False, "type": "float"}, + "disttracingsamplingrate": {"no_log": False, "type": "raw"}, "emailaddress": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "events": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "flowrecordinterval": {"no_log": False, "type": "float"}, + "flowrecordinterval": {"no_log": False, "type": "raw"}, "gxsessionreporting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpauthorization": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpcontenttype": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpcookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpdomain": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httphost": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httplocation": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpmethod": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpquerywithurl": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpreferer": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpsetcookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpsetcookie2": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpurl": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpuseragent": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpvia": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpxforwardedfor": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "identifiername": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "identifiersessionname": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "logstreamovernsip": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "lsnlogging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "metrics": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "observationdomainid": {"no_log": False, "type": "float"}, - "observationdomainname": {"no_log": False, "type": "str"}, - "observationpointid": {"no_log": False, "type": "float"}, - "securityinsightrecordinterval": {"no_log": False, "type": "float"}, + "observationdomainid": {"no_log": False, "type": "raw"}, + "observationdomainname": {"no_log": False, "type": "raw"}, + "observationpointid": {"no_log": False, "type": "raw"}, + "securityinsightrecordinterval": {"no_log": False, "type": "raw"}, "securityinsighttraffic": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "skipcacheredirectionhttptransaction": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "subscriberawareness": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "subscriberidobfuscation": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "subscriberidobfuscationalgo": { "choices": ["MD5", "SHA256"], "no_log": False, - "type": "str", + "type": "raw", }, - "tcpattackcounterinterval": {"no_log": False, "type": "float"}, - "templaterefresh": {"no_log": False, "type": "float"}, + "tcpattackcounterinterval": {"no_log": False, "type": "raw"}, + "templaterefresh": {"no_log": False, "type": "raw"}, "timeseriesovernsip": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "udppmtu": {"no_log": False, "type": "float"}, + "udppmtu": {"no_log": False, "type": "raw"}, "urlcategory": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "usagerecordinterval": {"no_log": False, "type": "float"}, + "usagerecordinterval": {"no_log": False, "type": "raw"}, "videoinsight": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "websaasappusagereporting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -3544,11 +3542,11 @@ }, "type": "dict", }, - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["action", "comment", "name", "rule", "undefaction"], @@ -3717,14 +3715,14 @@ "primary_key": "fieldname", "primary_key_composite": ["url"], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "fieldname": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "fieldname": {"no_log": False, "type": "raw"}, "isregex": { "choices": ["NOTREGEX", "REGEX"], "no_log": False, - "type": "str", + "type": "raw", }, - "url": {"no_log": False, "type": "str"}, + "url": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["comment", "fieldname", "isregex", "url"], @@ -4361,43 +4359,37 @@ "primary_key": "profilename", "primary_key_composite": [], "readwrite_arguments": { - "contenttypeautodeploygraceperiod": {"no_log": False, "type": "float"}, - "contenttypeminthreshold": {"no_log": False, "type": "float"}, - "contenttypepercentthreshold": {"no_log": False, "type": "float"}, - "cookieconsistencyautodeploygraceperiod": { - "no_log": False, - "type": "float", - }, - "cookieconsistencyminthreshold": {"no_log": False, "type": "float"}, - "cookieconsistencypercentthreshold": {"no_log": False, "type": "float"}, - "creditcardnumberminthreshold": {"no_log": False, "type": "float"}, - "creditcardnumberpercentthreshold": {"no_log": False, "type": "float"}, - "crosssitescriptingautodeploygraceperiod": { - "no_log": False, - "type": "float", - }, - "crosssitescriptingminthreshold": {"no_log": False, "type": "float"}, - "crosssitescriptingpercentthreshold": {"no_log": False, "type": "float"}, - "csrftagautodeploygraceperiod": {"no_log": False, "type": "float"}, - "csrftagminthreshold": {"no_log": False, "type": "float"}, - "csrftagpercentthreshold": {"no_log": False, "type": "float"}, - "fieldconsistencyautodeploygraceperiod": {"no_log": False, "type": "float"}, - "fieldconsistencyminthreshold": {"no_log": False, "type": "float"}, - "fieldconsistencypercentthreshold": {"no_log": False, "type": "float"}, - "fieldformatautodeploygraceperiod": {"no_log": False, "type": "float"}, - "fieldformatminthreshold": {"no_log": False, "type": "float"}, - "fieldformatpercentthreshold": {"no_log": False, "type": "float"}, - "profilename": {"no_log": False, "type": "str"}, - "sqlinjectionautodeploygraceperiod": {"no_log": False, "type": "float"}, - "sqlinjectionminthreshold": {"no_log": False, "type": "float"}, - "sqlinjectionpercentthreshold": {"no_log": False, "type": "float"}, - "starturlautodeploygraceperiod": {"no_log": False, "type": "float"}, - "starturlminthreshold": {"no_log": False, "type": "float"}, - "starturlpercentthreshold": {"no_log": False, "type": "float"}, - "xmlattachmentminthreshold": {"no_log": False, "type": "float"}, - "xmlattachmentpercentthreshold": {"no_log": False, "type": "float"}, - "xmlwsiminthreshold": {"no_log": False, "type": "float"}, - "xmlwsipercentthreshold": {"no_log": False, "type": "float"}, + "contenttypeautodeploygraceperiod": {"no_log": False, "type": "raw"}, + "contenttypeminthreshold": {"no_log": False, "type": "raw"}, + "contenttypepercentthreshold": {"no_log": False, "type": "raw"}, + "cookieconsistencyautodeploygraceperiod": {"no_log": False, "type": "raw"}, + "cookieconsistencyminthreshold": {"no_log": False, "type": "raw"}, + "cookieconsistencypercentthreshold": {"no_log": False, "type": "raw"}, + "creditcardnumberminthreshold": {"no_log": False, "type": "raw"}, + "creditcardnumberpercentthreshold": {"no_log": False, "type": "raw"}, + "crosssitescriptingautodeploygraceperiod": {"no_log": False, "type": "raw"}, + "crosssitescriptingminthreshold": {"no_log": False, "type": "raw"}, + "crosssitescriptingpercentthreshold": {"no_log": False, "type": "raw"}, + "csrftagautodeploygraceperiod": {"no_log": False, "type": "raw"}, + "csrftagminthreshold": {"no_log": False, "type": "raw"}, + "csrftagpercentthreshold": {"no_log": False, "type": "raw"}, + "fieldconsistencyautodeploygraceperiod": {"no_log": False, "type": "raw"}, + "fieldconsistencyminthreshold": {"no_log": False, "type": "raw"}, + "fieldconsistencypercentthreshold": {"no_log": False, "type": "raw"}, + "fieldformatautodeploygraceperiod": {"no_log": False, "type": "raw"}, + "fieldformatminthreshold": {"no_log": False, "type": "raw"}, + "fieldformatpercentthreshold": {"no_log": False, "type": "raw"}, + "profilename": {"no_log": False, "type": "raw"}, + "sqlinjectionautodeploygraceperiod": {"no_log": False, "type": "raw"}, + "sqlinjectionminthreshold": {"no_log": False, "type": "raw"}, + "sqlinjectionpercentthreshold": {"no_log": False, "type": "raw"}, + "starturlautodeploygraceperiod": {"no_log": False, "type": "raw"}, + "starturlminthreshold": {"no_log": False, "type": "raw"}, + "starturlpercentthreshold": {"no_log": False, "type": "raw"}, + "xmlattachmentminthreshold": {"no_log": False, "type": "raw"}, + "xmlattachmentpercentthreshold": {"no_log": False, "type": "raw"}, + "xmlwsiminthreshold": {"no_log": False, "type": "raw"}, + "xmlwsipercentthreshold": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -4515,9 +4507,9 @@ }, "type": "dict", }, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "profilename": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, @@ -4954,9 +4946,9 @@ "addcookieflags": { "choices": ["all", "httpOnly", "none", "secure"], "no_log": False, - "type": "str", + "type": "raw", }, - "apispec": {"no_log": False, "type": "str"}, + "apispec": {"no_log": False, "type": "raw"}, "appfwprofile_appfwconfidfield_binding": { "no_log": False, "options": { @@ -5473,53 +5465,50 @@ "as_prof_bypass_list_enable": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "as_prof_deny_list_enable": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "augment": {"no_log": False, "type": "bool"}, "blockkeywordaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "bufferoverflowaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "bufferoverflowmaxcookielength": {"no_log": False, "type": "float"}, - "bufferoverflowmaxheaderlength": {"no_log": False, "type": "float"}, - "bufferoverflowmaxquerylength": {"no_log": False, "type": "float"}, - "bufferoverflowmaxtotalheaderlength": {"no_log": False, "type": "float"}, - "bufferoverflowmaxurllength": {"no_log": False, "type": "float"}, + "bufferoverflowmaxcookielength": {"no_log": False, "type": "raw"}, + "bufferoverflowmaxheaderlength": {"no_log": False, "type": "raw"}, + "bufferoverflowmaxquerylength": {"no_log": False, "type": "raw"}, + "bufferoverflowmaxtotalheaderlength": {"no_log": False, "type": "raw"}, + "bufferoverflowmaxurllength": {"no_log": False, "type": "raw"}, "canonicalizehtmlresponse": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "ceflogging": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "ceflogging": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "checkrequestheaders": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "clientipexpression": {"no_log": False, "type": "str"}, + "clientipexpression": {"no_log": False, "type": "raw"}, "cmdinjectionaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "cmdinjectiongrammar": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "cmdinjectiontype": { "choices": [ @@ -5530,46 +5519,43 @@ "None", ], "no_log": False, - "type": "str", + "type": "raw", }, - "comment": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, "contenttypeaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "cookieconsistencyaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "cookieencryption": { "choices": ["decryptOnly", "encryptAll", "encryptSessionOnly", "none"], "no_log": False, - "type": "str", + "type": "raw", }, "cookiehijackingaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "cookieproxying": { "choices": ["none", "sessionOnly"], "no_log": False, - "type": "str", + "type": "raw", }, "cookiesamesiteattribute": { "choices": ["LAX", "None", "STRICT"], "no_log": False, - "type": "str", + "type": "raw", }, "cookietransforms": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "creditcard": { "choices": [ @@ -5581,49 +5567,45 @@ "none", "visa", ], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "creditcardaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "creditcardmaxallowed": {"no_log": False, "type": "float"}, + "creditcardmaxallowed": {"no_log": False, "type": "raw"}, "creditcardxout": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "crosssitescriptingaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "crosssitescriptingcheckcompleteurls": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "crosssitescriptingtransformunsafehtml": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "csrftagaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "customsettings": {"no_log": False, "type": "str"}, - "defaultcharset": {"no_log": False, "type": "str"}, - "defaultfieldformatmaxlength": {"no_log": False, "type": "float"}, - "defaultfieldformatminlength": {"no_log": False, "type": "float"}, - "defaultfieldformattype": {"no_log": False, "type": "str"}, + "defaultcharset": {"no_log": False, "type": "raw"}, + "defaultfieldformatmaxlength": {"no_log": False, "type": "raw"}, + "defaultfieldformatminlength": {"no_log": False, "type": "raw"}, + "defaultfieldformattype": {"no_log": False, "type": "raw"}, "defaults": { "choices": ["advanced", "basic", "core", "cve"], "no_log": False, @@ -5631,14 +5613,13 @@ }, "denyurlaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "dosecurecreditcardlogging": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "dynamiclearning": { "choices": [ @@ -5652,75 +5633,69 @@ "none", "startURL", ], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "enableformtagging": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "errorurl": {"no_log": False, "type": "str"}, + "errorurl": {"no_log": False, "type": "raw"}, "excludefileuploadfromchecks": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "exemptclosureurlsfromsecuritychecks": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "fakeaccountdetection": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "fieldconsistencyaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "fieldformataction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "fileuploadmaxnum": {"no_log": False, "type": "float"}, + "fileuploadmaxnum": {"no_log": False, "type": "raw"}, "fileuploadtypesaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "geolocationlogging": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "grpcaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "htmlerrorobject": {"no_log": False, "type": "str"}, - "htmlerrorstatuscode": {"no_log": False, "type": "float"}, - "htmlerrorstatusmessage": {"no_log": False, "type": "str"}, + "htmlerrorobject": {"no_log": False, "type": "raw"}, + "htmlerrorstatuscode": {"no_log": False, "type": "raw"}, + "htmlerrorstatusmessage": {"no_log": False, "type": "raw"}, "importprofilename": {"no_log": False, "type": "str"}, "infercontenttypexmlpayloadaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "insertcookiesamesiteattribute": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "inspectcontenttypes": { "choices": [ @@ -5732,37 +5707,33 @@ "none", "text/x-gwt-rpc", ], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "inspectquerycontenttypes": { "choices": ["HTML", "JSON", "OTHER", "XML"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "invalidpercenthandling": { "choices": ["asp_mode", "secure_mode"], "no_log": False, - "type": "str", + "type": "raw", }, "jsonblockkeywordaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "jsoncmdinjectionaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "jsoncmdinjectiongrammar": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "jsoncmdinjectiontype": { "choices": [ @@ -5773,27 +5744,25 @@ "None", ], "no_log": False, - "type": "str", + "type": "raw", }, "jsondosaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "jsonerrorobject": {"no_log": False, "type": "str"}, - "jsonerrorstatuscode": {"no_log": False, "type": "float"}, - "jsonerrorstatusmessage": {"no_log": False, "type": "str"}, + "jsonerrorobject": {"no_log": False, "type": "raw"}, + "jsonerrorstatuscode": {"no_log": False, "type": "raw"}, + "jsonerrorstatusmessage": {"no_log": False, "type": "raw"}, "jsonsqlinjectionaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "jsonsqlinjectiongrammar": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "jsonsqlinjectiontype": { "choices": [ @@ -5804,47 +5773,44 @@ "SQLSplCharORKeyword", ], "no_log": False, - "type": "str", + "type": "raw", }, "jsonxssaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "logeverypolicyhit": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "matchurlstring": {"no_log": False, "type": "str"}, "multipleheaderaction": { "choices": ["block", "keepLast", "log", "none"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "optimizepartialreqs": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "overwrite": {"no_log": False, "type": "bool"}, "percentdecoderecursively": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "postbodylimit": {"no_log": False, "type": "float"}, + "postbodylimit": {"no_log": False, "type": "raw"}, "postbodylimitaction": { "choices": ["block", "log", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "postbodylimitsignature": {"no_log": False, "type": "float"}, - "protofileobject": {"no_log": False, "type": "str"}, + "postbodylimitsignature": {"no_log": False, "type": "raw"}, + "protofileobject": {"no_log": False, "type": "raw"}, "refererheadercheck": { "choices": [ "AlwaysExceptFirstRequest", @@ -5853,71 +5819,69 @@ "if_present", ], "no_log": False, - "type": "str", + "type": "raw", }, "relaxationrules": {"no_log": False, "type": "bool"}, "replaceurlstring": {"no_log": False, "type": "str"}, - "requestcontenttype": {"no_log": False, "type": "str"}, - "responsecontenttype": {"no_log": False, "type": "str"}, + "requestcontenttype": {"no_log": False, "type": "raw"}, + "responsecontenttype": {"no_log": False, "type": "raw"}, "restaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "rfcprofile": {"no_log": False, "type": "str"}, + "rfcprofile": {"no_log": False, "type": "raw"}, "semicolonfieldseparator": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "sessioncookiename": {"no_log": False, "type": "str"}, + "sessioncookiename": {"no_log": False, "type": "raw"}, "sessionlessfieldconsistency": { "choices": ["OFF", "ON", "postOnly"], "no_log": False, - "type": "str", + "type": "raw", }, "sessionlessurlclosure": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "signatures": {"no_log": False, "type": "str"}, + "signatures": {"no_log": False, "type": "raw"}, "sqlinjectionaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "sqlinjectionchecksqlwildchars": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "sqlinjectiongrammar": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "sqlinjectiononlycheckfieldswithsqlchars": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "sqlinjectionparsecomments": { "choices": ["ansi", "ansinested", "checkall", "nested"], "no_log": False, - "type": "str", + "type": "raw", }, "sqlinjectionruletype": { "choices": ["ALLOW", "DENY"], "no_log": False, - "type": "str", + "type": "raw", }, "sqlinjectiontransformspecialchars": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "sqlinjectiontype": { "choices": [ @@ -5928,100 +5892,93 @@ "SQLSplCharORKeyword", ], "no_log": False, - "type": "str", + "type": "raw", }, "starturlaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "starturlclosure": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "streaming": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "streaming": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "stripcomments": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "striphtmlcomments": { "choices": ["all", "exclude_script_tag", "none"], "no_log": False, - "type": "str", + "type": "raw", }, "stripxmlcomments": { "choices": ["all", "none"], "no_log": False, - "type": "str", + "type": "raw", }, - "trace": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "trace": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "type": { "choices": ["HTML", "JSON", "XML"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "urldecoderequestcookies": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "usehtmlerrorobject": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "verboseloglevel": { "choices": ["pattern", "patternPayload", "patternPayloadHeader"], "no_log": False, - "type": "str", + "type": "raw", }, "xmlattachmentaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "xmldosaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "xmlerrorobject": {"no_log": False, "type": "str"}, - "xmlerrorstatuscode": {"no_log": False, "type": "float"}, - "xmlerrorstatusmessage": {"no_log": False, "type": "str"}, + "xmlerrorobject": {"no_log": False, "type": "raw"}, + "xmlerrorstatuscode": {"no_log": False, "type": "raw"}, + "xmlerrorstatusmessage": {"no_log": False, "type": "raw"}, "xmlformataction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "xmlsoapfaultaction": { "choices": ["block", "log", "none", "remove", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "xmlsqlinjectionaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "xmlsqlinjectionchecksqlwildchars": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "xmlsqlinjectiononlycheckfieldswithsqlchars": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "xmlsqlinjectionparsecomments": { "choices": ["ansi", "ansinested", "checkall", "nested"], "no_log": False, - "type": "str", + "type": "raw", }, "xmlsqlinjectiontype": { "choices": [ @@ -6032,25 +5989,22 @@ "SQLSplCharORKeyword", ], "no_log": False, - "type": "str", + "type": "raw", }, "xmlvalidationaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "xmlwsiaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "xmlxssaction": { "choices": ["block", "learn", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, }, "singleton": False, @@ -8708,27 +8662,27 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "ceflogging": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "ceflogging": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "centralizedlearning": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "clientiploggingheader": {"no_log": False, "type": "str"}, - "cookiepostencryptprefix": {"no_log": False, "type": "str"}, - "defaultprofile": {"no_log": False, "type": "str"}, + "clientiploggingheader": {"no_log": False, "type": "raw"}, + "cookiepostencryptprefix": {"no_log": False, "type": "raw"}, + "defaultprofile": {"no_log": False, "type": "raw"}, "entitydecoding": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "geolocationlogging": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "importsizelimit": {"no_log": False, "type": "float"}, - "learnratelimit": {"no_log": False, "type": "float"}, + "importsizelimit": {"no_log": False, "type": "raw"}, + "learnratelimit": {"no_log": False, "type": "raw"}, "logmalformedreq": { "choices": ["OFF", "ON"], "no_log": False, @@ -8736,29 +8690,28 @@ }, "malformedreqaction": { "choices": ["block", "log", "none", "stats"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "proxypassword": {"no_log": True, "type": "str"}, - "proxyport": {"no_log": False, "type": "int"}, - "proxyserver": {"no_log": False, "type": "str"}, - "proxyusername": {"no_log": False, "type": "str"}, - "sessioncookiename": {"no_log": False, "type": "str"}, - "sessionlifetime": {"no_log": False, "type": "float"}, - "sessionlimit": {"no_log": False, "type": "float"}, - "sessiontimeout": {"no_log": False, "type": "float"}, + "proxypassword": {"no_log": True, "type": "raw"}, + "proxyport": {"no_log": False, "type": "raw"}, + "proxyserver": {"no_log": False, "type": "raw"}, + "proxyusername": {"no_log": False, "type": "raw"}, + "sessioncookiename": {"no_log": False, "type": "raw"}, + "sessionlifetime": {"no_log": False, "type": "raw"}, + "sessionlimit": {"no_log": False, "type": "raw"}, + "sessiontimeout": {"no_log": False, "type": "raw"}, "signatureautoupdate": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "signatureurl": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "signatureurl": {"no_log": False, "type": "raw"}, + "undefaction": {"no_log": False, "type": "raw"}, "useconfigurablesecretkey": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -9104,30 +9057,30 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "altcontentpath": {"no_log": False, "type": "str"}, - "altcontentsvcname": {"no_log": False, "type": "str"}, + "altcontentpath": {"no_log": False, "type": "raw"}, + "altcontentsvcname": {"no_log": False, "type": "raw"}, "customfile": {"no_log": False, "type": "str"}, - "delay": {"no_log": False, "type": "float"}, + "delay": {"no_log": False, "type": "raw"}, "dosaction": { "choices": ["HICResponse", "SimpleResponse"], "no_log": False, - "type": "str", + "type": "raw", }, "dostrigexpression": {"no_log": False, "type": "str"}, - "maxconn": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, - "numretries": {"no_log": False, "type": "float"}, - "polqdepth": {"no_log": False, "type": "float"}, + "maxconn": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "numretries": {"no_log": False, "type": "raw"}, + "polqdepth": {"no_log": False, "type": "raw"}, "priority": { "choices": ["HIGH", "LOW", "LOWEST", "MEDIUM"], "no_log": False, - "type": "str", + "type": "raw", }, - "priqdepth": {"no_log": False, "type": "float"}, + "priqdepth": {"no_log": False, "type": "raw"}, "respondwith": {"choices": ["ACS", "NS"], "no_log": False, "type": "str"}, - "retryonreset": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "retryontimeout": {"no_log": False, "type": "float"}, - "tcpprofile": {"no_log": False, "type": "str"}, + "retryonreset": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "retryontimeout": {"no_log": False, "type": "raw"}, + "tcpprofile": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -9204,10 +9157,10 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "avgwaitingclient": {"no_log": False, "type": "float"}, - "dosattackthresh": {"no_log": False, "type": "float"}, - "maxaltrespbandwidth": {"no_log": False, "type": "float"}, - "sessionlife": {"no_log": False, "type": "float"}, + "avgwaitingclient": {"no_log": False, "type": "raw"}, + "dosattackthresh": {"no_log": False, "type": "raw"}, + "maxaltrespbandwidth": {"no_log": False, "type": "raw"}, + "sessionlife": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -9335,9 +9288,9 @@ "spoofvalidation": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "timeout": {"no_log": False, "type": "float"}, + "timeout": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": ["spoofvalidation", "timeout"], @@ -9382,7 +9335,7 @@ "bypasssafetycheck": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "loglevel": { "choices": [ @@ -9398,8 +9351,8 @@ "no_log": False, "type": "str", }, - "logtonewnslog": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "logtonewnslog": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "stringbuilderexpr": {"no_log": False, "type": "str"}, }, "singleton": False, @@ -9479,22 +9432,22 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "acl": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "alg": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "acl": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "alg": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "appflowexport": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "contentinspectionlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dateformat": { "choices": ["DDMMYYYY", "MMDDYYYY", "YYYYMMDD"], "no_log": False, - "type": "str", + "type": "raw", }, "domainresolvenow": {"no_log": False, "type": "bool"}, "domainresolveretry": {"no_log": False, "type": "int"}, @@ -9510,7 +9463,7 @@ "LOCAL7", ], "no_log": False, - "type": "str", + "type": "raw", }, "loglevel": { "choices": [ @@ -9525,40 +9478,39 @@ "NOTICE", "WARNING", ], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "lsn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "lsn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "serverdomainname": {"no_log": False, "type": "str"}, "serverip": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "int"}, + "serverport": {"no_log": False, "type": "raw"}, "sslinterception": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "subscriberlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "tcp": {"choices": ["ALL", "NONE"], "no_log": False, "type": "str"}, + "tcp": {"choices": ["ALL", "NONE"], "no_log": False, "type": "raw"}, "timezone": { "choices": ["GMT_TIME", "LOCAL_TIME"], "no_log": False, - "type": "str", + "type": "raw", }, "urlfiltering": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "userdefinedauditlog": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -9669,22 +9621,22 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "acl": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "alg": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "acl": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "alg": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "appflowexport": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "contentinspectionlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dateformat": { "choices": ["DDMMYYYY", "MMDDYYYY", "YYYYMMDD"], "no_log": False, - "type": "str", + "type": "raw", }, "logfacility": { "choices": [ @@ -9698,7 +9650,7 @@ "LOCAL7", ], "no_log": False, - "type": "str", + "type": "raw", }, "loglevel": { "choices": [ @@ -9713,38 +9665,37 @@ "NOTICE", "WARNING", ], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "lsn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "serverip": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "int"}, + "lsn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "serverip": {"no_log": False, "type": "raw"}, + "serverport": {"no_log": False, "type": "raw"}, "sslinterception": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "subscriberlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "tcp": {"choices": ["ALL", "NONE"], "no_log": False, "type": "str"}, + "tcp": {"choices": ["ALL", "NONE"], "no_log": False, "type": "raw"}, "timezone": { "choices": ["GMT_TIME", "LOCAL_TIME"], "no_log": False, - "type": "str", + "type": "raw", }, "urlfiltering": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "userdefinedauditlog": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -9882,24 +9833,24 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "acl": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "alg": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "acl": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "alg": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "appflowexport": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "contentinspectionlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dateformat": { "choices": ["DDMMYYYY", "MMDDYYYY", "YYYYMMDD"], "no_log": False, - "type": "str", + "type": "raw", }, - "dns": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "dns": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "domainresolvenow": {"no_log": False, "type": "bool"}, "domainresolveretry": {"no_log": False, "type": "int"}, "lbvservername": {"no_log": False, "type": "str"}, @@ -9915,7 +9866,7 @@ "LOCAL7", ], "no_log": False, - "type": "str", + "type": "raw", }, "loglevel": { "choices": [ @@ -9930,44 +9881,43 @@ "NOTICE", "WARNING", ], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "lsn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "maxlogdatasizetohold": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, - "netprofile": {"no_log": False, "type": "str"}, + "lsn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "maxlogdatasizetohold": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "netprofile": {"no_log": False, "type": "raw"}, "serverdomainname": {"no_log": False, "type": "str"}, "serverip": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "int"}, + "serverport": {"no_log": False, "type": "raw"}, "sslinterception": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "subscriberlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "tcp": {"choices": ["ALL", "NONE"], "no_log": False, "type": "str"}, - "tcpprofilename": {"no_log": False, "type": "str"}, + "tcp": {"choices": ["ALL", "NONE"], "no_log": False, "type": "raw"}, + "tcpprofilename": {"no_log": False, "type": "raw"}, "timezone": { "choices": ["GMT_TIME", "LOCAL_TIME"], "no_log": False, - "type": "str", + "type": "raw", }, "transport": {"choices": ["TCP", "UDP"], "no_log": False, "type": "str"}, "urlfiltering": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "userdefinedauditlog": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -10161,24 +10111,24 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "acl": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "alg": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "acl": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "alg": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "appflowexport": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "contentinspectionlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dateformat": { "choices": ["DDMMYYYY", "MMDDYYYY", "YYYYMMDD"], "no_log": False, - "type": "str", + "type": "raw", }, - "dns": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "dns": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "logfacility": { "choices": [ "LOCAL0", @@ -10191,7 +10141,7 @@ "LOCAL7", ], "no_log": False, - "type": "str", + "type": "raw", }, "loglevel": { "choices": [ @@ -10206,38 +10156,37 @@ "NOTICE", "WARNING", ], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "lsn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "serverip": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "int"}, + "lsn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "serverip": {"no_log": False, "type": "raw"}, + "serverport": {"no_log": False, "type": "raw"}, "sslinterception": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "subscriberlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "tcp": {"choices": ["ALL", "NONE"], "no_log": False, "type": "str"}, + "tcp": {"choices": ["ALL", "NONE"], "no_log": False, "type": "raw"}, "timezone": { "choices": ["GMT_TIME", "LOCAL_TIME"], "no_log": False, - "type": "str", + "type": "raw", }, "urlfiltering": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "userdefinedauditlog": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -10386,11 +10335,11 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "authenticationdomain": {"no_log": False, "type": "str"}, + "authenticationdomain": {"no_log": False, "type": "raw"}, "authenticationhost": {"no_log": False, "type": "str"}, - "authenticationlevel": {"no_log": False, "type": "float"}, + "authenticationlevel": {"no_log": False, "type": "raw"}, "authnvsname": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -10455,16 +10404,16 @@ "authentication": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientid": {"no_log": False, "type": "str"}, "clientsecret": {"no_log": True, "type": "str"}, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "pushservice": {"no_log": False, "type": "str"}, - "refreshinterval": {"no_log": False, "type": "float"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "pushservice": {"no_log": False, "type": "raw"}, + "refreshinterval": {"no_log": False, "type": "raw"}, "servicekeyname": {"no_log": False, "type": "str"}, - "signaturealg": {"choices": ["RS256"], "no_log": False, "type": "str"}, + "signaturealg": {"choices": ["RS256"], "no_log": False, "type": "raw"}, "tenantid": {"no_log": False, "type": "str"}, "tokenendpoint": {"no_log": False, "type": "str"}, "vaultname": {"no_log": False, "type": "str"}, @@ -10522,10 +10471,10 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "secretkey": {"no_log": True, "type": "str"}, - "serverurl": {"no_log": False, "type": "str"}, + "serverurl": {"no_log": False, "type": "raw"}, "sitekey": {"no_log": True, "type": "str"}, }, "singleton": False, @@ -10580,11 +10529,11 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "groupnamefield": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "twofactor": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "usernamefield": {"no_log": False, "type": "str"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "groupnamefield": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "twofactor": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "usernamefield": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -10626,9 +10575,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "name": {"no_log": False, "type": "str"}, - "reqaction": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "reqaction": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], @@ -10667,14 +10616,14 @@ "authentication": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "authenticationtype": { "choices": ["ATHENA", "CITRIXCONNECTOR"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["authentication", "authenticationtype", "name"], @@ -10716,11 +10665,11 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "clientid": {"no_log": False, "type": "str"}, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "clientid": {"no_log": False, "type": "raw"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "passphrase": {"no_log": True, "type": "str"}, - "serverurl": {"no_log": False, "type": "str"}, + "serverurl": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -10816,14 +10765,14 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "content": {"no_log": False, "type": "str"}, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "emailaddress": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "content": {"no_log": False, "type": "raw"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "emailaddress": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "password": {"no_log": True, "type": "str"}, "serverurl": {"no_log": False, "type": "str"}, - "timeout": {"no_log": False, "type": "float"}, - "type": {"choices": ["ATHENA", "SMTP"], "no_log": False, "type": "str"}, + "timeout": {"no_log": False, "type": "raw"}, + "type": {"choices": ["ATHENA", "SMTP"], "no_log": False, "type": "raw"}, "username": {"no_log": False, "type": "str"}, }, "singleton": False, @@ -10884,11 +10833,11 @@ "primary_key_composite": [], "readwrite_arguments": { "csecexpr": {"no_log": False, "type": "str"}, - "defaultepagroup": {"no_log": False, "type": "str"}, - "deletefiles": {"no_log": False, "type": "str"}, - "killprocess": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "quarantinegroup": {"no_log": False, "type": "str"}, + "defaultepagroup": {"no_log": False, "type": "raw"}, + "deletefiles": {"no_log": False, "type": "raw"}, + "killprocess": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "quarantinegroup": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -11040,92 +10989,92 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "alternateemailattr": {"no_log": False, "type": "str"}, - "attribute1": {"no_log": False, "type": "str"}, - "attribute10": {"no_log": False, "type": "str"}, - "attribute11": {"no_log": False, "type": "str"}, - "attribute12": {"no_log": False, "type": "str"}, - "attribute13": {"no_log": False, "type": "str"}, - "attribute14": {"no_log": False, "type": "str"}, - "attribute15": {"no_log": False, "type": "str"}, - "attribute16": {"no_log": False, "type": "str"}, - "attribute2": {"no_log": False, "type": "str"}, - "attribute3": {"no_log": False, "type": "str"}, - "attribute4": {"no_log": False, "type": "str"}, - "attribute5": {"no_log": False, "type": "str"}, - "attribute6": {"no_log": False, "type": "str"}, - "attribute7": {"no_log": False, "type": "str"}, - "attribute8": {"no_log": False, "type": "str"}, - "attribute9": {"no_log": False, "type": "str"}, - "attributes": {"no_log": False, "type": "str"}, + "alternateemailattr": {"no_log": False, "type": "raw"}, + "attribute1": {"no_log": False, "type": "raw"}, + "attribute10": {"no_log": False, "type": "raw"}, + "attribute11": {"no_log": False, "type": "raw"}, + "attribute12": {"no_log": False, "type": "raw"}, + "attribute13": {"no_log": False, "type": "raw"}, + "attribute14": {"no_log": False, "type": "raw"}, + "attribute15": {"no_log": False, "type": "raw"}, + "attribute16": {"no_log": False, "type": "raw"}, + "attribute2": {"no_log": False, "type": "raw"}, + "attribute3": {"no_log": False, "type": "raw"}, + "attribute4": {"no_log": False, "type": "raw"}, + "attribute5": {"no_log": False, "type": "raw"}, + "attribute6": {"no_log": False, "type": "raw"}, + "attribute7": {"no_log": False, "type": "raw"}, + "attribute8": {"no_log": False, "type": "raw"}, + "attribute9": {"no_log": False, "type": "raw"}, + "attributes": {"no_log": False, "type": "raw"}, "authentication": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "authtimeout": {"no_log": False, "type": "float"}, + "authtimeout": {"no_log": False, "type": "raw"}, "cloudattributes": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "email": {"no_log": False, "type": "str"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "email": {"no_log": False, "type": "raw"}, "followreferrals": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", - }, - "groupattrname": {"no_log": False, "type": "str"}, - "groupnameidentifier": {"no_log": False, "type": "str"}, - "groupsearchattribute": {"no_log": False, "type": "str"}, - "groupsearchfilter": {"no_log": False, "type": "str"}, - "groupsearchsubattribute": {"no_log": False, "type": "str"}, - "kbattribute": {"no_log": False, "type": "str"}, - "ldapbase": {"no_log": False, "type": "str"}, - "ldapbinddn": {"no_log": False, "type": "str"}, - "ldapbinddnpassword": {"no_log": True, "type": "str"}, - "ldaphostname": {"no_log": False, "type": "str"}, - "ldaploginname": {"no_log": False, "type": "str"}, - "maxldapreferrals": {"no_log": False, "type": "float"}, - "maxnestinglevel": {"no_log": False, "type": "float"}, - "mssrvrecordlocation": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "type": "raw", + }, + "groupattrname": {"no_log": False, "type": "raw"}, + "groupnameidentifier": {"no_log": False, "type": "raw"}, + "groupsearchattribute": {"no_log": False, "type": "raw"}, + "groupsearchfilter": {"no_log": False, "type": "raw"}, + "groupsearchsubattribute": {"no_log": False, "type": "raw"}, + "kbattribute": {"no_log": False, "type": "raw"}, + "ldapbase": {"no_log": False, "type": "raw"}, + "ldapbinddn": {"no_log": False, "type": "raw"}, + "ldapbinddnpassword": {"no_log": True, "type": "raw"}, + "ldaphostname": {"no_log": False, "type": "raw"}, + "ldaploginname": {"no_log": False, "type": "raw"}, + "maxldapreferrals": {"no_log": False, "type": "raw"}, + "maxnestinglevel": {"no_log": False, "type": "raw"}, + "mssrvrecordlocation": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "nestedgroupextraction": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "otpsecret": {"no_log": False, "type": "str"}, + "otpsecret": {"no_log": False, "type": "raw"}, "passwdchange": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "pushservice": {"no_log": False, "type": "str"}, + "pushservice": {"no_log": False, "type": "raw"}, "referraldnslookup": { "choices": ["A-REC", "MSSRV-REC", "SRV-REC"], "no_log": False, - "type": "str", + "type": "raw", }, - "requireuser": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "searchfilter": {"no_log": False, "type": "str"}, + "requireuser": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "searchfilter": {"no_log": False, "type": "raw"}, "sectype": { "choices": ["PLAINTEXT", "SSL", "TLS"], "no_log": False, - "type": "str", + "type": "raw", }, "serverip": {"no_log": False, "type": "str"}, "servername": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "int"}, + "serverport": {"no_log": False, "type": "raw"}, "sshpublickey": {"no_log": False, "type": "str"}, - "ssonameattribute": {"no_log": False, "type": "str"}, - "subattributename": {"no_log": False, "type": "str"}, - "svrtype": {"choices": ["AD", "NDS"], "no_log": False, "type": "str"}, + "ssonameattribute": {"no_log": False, "type": "raw"}, + "subattributename": {"no_log": False, "type": "raw"}, + "svrtype": {"choices": ["AD", "NDS"], "no_log": False, "type": "raw"}, "validateservercert": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -11218,9 +11167,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "name": {"no_log": False, "type": "str"}, - "reqaction": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "reqaction": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], @@ -11310,17 +11259,17 @@ "primary_key_composite": [], "readwrite_arguments": { "authenticationschema": {"no_log": False, "type": "str"}, - "authenticationstrength": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, - "passwdexpression": {"no_log": False, "type": "str"}, - "passwordcredentialindex": {"no_log": False, "type": "float"}, + "authenticationstrength": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "passwdexpression": {"no_log": False, "type": "raw"}, + "passwordcredentialindex": {"no_log": False, "type": "raw"}, "ssocredentials": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "usercredentialindex": {"no_log": False, "type": "float"}, - "userexpression": {"no_log": False, "type": "str"}, + "usercredentialindex": {"no_log": False, "type": "raw"}, + "userexpression": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -11374,12 +11323,12 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -11439,14 +11388,14 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "domain": {"no_log": False, "type": "str"}, - "domainuser": {"no_log": False, "type": "str"}, - "domainuserpasswd": {"no_log": True, "type": "str"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "domain": {"no_log": False, "type": "raw"}, + "domainuser": {"no_log": False, "type": "raw"}, + "domainuserpasswd": {"no_log": True, "type": "raw"}, "keytab": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "ntlmpath": {"no_log": False, "type": "str"}, - "ou": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "ntlmpath": {"no_log": False, "type": "raw"}, + "ou": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -11528,8 +11477,8 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["defaultauthenticationgroup", "name"], @@ -11649,63 +11598,62 @@ "readwrite_arguments": { "allowedalgorithms": { "choices": ["HS256", "RS256", "RS512"], - "elements": "str", "no_log": False, - "type": "list", - }, - "attribute1": {"no_log": False, "type": "str"}, - "attribute10": {"no_log": False, "type": "str"}, - "attribute11": {"no_log": False, "type": "str"}, - "attribute12": {"no_log": False, "type": "str"}, - "attribute13": {"no_log": False, "type": "str"}, - "attribute14": {"no_log": False, "type": "str"}, - "attribute15": {"no_log": False, "type": "str"}, - "attribute16": {"no_log": False, "type": "str"}, - "attribute2": {"no_log": False, "type": "str"}, - "attribute3": {"no_log": False, "type": "str"}, - "attribute4": {"no_log": False, "type": "str"}, - "attribute5": {"no_log": False, "type": "str"}, - "attribute6": {"no_log": False, "type": "str"}, - "attribute7": {"no_log": False, "type": "str"}, - "attribute8": {"no_log": False, "type": "str"}, - "attribute9": {"no_log": False, "type": "str"}, - "attributes": {"no_log": False, "type": "str"}, - "audience": {"no_log": False, "type": "str"}, + "type": "raw", + }, + "attribute1": {"no_log": False, "type": "raw"}, + "attribute10": {"no_log": False, "type": "raw"}, + "attribute11": {"no_log": False, "type": "raw"}, + "attribute12": {"no_log": False, "type": "raw"}, + "attribute13": {"no_log": False, "type": "raw"}, + "attribute14": {"no_log": False, "type": "raw"}, + "attribute15": {"no_log": False, "type": "raw"}, + "attribute16": {"no_log": False, "type": "raw"}, + "attribute2": {"no_log": False, "type": "raw"}, + "attribute3": {"no_log": False, "type": "raw"}, + "attribute4": {"no_log": False, "type": "raw"}, + "attribute5": {"no_log": False, "type": "raw"}, + "attribute6": {"no_log": False, "type": "raw"}, + "attribute7": {"no_log": False, "type": "raw"}, + "attribute8": {"no_log": False, "type": "raw"}, + "attribute9": {"no_log": False, "type": "raw"}, + "attributes": {"no_log": False, "type": "raw"}, + "audience": {"no_log": False, "type": "raw"}, "authentication": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "authorizationendpoint": {"no_log": False, "type": "str"}, - "certendpoint": {"no_log": False, "type": "str"}, - "certfilepath": {"no_log": False, "type": "str"}, + "certendpoint": {"no_log": False, "type": "raw"}, + "certfilepath": {"no_log": False, "type": "raw"}, "clientid": {"no_log": False, "type": "str"}, "clientsecret": {"no_log": True, "type": "str"}, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, "granttype": { "choices": ["CODE", "PASSWORD"], "no_log": False, "type": "str", }, - "graphendpoint": {"no_log": False, "type": "str"}, - "idtokendecryptendpoint": {"no_log": False, "type": "str"}, - "introspecturl": {"no_log": False, "type": "str"}, - "issuer": {"no_log": False, "type": "str"}, - "metadataurl": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "graphendpoint": {"no_log": False, "type": "raw"}, + "idtokendecryptendpoint": {"no_log": False, "type": "raw"}, + "introspecturl": {"no_log": False, "type": "raw"}, + "issuer": {"no_log": False, "type": "raw"}, + "metadataurl": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "oauthtype": { "choices": ["ATHENA", "GENERIC", "INTUNE"], "no_log": False, - "type": "str", + "type": "raw", }, "pkce": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "refreshinterval": {"no_log": False, "type": "float"}, - "resourceuri": {"no_log": False, "type": "str"}, - "skewtime": {"no_log": False, "type": "float"}, + "refreshinterval": {"no_log": False, "type": "raw"}, + "resourceuri": {"no_log": False, "type": "raw"}, + "skewtime": {"no_log": False, "type": "raw"}, "tenantid": {"no_log": False, "type": "str"}, "tokenendpoint": {"no_log": False, "type": "str"}, "tokenendpointauthmethod": { @@ -11716,10 +11664,10 @@ "private_key_jwt", ], "no_log": False, - "type": "str", + "type": "raw", }, - "userinfourl": {"no_log": False, "type": "str"}, - "usernamefield": {"no_log": False, "type": "str"}, + "userinfourl": {"no_log": False, "type": "raw"}, + "usernamefield": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -11808,12 +11756,12 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -11887,26 +11835,26 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "attributes": {"no_log": False, "type": "str"}, - "audience": {"no_log": False, "type": "str"}, + "attributes": {"no_log": False, "type": "raw"}, + "audience": {"no_log": False, "type": "raw"}, "clientid": {"no_log": False, "type": "str"}, "clientsecret": {"no_log": True, "type": "str"}, - "configservice": {"no_log": False, "type": "str"}, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "encrypttoken": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "issuer": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "configservice": {"no_log": False, "type": "raw"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "encrypttoken": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "issuer": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "redirecturl": {"no_log": False, "type": "str"}, - "refreshinterval": {"no_log": False, "type": "float"}, - "relyingpartymetadataurl": {"no_log": False, "type": "str"}, - "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "refreshinterval": {"no_log": False, "type": "raw"}, + "relyingpartymetadataurl": {"no_log": False, "type": "raw"}, + "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "signaturealg": { "choices": ["RS256", "RS512"], "no_log": False, - "type": "str", + "type": "raw", }, - "signatureservice": {"no_log": False, "type": "str"}, - "skewtime": {"no_log": False, "type": "float"}, + "signatureservice": {"no_log": False, "type": "raw"}, + "skewtime": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -11984,12 +11932,12 @@ }, "type": "dict", }, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -12143,8 +12091,8 @@ "clientid": {"no_log": False, "type": "str"}, "clientsecret": {"no_log": True, "type": "str"}, "customerid": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "refreshinterval": {"no_log": False, "type": "float"}, + "name": {"no_log": False, "type": "raw"}, + "refreshinterval": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -12235,54 +12183,54 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "accounting": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "accounting": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "authentication": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "authservretry": {"no_log": False, "type": "float"}, - "authtimeout": {"no_log": False, "type": "float"}, + "authservretry": {"no_log": False, "type": "raw"}, + "authtimeout": {"no_log": False, "type": "raw"}, "callingstationid": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "ipattributetype": {"no_log": False, "type": "float"}, - "ipvendorid": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "ipattributetype": {"no_log": False, "type": "raw"}, + "ipvendorid": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "passencoding": { "choices": ["chap", "mschapv1", "mschapv2", "pap"], "no_log": False, - "type": "str", + "type": "raw", }, - "pwdattributetype": {"no_log": False, "type": "float"}, - "pwdvendorid": {"no_log": False, "type": "float"}, - "radattributetype": {"no_log": False, "type": "float"}, - "radgroupseparator": {"no_log": False, "type": "str"}, - "radgroupsprefix": {"no_log": False, "type": "str"}, + "pwdattributetype": {"no_log": False, "type": "raw"}, + "pwdvendorid": {"no_log": False, "type": "raw"}, + "radattributetype": {"no_log": False, "type": "raw"}, + "radgroupseparator": {"no_log": False, "type": "raw"}, + "radgroupsprefix": {"no_log": False, "type": "raw"}, "radkey": {"no_log": True, "type": "str"}, - "radnasid": {"no_log": False, "type": "str"}, + "radnasid": {"no_log": False, "type": "raw"}, "radnasip": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "radvendorid": {"no_log": False, "type": "float"}, + "radvendorid": {"no_log": False, "type": "raw"}, "serverip": {"no_log": False, "type": "str"}, "servername": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "int"}, - "targetlbvserver": {"no_log": False, "type": "str"}, + "serverport": {"no_log": False, "type": "raw"}, + "targetlbvserver": {"no_log": False, "type": "raw"}, "transport": { "choices": ["TCP", "TLS", "UDP"], "no_log": False, - "type": "str", + "type": "raw", }, "tunnelendpointclientip": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -12345,9 +12293,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "name": {"no_log": False, "type": "str"}, - "reqaction": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "reqaction": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], @@ -12480,26 +12428,26 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "artifactresolutionserviceurl": {"no_log": False, "type": "str"}, - "attribute1": {"no_log": False, "type": "str"}, - "attribute10": {"no_log": False, "type": "str"}, - "attribute11": {"no_log": False, "type": "str"}, - "attribute12": {"no_log": False, "type": "str"}, - "attribute13": {"no_log": False, "type": "str"}, - "attribute14": {"no_log": False, "type": "str"}, - "attribute15": {"no_log": False, "type": "str"}, - "attribute16": {"no_log": False, "type": "str"}, - "attribute2": {"no_log": False, "type": "str"}, - "attribute3": {"no_log": False, "type": "str"}, - "attribute4": {"no_log": False, "type": "str"}, - "attribute5": {"no_log": False, "type": "str"}, - "attribute6": {"no_log": False, "type": "str"}, - "attribute7": {"no_log": False, "type": "str"}, - "attribute8": {"no_log": False, "type": "str"}, - "attribute9": {"no_log": False, "type": "str"}, - "attributeconsumingserviceindex": {"no_log": False, "type": "float"}, - "attributes": {"no_log": False, "type": "str"}, - "audience": {"no_log": False, "type": "str"}, + "artifactresolutionserviceurl": {"no_log": False, "type": "raw"}, + "attribute1": {"no_log": False, "type": "raw"}, + "attribute10": {"no_log": False, "type": "raw"}, + "attribute11": {"no_log": False, "type": "raw"}, + "attribute12": {"no_log": False, "type": "raw"}, + "attribute13": {"no_log": False, "type": "raw"}, + "attribute14": {"no_log": False, "type": "raw"}, + "attribute15": {"no_log": False, "type": "raw"}, + "attribute16": {"no_log": False, "type": "raw"}, + "attribute2": {"no_log": False, "type": "raw"}, + "attribute3": {"no_log": False, "type": "raw"}, + "attribute4": {"no_log": False, "type": "raw"}, + "attribute5": {"no_log": False, "type": "raw"}, + "attribute6": {"no_log": False, "type": "raw"}, + "attribute7": {"no_log": False, "type": "raw"}, + "attribute8": {"no_log": False, "type": "raw"}, + "attribute9": {"no_log": False, "type": "raw"}, + "attributeconsumingserviceindex": {"no_log": False, "type": "raw"}, + "attributes": {"no_log": False, "type": "raw"}, + "audience": {"no_log": False, "type": "raw"}, "authnctxclassref": { "choices": [ "AuthenticatedTelephony", @@ -12529,72 +12477,71 @@ "X509", "XMLDSig", ], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "customauthnctxclassref": {"no_log": False, "type": "str"}, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, + "customauthnctxclassref": {"no_log": False, "type": "raw"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, "digestmethod": { "choices": ["SHA1", "SHA256"], "no_log": False, - "type": "str", + "type": "raw", }, "enforceusername": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "forceauthn": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "groupnamefield": {"no_log": False, "type": "str"}, + "forceauthn": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "groupnamefield": {"no_log": False, "type": "raw"}, "logoutbinding": { "choices": ["POST", "REDIRECT"], "no_log": False, - "type": "str", + "type": "raw", }, - "logouturl": {"no_log": False, "type": "str"}, - "metadatarefreshinterval": {"no_log": False, "type": "float"}, - "metadataurl": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "relaystaterule": {"no_log": False, "type": "str"}, + "logouturl": {"no_log": False, "type": "raw"}, + "metadatarefreshinterval": {"no_log": False, "type": "raw"}, + "metadataurl": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "relaystaterule": {"no_log": False, "type": "raw"}, "requestedauthncontext": { "choices": ["better", "exact", "maximum", "minimum"], "no_log": False, - "type": "str", + "type": "raw", }, - "samlacsindex": {"no_log": False, "type": "float"}, + "samlacsindex": {"no_log": False, "type": "raw"}, "samlbinding": { "choices": ["ARTIFACT", "POST", "REDIRECT"], "no_log": False, - "type": "str", + "type": "raw", }, "samlidpcertname": {"no_log": False, "type": "str"}, - "samlissuername": {"no_log": False, "type": "str"}, - "samlredirecturl": {"no_log": False, "type": "str"}, + "samlissuername": {"no_log": False, "type": "raw"}, + "samlredirecturl": {"no_log": False, "type": "raw"}, "samlrejectunsignedassertion": { "choices": ["OFF", "ON", "STRICT"], "no_log": False, - "type": "str", + "type": "raw", }, - "samlsigningcertname": {"no_log": False, "type": "str"}, - "samltwofactor": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "samluserfield": {"no_log": False, "type": "str"}, + "samlsigningcertname": {"no_log": False, "type": "raw"}, + "samltwofactor": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "samluserfield": {"no_log": False, "type": "raw"}, "sendthumbprint": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "signaturealg": { "choices": ["RSA-SHA1", "RSA-SHA256"], "no_log": False, - "type": "str", + "type": "raw", }, - "skewtime": {"no_log": False, "type": "float"}, - "statechecks": {"no_log": False, "type": "str"}, + "skewtime": {"no_log": False, "type": "raw"}, + "statechecks": {"no_log": False, "type": "raw"}, "storesamlresponse": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -12689,12 +12636,12 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -12907,167 +12854,167 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "acsurlrule": {"no_log": False, "type": "str"}, - "assertionconsumerserviceurl": {"no_log": False, "type": "str"}, - "attribute1": {"no_log": False, "type": "str"}, - "attribute10": {"no_log": False, "type": "str"}, + "acsurlrule": {"no_log": False, "type": "raw"}, + "assertionconsumerserviceurl": {"no_log": False, "type": "raw"}, + "attribute1": {"no_log": False, "type": "raw"}, + "attribute10": {"no_log": False, "type": "raw"}, "attribute10expr": {"no_log": False, "type": "str"}, "attribute10format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute10friendlyname": {"no_log": False, "type": "str"}, - "attribute11": {"no_log": False, "type": "str"}, + "attribute10friendlyname": {"no_log": False, "type": "raw"}, + "attribute11": {"no_log": False, "type": "raw"}, "attribute11expr": {"no_log": False, "type": "str"}, "attribute11format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute11friendlyname": {"no_log": False, "type": "str"}, - "attribute12": {"no_log": False, "type": "str"}, + "attribute11friendlyname": {"no_log": False, "type": "raw"}, + "attribute12": {"no_log": False, "type": "raw"}, "attribute12expr": {"no_log": False, "type": "str"}, "attribute12format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute12friendlyname": {"no_log": False, "type": "str"}, - "attribute13": {"no_log": False, "type": "str"}, + "attribute12friendlyname": {"no_log": False, "type": "raw"}, + "attribute13": {"no_log": False, "type": "raw"}, "attribute13expr": {"no_log": False, "type": "str"}, "attribute13format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute13friendlyname": {"no_log": False, "type": "str"}, - "attribute14": {"no_log": False, "type": "str"}, + "attribute13friendlyname": {"no_log": False, "type": "raw"}, + "attribute14": {"no_log": False, "type": "raw"}, "attribute14expr": {"no_log": False, "type": "str"}, "attribute14format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute14friendlyname": {"no_log": False, "type": "str"}, - "attribute15": {"no_log": False, "type": "str"}, + "attribute14friendlyname": {"no_log": False, "type": "raw"}, + "attribute15": {"no_log": False, "type": "raw"}, "attribute15expr": {"no_log": False, "type": "str"}, "attribute15format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute15friendlyname": {"no_log": False, "type": "str"}, - "attribute16": {"no_log": False, "type": "str"}, + "attribute15friendlyname": {"no_log": False, "type": "raw"}, + "attribute16": {"no_log": False, "type": "raw"}, "attribute16expr": {"no_log": False, "type": "str"}, "attribute16format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute16friendlyname": {"no_log": False, "type": "str"}, + "attribute16friendlyname": {"no_log": False, "type": "raw"}, "attribute1expr": {"no_log": False, "type": "str"}, "attribute1format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute1friendlyname": {"no_log": False, "type": "str"}, - "attribute2": {"no_log": False, "type": "str"}, + "attribute1friendlyname": {"no_log": False, "type": "raw"}, + "attribute2": {"no_log": False, "type": "raw"}, "attribute2expr": {"no_log": False, "type": "str"}, "attribute2format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute2friendlyname": {"no_log": False, "type": "str"}, - "attribute3": {"no_log": False, "type": "str"}, + "attribute2friendlyname": {"no_log": False, "type": "raw"}, + "attribute3": {"no_log": False, "type": "raw"}, "attribute3expr": {"no_log": False, "type": "str"}, "attribute3format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute3friendlyname": {"no_log": False, "type": "str"}, - "attribute4": {"no_log": False, "type": "str"}, + "attribute3friendlyname": {"no_log": False, "type": "raw"}, + "attribute4": {"no_log": False, "type": "raw"}, "attribute4expr": {"no_log": False, "type": "str"}, "attribute4format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute4friendlyname": {"no_log": False, "type": "str"}, - "attribute5": {"no_log": False, "type": "str"}, + "attribute4friendlyname": {"no_log": False, "type": "raw"}, + "attribute5": {"no_log": False, "type": "raw"}, "attribute5expr": {"no_log": False, "type": "str"}, "attribute5format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute5friendlyname": {"no_log": False, "type": "str"}, - "attribute6": {"no_log": False, "type": "str"}, + "attribute5friendlyname": {"no_log": False, "type": "raw"}, + "attribute6": {"no_log": False, "type": "raw"}, "attribute6expr": {"no_log": False, "type": "str"}, "attribute6format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute6friendlyname": {"no_log": False, "type": "str"}, - "attribute7": {"no_log": False, "type": "str"}, + "attribute6friendlyname": {"no_log": False, "type": "raw"}, + "attribute7": {"no_log": False, "type": "raw"}, "attribute7expr": {"no_log": False, "type": "str"}, "attribute7format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute7friendlyname": {"no_log": False, "type": "str"}, - "attribute8": {"no_log": False, "type": "str"}, + "attribute7friendlyname": {"no_log": False, "type": "raw"}, + "attribute8": {"no_log": False, "type": "raw"}, "attribute8expr": {"no_log": False, "type": "str"}, "attribute8format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute8friendlyname": {"no_log": False, "type": "str"}, - "attribute9": {"no_log": False, "type": "str"}, + "attribute8friendlyname": {"no_log": False, "type": "raw"}, + "attribute9": {"no_log": False, "type": "raw"}, "attribute9expr": {"no_log": False, "type": "str"}, "attribute9format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute9friendlyname": {"no_log": False, "type": "str"}, - "audience": {"no_log": False, "type": "str"}, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, + "attribute9friendlyname": {"no_log": False, "type": "raw"}, + "audience": {"no_log": False, "type": "raw"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, "digestmethod": { "choices": ["SHA1", "SHA256"], "no_log": False, - "type": "str", + "type": "raw", }, "encryptassertion": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "encryptionalgorithm": { "choices": ["AES128", "AES192", "AES256", "DES3"], "no_log": False, - "type": "str", + "type": "raw", }, "keytransportalg": { "choices": ["RSA-V1_5", "RSA_OAEP"], "no_log": False, - "type": "str", + "type": "raw", }, "logoutbinding": { "choices": ["POST", "REDIRECT"], "no_log": False, - "type": "str", + "type": "raw", }, - "metadatarefreshinterval": {"no_log": False, "type": "float"}, - "metadataurl": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "nameidexpr": {"no_log": False, "type": "str"}, + "metadatarefreshinterval": {"no_log": False, "type": "raw"}, + "metadataurl": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "nameidexpr": {"no_log": False, "type": "raw"}, "nameidformat": { "choices": [ "Unspecified", @@ -13080,38 +13027,38 @@ "transient", ], "no_log": False, - "type": "str", + "type": "raw", }, "rejectunsignedrequests": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "samlbinding": { "choices": ["ARTIFACT", "POST", "REDIRECT"], "no_log": False, - "type": "str", + "type": "raw", }, - "samlidpcertname": {"no_log": False, "type": "str"}, - "samlissuername": {"no_log": False, "type": "str"}, - "samlsigningcertversion": {"no_log": False, "type": "str"}, - "samlspcertname": {"no_log": False, "type": "str"}, - "samlspcertversion": {"no_log": False, "type": "str"}, - "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "serviceproviderid": {"no_log": False, "type": "str"}, + "samlidpcertname": {"no_log": False, "type": "raw"}, + "samlissuername": {"no_log": False, "type": "raw"}, + "samlsigningcertversion": {"no_log": False, "type": "raw"}, + "samlspcertname": {"no_log": False, "type": "raw"}, + "samlspcertversion": {"no_log": False, "type": "raw"}, + "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "serviceproviderid": {"no_log": False, "type": "raw"}, "signassertion": { "choices": ["ASSERTION", "BOTH", "NONE", "RESPONSE"], "no_log": False, - "type": "str", + "type": "raw", }, "signaturealg": { "choices": ["RSA-SHA1", "RSA-SHA256"], "no_log": False, - "type": "str", + "type": "raw", }, - "signatureservice": {"no_log": False, "type": "str"}, - "skewtime": {"no_log": False, "type": "float"}, - "splogouturl": {"no_log": False, "type": "str"}, + "signatureservice": {"no_log": False, "type": "raw"}, + "skewtime": {"no_log": False, "type": "raw"}, + "splogouturl": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -13240,9 +13187,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "name": {"no_log": False, "type": "str"}, - "reqaction": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "reqaction": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], @@ -13279,8 +13226,8 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "rule": {"no_log": False, "type": "str"}, }, "singleton": False, @@ -13317,8 +13264,8 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "tags": {"no_log": False, "type": "str"}, }, "singleton": False, @@ -13360,9 +13307,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "domain": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "domain": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "serverurl": {"no_log": False, "type": "str"}, }, "singleton": False, @@ -13460,37 +13407,37 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "accounting": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "attribute1": {"no_log": False, "type": "str"}, - "attribute10": {"no_log": False, "type": "str"}, - "attribute11": {"no_log": False, "type": "str"}, - "attribute12": {"no_log": False, "type": "str"}, - "attribute13": {"no_log": False, "type": "str"}, - "attribute14": {"no_log": False, "type": "str"}, - "attribute15": {"no_log": False, "type": "str"}, - "attribute16": {"no_log": False, "type": "str"}, - "attribute2": {"no_log": False, "type": "str"}, - "attribute3": {"no_log": False, "type": "str"}, - "attribute4": {"no_log": False, "type": "str"}, - "attribute5": {"no_log": False, "type": "str"}, - "attribute6": {"no_log": False, "type": "str"}, - "attribute7": {"no_log": False, "type": "str"}, - "attribute8": {"no_log": False, "type": "str"}, - "attribute9": {"no_log": False, "type": "str"}, - "attributes": {"no_log": False, "type": "str"}, + "accounting": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "attribute1": {"no_log": False, "type": "raw"}, + "attribute10": {"no_log": False, "type": "raw"}, + "attribute11": {"no_log": False, "type": "raw"}, + "attribute12": {"no_log": False, "type": "raw"}, + "attribute13": {"no_log": False, "type": "raw"}, + "attribute14": {"no_log": False, "type": "raw"}, + "attribute15": {"no_log": False, "type": "raw"}, + "attribute16": {"no_log": False, "type": "raw"}, + "attribute2": {"no_log": False, "type": "raw"}, + "attribute3": {"no_log": False, "type": "raw"}, + "attribute4": {"no_log": False, "type": "raw"}, + "attribute5": {"no_log": False, "type": "raw"}, + "attribute6": {"no_log": False, "type": "raw"}, + "attribute7": {"no_log": False, "type": "raw"}, + "attribute8": {"no_log": False, "type": "raw"}, + "attribute9": {"no_log": False, "type": "raw"}, + "attributes": {"no_log": False, "type": "raw"}, "auditfailedcmds": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "authorization": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "authtimeout": {"no_log": False, "type": "float"}, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "groupattrname": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "serverip": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "int"}, - "tacacssecret": {"no_log": True, "type": "str"}, + "authorization": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "authtimeout": {"no_log": False, "type": "raw"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "groupattrname": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "serverip": {"no_log": False, "type": "raw"}, + "serverport": {"no_log": False, "type": "raw"}, + "tacacssecret": {"no_log": True, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -13554,9 +13501,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "name": {"no_log": False, "type": "str"}, - "reqaction": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "reqaction": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["name", "reqaction", "rule"], @@ -13646,14 +13593,14 @@ "appflowlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "authentication": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "authenticationdomain": {"no_log": False, "type": "str"}, + "authenticationdomain": {"no_log": False, "type": "raw"}, "authenticationvserver_auditnslogpolicy_binding": { "no_log": False, "options": { @@ -13990,19 +13937,19 @@ }, "type": "dict", }, - "certkeynames": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "failedlogintimeout": {"no_log": False, "type": "float"}, + "certkeynames": {"no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, + "failedlogintimeout": {"no_log": False, "type": "raw"}, "ipv46": {"no_log": False, "type": "str"}, - "maxloginattempts": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, + "maxloginattempts": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "port": {"no_log": False, "type": "int"}, "range": {"no_log": False, "type": "float"}, "samesite": { "choices": ["LAX", "None", "STRICT"], "no_log": False, - "type": "str", + "type": "raw", }, "servicetype": {"choices": ["SSL"], "no_log": False, "type": "str"}, "td": {"no_log": False, "type": "float"}, @@ -15386,28 +15333,28 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "attribute1": {"no_log": False, "type": "str"}, - "attribute10": {"no_log": False, "type": "str"}, - "attribute11": {"no_log": False, "type": "str"}, - "attribute12": {"no_log": False, "type": "str"}, - "attribute13": {"no_log": False, "type": "str"}, - "attribute14": {"no_log": False, "type": "str"}, - "attribute15": {"no_log": False, "type": "str"}, - "attribute16": {"no_log": False, "type": "str"}, - "attribute2": {"no_log": False, "type": "str"}, - "attribute3": {"no_log": False, "type": "str"}, - "attribute4": {"no_log": False, "type": "str"}, - "attribute5": {"no_log": False, "type": "str"}, - "attribute6": {"no_log": False, "type": "str"}, - "attribute7": {"no_log": False, "type": "str"}, - "attribute8": {"no_log": False, "type": "str"}, - "attribute9": {"no_log": False, "type": "str"}, - "defaultauthenticationgroup": {"no_log": False, "type": "str"}, - "fullreqexpr": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "attribute1": {"no_log": False, "type": "raw"}, + "attribute10": {"no_log": False, "type": "raw"}, + "attribute11": {"no_log": False, "type": "raw"}, + "attribute12": {"no_log": False, "type": "raw"}, + "attribute13": {"no_log": False, "type": "raw"}, + "attribute14": {"no_log": False, "type": "raw"}, + "attribute15": {"no_log": False, "type": "raw"}, + "attribute16": {"no_log": False, "type": "raw"}, + "attribute2": {"no_log": False, "type": "raw"}, + "attribute3": {"no_log": False, "type": "raw"}, + "attribute4": {"no_log": False, "type": "raw"}, + "attribute5": {"no_log": False, "type": "raw"}, + "attribute6": {"no_log": False, "type": "raw"}, + "attribute7": {"no_log": False, "type": "raw"}, + "attribute8": {"no_log": False, "type": "raw"}, + "attribute9": {"no_log": False, "type": "raw"}, + "defaultauthenticationgroup": {"no_log": False, "type": "raw"}, + "fullreqexpr": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "scheme": {"choices": ["http", "https"], "no_log": False, "type": "str"}, - "serverip": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "int"}, + "serverip": {"no_log": False, "type": "raw"}, + "serverport": {"no_log": False, "type": "raw"}, "successrule": {"no_log": False, "type": "str"}, }, "singleton": False, @@ -15673,16 +15620,16 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "parameters": {"no_log": False, "type": "str"}, "profilename": {"no_log": False, "type": "str"}, - "quiettime": {"no_log": False, "type": "float"}, + "quiettime": {"no_log": False, "type": "raw"}, "type": { "choices": ["SCALE_DOWN", "SCALE_UP"], "no_log": False, "type": "str", }, - "vmdestroygraceperiod": {"no_log": False, "type": "float"}, + "vmdestroygraceperiod": {"no_log": False, "type": "raw"}, "vserver": {"no_log": False, "type": "str"}, }, "singleton": False, @@ -15727,12 +15674,12 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "action": {"no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["action", "comment", "logaction", "name", "rule"], @@ -15975,13 +15922,13 @@ }, "type": "dict", }, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "profilename": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -16199,27 +16146,27 @@ "bot_enable_black_list": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "bot_enable_ip_reputation": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "bot_enable_rate_limit": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "bot_enable_tps": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "bot_enable_white_list": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "botprofile_blacklist_binding": { "no_log": False, @@ -16365,69 +16312,63 @@ }, "type": "dict", }, - "clientipexpression": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, + "clientipexpression": {"no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, "devicefingerprint": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "devicefingerprintaction": { "choices": ["DROP", "LOG", "MITIGATION", "NONE", "REDIRECT", "RESET"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "devicefingerprintmobile": { "choices": ["Android", "NONE", "iOS"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "dfprequestlimit": {"no_log": False, "type": "float"}, - "errorurl": {"no_log": False, "type": "str"}, + "dfprequestlimit": {"no_log": False, "type": "raw"}, + "errorurl": {"no_log": False, "type": "raw"}, "headlessbrowserdetection": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "kmdetection": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "kmeventspostbodylimit": {"no_log": False, "type": "float"}, - "kmjavascriptname": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "sessioncookiename": {"no_log": False, "type": "str"}, - "sessiontimeout": {"no_log": False, "type": "float"}, - "signature": {"no_log": False, "type": "str"}, + "kmdetection": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "kmeventspostbodylimit": {"no_log": False, "type": "raw"}, + "kmjavascriptname": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "sessioncookiename": {"no_log": False, "type": "raw"}, + "sessiontimeout": {"no_log": False, "type": "raw"}, + "signature": {"no_log": False, "type": "raw"}, "signaturemultipleuseragentheaderaction": { "choices": ["CHECKLAST", "DROP", "LOG", "REDIRECT", "RESET"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "signaturenouseragentheaderaction": { "choices": ["DROP", "LOG", "NONE", "REDIRECT", "RESET"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "spoofedreqaction": { "choices": ["DROP", "LOG", "NONE", "REDIRECT", "RESET"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "trap": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "trap": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "trapaction": { "choices": ["DROP", "LOG", "NONE", "REDIRECT", "RESET"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "trapurl": {"no_log": False, "type": "str"}, + "trapurl": {"no_log": False, "type": "raw"}, "verboseloglevel": { "choices": ["HTTP_FULL_HEADER", "NONE"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -17357,30 +17298,30 @@ "defaultnonintrusiveprofile": { "choices": ["BOT_BYPASS", "BOT_LOG", "BOT_STATS"], "no_log": False, - "type": "str", - }, - "defaultprofile": {"no_log": False, "type": "str"}, - "dfprequestlimit": {"no_log": False, "type": "float"}, - "javascriptname": {"no_log": False, "type": "str"}, - "proxypassword": {"no_log": True, "type": "str"}, - "proxyport": {"no_log": False, "type": "int"}, - "proxyserver": {"no_log": False, "type": "str"}, - "proxyusername": {"no_log": False, "type": "str"}, - "sessioncookiename": {"no_log": False, "type": "str"}, - "sessiontimeout": {"no_log": False, "type": "float"}, + "type": "raw", + }, + "defaultprofile": {"no_log": False, "type": "raw"}, + "dfprequestlimit": {"no_log": False, "type": "raw"}, + "javascriptname": {"no_log": False, "type": "raw"}, + "proxypassword": {"no_log": True, "type": "raw"}, + "proxyport": {"no_log": False, "type": "raw"}, + "proxyserver": {"no_log": False, "type": "raw"}, + "proxyusername": {"no_log": False, "type": "raw"}, + "sessioncookiename": {"no_log": False, "type": "raw"}, + "sessiontimeout": {"no_log": False, "type": "raw"}, "signatureautoupdate": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "signatureurl": {"no_log": False, "type": "str"}, + "signatureurl": {"no_log": False, "type": "raw"}, "trapurlautogenerate": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "trapurlinterval": {"no_log": False, "type": "float"}, - "trapurllength": {"no_log": False, "type": "float"}, + "trapurlinterval": {"no_log": False, "type": "raw"}, + "trapurllength": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -17518,13 +17459,13 @@ "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "id": {"no_log": False, "type": "float"}, + "id": {"no_log": False, "type": "raw"}, "ipv6dynamicrouting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -17651,7 +17592,7 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "bridgeage": {"no_log": False, "type": "float"}, + "bridgeage": {"no_log": False, "type": "raw"}, "devicevlan": {"no_log": False, "type": "float"}, "ifnum": {"no_log": False, "type": "str"}, "mac": {"no_log": False, "type": "str"}, @@ -17777,72 +17718,72 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "absexpiry": {"elements": "str", "no_log": False, "type": "list"}, - "absexpirygmt": {"elements": "str", "no_log": False, "type": "list"}, + "absexpiry": {"no_log": False, "type": "raw"}, + "absexpirygmt": {"no_log": False, "type": "raw"}, "alwaysevalpolicies": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "cachecontrol": {"no_log": False, "type": "str"}, + "cachecontrol": {"no_log": False, "type": "raw"}, "expireatlastbyte": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "flashcache": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "heurexpiryparam": {"no_log": False, "type": "float"}, - "hitparams": {"elements": "str", "no_log": False, "type": "list"}, - "hitselector": {"no_log": False, "type": "str"}, + "flashcache": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "heurexpiryparam": {"no_log": False, "type": "raw"}, + "hitparams": {"no_log": False, "type": "raw"}, + "hitselector": {"no_log": False, "type": "raw"}, "host": {"no_log": False, "type": "str"}, "ignoreparamvaluecase": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "ignorereloadreq": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "ignorereqcachinghdrs": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "insertage": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "insertetag": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "insertvia": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "invalparams": {"elements": "str", "no_log": False, "type": "list"}, + "insertage": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "insertetag": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "insertvia": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "invalparams": {"no_log": False, "type": "raw"}, "invalrestrictedtohost": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "invalselector": {"no_log": False, "type": "str"}, + "invalselector": {"no_log": False, "type": "raw"}, "lazydnsresolve": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", - }, - "matchcookies": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "maxressize": {"no_log": False, "type": "float"}, - "memlimit": {"no_log": False, "type": "float"}, - "minhits": {"no_log": False, "type": "int"}, - "minressize": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, - "persistha": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "pinned": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "polleverytime": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "prefetch": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "prefetchmaxpending": {"no_log": False, "type": "float"}, - "prefetchperiod": {"no_log": False, "type": "float"}, - "prefetchperiodmillisec": {"no_log": False, "type": "float"}, + "type": "raw", + }, + "matchcookies": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "maxressize": {"no_log": False, "type": "raw"}, + "memlimit": {"no_log": False, "type": "raw"}, + "minhits": {"no_log": False, "type": "raw"}, + "minressize": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "persistha": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "pinned": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "polleverytime": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "prefetch": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "prefetchmaxpending": {"no_log": False, "type": "raw"}, + "prefetchperiod": {"no_log": False, "type": "raw"}, + "prefetchperiodmillisec": {"no_log": False, "type": "raw"}, "query": {"no_log": False, "type": "str"}, - "quickabortsize": {"no_log": False, "type": "float"}, - "relexpiry": {"no_log": False, "type": "float"}, - "relexpirymillisec": {"no_log": False, "type": "float"}, - "removecookies": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "quickabortsize": {"no_log": False, "type": "raw"}, + "relexpiry": {"no_log": False, "type": "raw"}, + "relexpirymillisec": {"no_log": False, "type": "raw"}, + "removecookies": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "selectorvalue": {"no_log": False, "type": "str"}, "tosecondary": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "type": { @@ -17850,8 +17791,8 @@ "no_log": False, "type": "str", }, - "weaknegrelexpiry": {"no_log": False, "type": "float"}, - "weakposrelexpiry": {"no_log": False, "type": "float"}, + "weaknegrelexpiry": {"no_log": False, "type": "raw"}, + "weakposrelexpiry": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -18097,26 +18038,26 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "enablebypass": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "enablebypass": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "enablehaobjpersist": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxpostlen": {"no_log": False, "type": "float"}, - "memlimit": {"no_log": False, "type": "float"}, - "prefetchmaxpending": {"no_log": False, "type": "float"}, + "maxpostlen": {"no_log": False, "type": "raw"}, + "memlimit": {"no_log": False, "type": "raw"}, + "prefetchmaxpending": {"no_log": False, "type": "raw"}, "undefaction": { "choices": ["NOCACHE", "RESET"], "no_log": False, - "type": "str", + "type": "raw", }, "verifyusing": { "choices": ["DNS", "HOSTNAME", "HOSTNAME_AND_IP"], "no_log": False, - "type": "str", + "type": "raw", }, - "via": {"no_log": False, "type": "str"}, + "via": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -18197,16 +18138,16 @@ }, "type": "dict", }, - "invalgroups": {"elements": "str", "no_log": False, "type": "list"}, - "invalobjects": {"elements": "str", "no_log": False, "type": "list"}, + "invalgroups": {"no_log": False, "type": "raw"}, + "invalobjects": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "policyname": {"no_log": False, "type": "str"}, + "policyname": {"no_log": False, "type": "raw"}, "rule": {"no_log": False, "type": "str"}, - "storeingroup": {"no_log": False, "type": "str"}, + "storeingroup": {"no_log": False, "type": "raw"}, "undefaction": { "choices": ["NOCACHE", "RESET"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -18406,14 +18347,14 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "emailaddress": {"no_log": False, "type": "str"}, - "hbcustominterval": {"no_log": False, "type": "float"}, - "ipaddress": {"no_log": False, "type": "str"}, - "mode": {"choices": ["CSP", "Default"], "no_log": False, "type": "str"}, + "emailaddress": {"no_log": False, "type": "raw"}, + "hbcustominterval": {"no_log": False, "type": "raw"}, + "ipaddress": {"no_log": False, "type": "raw"}, + "mode": {"choices": ["CSP", "Default"], "no_log": False, "type": "raw"}, "nodeid": {"no_log": False, "type": "float"}, - "port": {"no_log": False, "type": "int"}, - "proxyauthservice": {"no_log": False, "type": "str"}, - "proxymode": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "port": {"no_log": False, "type": "raw"}, + "proxyauthservice": {"no_log": False, "type": "raw"}, + "proxymode": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -18484,8 +18425,8 @@ "primary_key": "id", "primary_key_composite": [], "readwrite_arguments": { - "bandwidthhigh": {"no_log": False, "type": "float"}, - "bandwidthnormal": {"no_log": False, "type": "float"}, + "bandwidthhigh": {"no_log": False, "type": "raw"}, + "bandwidthnormal": {"no_log": False, "type": "raw"}, "channel_interface_binding": { "no_log": False, "options": { @@ -18510,44 +18451,34 @@ "flowctl": { "choices": ["OFF", "ON", "RX", "RXTX", "TX"], "no_log": False, - "type": "str", + "type": "raw", }, - "haheartbeat": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "hamonitor": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "id": {"no_log": False, "type": "str"}, - "ifalias": {"no_log": False, "type": "str"}, + "haheartbeat": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "hamonitor": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "id": {"no_log": False, "type": "raw"}, + "ifalias": {"no_log": False, "type": "raw"}, "ifnum": {"elements": "str", "no_log": False, "type": "list"}, "lamac": {"no_log": False, "type": "str"}, "linkredundancy": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "lrminthroughput": {"no_log": False, "type": "float"}, + "lrminthroughput": {"no_log": False, "type": "raw"}, "macdistr": { "choices": ["BOTH", "DESTINATION", "SOURCE"], "no_log": False, "type": "str", }, "mode": {"choices": ["AUTO", "MANUAL"], "no_log": False, "type": "str"}, - "mtu": {"no_log": False, "type": "float"}, + "mtu": {"no_log": False, "type": "raw"}, "speed": { - "choices": [ - "10", - "100", - "1000", - "10000", - "100000", - "25000", - "40000", - "50000", - "AUTO", - ], + "choices": ["AUTO", 10, 100, 1000, 10000, 25000, 40000, 50000, 100000], "no_log": False, - "type": "str", + "type": "raw", }, - "tagall": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "throughput": {"no_log": False, "type": "float"}, + "tagall": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "throughput": {"no_log": False, "type": "raw"}, "trunk": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, }, "singleton": False, @@ -18655,7 +18586,7 @@ "password_keys": [], "primary_key": "", "primary_key_composite": [], - "readwrite_arguments": {"rolearn": {"no_log": False, "type": "str"}}, + "readwrite_arguments": {"rolearn": {"no_log": False, "type": "raw"}}, "singleton": True, "update_payload_keys": ["rolearn"], }, @@ -18721,21 +18652,21 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "allowdtls12": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "allowdtls12": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "allowedudtversion": { "choices": ["V4", "V5", "V6", "V7"], "no_log": False, - "type": "str", + "type": "raw", }, "blockonallowedngstktprof": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "csvserverticketingdecouple": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -18777,14 +18708,14 @@ }, "controllerfqdn": {"no_log": False, "type": "str"}, "controllerport": {"no_log": False, "type": "int"}, - "customerid": {"no_log": False, "type": "str"}, + "customerid": {"no_log": False, "type": "raw"}, "deployment": { "choices": ["Dev", "Production", "Staging"], "no_log": False, "type": "str", }, - "instanceid": {"no_log": False, "type": "str"}, - "resourcelocation": {"no_log": False, "type": "str"}, + "instanceid": {"no_log": False, "type": "raw"}, + "resourcelocation": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -19029,7 +18960,7 @@ "controllerfqdn": {"no_log": False, "type": "str"}, "fqdn": {"no_log": False, "type": "str"}, "resourcelocation": {"no_log": False, "type": "str"}, - "subnetresourcelocationmappings": {"no_log": False, "type": "str"}, + "subnetresourcelocationmappings": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -19419,47 +19350,47 @@ "backplanebasedview": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "clid": {"no_log": False, "type": "float"}, + "clid": {"no_log": False, "type": "raw"}, "clusterproxyarp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "deadinterval": {"no_log": False, "type": "float"}, + "deadinterval": {"no_log": False, "type": "raw"}, "dfdretainl2params": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "hellointerval": {"no_log": False, "type": "float"}, - "inc": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "nodegroup": {"no_log": False, "type": "str"}, + "hellointerval": {"no_log": False, "type": "raw"}, + "inc": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "nodegroup": {"no_log": False, "type": "raw"}, "preemption": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "processlocal": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "quorumtype": { "choices": ["MAJORITY", "NONE"], "no_log": False, - "type": "str", + "type": "raw", }, "retainconnectionsoncluster": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "syncstatusstrictmode": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -19531,7 +19462,7 @@ "primary_key": "nodeid", "primary_key_composite": [], "readwrite_arguments": { - "backplane": {"no_log": False, "type": "str"}, + "backplane": {"no_log": False, "type": "raw"}, "clearnodegroupconfig": { "choices": ["NO", "YES"], "no_log": False, @@ -19729,15 +19660,15 @@ }, "type": "dict", }, - "delay": {"no_log": False, "type": "float"}, + "delay": {"no_log": False, "type": "raw"}, "ipaddress": {"no_log": False, "type": "str"}, "nodegroup": {"no_log": False, "type": "str"}, - "nodeid": {"no_log": False, "type": "float"}, - "priority": {"no_log": False, "type": "float"}, + "nodeid": {"no_log": False, "type": "raw"}, + "priority": {"no_log": False, "type": "raw"}, "tunnelmode": { "choices": ["GRE", "NONE", "UDP"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -19997,10 +19928,10 @@ }, "type": "dict", }, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "priority": {"no_log": False, "type": "float"}, "sticky": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "strict": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "strict": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["name", "priority", "strict"], @@ -20374,7 +20305,7 @@ "addvaryheader": { "choices": ["DISABLED", "ENABLED", "GLOBAL"], "no_log": False, - "type": "str", + "type": "raw", }, "cmptype": { "choices": ["compress", "deflate", "gzip", "nocompress"], @@ -20386,7 +20317,7 @@ "no_log": False, "type": "str", }, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "varyheadervalue": {"no_log": False, "type": "str"}, }, @@ -20507,28 +20438,28 @@ "addvaryheader": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "cmpbypasspct": {"no_log": False, "type": "float"}, + "cmpbypasspct": {"no_log": False, "type": "raw"}, "cmplevel": { "choices": ["bestcompression", "bestspeed", "optimal"], "no_log": False, - "type": "str", + "type": "raw", }, "cmponpush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "externalcache": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "externalcache": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "heurexpiry": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "heurexpiryhistwt": {"no_log": False, "type": "float"}, "heurexpirythres": {"no_log": False, "type": "float"}, - "minressize": {"no_log": False, "type": "float"}, - "policytype": {"choices": ["ADVANCED"], "no_log": False, "type": "str"}, - "quantumsize": {"no_log": False, "type": "float"}, - "servercmp": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "varyheadervalue": {"no_log": False, "type": "str"}, + "minressize": {"no_log": False, "type": "raw"}, + "policytype": {"choices": ["ADVANCED"], "no_log": False, "type": "raw"}, + "quantumsize": {"no_log": False, "type": "raw"}, + "servercmp": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "varyheadervalue": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -20752,12 +20683,12 @@ "ifserverdown": { "choices": ["CONTINUE", "DROP", "RESET"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "serverip": {"no_log": False, "type": "str"}, "servername": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "float"}, + "serverport": {"no_log": False, "type": "raw"}, "type": { "choices": ["ICAP", "INLINEINSPECTION", "MIRROR", "NOINSPECTION"], "no_log": False, @@ -20815,8 +20746,8 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "profilename": {"no_log": False, "type": "str"}, "resultexpr": {"no_log": False, "type": "str"}, "returntype": { @@ -20826,7 +20757,7 @@ }, "serverip": {"no_log": False, "type": "str"}, "servername": {"no_log": False, "type": "str"}, - "serverport": {"no_log": False, "type": "float"}, + "serverport": {"no_log": False, "type": "raw"}, "type": {"choices": ["ICAP"], "no_log": False, "type": "str"}, }, "singleton": False, @@ -20935,7 +20866,7 @@ "password_keys": [], "primary_key": "", "primary_key_composite": [], - "readwrite_arguments": {"undefaction": {"no_log": False, "type": "str"}}, + "readwrite_arguments": {"undefaction": {"no_log": False, "type": "raw"}}, "singleton": True, "update_payload_keys": ["undefaction"], }, @@ -20979,7 +20910,7 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, "contentinspectionpolicylabel_contentinspectionpolicy_binding": { "no_log": False, "options": { @@ -20996,11 +20927,11 @@ }, "type": "dict", }, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -21159,11 +21090,11 @@ "primary_key_composite": [], "readwrite_arguments": { "egressinterface": {"no_log": False, "type": "str"}, - "egressvlan": {"no_log": False, "type": "float"}, + "egressvlan": {"no_log": False, "type": "raw"}, "ingressinterface": {"no_log": False, "type": "str"}, - "ingressvlan": {"no_log": False, "type": "float"}, + "ingressvlan": {"no_log": False, "type": "raw"}, "iptunnel": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "type": { "choices": ["InlineInspection", "Mirror"], "no_log": False, @@ -21213,9 +21144,9 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, + "logaction": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "policyname": {"no_log": False, "type": "str"}, + "policyname": {"no_log": False, "type": "raw"}, "rule": {"no_log": False, "type": "str"}, }, "singleton": False, @@ -21369,23 +21300,23 @@ "appflowlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "arp": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "arp": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "backendssl": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "backupvserver": {"no_log": False, "type": "str"}, + "backupvserver": {"no_log": False, "type": "raw"}, "cachetype": { "choices": ["FORWARD", "REVERSE", "TRANSPARENT"], "no_log": False, "type": "str", }, "cachevserver": {"no_log": False, "type": "str"}, - "clttimeout": {"no_log": False, "type": "float"}, - "comment": {"no_log": False, "type": "str"}, + "clttimeout": {"no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, "crvserver_analyticsprofile_binding": { "no_log": False, "options": { @@ -21626,68 +21557,68 @@ }, "type": "dict", }, - "destinationvserver": {"no_log": False, "type": "str"}, + "destinationvserver": {"no_log": False, "type": "raw"}, "disableprimaryondown": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "disallowserviceaccess": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dnsvservername": {"no_log": False, "type": "str"}, - "domain": {"no_log": False, "type": "str"}, + "dnsvservername": {"no_log": False, "type": "raw"}, + "domain": {"no_log": False, "type": "raw"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "format": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "ghost": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "httpprofilename": {"no_log": False, "type": "str"}, + "httpprofilename": {"no_log": False, "type": "raw"}, "icmpvsrresponse": { "choices": ["ACTIVE", "PASSIVE"], "no_log": False, - "type": "str", + "type": "raw", }, - "ipset": {"no_log": False, "type": "str"}, + "ipset": {"no_log": False, "type": "raw"}, "ipv46": {"no_log": False, "type": "str"}, - "l2conn": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "listenpolicy": {"no_log": False, "type": "str"}, - "listenpriority": {"no_log": False, "type": "float"}, + "l2conn": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "listenpolicy": {"no_log": False, "type": "raw"}, + "listenpriority": {"no_log": False, "type": "raw"}, "map": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "netprofile": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "netprofile": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "onpolicymatch": { "choices": ["CACHE", "ORIGIN"], "no_log": False, - "type": "str", + "type": "raw", }, - "originusip": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "originusip": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "port": {"no_log": False, "type": "int"}, - "precedence": {"choices": ["RULE", "URL"], "no_log": False, "type": "str"}, + "precedence": {"choices": ["RULE", "URL"], "no_log": False, "type": "raw"}, "probeport": {"no_log": False, "type": "int"}, "probeprotocol": { "choices": ["HTTP", "TCP"], "no_log": False, - "type": "str", + "type": "raw", }, - "probesuccessresponsecode": {"no_log": False, "type": "str"}, + "probesuccessresponsecode": {"no_log": False, "type": "raw"}, "range": {"no_log": False, "type": "float"}, "redirect": { "choices": ["CACHE", "ORIGIN", "POLICY"], "no_log": False, - "type": "str", + "type": "raw", }, - "redirecturl": {"no_log": False, "type": "str"}, - "reuse": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "redirecturl": {"no_log": False, "type": "raw"}, + "reuse": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "rhistate": { "choices": ["ACTIVE", "PASSIVE"], "no_log": False, - "type": "str", + "type": "raw", }, "servicetype": { "choices": ["HDX", "HTTP", "NNTP", "SSL"], @@ -21696,17 +21627,17 @@ }, "sopersistencetimeout": {"no_log": False, "type": "float"}, "sothreshold": {"no_log": False, "type": "float"}, - "srcipexpr": {"no_log": False, "type": "str"}, - "tcpprobeport": {"no_log": False, "type": "int"}, - "tcpprofilename": {"no_log": False, "type": "str"}, + "srcipexpr": {"no_log": False, "type": "raw"}, + "tcpprobeport": {"no_log": False, "type": "raw"}, + "tcpprofilename": {"no_log": False, "type": "raw"}, "td": {"no_log": False, "type": "float"}, "useoriginipportforcache": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "useportrange": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "via": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "useportrange": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "via": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -22662,8 +22593,8 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "targetlbvserver": {"no_log": False, "type": "str"}, "targetvserver": {"no_log": False, "type": "str"}, @@ -22704,7 +22635,7 @@ "stateupdate": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", } }, "singleton": True, @@ -22759,9 +22690,9 @@ }, "type": "dict", }, - "logaction": {"no_log": False, "type": "str"}, + "logaction": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "policyname": {"no_log": False, "type": "str"}, + "policyname": {"no_log": False, "type": "raw"}, "rule": {"no_log": False, "type": "str"}, }, "singleton": False, @@ -23105,26 +23036,26 @@ "appflowlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "authentication": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "authenticationhost": {"no_log": False, "type": "str"}, - "authn401": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "authnprofile": {"no_log": False, "type": "str"}, - "authnvsname": {"no_log": False, "type": "str"}, + "authenticationhost": {"no_log": False, "type": "raw"}, + "authn401": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "authnprofile": {"no_log": False, "type": "raw"}, + "authnvsname": {"no_log": False, "type": "raw"}, "backupip": {"no_log": False, "type": "str"}, - "backuppersistencetimeout": {"no_log": False, "type": "float"}, - "backupvserver": {"no_log": False, "type": "str"}, - "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "casesensitive": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "clttimeout": {"no_log": False, "type": "float"}, - "comment": {"no_log": False, "type": "str"}, + "backuppersistencetimeout": {"no_log": False, "type": "raw"}, + "backupvserver": {"no_log": False, "type": "raw"}, + "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "casesensitive": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "clttimeout": {"no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, "cookiedomain": {"no_log": False, "type": "str"}, - "cookiename": {"no_log": False, "type": "str"}, + "cookiename": {"no_log": False, "type": "raw"}, "cookietimeout": {"no_log": False, "type": "float"}, "csvserver_analyticsprofile_binding": { "no_log": False, @@ -23478,118 +23409,109 @@ }, "type": "dict", }, - "dbprofilename": {"no_log": False, "type": "str"}, + "dbprofilename": {"no_log": False, "type": "raw"}, "disableprimaryondown": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dnsprofilename": {"no_log": False, "type": "str"}, + "dnsprofilename": {"no_log": False, "type": "raw"}, "dnsrecordtype": { "choices": ["A", "AAAA", "CNAME", "NAPTR"], "no_log": False, - "type": "str", + "type": "raw", }, "domainname": {"no_log": False, "type": "str"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dtls": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "httpprofilename": {"no_log": False, "type": "str"}, - "httpsredirecturl": {"no_log": False, "type": "str"}, + "dtls": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "httpprofilename": {"no_log": False, "type": "raw"}, + "httpsredirecturl": {"no_log": False, "type": "raw"}, "icmpvsrresponse": { "choices": ["ACTIVE", "PASSIVE"], "no_log": False, - "type": "str", + "type": "raw", }, "insertvserveripport": { "choices": ["OFF", "V6TOV4MAPPING", "VIPADDR"], "no_log": False, - "type": "str", + "type": "raw", }, "ipmask": {"no_log": False, "type": "str"}, "ippattern": {"no_log": False, "type": "str"}, - "ipset": {"no_log": False, "type": "str"}, + "ipset": {"no_log": False, "type": "raw"}, "ipv46": {"no_log": False, "type": "str"}, - "l2conn": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "listenpolicy": {"no_log": False, "type": "str"}, - "listenpriority": {"no_log": False, "type": "float"}, + "l2conn": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "listenpolicy": {"no_log": False, "type": "raw"}, + "listenpriority": {"no_log": False, "type": "raw"}, "mssqlserverversion": { - "choices": [ - "2000", - "2000SP1", - "2005", - "2008", - "2008R2", - "2012", - "2014", - "70", - ], + "choices": [70, 2000, "2000SP1", 2005, 2008, "2008R2", 2012, 2014], "no_log": False, - "type": "str", + "type": "raw", }, - "mysqlcharacterset": {"no_log": False, "type": "float"}, - "mysqlprotocolversion": {"no_log": False, "type": "float"}, - "mysqlservercapabilities": {"no_log": False, "type": "float"}, - "mysqlserverversion": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "netprofile": {"no_log": False, "type": "str"}, + "mysqlcharacterset": {"no_log": False, "type": "raw"}, + "mysqlprotocolversion": {"no_log": False, "type": "raw"}, + "mysqlservercapabilities": {"no_log": False, "type": "raw"}, + "mysqlserverversion": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "netprofile": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "oracleserverversion": { "choices": ["10G", "11G"], "no_log": False, - "type": "str", + "type": "raw", }, "persistencebackup": { "choices": ["NONE", "SOURCEIP"], "no_log": False, - "type": "str", + "type": "raw", }, - "persistenceid": {"no_log": False, "type": "float"}, + "persistenceid": {"no_log": False, "type": "raw"}, "persistencetype": { "choices": ["COOKIEINSERT", "NONE", "SOURCEIP", "SSLSESSION"], "no_log": False, - "type": "str", + "type": "raw", }, - "persistmask": {"no_log": False, "type": "str"}, + "persistmask": {"no_log": False, "type": "raw"}, "port": {"no_log": False, "type": "int"}, - "precedence": {"choices": ["RULE", "URL"], "no_log": False, "type": "str"}, + "precedence": {"choices": ["RULE", "URL"], "no_log": False, "type": "raw"}, "probeport": {"no_log": False, "type": "int"}, "probeprotocol": { "choices": ["HTTP", "TCP"], "no_log": False, - "type": "str", + "type": "raw", }, - "probesuccessresponsecode": {"no_log": False, "type": "str"}, + "probesuccessresponsecode": {"no_log": False, "type": "raw"}, "push": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "pushlabel": {"no_log": False, "type": "str"}, + "pushlabel": {"no_log": False, "type": "raw"}, "pushmulticlients": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "pushvserver": {"no_log": False, "type": "str"}, - "quicprofilename": {"no_log": False, "type": "str"}, + "pushvserver": {"no_log": False, "type": "raw"}, + "quicprofilename": {"no_log": False, "type": "raw"}, "range": {"no_log": False, "type": "float"}, - "redirectfromport": {"no_log": False, "type": "int"}, + "redirectfromport": {"no_log": False, "type": "raw"}, "redirectportrewrite": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "redirecturl": {"no_log": False, "type": "str"}, + "redirecturl": {"no_log": False, "type": "raw"}, "rhistate": { "choices": ["ACTIVE", "PASSIVE"], "no_log": False, - "type": "str", + "type": "raw", }, - "rtspnat": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "rtspnat": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "servicetype": { "choices": [ "ANY", @@ -23627,7 +23549,7 @@ "sobackupaction": { "choices": ["ACCEPT", "DROP", "REDIRECT"], "no_log": False, - "type": "str", + "type": "raw", }, "somethod": { "choices": [ @@ -23638,28 +23560,28 @@ "NONE", ], "no_log": False, - "type": "str", + "type": "raw", }, "sopersistence": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sopersistencetimeout": {"no_log": False, "type": "float"}, - "sothreshold": {"no_log": False, "type": "float"}, + "sopersistencetimeout": {"no_log": False, "type": "raw"}, + "sothreshold": {"no_log": False, "type": "raw"}, "stateupdate": { "choices": ["DISABLED", "ENABLED", "UPDATEONBACKENDUPDATE"], "no_log": False, - "type": "str", + "type": "raw", }, "targettype": {"choices": ["GSLB"], "no_log": False, "type": "str"}, - "tcpprobeport": {"no_log": False, "type": "int"}, - "tcpprofilename": {"no_log": False, "type": "str"}, + "tcpprobeport": {"no_log": False, "type": "raw"}, + "tcpprofilename": {"no_log": False, "type": "raw"}, "td": {"no_log": False, "type": "float"}, - "timeout": {"no_log": False, "type": "float"}, + "timeout": {"no_log": False, "type": "raw"}, "ttl": {"no_log": False, "type": "float"}, - "v6persistmasklen": {"no_log": False, "type": "float"}, - "vipheader": {"no_log": False, "type": "str"}, + "v6persistmasklen": {"no_log": False, "type": "raw"}, + "vipheader": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -25121,21 +25043,21 @@ "conmultiplex": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "enablecachingconmuxoff": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "interpretquery": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "kcdaccount": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "stickiness": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "kcdaccount": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "stickiness": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -25260,7 +25182,7 @@ "primary_key": "actionname", "primary_key_composite": [], "readwrite_arguments": { - "actionname": {"no_log": False, "type": "str"}, + "actionname": {"no_log": False, "type": "raw"}, "actiontype": { "choices": [ "Cache_Bypass", @@ -25273,10 +25195,10 @@ "no_log": False, "type": "str", }, - "dnsprofilename": {"no_log": False, "type": "str"}, + "dnsprofilename": {"no_log": False, "type": "raw"}, "ipaddress": {"elements": "str", "no_log": False, "type": "list"}, "preferredloclist": {"elements": "str", "no_log": False, "type": "list"}, - "ttl": {"no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "raw"}, "viewname": {"no_log": False, "type": "str"}, }, "singleton": False, @@ -25320,10 +25242,10 @@ "primary_key": "actionname", "primary_key_composite": [], "readwrite_arguments": { - "actionname": {"no_log": False, "type": "str"}, - "excluderule": {"no_log": False, "type": "str"}, - "mappedrule": {"no_log": False, "type": "str"}, - "prefix": {"no_log": False, "type": "str"}, + "actionname": {"no_log": False, "type": "raw"}, + "excluderule": {"no_log": False, "type": "raw"}, + "mappedrule": {"no_log": False, "type": "raw"}, + "prefix": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["actionname", "excluderule", "mappedrule", "prefix"], @@ -25572,30 +25494,30 @@ "no_log": False, "type": "str", }, - "expires": {"no_log": False, "type": "float"}, + "expires": {"no_log": False, "type": "raw"}, "filenameprefix": {"no_log": False, "type": "str"}, - "keyname": {"no_log": False, "type": "str"}, + "keyname": {"no_log": False, "type": "raw"}, "keysize": {"no_log": False, "type": "float"}, "keytype": { "choices": ["KSK", "KeySigningKey", "ZSK", "ZoneSigningKey"], "no_log": False, "type": "str", }, - "notificationperiod": {"no_log": False, "type": "float"}, + "notificationperiod": {"no_log": False, "type": "raw"}, "password": {"no_log": True, "type": "str"}, "privatekey": {"no_log": False, "type": "str"}, "publickey": {"no_log": False, "type": "str"}, "src": {"no_log": False, "type": "str"}, - "ttl": {"no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "raw"}, "units1": { "choices": ["DAYS", "HOURS", "MINUTES"], "no_log": False, - "type": "str", + "type": "raw", }, "units2": { "choices": ["DAYS", "HOURS", "MINUTES"], "no_log": False, - "type": "str", + "type": "raw", }, "zonename": {"no_log": False, "type": "str"}, }, @@ -25640,12 +25562,12 @@ "primary_key": "domain", "primary_key_composite": ["mx"], "readwrite_arguments": { - "domain": {"no_log": False, "type": "str"}, + "domain": {"no_log": False, "type": "raw"}, "ecssubnet": {"no_log": False, "type": "str"}, - "mx": {"no_log": False, "type": "str"}, + "mx": {"no_log": False, "type": "raw"}, "nodeid": {"no_log": False, "type": "float"}, "pref": {"no_log": False, "type": "float"}, - "ttl": {"no_log": False, "type": "float"}, + "ttl": {"no_log": False, "type": "raw"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], "no_log": False, @@ -25687,14 +25609,14 @@ "primary_key": "ip", "primary_key_composite": ["dnsvservername", "type"], "readwrite_arguments": { - "dnsprofilename": {"no_log": False, "type": "str"}, + "dnsprofilename": {"no_log": False, "type": "raw"}, "dnsvservername": {"no_log": False, "type": "str"}, - "ip": {"no_log": False, "type": "str"}, + "ip": {"no_log": False, "type": "raw"}, "local": {"no_log": False, "type": "bool"}, "type": { "choices": ["TCP", "UDP", "UDP_TCP"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -25862,48 +25784,48 @@ "cacheecszeroprefix": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "cachehitbypass": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "cachenoexpire": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "cacherecords": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "dns64timeout": {"no_log": False, "type": "float"}, + "cacherecords": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "dns64timeout": {"no_log": False, "type": "raw"}, "dnsrootreferral": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dnssec": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ecsmaxsubnets": {"no_log": False, "type": "float"}, - "maxcachesize": {"no_log": False, "type": "float"}, - "maxnegativecachesize": {"no_log": False, "type": "float"}, - "maxnegcachettl": {"no_log": False, "type": "float"}, - "maxpipeline": {"no_log": False, "type": "float"}, - "maxttl": {"no_log": False, "type": "float"}, - "maxudppacketsize": {"no_log": False, "type": "float"}, - "minttl": {"no_log": False, "type": "float"}, + "ecsmaxsubnets": {"no_log": False, "type": "raw"}, + "maxcachesize": {"no_log": False, "type": "raw"}, + "maxnegativecachesize": {"no_log": False, "type": "raw"}, + "maxnegcachettl": {"no_log": False, "type": "raw"}, + "maxpipeline": {"no_log": False, "type": "raw"}, + "maxttl": {"no_log": False, "type": "raw"}, + "maxudppacketsize": {"no_log": False, "type": "raw"}, + "minttl": {"no_log": False, "type": "raw"}, "namelookuppriority": { "choices": ["DNS", "WINS"], "no_log": False, - "type": "str", + "type": "raw", }, - "nxdomainratelimitthreshold": {"no_log": False, "type": "float"}, + "nxdomainratelimitthreshold": {"no_log": False, "type": "raw"}, "recursion": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "resolutionorder": { "choices": [ @@ -25913,13 +25835,13 @@ "OnlyAQuery", ], "no_log": False, - "type": "str", + "type": "raw", }, - "retries": {"no_log": False, "type": "float"}, + "retries": {"no_log": False, "type": "raw"}, "splitpktqueryprocessing": { "choices": ["ALLOW", "DROP"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -25997,8 +25919,8 @@ "type": "dict", }, "drop": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "preferredlocation": {"no_log": False, "type": "str"}, "preferredloclist": {"elements": "str", "no_log": False, "type": "list"}, "rule": {"no_log": False, "type": "str"}, @@ -26204,43 +26126,43 @@ "cacheecsresponses": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "cachenegativeresponses": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "cacherecords": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dnsanswerseclogging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dnserrorlogging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dnsextendedlogging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dnsprofilename": {"no_log": False, "type": "str"}, + "dnsprofilename": {"no_log": False, "type": "raw"}, "dnsquerylogging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dropmultiqueryrequest": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -26395,16 +26317,16 @@ "primary_key_composite": [], "readwrite_arguments": { "contact": {"no_log": False, "type": "str"}, - "domain": {"no_log": False, "type": "str"}, + "domain": {"no_log": False, "type": "raw"}, "ecssubnet": {"no_log": False, "type": "str"}, - "expire": {"no_log": False, "type": "float"}, - "minimum": {"no_log": False, "type": "float"}, + "expire": {"no_log": False, "type": "raw"}, + "minimum": {"no_log": False, "type": "raw"}, "nodeid": {"no_log": False, "type": "float"}, "originserver": {"no_log": False, "type": "str"}, - "refresh": {"no_log": False, "type": "float"}, - "retry": {"no_log": False, "type": "float"}, - "serial": {"no_log": False, "type": "float"}, - "ttl": {"no_log": False, "type": "float"}, + "refresh": {"no_log": False, "type": "raw"}, + "retry": {"no_log": False, "type": "raw"}, + "serial": {"no_log": False, "type": "raw"}, + "ttl": {"no_log": False, "type": "raw"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], "no_log": False, @@ -26447,13 +26369,13 @@ "primary_key": "domain", "primary_key_composite": ["target"], "readwrite_arguments": { - "domain": {"no_log": False, "type": "str"}, + "domain": {"no_log": False, "type": "raw"}, "ecssubnet": {"no_log": False, "type": "str"}, "nodeid": {"no_log": False, "type": "float"}, "port": {"no_log": False, "type": "float"}, "priority": {"no_log": False, "type": "float"}, - "target": {"no_log": False, "type": "str"}, - "ttl": {"no_log": False, "type": "float"}, + "target": {"no_log": False, "type": "raw"}, + "ttl": {"no_log": False, "type": "raw"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], "no_log": False, @@ -26627,21 +26549,21 @@ "dnssecoffload": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "keyname": {"elements": "str", "no_log": False, "type": "list"}, "nsec": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "proxymode": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "proxymode": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "type": { "choices": ["ADNS", "ALL", "PROXY"], "no_log": False, "type": "str", }, - "zonename": {"no_log": False, "type": "str"}, + "zonename": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["dnssecoffload", "nsec", "proxymode", "zonename"], @@ -26687,10 +26609,10 @@ "primary_key": "endpointkind", "primary_key_composite": ["endpointname"], "readwrite_arguments": { - "endpointkind": {"choices": ["IP"], "no_log": False, "type": "str"}, - "endpointlabelsjson": {"no_log": False, "type": "str"}, - "endpointmetadata": {"no_log": False, "type": "str"}, - "endpointname": {"no_log": False, "type": "str"}, + "endpointkind": {"choices": ["IP"], "no_log": False, "type": "raw"}, + "endpointlabelsjson": {"no_log": False, "type": "raw"}, + "endpointmetadata": {"no_log": False, "type": "raw"}, + "endpointname": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -26722,7 +26644,7 @@ "password_keys": [], "primary_key": "", "primary_key_composite": [], - "readwrite_arguments": {"memlimit": {"no_log": False, "type": "float"}}, + "readwrite_arguments": {"memlimit": {"no_log": False, "type": "raw"}}, "singleton": True, "update_payload_keys": ["memlimit"], }, @@ -26804,28 +26726,28 @@ "primary_key_composite": [], "readwrite_arguments": { "cachemaxage": {"no_log": False, "type": "float"}, - "clientsidemeasurements": {"no_log": False, "type": "bool"}, - "convertimporttolink": {"no_log": False, "type": "bool"}, - "csscombine": {"no_log": False, "type": "bool"}, - "cssimginline": {"no_log": False, "type": "bool"}, - "cssinline": {"no_log": False, "type": "bool"}, - "cssminify": {"no_log": False, "type": "bool"}, - "cssmovetohead": {"no_log": False, "type": "bool"}, + "clientsidemeasurements": {"no_log": False, "type": "raw"}, + "convertimporttolink": {"no_log": False, "type": "raw"}, + "csscombine": {"no_log": False, "type": "raw"}, + "cssimginline": {"no_log": False, "type": "raw"}, + "cssinline": {"no_log": False, "type": "raw"}, + "cssminify": {"no_log": False, "type": "raw"}, + "cssmovetohead": {"no_log": False, "type": "raw"}, "dnsshards": {"elements": "str", "no_log": False, "type": "list"}, - "domainsharding": {"no_log": False, "type": "str"}, - "htmlminify": {"no_log": False, "type": "bool"}, - "imggiftopng": {"no_log": False, "type": "bool"}, - "imginline": {"no_log": False, "type": "bool"}, - "imglazyload": {"no_log": False, "type": "bool"}, - "imgshrinktoattrib": {"no_log": False, "type": "bool"}, - "imgtojpegxr": {"no_log": False, "type": "bool"}, - "imgtowebp": {"no_log": False, "type": "bool"}, - "jpgoptimize": {"no_log": False, "type": "bool"}, - "jsinline": {"no_log": False, "type": "bool"}, - "jsminify": {"no_log": False, "type": "bool"}, - "jsmovetoend": {"no_log": False, "type": "bool"}, - "name": {"no_log": False, "type": "str"}, - "pageextendcache": {"no_log": False, "type": "bool"}, + "domainsharding": {"no_log": False, "type": "raw"}, + "htmlminify": {"no_log": False, "type": "raw"}, + "imggiftopng": {"no_log": False, "type": "raw"}, + "imginline": {"no_log": False, "type": "raw"}, + "imglazyload": {"no_log": False, "type": "raw"}, + "imgshrinktoattrib": {"no_log": False, "type": "raw"}, + "imgtojpegxr": {"no_log": False, "type": "raw"}, + "imgtowebp": {"no_log": False, "type": "raw"}, + "jpgoptimize": {"no_log": False, "type": "raw"}, + "jsinline": {"no_log": False, "type": "raw"}, + "jsminify": {"no_log": False, "type": "raw"}, + "jsmovetoend": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "pageextendcache": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -26939,10 +26861,10 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "cssinlinethressize": {"no_log": False, "type": "float"}, - "imginlinethressize": {"no_log": False, "type": "float"}, - "jpegqualitypercent": {"no_log": False, "type": "float"}, - "jsinlinethressize": {"no_log": False, "type": "float"}, + "cssinlinethressize": {"no_log": False, "type": "raw"}, + "imginlinethressize": {"no_log": False, "type": "raw"}, + "jpegqualitypercent": {"no_log": False, "type": "raw"}, + "jsinlinethressize": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -26983,9 +26905,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "action": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, + "action": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["action", "name", "rule"], @@ -27309,48 +27231,47 @@ "automaticconfigsync": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dropldnsreq": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "gslbconfigsyncmonitor": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "gslbsvcstatedelaytime": {"no_log": False, "type": "float"}, - "gslbsyncinterval": {"no_log": False, "type": "float"}, + "gslbsvcstatedelaytime": {"no_log": False, "type": "raw"}, + "gslbsyncinterval": {"no_log": False, "type": "raw"}, "gslbsynclocfiles": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "gslbsyncmode": { "choices": ["FullSync", "IncrementalSync"], "no_log": False, - "type": "str", + "type": "raw", }, "gslbsyncsaveconfigcommand": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ldnsentrytimeout": {"no_log": False, "type": "float"}, - "ldnsmask": {"no_log": False, "type": "str"}, + "ldnsentrytimeout": {"no_log": False, "type": "raw"}, + "ldnsmask": {"no_log": False, "type": "raw"}, "ldnsprobeorder": { "choices": ["DNS", "PING", "TCP"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "mepkeepalivetimeout": {"no_log": False, "type": "float"}, - "rtttolerance": {"no_log": False, "type": "float"}, - "svcstatelearningtime": {"no_log": False, "type": "float"}, - "undefaction": {"no_log": False, "type": "str"}, - "v6ldnsmasklen": {"no_log": False, "type": "float"}, + "mepkeepalivetimeout": {"no_log": False, "type": "raw"}, + "rtttolerance": {"no_log": False, "type": "raw"}, + "svcstatelearningtime": {"no_log": False, "type": "raw"}, + "undefaction": {"no_log": False, "type": "raw"}, + "v6ldnsmasklen": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -27477,18 +27398,18 @@ "appflowlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "cip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "cipheader": {"no_log": False, "type": "str"}, + "cip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "cipheader": {"no_log": False, "type": "raw"}, "clttimeout": {"no_log": False, "type": "float"}, "cnameentry": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, "cookietimeout": {"no_log": False, "type": "float"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "gslbservice_dnsview_binding": { "no_log": False, @@ -27554,26 +27475,26 @@ }, "type": "dict", }, - "hashid": {"no_log": False, "type": "float"}, - "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "hashid": {"no_log": False, "type": "raw"}, + "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "ip": {"no_log": False, "type": "str"}, "ipaddress": {"no_log": False, "type": "str"}, - "maxaaausers": {"no_log": False, "type": "float"}, - "maxbandwidth": {"no_log": False, "type": "float"}, - "maxclient": {"no_log": False, "type": "float"}, + "maxaaausers": {"no_log": False, "type": "raw"}, + "maxbandwidth": {"no_log": False, "type": "raw"}, + "maxclient": {"no_log": False, "type": "raw"}, "monitor_name_svc": {"no_log": False, "type": "str"}, - "monthreshold": {"no_log": False, "type": "float"}, - "naptrdomainttl": {"no_log": False, "type": "float"}, - "naptrorder": {"no_log": False, "type": "float"}, - "naptrpreference": {"no_log": False, "type": "float"}, - "naptrreplacement": {"no_log": False, "type": "str"}, - "naptrservices": {"no_log": False, "type": "str"}, + "monthreshold": {"no_log": False, "type": "raw"}, + "naptrdomainttl": {"no_log": False, "type": "raw"}, + "naptrorder": {"no_log": False, "type": "raw"}, + "naptrpreference": {"no_log": False, "type": "raw"}, + "naptrreplacement": {"no_log": False, "type": "raw"}, + "naptrservices": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "port": {"no_log": False, "type": "int"}, - "publicip": {"no_log": False, "type": "str"}, - "publicport": {"no_log": False, "type": "int"}, + "publicip": {"no_log": False, "type": "raw"}, + "publicport": {"no_log": False, "type": "raw"}, "servername": {"no_log": False, "type": "str"}, - "servicename": {"no_log": False, "type": "str"}, + "servicename": {"no_log": False, "type": "raw"}, "servicetype": { "choices": [ "ANY", @@ -27602,9 +27523,9 @@ "sitepersistence": { "choices": ["ConnectionProxy", "HTTPRedirect", "NONE"], "no_log": False, - "type": "str", + "type": "raw", }, - "siteprefix": {"no_log": False, "type": "str"}, + "siteprefix": {"no_log": False, "type": "raw"}, "svrtimeout": {"no_log": False, "type": "float"}, "viewip": {"no_log": False, "type": "str"}, "viewname": {"no_log": False, "type": "str"}, @@ -27798,7 +27719,7 @@ "appflowlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "autodelayedtrofs": { "choices": ["NO", "YES"], @@ -27810,17 +27731,17 @@ "no_log": False, "type": "str", }, - "cip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "cipheader": {"no_log": False, "type": "str"}, - "clttimeout": {"no_log": False, "type": "float"}, - "comment": {"no_log": False, "type": "str"}, + "cip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "cipheader": {"no_log": False, "type": "raw"}, + "clttimeout": {"no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, "delay": {"no_log": False, "type": "float"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dup_weight": {"no_log": False, "type": "float"}, + "dup_weight": {"no_log": False, "type": "raw"}, "graceful": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "gslbservicegroup_gslbservicegroupmember_binding": { "no_log": False, @@ -27854,20 +27775,20 @@ }, "type": "dict", }, - "hashid": {"no_log": False, "type": "float"}, - "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "hashid": {"no_log": False, "type": "raw"}, + "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "includemembers": {"no_log": False, "type": "bool"}, - "maxbandwidth": {"no_log": False, "type": "float"}, - "maxclient": {"no_log": False, "type": "float"}, - "monitor_name_svc": {"no_log": False, "type": "str"}, - "monthreshold": {"no_log": False, "type": "float"}, + "maxbandwidth": {"no_log": False, "type": "raw"}, + "maxclient": {"no_log": False, "type": "raw"}, + "monitor_name_svc": {"no_log": False, "type": "raw"}, + "monthreshold": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "order": {"no_log": False, "type": "float"}, - "port": {"no_log": False, "type": "int"}, - "publicip": {"no_log": False, "type": "str"}, - "publicport": {"no_log": False, "type": "int"}, - "servername": {"no_log": False, "type": "str"}, - "servicegroupname": {"no_log": False, "type": "str"}, + "order": {"no_log": False, "type": "raw"}, + "port": {"no_log": False, "type": "raw"}, + "publicip": {"no_log": False, "type": "raw"}, + "publicport": {"no_log": False, "type": "raw"}, + "servername": {"no_log": False, "type": "raw"}, + "servicegroupname": {"no_log": False, "type": "raw"}, "servicetype": { "choices": [ "ANY", @@ -27896,11 +27817,11 @@ "sitepersistence": { "choices": ["ConnectionProxy", "HTTPRedirect", "NONE"], "no_log": False, - "type": "str", + "type": "raw", }, - "siteprefix": {"no_log": False, "type": "str"}, - "svrtimeout": {"no_log": False, "type": "float"}, - "weight": {"no_log": False, "type": "float"}, + "siteprefix": {"no_log": False, "type": "raw"}, + "svrtimeout": {"no_log": False, "type": "raw"}, + "weight": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -28112,18 +28033,18 @@ "primary_key": "sitename", "primary_key_composite": [], "readwrite_arguments": { - "backupparentlist": {"elements": "str", "no_log": False, "type": "list"}, + "backupparentlist": {"no_log": False, "type": "raw"}, "clip": {"no_log": False, "type": "str"}, "metricexchange": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "naptrreplacementsuffix": {"no_log": False, "type": "str"}, + "naptrreplacementsuffix": {"no_log": False, "type": "raw"}, "nwmetricexchange": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "parentsite": {"no_log": False, "type": "str"}, "publicclip": {"no_log": False, "type": "str"}, @@ -28131,10 +28052,10 @@ "sessionexchange": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "siteipaddress": {"no_log": False, "type": "str"}, - "sitename": {"no_log": False, "type": "str"}, + "sitename": {"no_log": False, "type": "raw"}, "sitetype": { "choices": ["LOCAL", "REMOTE"], "no_log": False, @@ -28143,7 +28064,7 @@ "triggermonitor": { "choices": ["ALWAYS", "MEPDOWN", "MEPDOWN_SVCDOWN"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -28267,7 +28188,7 @@ "appflowlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "backupip": {"no_log": False, "type": "str"}, "backuplbmethod": { @@ -28284,41 +28205,41 @@ "STATICPROXIMITY", ], "no_log": False, - "type": "str", + "type": "raw", }, "backupsessiontimeout": {"no_log": False, "type": "float"}, - "backupvserver": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, + "backupvserver": {"no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, "considereffectivestate": { "choices": ["NONE", "STATE_ONLY"], "no_log": False, - "type": "str", + "type": "raw", }, "cookie_domain": {"no_log": False, "type": "str"}, "cookietimeout": {"no_log": False, "type": "float"}, "disableprimaryondown": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dnsrecordtype": { "choices": ["A", "AAAA", "CNAME", "NAPTR"], "no_log": False, - "type": "str", + "type": "raw", }, "domainname": {"no_log": False, "type": "str"}, "dynamicweight": { "choices": ["DISABLED", "SERVICECOUNT", "SERVICEWEIGHT"], "no_log": False, - "type": "str", + "type": "raw", }, - "ecs": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "ecs": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "ecsaddrvalidation": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "edr": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "edr": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "gslbvserver_domain_binding": { "no_log": False, "options": { @@ -28414,24 +28335,24 @@ "STATICPROXIMITY", ], "no_log": False, - "type": "str", + "type": "raw", }, - "mir": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "netmask": {"no_log": False, "type": "str"}, + "mir": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "netmask": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "order": {"no_log": False, "type": "float"}, - "orderthreshold": {"no_log": False, "type": "float"}, - "persistenceid": {"no_log": False, "type": "float"}, + "order": {"no_log": False, "type": "raw"}, + "orderthreshold": {"no_log": False, "type": "raw"}, + "persistenceid": {"no_log": False, "type": "raw"}, "persistencetype": { "choices": ["NONE", "SOURCEIP"], "no_log": False, - "type": "str", + "type": "raw", }, - "persistmask": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, - "servicegroupname": {"no_log": False, "type": "str"}, - "servicename": {"no_log": False, "type": "str"}, + "persistmask": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, + "servicegroupname": {"no_log": False, "type": "raw"}, + "servicename": {"no_log": False, "type": "raw"}, "servicetype": { "choices": [ "ANY", @@ -28460,7 +28381,7 @@ "sobackupaction": { "choices": ["ACCEPT", "DROP", "REDIRECT"], "no_log": False, - "type": "str", + "type": "raw", }, "somethod": { "choices": [ @@ -28471,26 +28392,26 @@ "NONE", ], "no_log": False, - "type": "str", + "type": "raw", }, "sopersistence": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sopersistencetimeout": {"no_log": False, "type": "float"}, - "sothreshold": {"no_log": False, "type": "float"}, - "timeout": {"no_log": False, "type": "float"}, + "sopersistencetimeout": {"no_log": False, "type": "raw"}, + "sothreshold": {"no_log": False, "type": "raw"}, + "timeout": {"no_log": False, "type": "raw"}, "toggleorder": { "choices": ["ASCENDING", "DESCENDING"], "no_log": False, - "type": "str", + "type": "raw", }, - "tolerance": {"no_log": False, "type": "float"}, + "tolerance": {"no_log": False, "type": "raw"}, "ttl": {"no_log": False, "type": "float"}, - "v6netmasklen": {"no_log": False, "type": "float"}, - "v6persistmasklen": {"no_log": False, "type": "float"}, - "weight": {"no_log": False, "type": "float"}, + "v6netmasklen": {"no_log": False, "type": "raw"}, + "v6persistmasklen": {"no_log": False, "type": "raw"}, + "weight": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -28864,8 +28785,8 @@ "primary_key": "id", "primary_key_composite": [], "readwrite_arguments": { - "deadinterval": {"no_log": False, "type": "float"}, - "failsafe": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "deadinterval": {"no_log": False, "type": "raw"}, + "failsafe": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "hanode_routemonitor6_binding": { "no_log": False, "options": { @@ -28901,30 +28822,30 @@ "haprop": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "hastatus": { "choices": ["DISABLED", "ENABLED", "STAYPRIMARY", "STAYSECONDARY"], "no_log": False, - "type": "str", + "type": "raw", }, "hasync": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "hellointerval": {"no_log": False, "type": "float"}, - "id": {"no_log": False, "type": "float"}, + "hellointerval": {"no_log": False, "type": "raw"}, + "id": {"no_log": False, "type": "raw"}, "inc": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "ipaddress": {"no_log": False, "type": "str"}, - "maxflips": {"no_log": False, "type": "float"}, - "maxfliptime": {"no_log": False, "type": "float"}, + "maxflips": {"no_log": False, "type": "raw"}, + "maxfliptime": {"no_log": False, "type": "raw"}, "syncstatusstrictmode": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "syncvlan": {"no_log": False, "type": "float"}, + "syncvlan": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -29084,49 +29005,49 @@ "clientaudioredirection": { "choices": ["DEFAULT", "DISABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientclipboardredirection": { "choices": ["DEFAULT", "DISABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientcomportredirection": { "choices": ["DEFAULT", "DISABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientdriveredirection": { "choices": ["DEFAULT", "DISABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientprinterredirection": { "choices": ["DEFAULT", "DISABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientusbdriveredirection": { "choices": ["DEFAULT", "DISABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "connectclientlptports": { "choices": ["DEFAULT", "DISABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "localremotedatasharing": { "choices": ["DEFAULT", "DISABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "multistream": { "choices": ["DEFAULT", "DISABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -29174,9 +29095,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "accessprofilename": {"no_log": False, "type": "str"}, - "latencyprofilename": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "accessprofilename": {"no_log": False, "type": "raw"}, + "latencyprofilename": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, }, "singleton": False, @@ -29276,16 +29197,16 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "l7latencymaxnotifycount": {"no_log": False, "type": "float"}, + "l7latencymaxnotifycount": {"no_log": False, "type": "raw"}, "l7latencymonitoring": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "l7latencynotifyinterval": {"no_log": False, "type": "float"}, - "l7latencythresholdfactor": {"no_log": False, "type": "float"}, - "l7latencywaittime": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, + "l7latencynotifyinterval": {"no_log": False, "type": "raw"}, + "l7latencythresholdfactor": {"no_log": False, "type": "raw"}, + "l7latencywaittime": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -29329,20 +29250,20 @@ "edtpmtuddf": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "edtpmtuddftimeout": {"no_log": False, "type": "float"}, + "edtpmtuddftimeout": {"no_log": False, "type": "raw"}, "enablesronhafailover": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "hdxinsightnonnsap": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "l7latencyfrequency": {"no_log": False, "type": "float"}, + "l7latencyfrequency": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -29386,9 +29307,9 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, @@ -29454,32 +29375,32 @@ "connfailover": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "mode": {"choices": ["STATELESS"], "no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "mode": {"choices": ["STATELESS"], "no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "privateip": {"no_log": False, "type": "str"}, - "proxyip": {"no_log": False, "type": "str"}, + "proxyip": {"no_log": False, "type": "raw"}, "publicip": {"no_log": False, "type": "str"}, "tcpproxy": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "td": {"no_log": False, "type": "float"}, "tftp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "useproxyport": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "usip": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "usnip": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "usip": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "usnip": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -29530,13 +29451,13 @@ "type": "str", }, "nat46v6mtu": {"no_log": False, "type": "float"}, - "nat46v6prefix": {"no_log": False, "type": "str"}, + "nat46v6prefix": {"no_log": False, "type": "raw"}, "nat46zerochecksum": { "choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str", }, - "td": {"no_log": False, "type": "float"}, + "td": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -29671,18 +29592,18 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "dropfrag": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "dropfragcputhreshold": {"no_log": False, "type": "float"}, - "srcip": {"no_log": False, "type": "str"}, + "dropfrag": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "dropfragcputhreshold": {"no_log": False, "type": "raw"}, + "srcip": {"no_log": False, "type": "raw"}, "srciproundrobin": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "useclientsourceipv6": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -29740,12 +29661,12 @@ "connfailover": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "espgatetimeout": {"no_log": False, "type": "float"}, - "espsessiontimeout": {"no_log": False, "type": "float"}, - "ikesessiontimeout": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, + "espgatetimeout": {"no_log": False, "type": "raw"}, + "espsessiontimeout": {"no_log": False, "type": "raw"}, + "ikesessiontimeout": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -29824,9 +29745,8 @@ "readwrite_arguments": { "encalgo": { "choices": ["AES", "AES192", "AES256"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "hashalgo": { "choices": [ @@ -29836,21 +29756,20 @@ "HMAC_SHA384", "HMAC_SHA512", ], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "ikeretryinterval": {"no_log": False, "type": "float"}, - "ikeversion": {"choices": ["V1", "V2"], "no_log": False, "type": "str"}, - "lifetime": {"no_log": False, "type": "float"}, - "livenesscheckinterval": {"no_log": False, "type": "float"}, + "ikeretryinterval": {"no_log": False, "type": "raw"}, + "ikeversion": {"choices": ["V1", "V2"], "no_log": False, "type": "raw"}, + "lifetime": {"no_log": False, "type": "raw"}, + "livenesscheckinterval": {"no_log": False, "type": "raw"}, "perfectforwardsecrecy": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, - "replaywindowsize": {"no_log": False, "type": "float"}, - "retransmissiontime": {"no_log": False, "type": "float"}, + "replaywindowsize": {"no_log": False, "type": "raw"}, + "retransmissiontime": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -30128,7 +30047,7 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "destport": {"no_log": False, "type": "int"}, + "destport": {"no_log": False, "type": "raw"}, "grepayload": { "choices": ["ETHERNET", "ETHERNETwithDOT1Q", "IP"], "no_log": False, @@ -30136,7 +30055,7 @@ }, "ipsecprofilename": {"no_log": False, "type": "str"}, "local": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "ownergroup": {"no_log": False, "type": "str"}, "protocol": { "choices": ["GENEVE", "GRE", "IPIP", "IPSEC", "UDP"], @@ -30148,13 +30067,13 @@ "tosinherit": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "vlan": {"no_log": False, "type": "float"}, "vlantagging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "vnid": {"no_log": False, "type": "float"}, }, @@ -30193,29 +30112,29 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "dropfrag": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "dropfragcputhreshold": {"no_log": False, "type": "float"}, + "dropfrag": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "dropfragcputhreshold": {"no_log": False, "type": "raw"}, "enablestrictrx": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "enablestricttx": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "mac": {"no_log": False, "type": "str"}, - "srcip": {"no_log": False, "type": "str"}, + "mac": {"no_log": False, "type": "raw"}, + "srcip": {"no_log": False, "type": "raw"}, "srciproundrobin": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "useclientsourceip": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -30265,23 +30184,23 @@ "dodad": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "natprefix": {"no_log": False, "type": "str"}, - "ndbasereachtime": {"no_log": False, "type": "float"}, - "ndretransmissiontime": {"no_log": False, "type": "float"}, + "natprefix": {"no_log": False, "type": "raw"}, + "ndbasereachtime": {"no_log": False, "type": "raw"}, + "ndretransmissiontime": {"no_log": False, "type": "raw"}, "ralearning": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "routerredirection": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "td": {"no_log": False, "type": "float"}, - "usipnatprefix": {"no_log": False, "type": "str"}, + "td": {"no_log": False, "type": "raw"}, + "usipnatprefix": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -30338,70 +30257,70 @@ "bdggrpproxyarp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "bdgsetting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "bridgeagetimeout": {"no_log": False, "type": "float"}, + "bridgeagetimeout": {"no_log": False, "type": "raw"}, "garponvridintf": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "garpreply": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "macmodefwdmypkt": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxbridgecollision": {"no_log": False, "type": "float"}, + "maxbridgecollision": {"no_log": False, "type": "raw"}, "mbfinstlearning": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "mbfpeermacupdate": {"no_log": False, "type": "float"}, + "mbfpeermacupdate": {"no_log": False, "type": "raw"}, "proxyarp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "returntoethernetsender": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "rstintfonhafo": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "skipproxyingbsdtraffic": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "stopmacmoveupdate": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "usemymac": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "usenetprofilebsdtraffic": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -30463,72 +30382,72 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "acllogtime": {"no_log": False, "type": "str"}, + "acllogtime": {"no_log": False, "type": "raw"}, "allowclasseipv4": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dropdfflag": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dropipfragments": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "externalloopback": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "forwardicmpfragments": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "icmpgenratethreshold": {"no_log": False, "type": "float"}, + "icmpgenratethreshold": {"no_log": False, "type": "raw"}, "implicitaclallow": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ipv6dynamicrouting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "miproundrobin": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "overridernat": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "srcnat": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tnlpmtuwoconn": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "usipserverstraypkt": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -30584,12 +30503,12 @@ "VlanChannel", ], "no_log": False, - "type": "str", + "type": "raw", }, "l4switch": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -30656,8 +30575,8 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "type": { "choices": ["NOLBACTION", "SELECTIONORDER"], @@ -30825,9 +30744,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "backuppersistencetimeout": {"no_log": False, "type": "float"}, - "cookiedomain": {"no_log": False, "type": "str"}, - "cookiename": {"no_log": False, "type": "str"}, + "backuppersistencetimeout": {"no_log": False, "type": "raw"}, + "cookiedomain": {"no_log": False, "type": "raw"}, + "cookiename": {"no_log": False, "type": "raw"}, "lbgroup_lbvserver_binding": { "no_log": False, "options": { @@ -30844,28 +30763,28 @@ }, "type": "dict", }, - "mastervserver": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "mastervserver": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "persistencebackup": { "choices": ["NONE", "SOURCEIP"], "no_log": False, - "type": "str", + "type": "raw", }, "persistencetype": { "choices": ["COOKIEINSERT", "NONE", "RULE", "SOURCEIP"], "no_log": False, - "type": "str", + "type": "raw", }, - "persistmask": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, - "timeout": {"no_log": False, "type": "float"}, + "persistmask": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, + "timeout": {"no_log": False, "type": "raw"}, "usevserverpersistency": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "v6persistmasklen": {"no_log": False, "type": "float"}, + "v6persistmasklen": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -31223,53 +31142,53 @@ "primary_key": "monitorname", "primary_key_composite": [], "readwrite_arguments": { - "acctapplicationid": {"elements": "int", "no_log": False, "type": "list"}, + "acctapplicationid": {"no_log": False, "type": "raw"}, "action": { "choices": ["DOWN", "LOG", "NONE"], "no_log": False, - "type": "str", + "type": "raw", }, - "alertretries": {"no_log": False, "type": "int"}, + "alertretries": {"no_log": False, "type": "raw"}, "application": {"no_log": False, "type": "str"}, - "attribute": {"no_log": False, "type": "str"}, - "authapplicationid": {"elements": "int", "no_log": False, "type": "list"}, - "basedn": {"no_log": False, "type": "str"}, - "binddn": {"no_log": False, "type": "str"}, - "customheaders": {"no_log": False, "type": "str"}, - "database": {"no_log": False, "type": "str"}, - "destip": {"no_log": False, "type": "str"}, - "destport": {"no_log": False, "type": "int"}, - "deviation": {"no_log": False, "type": "float"}, - "dispatcherip": {"no_log": False, "type": "str"}, - "dispatcherport": {"no_log": False, "type": "int"}, - "domain": {"no_log": False, "type": "str"}, - "downtime": {"no_log": False, "type": "int"}, + "attribute": {"no_log": False, "type": "raw"}, + "authapplicationid": {"no_log": False, "type": "raw"}, + "basedn": {"no_log": False, "type": "raw"}, + "binddn": {"no_log": False, "type": "raw"}, + "customheaders": {"no_log": False, "type": "raw"}, + "database": {"no_log": False, "type": "raw"}, + "destip": {"no_log": False, "type": "raw"}, + "destport": {"no_log": False, "type": "raw"}, + "deviation": {"no_log": False, "type": "raw"}, + "dispatcherip": {"no_log": False, "type": "raw"}, + "dispatcherport": {"no_log": False, "type": "raw"}, + "domain": {"no_log": False, "type": "raw"}, + "downtime": {"no_log": False, "type": "raw"}, "evalrule": {"no_log": False, "type": "str"}, - "failureretries": {"no_log": False, "type": "int"}, - "filename": {"no_log": False, "type": "str"}, - "filter": {"no_log": False, "type": "str"}, - "firmwarerevision": {"no_log": False, "type": "float"}, - "group": {"no_log": False, "type": "str"}, + "failureretries": {"no_log": False, "type": "raw"}, + "filename": {"no_log": False, "type": "raw"}, + "filter": {"no_log": False, "type": "raw"}, + "firmwarerevision": {"no_log": False, "type": "raw"}, + "group": {"no_log": False, "type": "raw"}, "grpchealthcheck": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "grpcservicename": {"no_log": False, "type": "str"}, - "grpcstatuscode": {"elements": "int", "no_log": False, "type": "list"}, - "hostipaddress": {"no_log": False, "type": "str"}, + "grpcservicename": {"no_log": False, "type": "raw"}, + "grpcstatuscode": {"no_log": False, "type": "raw"}, + "hostipaddress": {"no_log": False, "type": "raw"}, "hostname": {"no_log": False, "type": "str"}, - "httprequest": {"no_log": False, "type": "str"}, + "httprequest": {"no_log": False, "type": "raw"}, "inbandsecurityid": { "choices": ["NO_INBAND_SECURITY", "TLS"], "no_log": False, - "type": "str", + "type": "raw", }, - "interval": {"no_log": False, "type": "int"}, - "ipaddress": {"elements": "str", "no_log": False, "type": "list"}, - "iptunnel": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "kcdaccount": {"no_log": False, "type": "str"}, - "lasversion": {"no_log": False, "type": "str"}, + "interval": {"no_log": False, "type": "raw"}, + "ipaddress": {"no_log": False, "type": "raw"}, + "iptunnel": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "kcdaccount": {"no_log": False, "type": "raw"}, + "lasversion": {"no_log": False, "type": "raw"}, "lbmonitor_metric_binding": { "no_log": False, "options": { @@ -31302,87 +31221,78 @@ }, "type": "dict", }, - "logonpointname": {"no_log": False, "type": "str"}, + "logonpointname": {"no_log": False, "type": "raw"}, "lrtm": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxforwards": {"no_log": False, "type": "float"}, + "maxforwards": {"no_log": False, "type": "raw"}, "metric": {"no_log": False, "type": "str"}, - "metrictable": {"no_log": False, "type": "str"}, + "metrictable": {"no_log": False, "type": "raw"}, "metricthreshold": {"no_log": False, "type": "float"}, "metricweight": {"no_log": False, "type": "float"}, - "monitorname": {"no_log": False, "type": "str"}, - "mqttclientidentifier": {"no_log": False, "type": "str"}, - "mqttversion": {"no_log": False, "type": "float"}, + "monitorname": {"no_log": False, "type": "raw"}, + "mqttclientidentifier": {"no_log": False, "type": "raw"}, + "mqttversion": {"no_log": False, "type": "raw"}, "mssqlprotocolversion": { - "choices": [ - "2000", - "2000SP1", - "2005", - "2008", - "2008R2", - "2012", - "2014", - "70", - ], + "choices": [70, 2000, "2000SP1", 2005, 2008, "2008R2", 2012, 2014], "no_log": False, - "type": "str", + "type": "raw", }, - "netprofile": {"no_log": False, "type": "str"}, - "oraclesid": {"no_log": False, "type": "str"}, - "originhost": {"no_log": False, "type": "str"}, - "originrealm": {"no_log": False, "type": "str"}, - "password": {"no_log": True, "type": "str"}, - "productname": {"no_log": False, "type": "str"}, - "query": {"no_log": False, "type": "str"}, + "netprofile": {"no_log": False, "type": "raw"}, + "oraclesid": {"no_log": False, "type": "raw"}, + "originhost": {"no_log": False, "type": "raw"}, + "originrealm": {"no_log": False, "type": "raw"}, + "password": {"no_log": True, "type": "raw"}, + "productname": {"no_log": False, "type": "raw"}, + "query": {"no_log": False, "type": "raw"}, "querytype": { "choices": ["AAAA", "Address", "Zone"], "no_log": False, - "type": "str", - }, - "radaccountsession": {"no_log": False, "type": "str"}, - "radaccounttype": {"no_log": False, "type": "float"}, - "radapn": {"no_log": False, "type": "str"}, - "radframedip": {"no_log": False, "type": "str"}, - "radkey": {"no_log": True, "type": "str"}, - "radmsisdn": {"no_log": False, "type": "str"}, - "radnasid": {"no_log": False, "type": "str"}, - "radnasip": {"no_log": False, "type": "str"}, - "recv": {"no_log": False, "type": "str"}, - "respcode": {"elements": "str", "no_log": False, "type": "list"}, - "resptimeout": {"no_log": False, "type": "int"}, - "resptimeoutthresh": {"no_log": False, "type": "float"}, - "retries": {"no_log": False, "type": "int"}, - "reverse": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "rtsprequest": {"no_log": False, "type": "str"}, - "scriptargs": {"no_log": False, "type": "str"}, - "scriptname": {"no_log": False, "type": "str"}, - "secondarypassword": {"no_log": True, "type": "str"}, - "secure": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "secureargs": {"no_log": True, "type": "str"}, - "send": {"no_log": False, "type": "str"}, + "type": "raw", + }, + "radaccountsession": {"no_log": False, "type": "raw"}, + "radaccounttype": {"no_log": False, "type": "raw"}, + "radapn": {"no_log": False, "type": "raw"}, + "radframedip": {"no_log": False, "type": "raw"}, + "radkey": {"no_log": True, "type": "raw"}, + "radmsisdn": {"no_log": False, "type": "raw"}, + "radnasid": {"no_log": False, "type": "raw"}, + "radnasip": {"no_log": False, "type": "raw"}, + "recv": {"no_log": False, "type": "raw"}, + "respcode": {"no_log": False, "type": "raw"}, + "resptimeout": {"no_log": False, "type": "raw"}, + "resptimeoutthresh": {"no_log": False, "type": "raw"}, + "retries": {"no_log": False, "type": "raw"}, + "reverse": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "rtsprequest": {"no_log": False, "type": "raw"}, + "scriptargs": {"no_log": False, "type": "raw"}, + "scriptname": {"no_log": False, "type": "raw"}, + "secondarypassword": {"no_log": True, "type": "raw"}, + "secure": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "secureargs": {"no_log": True, "type": "raw"}, + "send": {"no_log": False, "type": "raw"}, "servicegroupname": {"no_log": False, "type": "str"}, "servicename": {"no_log": False, "type": "str"}, "sipmethod": { "choices": ["INVITE", "OPTIONS", "REGISTER"], "no_log": False, - "type": "str", + "type": "raw", }, - "sipreguri": {"no_log": False, "type": "str"}, + "sipreguri": {"no_log": False, "type": "raw"}, "sipuri": {"no_log": False, "type": "str"}, "sitepath": {"no_log": False, "type": "str"}, - "snmpcommunity": {"no_log": False, "type": "str"}, - "snmpoid": {"no_log": False, "type": "str"}, - "snmpthreshold": {"no_log": False, "type": "str"}, - "snmpversion": {"choices": ["V1", "V2"], "no_log": False, "type": "str"}, - "sqlquery": {"no_log": False, "type": "str"}, - "sslprofile": {"no_log": False, "type": "str"}, + "snmpcommunity": {"no_log": False, "type": "raw"}, + "snmpoid": {"no_log": False, "type": "raw"}, + "snmpthreshold": {"no_log": False, "type": "raw"}, + "snmpversion": {"choices": ["V1", "V2"], "no_log": False, "type": "raw"}, + "sqlquery": {"no_log": False, "type": "raw"}, + "sslprofile": {"no_log": False, "type": "raw"}, "storedb": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "storefrontacctservice": { "choices": ["NO", "YES"], @@ -31395,13 +31305,13 @@ "type": "str", }, "storename": {"no_log": False, "type": "str"}, - "successretries": {"no_log": False, "type": "int"}, - "supportedvendorids": {"elements": "int", "no_log": False, "type": "list"}, - "tos": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "tosid": {"no_log": False, "type": "float"}, - "transparent": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "trofscode": {"no_log": False, "type": "float"}, - "trofsstring": {"no_log": False, "type": "str"}, + "successretries": {"no_log": False, "type": "raw"}, + "supportedvendorids": {"no_log": False, "type": "raw"}, + "tos": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "tosid": {"no_log": False, "type": "raw"}, + "transparent": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "trofscode": {"no_log": False, "type": "raw"}, + "trofsstring": {"no_log": False, "type": "raw"}, "type": { "choices": [ "APPC", @@ -31455,7 +31365,7 @@ "USER", ], "no_log": False, - "type": "str", + "type": "raw", }, "units1": { "choices": ["MIN", "MSEC", "SEC"], @@ -31477,20 +31387,12 @@ "no_log": False, "type": "str", }, - "username": {"no_log": False, "type": "str"}, - "validatecred": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "vendorid": {"no_log": False, "type": "float"}, - "vendorspecificacctapplicationids": { - "elements": "int", - "no_log": False, - "type": "list", - }, - "vendorspecificauthapplicationids": { - "elements": "int", - "no_log": False, - "type": "list", - }, - "vendorspecificvendorid": {"no_log": False, "type": "float"}, + "username": {"no_log": False, "type": "raw"}, + "validatecred": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "vendorid": {"no_log": False, "type": "raw"}, + "vendorspecificacctapplicationids": {"no_log": False, "type": "raw"}, + "vendorspecificauthapplicationids": {"no_log": False, "type": "raw"}, + "vendorspecificvendorid": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -31731,80 +31633,80 @@ "allowboundsvcremoval": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "computedadccookieattribute": {"no_log": False, "type": "str"}, + "computedadccookieattribute": {"no_log": False, "type": "raw"}, "consolidatedlconn": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "cookiepassphrase": {"no_log": True, "type": "str"}, - "dbsttl": {"no_log": False, "type": "float"}, + "cookiepassphrase": {"no_log": True, "type": "raw"}, + "dbsttl": {"no_log": False, "type": "raw"}, "dropmqttjumbomessage": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "httponlycookieflag": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "lbhashalgorithm": { "choices": ["DEFAULT", "JARH", "PRAC"], "no_log": False, - "type": "str", + "type": "raw", }, - "lbhashfingers": {"no_log": False, "type": "float"}, - "literaladccookieattribute": {"no_log": False, "type": "str"}, - "maxpipelinenat": {"no_log": False, "type": "float"}, + "lbhashfingers": {"no_log": False, "type": "raw"}, + "literaladccookieattribute": {"no_log": False, "type": "raw"}, + "maxpipelinenat": {"no_log": False, "type": "raw"}, "monitorconnectionclose": { "choices": ["FIN", "RESET"], "no_log": False, - "type": "str", + "type": "raw", }, "monitorskipmaxclient": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "preferdirectroute": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "retainservicestate": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "startuprrfactor": {"no_log": False, "type": "float"}, + "startuprrfactor": {"no_log": False, "type": "raw"}, "storemqttclientidandusername": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, "useencryptedpersistencecookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "useportforhashlb": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "usesecuredpersistencecookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "vserverspecificmac": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -31903,7 +31805,7 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, "lbpolicylabel_lbpolicy_binding": { "no_log": False, "options": { @@ -31920,11 +31822,11 @@ }, "type": "dict", }, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -32119,45 +32021,45 @@ "primary_key": "lbprofilename", "primary_key_composite": [], "readwrite_arguments": { - "computedadccookieattribute": {"no_log": False, "type": "str"}, - "cookiepassphrase": {"no_log": True, "type": "str"}, + "computedadccookieattribute": {"no_log": False, "type": "raw"}, + "cookiepassphrase": {"no_log": True, "type": "raw"}, "dbslb": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httponlycookieflag": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "lbhashalgorithm": { "choices": ["DEFAULT", "JARH", "PRAC"], "no_log": False, - "type": "str", + "type": "raw", }, - "lbhashfingers": {"no_log": False, "type": "float"}, - "lbprofilename": {"no_log": False, "type": "str"}, - "literaladccookieattribute": {"no_log": False, "type": "str"}, + "lbhashfingers": {"no_log": False, "type": "raw"}, + "lbprofilename": {"no_log": False, "type": "raw"}, + "literaladccookieattribute": {"no_log": False, "type": "raw"}, "processlocal": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "storemqttclientidandusername": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "useencryptedpersistencecookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "usesecuredpersistencecookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -32271,14 +32173,14 @@ "addrportvip": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "retrydur": {"no_log": False, "type": "int"}, - "rnatdstport": {"no_log": False, "type": "int"}, - "rnatsecuredstport": {"no_log": False, "type": "int"}, - "rnatsecuresrcport": {"no_log": False, "type": "int"}, - "rnatsrcport": {"no_log": False, "type": "int"}, - "sip503ratethreshold": {"no_log": False, "type": "float"}, + "retrydur": {"no_log": False, "type": "raw"}, + "rnatdstport": {"no_log": False, "type": "raw"}, + "rnatsecuredstport": {"no_log": False, "type": "raw"}, + "rnatsecuresrcport": {"no_log": False, "type": "raw"}, + "rnatsrcport": {"no_log": False, "type": "raw"}, + "sip503ratethreshold": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -32541,21 +32443,21 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "adfsproxyprofile": {"no_log": False, "type": "str"}, + "adfsproxyprofile": {"no_log": False, "type": "raw"}, "appflowlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "authentication": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "authenticationhost": {"no_log": False, "type": "str"}, - "authn401": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "authnprofile": {"no_log": False, "type": "str"}, - "authnvsname": {"no_log": False, "type": "str"}, + "authenticationhost": {"no_log": False, "type": "raw"}, + "authn401": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "authnprofile": {"no_log": False, "type": "raw"}, + "authnvsname": {"no_log": False, "type": "raw"}, "backuplbmethod": { "choices": [ "CUSTOMLOAD", @@ -32567,63 +32469,63 @@ "SOURCEIPHASH", ], "no_log": False, - "type": "str", + "type": "raw", }, - "backuppersistencetimeout": {"no_log": False, "type": "float"}, - "backupvserver": {"no_log": False, "type": "str"}, + "backuppersistencetimeout": {"no_log": False, "type": "raw"}, + "backupvserver": {"no_log": False, "type": "raw"}, "bypassaaaa": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "clttimeout": {"no_log": False, "type": "float"}, - "comment": {"no_log": False, "type": "str"}, + "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "clttimeout": {"no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, "connfailover": { "choices": ["DISABLED", "STATEFUL", "STATELESS"], "no_log": False, - "type": "str", + "type": "raw", }, - "cookiename": {"no_log": False, "type": "str"}, - "datalength": {"no_log": False, "type": "float"}, - "dataoffset": {"no_log": False, "type": "float"}, - "dbprofilename": {"no_log": False, "type": "str"}, + "cookiename": {"no_log": False, "type": "raw"}, + "datalength": {"no_log": False, "type": "raw"}, + "dataoffset": {"no_log": False, "type": "raw"}, + "dbprofilename": {"no_log": False, "type": "raw"}, "dbslb": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "disableprimaryondown": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dns64": { "choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str", }, - "dnsprofilename": {"no_log": False, "type": "str"}, + "dnsprofilename": {"no_log": False, "type": "raw"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "hashlength": {"no_log": False, "type": "float"}, - "healththreshold": {"no_log": False, "type": "float"}, - "httpprofilename": {"no_log": False, "type": "str"}, - "httpsredirecturl": {"no_log": False, "type": "str"}, + "hashlength": {"no_log": False, "type": "raw"}, + "healththreshold": {"no_log": False, "type": "raw"}, + "httpprofilename": {"no_log": False, "type": "raw"}, + "httpsredirecturl": {"no_log": False, "type": "raw"}, "icmpvsrresponse": { "choices": ["ACTIVE", "PASSIVE"], "no_log": False, - "type": "str", + "type": "raw", }, "insertvserveripport": { "choices": ["OFF", "V6TOV4MAPPING", "VIPADDR"], "no_log": False, - "type": "str", + "type": "raw", }, "ipmask": {"no_log": False, "type": "str"}, "ippattern": {"no_log": False, "type": "str"}, - "ipset": {"no_log": False, "type": "str"}, + "ipset": {"no_log": False, "type": "raw"}, "ipv46": {"no_log": False, "type": "str"}, - "l2conn": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "l2conn": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "lbmethod": { "choices": [ "AUDITLOGHASH", @@ -32647,9 +32549,9 @@ "USER_TOKEN", ], "no_log": False, - "type": "str", + "type": "raw", }, - "lbprofilename": {"no_log": False, "type": "str"}, + "lbprofilename": {"no_log": False, "type": "raw"}, "lbvserver_analyticsprofile_binding": { "no_log": False, "options": { @@ -33018,61 +32920,52 @@ }, "type": "dict", }, - "listenpolicy": {"no_log": False, "type": "str"}, - "listenpriority": {"no_log": False, "type": "float"}, + "listenpolicy": {"no_log": False, "type": "raw"}, + "listenpriority": {"no_log": False, "type": "raw"}, "m": { "choices": ["IP", "IPTUNNEL", "MAC", "TOS"], "no_log": False, - "type": "str", + "type": "raw", }, "macmoderetainvlan": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxautoscalemembers": {"no_log": False, "type": "float"}, - "minautoscalemembers": {"no_log": False, "type": "float"}, + "maxautoscalemembers": {"no_log": False, "type": "raw"}, + "minautoscalemembers": {"no_log": False, "type": "raw"}, "mssqlserverversion": { - "choices": [ - "2000", - "2000SP1", - "2005", - "2008", - "2008R2", - "2012", - "2014", - "70", - ], + "choices": [70, 2000, "2000SP1", 2005, 2008, "2008R2", 2012, 2014], "no_log": False, - "type": "str", + "type": "raw", }, - "mysqlcharacterset": {"no_log": False, "type": "float"}, - "mysqlprotocolversion": {"no_log": False, "type": "float"}, - "mysqlservercapabilities": {"no_log": False, "type": "float"}, - "mysqlserverversion": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "netmask": {"no_log": False, "type": "str"}, - "netprofile": {"no_log": False, "type": "str"}, + "mysqlcharacterset": {"no_log": False, "type": "raw"}, + "mysqlprotocolversion": {"no_log": False, "type": "raw"}, + "mysqlservercapabilities": {"no_log": False, "type": "raw"}, + "mysqlserverversion": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "netmask": {"no_log": False, "type": "raw"}, + "netprofile": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "newservicerequest": {"no_log": False, "type": "float"}, - "newservicerequestincrementinterval": {"no_log": False, "type": "float"}, + "newservicerequest": {"no_log": False, "type": "raw"}, + "newservicerequestincrementinterval": {"no_log": False, "type": "raw"}, "newservicerequestunit": { "choices": ["PERCENT", "PER_SECOND"], "no_log": False, - "type": "str", + "type": "raw", }, "oracleserverversion": { "choices": ["10G", "11G"], "no_log": False, - "type": "str", + "type": "raw", }, - "order": {"no_log": False, "type": "float"}, - "orderthreshold": {"no_log": False, "type": "float"}, - "persistavpno": {"elements": "int", "no_log": False, "type": "list"}, + "order": {"no_log": False, "type": "raw"}, + "orderthreshold": {"no_log": False, "type": "raw"}, + "persistavpno": {"no_log": False, "type": "raw"}, "persistencebackup": { "choices": ["NONE", "SOURCEIP"], "no_log": False, - "type": "str", + "type": "raw", }, "persistencetype": { "choices": [ @@ -33092,17 +32985,17 @@ "USERSESSION", ], "no_log": False, - "type": "str", + "type": "raw", }, - "persistmask": {"no_log": False, "type": "str"}, + "persistmask": {"no_log": False, "type": "raw"}, "port": {"no_log": False, "type": "int"}, "probeport": {"no_log": False, "type": "int"}, "probeprotocol": { "choices": ["HTTP", "TCP"], "no_log": False, - "type": "str", + "type": "raw", }, - "probesuccessresponsecode": {"no_log": False, "type": "str"}, + "probesuccessresponsecode": {"no_log": False, "type": "raw"}, "processlocal": { "choices": ["DISABLED", "ENABLED"], "no_log": False, @@ -33111,45 +33004,45 @@ "push": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "pushlabel": {"no_log": False, "type": "str"}, + "pushlabel": {"no_log": False, "type": "raw"}, "pushmulticlients": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "pushvserver": {"no_log": False, "type": "str"}, - "quicbridgeprofilename": {"no_log": False, "type": "str"}, - "quicprofilename": {"no_log": False, "type": "str"}, + "pushvserver": {"no_log": False, "type": "raw"}, + "quicbridgeprofilename": {"no_log": False, "type": "raw"}, + "quicprofilename": {"no_log": False, "type": "raw"}, "range": {"no_log": False, "type": "float"}, "recursionavailable": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "redirectfromport": {"no_log": False, "type": "int"}, + "redirectfromport": {"no_log": False, "type": "raw"}, "redirectportrewrite": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "redirurl": {"no_log": False, "type": "str"}, + "redirurl": {"no_log": False, "type": "raw"}, "redirurlflags": {"no_log": False, "type": "bool"}, - "resrule": {"no_log": False, "type": "str"}, + "resrule": {"no_log": False, "type": "raw"}, "retainconnectionsoncluster": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "rhistate": { "choices": ["ACTIVE", "PASSIVE"], "no_log": False, - "type": "str", + "type": "raw", }, - "rtspnat": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, - "servicename": {"no_log": False, "type": "str"}, + "rtspnat": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, + "servicename": {"no_log": False, "type": "raw"}, "servicetype": { "choices": [ "ANY", @@ -33203,17 +33096,17 @@ "sessionless": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "skippersistency": { "choices": ["Bypass", "None", "ReLb"], "no_log": False, - "type": "str", + "type": "raw", }, "sobackupaction": { "choices": ["ACCEPT", "DROP", "REDIRECT"], "no_log": False, - "type": "str", + "type": "raw", }, "somethod": { "choices": [ @@ -33224,33 +33117,33 @@ "NONE", ], "no_log": False, - "type": "str", + "type": "raw", }, "sopersistence": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sopersistencetimeout": {"no_log": False, "type": "float"}, - "sothreshold": {"no_log": False, "type": "float"}, - "tcpprobeport": {"no_log": False, "type": "int"}, - "tcpprofilename": {"no_log": False, "type": "str"}, + "sopersistencetimeout": {"no_log": False, "type": "raw"}, + "sothreshold": {"no_log": False, "type": "raw"}, + "tcpprobeport": {"no_log": False, "type": "raw"}, + "tcpprofilename": {"no_log": False, "type": "raw"}, "td": {"no_log": False, "type": "float"}, - "timeout": {"no_log": False, "type": "float"}, + "timeout": {"no_log": False, "type": "raw"}, "toggleorder": { "choices": ["ASCENDING", "DESCENDING"], "no_log": False, - "type": "str", + "type": "raw", }, - "tosid": {"no_log": False, "type": "float"}, + "tosid": {"no_log": False, "type": "raw"}, "trofspersistence": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "v6netmasklen": {"no_log": False, "type": "float"}, - "v6persistmasklen": {"no_log": False, "type": "float"}, - "vipheader": {"no_log": False, "type": "str"}, + "v6netmasklen": {"no_log": False, "type": "raw"}, + "v6persistmasklen": {"no_log": False, "type": "raw"}, + "vipheader": {"no_log": False, "type": "raw"}, "weight": {"no_log": False, "type": "float"}, }, "singleton": False, @@ -34750,7 +34643,7 @@ "primary_key_composite": [], "readwrite_arguments": { "ipaddress": {"no_log": False, "type": "str"}, - "katimeout": {"no_log": False, "type": "float"}, + "katimeout": {"no_log": False, "type": "raw"}, "lbuid": {"no_log": False, "type": "str"}, "lbwlm_lbvserver_binding": { "no_log": False, @@ -34769,7 +34662,7 @@ "type": "dict", }, "port": {"no_log": False, "type": "int"}, - "wlmname": {"no_log": False, "type": "str"}, + "wlmname": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["katimeout", "wlmname"], @@ -34970,13 +34863,13 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "holdtimetxmult": {"no_log": False, "type": "float"}, + "holdtimetxmult": {"no_log": False, "type": "raw"}, "mode": { "choices": ["NONE", "RECEIVER", "TRANSCEIVER", "TRANSMITTER"], "no_log": False, - "type": "str", + "type": "raw", }, - "timer": {"no_log": False, "type": "float"}, + "timer": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": ["holdtimetxmult", "mode", "timer"], @@ -35140,19 +35033,19 @@ "context": { "choices": ["custom", "geographic"], "no_log": False, - "type": "str", + "type": "raw", }, "matchwildcardtoany": { "choices": ["Expression", "NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "q1label": {"no_log": False, "type": "str"}, - "q2label": {"no_log": False, "type": "str"}, - "q3label": {"no_log": False, "type": "str"}, - "q4label": {"no_log": False, "type": "str"}, - "q5label": {"no_log": False, "type": "str"}, - "q6label": {"no_log": False, "type": "str"}, + "q1label": {"no_log": False, "type": "raw"}, + "q2label": {"no_log": False, "type": "raw"}, + "q3label": {"no_log": False, "type": "raw"}, + "q4label": {"no_log": False, "type": "raw"}, + "q5label": {"no_log": False, "type": "raw"}, + "q6label": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -35197,9 +35090,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "port": {"no_log": False, "type": "str"}, - "sessiontimeout": {"no_log": False, "type": "float"}, + "sessiontimeout": {"no_log": False, "type": "raw"}, "transportprotocol": { "choices": ["ICMP", "TCP", "UDP"], "no_log": False, @@ -35260,7 +35153,7 @@ "primary_key": "appsprofilename", "primary_key_composite": [], "readwrite_arguments": { - "appsprofilename": {"no_log": False, "type": "str"}, + "appsprofilename": {"no_log": False, "type": "raw"}, "filtering": { "choices": [ "ADDRESS-DEPENDENT", @@ -35268,17 +35161,17 @@ "ENDPOINT-INDEPENDENT", ], "no_log": False, - "type": "str", + "type": "raw", }, "ippooling": { "choices": ["PAIRED", "RANDOM"], "no_log": False, - "type": "str", + "type": "raw", }, "l2info": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "lsnappsprofile_lsnappsattributes_binding": { "no_log": False, @@ -35319,14 +35212,14 @@ "ENDPOINT-INDEPENDENT", ], "no_log": False, - "type": "str", + "type": "raw", }, "tcpproxy": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "td": {"no_log": False, "type": "float"}, + "td": {"no_log": False, "type": "raw"}, "transportprotocol": { "choices": ["ICMP", "TCP", "UDP"], "no_log": False, @@ -35691,18 +35584,18 @@ "type": "str", }, "clientname": {"no_log": False, "type": "str"}, - "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "ftpcm": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "groupname": {"no_log": False, "type": "str"}, + "groupname": {"no_log": False, "type": "raw"}, "ip6profile": {"no_log": False, "type": "str"}, "logging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "lsngroup_ipsecalgprofile_binding": { "no_log": False, @@ -35853,33 +35746,33 @@ "no_log": False, "type": "str", }, - "portblocksize": {"no_log": False, "type": "float"}, + "portblocksize": {"no_log": False, "type": "raw"}, "pptp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "rtspalg": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sessionlogging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sessionsync": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sipalg": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "snmptraplimit": {"no_log": False, "type": "float"}, + "snmptraplimit": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -36191,26 +36084,26 @@ "primary_key": "httphdrlogprofilename", "primary_key_composite": [], "readwrite_arguments": { - "httphdrlogprofilename": {"no_log": False, "type": "str"}, + "httphdrlogprofilename": {"no_log": False, "type": "raw"}, "loghost": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "logmethod": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "logurl": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "logversion": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -36298,27 +36191,27 @@ "primary_key": "logprofilename", "primary_key_composite": [], "readwrite_arguments": { - "analyticsprofile": {"no_log": False, "type": "str"}, + "analyticsprofile": {"no_log": False, "type": "raw"}, "logcompact": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "logipfix": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "logprofilename": {"no_log": False, "type": "str"}, + "logprofilename": {"no_log": False, "type": "raw"}, "logsessdeletion": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "logsubscrinfo": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -36358,12 +36251,12 @@ "sessionsync": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "subscrsessionremoval": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -36422,19 +36315,19 @@ }, "type": "dict", }, - "maxportrealloctmq": {"no_log": False, "type": "float"}, + "maxportrealloctmq": {"no_log": False, "type": "raw"}, "nattype": { "choices": ["DETERMINISTIC", "DYNAMIC"], "no_log": False, "type": "str", }, - "poolname": {"no_log": False, "type": "str"}, + "poolname": {"no_log": False, "type": "raw"}, "portblockallocation": { "choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str", }, - "portrealloctimeout": {"no_log": False, "type": "float"}, + "portrealloctimeout": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["maxportrealloctmq", "poolname", "portrealloctimeout"], @@ -36509,13 +36402,13 @@ "primary_key": "rtspalgprofilename", "primary_key_composite": [], "readwrite_arguments": { - "rtspalgprofilename": {"no_log": False, "type": "str"}, - "rtspidletimeout": {"no_log": False, "type": "float"}, - "rtspportrange": {"no_log": False, "type": "str"}, + "rtspalgprofilename": {"no_log": False, "type": "raw"}, + "rtspidletimeout": {"no_log": False, "type": "raw"}, + "rtspportrange": {"no_log": False, "type": "raw"}, "rtsptransportprotocol": { "choices": ["TCP", "UDP"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -36691,46 +36584,46 @@ "primary_key": "sipalgprofilename", "primary_key_composite": [], "readwrite_arguments": { - "datasessionidletimeout": {"no_log": False, "type": "float"}, + "datasessionidletimeout": {"no_log": False, "type": "raw"}, "opencontactpinhole": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "openrecordroutepinhole": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "openregisterpinhole": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "openroutepinhole": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "openviapinhole": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "registrationtimeout": {"no_log": False, "type": "float"}, + "registrationtimeout": {"no_log": False, "type": "raw"}, "rport": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sipalgprofilename": {"no_log": False, "type": "str"}, - "sipdstportrange": {"no_log": False, "type": "str"}, - "sipsessiontimeout": {"no_log": False, "type": "float"}, - "sipsrcportrange": {"no_log": False, "type": "str"}, + "sipalgprofilename": {"no_log": False, "type": "raw"}, + "sipdstportrange": {"no_log": False, "type": "raw"}, + "sipsessiontimeout": {"no_log": False, "type": "raw"}, + "sipsrcportrange": {"no_log": False, "type": "raw"}, "siptransportprotocol": { "choices": ["TCP", "UDP"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -36874,29 +36767,29 @@ "primary_key": "transportprofilename", "primary_key_composite": [], "readwrite_arguments": { - "finrsttimeout": {"no_log": False, "type": "float"}, - "groupsessionlimit": {"no_log": False, "type": "float"}, + "finrsttimeout": {"no_log": False, "type": "raw"}, + "groupsessionlimit": {"no_log": False, "type": "raw"}, "portpreserveparity": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "portpreserverange": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "portquota": {"no_log": False, "type": "float"}, - "sessionquota": {"no_log": False, "type": "float"}, - "sessiontimeout": {"no_log": False, "type": "float"}, - "stuntimeout": {"no_log": False, "type": "float"}, + "portquota": {"no_log": False, "type": "raw"}, + "sessionquota": {"no_log": False, "type": "raw"}, + "sessiontimeout": {"no_log": False, "type": "raw"}, + "stuntimeout": {"no_log": False, "type": "raw"}, "syncheck": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "synidletimeout": {"no_log": False, "type": "float"}, - "transportprofilename": {"no_log": False, "type": "str"}, + "synidletimeout": {"no_log": False, "type": "raw"}, + "transportprofilename": {"no_log": False, "type": "raw"}, "transportprotocol": { "choices": ["ICMP", "TCP", "UDP"], "no_log": False, @@ -37141,8 +37034,8 @@ "primary_key_composite": [], "readwrite_arguments": { "acl6name": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "netprofile": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "netprofile": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["acl6name", "name", "netprofile"], @@ -37179,20 +37072,20 @@ "nat64fragheader": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "nat64ignoretos": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "nat64v6mtu": {"no_log": False, "type": "float"}, + "nat64v6mtu": {"no_log": False, "type": "raw"}, "nat64zerochecksum": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "td": {"no_log": False, "type": "float"}, + "td": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -37295,18 +37188,18 @@ "ceaserouteradv": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "currhoplimit": {"no_log": False, "type": "float"}, - "defaultlifetime": {"no_log": False, "type": "int"}, - "linkmtu": {"no_log": False, "type": "float"}, + "currhoplimit": {"no_log": False, "type": "raw"}, + "defaultlifetime": {"no_log": False, "type": "raw"}, + "linkmtu": {"no_log": False, "type": "raw"}, "managedaddrconfig": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxrtadvinterval": {"no_log": False, "type": "float"}, - "minrtadvinterval": {"no_log": False, "type": "float"}, + "maxrtadvinterval": {"no_log": False, "type": "raw"}, + "minrtadvinterval": {"no_log": False, "type": "raw"}, "nd6ravariables_onlinkipv6prefix_binding": { "no_log": False, "options": { @@ -37326,22 +37219,22 @@ "onlyunicastrtadvresponse": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "otheraddrconfig": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "reachabletime": {"no_log": False, "type": "float"}, - "retranstime": {"no_log": False, "type": "float"}, - "sendrouteradv": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "reachabletime": {"no_log": False, "type": "raw"}, + "retranstime": {"no_log": False, "type": "raw"}, + "sendrouteradv": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "srclinklayeraddroption": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "vlan": {"no_log": False, "type": "float"}, + "vlan": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -37425,7 +37318,7 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "netbridge_iptunnel_binding": { "no_log": False, "options": { @@ -37490,7 +37383,7 @@ }, "type": "dict", }, - "vxlanvlanmap": {"no_log": False, "type": "str"}, + "vxlanvlanmap": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["name", "vxlanvlanmap"], @@ -37659,8 +37552,8 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "mbf": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "mbf": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "netprofile_natrule_binding": { "no_log": False, "options": { @@ -37696,28 +37589,28 @@ "overridelsn": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "proxyprotocol": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "proxyprotocolaftertlshandshake": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "proxyprotocoltxversion": { "choices": ["V1", "V2"], "no_log": False, - "type": "str", + "type": "raw", }, - "srcip": {"no_log": False, "type": "str"}, + "srcip": {"no_log": False, "type": "raw"}, "srcippersistency": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "td": {"no_log": False, "type": "float"}, }, @@ -37913,40 +37806,40 @@ "clienttrafficonly": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "httpcookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httphost": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpmethod": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpreferer": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpurl": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "httpuseragent": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "templaterefresh": {"no_log": False, "type": "float"}, - "udppmtu": {"no_log": False, "type": "float"}, + "templaterefresh": {"no_log": False, "type": "raw"}, + "udppmtu": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -38039,8 +37932,8 @@ "add": {"no_log": False, "type": "str"}, "append": {"no_log": False, "type": "str"}, "clear": {"no_log": False, "type": "bool"}, - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "set": {"no_log": False, "type": "str"}, "sub": {"no_log": False, "type": "str"}, @@ -38081,7 +37974,7 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "bandwidth": {"no_log": False, "type": "float"}, + "bandwidth": {"no_log": False, "type": "raw"}, "edition": { "choices": ["Enterprise", "Platinum", "Standard"], "no_log": False, @@ -38132,10 +38025,10 @@ "VS8000", ], "no_log": False, - "type": "str", + "type": "raw", }, "unit": {"choices": ["Gbps", "Mbps"], "no_log": False, "type": "str"}, - "vcpu": {"no_log": False, "type": "bool"}, + "vcpu": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": ["bandwidth", "edition", "platform", "unit", "vcpu"], @@ -38238,9 +38131,9 @@ "grantquotamaxclient": {"no_log": False, "type": "float"}, "grantquotaspillover": {"no_log": False, "type": "float"}, "httpport": {"elements": "int", "no_log": False, "type": "list"}, - "ifnum": {"elements": "str", "no_log": False, "type": "list"}, + "ifnum": {"no_log": False, "type": "raw"}, "ignoredevicespecific": {"no_log": False, "type": "bool"}, - "ipaddress": {"no_log": False, "type": "str"}, + "ipaddress": {"no_log": False, "type": "raw"}, "level": { "choices": ["basic", "extended", "full"], "no_log": False, @@ -38248,8 +38141,8 @@ }, "maxconn": {"no_log": False, "type": "float"}, "maxreq": {"no_log": False, "type": "float"}, - "netmask": {"no_log": False, "type": "str"}, - "nsvlan": {"no_log": False, "type": "float"}, + "netmask": {"no_log": False, "type": "raw"}, + "nsvlan": {"no_log": False, "type": "raw"}, "outtype": {"choices": ["cli", "xml"], "no_log": False, "type": "str"}, "pmtumin": {"no_log": False, "type": "float"}, "pmtutimeout": {"no_log": False, "type": "float"}, @@ -38259,7 +38152,7 @@ "no_log": False, "type": "str", }, - "tagged": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "tagged": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "template": {"no_log": False, "type": "bool"}, "timezone": {"no_log": False, "type": "str"}, "weakpassword": {"no_log": False, "type": "bool"}, @@ -38289,7 +38182,7 @@ "password_keys": [], "primary_key": "", "primary_key_composite": [], - "readwrite_arguments": {"promptstring": {"no_log": False, "type": "str"}}, + "readwrite_arguments": {"promptstring": {"no_log": False, "type": "raw"}}, "singleton": True, "update_payload_keys": ["promptstring"], }, @@ -38335,26 +38228,26 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "harqretxdelay": {"no_log": False, "type": "float"}, - "lr1coeflist": {"no_log": False, "type": "str"}, - "lr1probthresh": {"no_log": False, "type": "float"}, + "harqretxdelay": {"no_log": False, "type": "raw"}, + "lr1coeflist": {"no_log": False, "type": "raw"}, + "lr1probthresh": {"no_log": False, "type": "raw"}, "lr2coeflist": {"no_log": False, "type": "str"}, "lr2probthresh": {"no_log": False, "type": "float"}, - "minrttnet1": {"no_log": False, "type": "float"}, - "minrttnet2": {"no_log": False, "type": "float"}, - "minrttnet3": {"no_log": False, "type": "float"}, - "net1cclscale": {"no_log": False, "type": "str"}, - "net1csqscale": {"no_log": False, "type": "str"}, - "net1label": {"no_log": False, "type": "str"}, - "net1logcoef": {"no_log": False, "type": "str"}, - "net2cclscale": {"no_log": False, "type": "str"}, - "net2csqscale": {"no_log": False, "type": "str"}, - "net2label": {"no_log": False, "type": "str"}, - "net2logcoef": {"no_log": False, "type": "str"}, - "net3cclscale": {"no_log": False, "type": "str"}, - "net3csqscale": {"no_log": False, "type": "str"}, - "net3label": {"no_log": False, "type": "str"}, - "net3logcoef": {"no_log": False, "type": "str"}, + "minrttnet1": {"no_log": False, "type": "raw"}, + "minrttnet2": {"no_log": False, "type": "raw"}, + "minrttnet3": {"no_log": False, "type": "raw"}, + "net1cclscale": {"no_log": False, "type": "raw"}, + "net1csqscale": {"no_log": False, "type": "raw"}, + "net1label": {"no_log": False, "type": "raw"}, + "net1logcoef": {"no_log": False, "type": "raw"}, + "net2cclscale": {"no_log": False, "type": "raw"}, + "net2csqscale": {"no_log": False, "type": "raw"}, + "net2label": {"no_log": False, "type": "raw"}, + "net2logcoef": {"no_log": False, "type": "raw"}, + "net3cclscale": {"no_log": False, "type": "raw"}, + "net3csqscale": {"no_log": False, "type": "raw"}, + "net3label": {"no_log": False, "type": "raw"}, + "net3logcoef": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -38403,8 +38296,8 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "dhcpclient": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "saveroute": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "dhcpclient": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "saveroute": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": ["dhcpclient", "saveroute"], @@ -38433,12 +38326,12 @@ "primary_key_composite": [], "readwrite_arguments": { "identity": {"no_log": False, "type": "str"}, - "ownernode": {"no_log": False, "type": "float"}, + "ownernode": {"no_log": False, "type": "raw"}, "realm": {"no_log": False, "type": "str"}, "serverclosepropagation": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -38480,8 +38373,8 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "iv": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "iv": {"no_log": False, "type": "raw"}, "keyvalue": {"no_log": True, "type": "str"}, "method": { "choices": [ @@ -38516,8 +38409,8 @@ "no_log": False, "type": "str", }, - "name": {"no_log": False, "type": "str"}, - "padding": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "padding": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -38623,18 +38516,18 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, "detail": {"choices": ["all", "brief"], "no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "overwrite": {"no_log": False, "type": "bool"}, "src": {"no_log": False, "type": "str"}, "trace": { "choices": ["all", "calls", "lines", "off"], "no_log": False, - "type": "str", + "type": "raw", }, - "tracefunctions": {"no_log": False, "type": "str"}, - "tracevariables": {"no_log": False, "type": "str"}, + "tracefunctions": {"no_log": False, "type": "raw"}, + "tracevariables": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -38781,7 +38674,7 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, "digest": { "choices": [ "MD2", @@ -38797,7 +38690,7 @@ "type": "str", }, "keyvalue": {"no_log": True, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["comment", "digest", "keyvalue", "name"], @@ -38868,33 +38761,33 @@ "conmultiplex": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dropinvalreqs": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "dropinvalreqs": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "http2serverside": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "ignoreconnectcodingscheme": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "insnssrvrhdr": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "logerrresp": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "insnssrvrhdr": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "logerrresp": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "markconnreqinval": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "markhttp09inval": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxreusepool": {"no_log": False, "type": "float"}, - "nssrvrhdr": {"no_log": False, "type": "str"}, + "maxreusepool": {"no_log": False, "type": "raw"}, + "nssrvrhdr": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -39054,152 +38947,152 @@ "adpttimeout": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "allowonlywordcharactersandhyphen": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "altsvc": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "altsvcvalue": {"no_log": False, "type": "str"}, - "apdexcltresptimethreshold": {"no_log": False, "type": "float"}, - "clientiphdrexpr": {"no_log": False, "type": "str"}, + "altsvcvalue": {"no_log": False, "type": "raw"}, + "apdexcltresptimethreshold": {"no_log": False, "type": "raw"}, + "clientiphdrexpr": {"no_log": False, "type": "raw"}, "cmponpush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "conmultiplex": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dropextracrlf": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dropextradata": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dropinvalreqs": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "grpcholdlimit": {"no_log": False, "type": "float"}, - "grpcholdtimeout": {"no_log": False, "type": "float"}, + "grpcholdlimit": {"no_log": False, "type": "raw"}, + "grpcholdtimeout": {"no_log": False, "type": "raw"}, "grpclengthdelimitation": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "http2": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "http2altsvcframe": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "http2direct": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "http2headertablesize": {"no_log": False, "type": "float"}, - "http2initialconnwindowsize": {"no_log": False, "type": "float"}, - "http2initialwindowsize": {"no_log": False, "type": "float"}, - "http2maxconcurrentstreams": {"no_log": False, "type": "float"}, - "http2maxemptyframespermin": {"no_log": False, "type": "float"}, - "http2maxframesize": {"no_log": False, "type": "float"}, - "http2maxheaderlistsize": {"no_log": False, "type": "float"}, - "http2maxpingframespermin": {"no_log": False, "type": "float"}, - "http2maxresetframespermin": {"no_log": False, "type": "float"}, - "http2maxsettingsframespermin": {"no_log": False, "type": "float"}, - "http2minseverconn": {"no_log": False, "type": "float"}, + "http2headertablesize": {"no_log": False, "type": "raw"}, + "http2initialconnwindowsize": {"no_log": False, "type": "raw"}, + "http2initialwindowsize": {"no_log": False, "type": "raw"}, + "http2maxconcurrentstreams": {"no_log": False, "type": "raw"}, + "http2maxemptyframespermin": {"no_log": False, "type": "raw"}, + "http2maxframesize": {"no_log": False, "type": "raw"}, + "http2maxheaderlistsize": {"no_log": False, "type": "raw"}, + "http2maxpingframespermin": {"no_log": False, "type": "raw"}, + "http2maxresetframespermin": {"no_log": False, "type": "raw"}, + "http2maxsettingsframespermin": {"no_log": False, "type": "raw"}, + "http2minseverconn": {"no_log": False, "type": "raw"}, "http2strictcipher": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "http3": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "http3maxheaderblockedstreams": {"no_log": False, "type": "float"}, - "http3maxheaderfieldsectionsize": {"no_log": False, "type": "float"}, - "http3maxheadertablesize": {"no_log": False, "type": "float"}, - "httppipelinebuffsize": {"no_log": False, "type": "float"}, - "incomphdrdelay": {"no_log": False, "type": "float"}, + "http3maxheaderblockedstreams": {"no_log": False, "type": "raw"}, + "http3maxheaderfieldsectionsize": {"no_log": False, "type": "raw"}, + "http3maxheadertablesize": {"no_log": False, "type": "raw"}, + "httppipelinebuffsize": {"no_log": False, "type": "raw"}, + "incomphdrdelay": {"no_log": False, "type": "raw"}, "markconnreqinval": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "markhttp09inval": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "markhttpheaderextrawserror": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "markrfc7230noncompliantinval": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "marktracereqinval": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxheaderfieldlen": {"no_log": False, "type": "float"}, - "maxheaderlen": {"no_log": False, "type": "float"}, - "maxreq": {"no_log": False, "type": "float"}, - "maxreusepool": {"no_log": False, "type": "float"}, - "minreusepool": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, + "maxheaderfieldlen": {"no_log": False, "type": "raw"}, + "maxheaderlen": {"no_log": False, "type": "raw"}, + "maxreq": {"no_log": False, "type": "raw"}, + "maxreusepool": {"no_log": False, "type": "raw"}, + "minreusepool": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "passprotocolupgrade": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "persistentetag": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "reqtimeout": {"no_log": False, "type": "float"}, - "reqtimeoutaction": {"no_log": False, "type": "str"}, - "reusepooltimeout": {"no_log": False, "type": "float"}, + "reqtimeout": {"no_log": False, "type": "raw"}, + "reqtimeoutaction": {"no_log": False, "type": "raw"}, + "reusepooltimeout": {"no_log": False, "type": "raw"}, "rtsptunnel": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "weblog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "websocket": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -39324,34 +39217,34 @@ "allow204": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "connectionkeepalive": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "hostheader": {"no_log": False, "type": "str"}, - "inserthttprequest": {"no_log": False, "type": "str"}, - "inserticapheaders": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, + "hostheader": {"no_log": False, "type": "raw"}, + "inserthttprequest": {"no_log": False, "type": "raw"}, + "inserticapheaders": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, "mode": {"choices": ["REQMOD", "RESPMOD"], "no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "preview": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "previewlength": {"no_log": False, "type": "float"}, - "queryparams": {"no_log": False, "type": "str"}, - "reqtimeout": {"no_log": False, "type": "float"}, + "previewlength": {"no_log": False, "type": "raw"}, + "queryparams": {"no_log": False, "type": "raw"}, + "reqtimeout": {"no_log": False, "type": "raw"}, "reqtimeoutaction": { "choices": ["BYPASS", "DROP", "RESET"], "no_log": False, - "type": "str", + "type": "raw", }, "uri": {"no_log": False, "type": "str"}, - "useragent": {"no_log": False, "type": "str"}, + "useragent": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -39471,117 +39364,117 @@ "advertiseondefaultpartition": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "arp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "arpowner": {"no_log": False, "type": "float"}, + "arp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "arpowner": {"no_log": False, "type": "raw"}, "arpresponse": { "choices": ["ALL_VSERVERS", "NONE", "ONE_VSERVER"], "no_log": False, - "type": "str", + "type": "raw", }, "bgp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "decrementttl": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "gui": { "choices": ["DISABLED", "ENABLED", "SECUREONLY"], "no_log": False, - "type": "str", + "type": "raw", }, "hostroute": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "hostrtgw": {"no_log": False, "type": "str"}, + "hostrtgw": {"no_log": False, "type": "raw"}, "icmp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "icmpresponse": { "choices": ["ALL_VSERVERS", "NONE", "ONE_VSERVER", "VSVR_CNTRLD"], "no_log": False, - "type": "str", + "type": "raw", }, - "ipaddress": {"no_log": False, "type": "str"}, - "metric": {"no_log": False, "type": "int"}, + "ipaddress": {"no_log": False, "type": "raw"}, + "metric": {"no_log": False, "type": "raw"}, "mgmtaccess": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "mptcpadvertise": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "netmask": {"no_log": False, "type": "str"}, + "netmask": {"no_log": False, "type": "raw"}, "networkroute": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ospf": { "choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str", }, - "ospfarea": {"no_log": False, "type": "float"}, + "ospfarea": {"no_log": False, "type": "raw"}, "ospflsatype": { "choices": ["TYPE1", "TYPE5"], "no_log": False, - "type": "str", + "type": "raw", }, "ownerdownresponse": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "ownernode": {"no_log": False, "type": "float"}, "restrictaccess": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "rip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, "snmp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ssh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "tag": {"no_log": False, "type": "float"}, - "td": {"no_log": False, "type": "float"}, + "ssh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "tag": {"no_log": False, "type": "raw"}, + "td": {"no_log": False, "type": "raw"}, "telnet": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "type": { "choices": ["CLIP", "GSLBsiteIP", "HostIP", "NSIP", "SNIP", "VIP"], "no_log": False, "type": "str", }, - "vrid": {"no_log": False, "type": "float"}, + "vrid": {"no_log": False, "type": "raw"}, "vserver": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "vserverrhilevel": { "choices": ["ALL_VSERVERS", "NONE", "ONE_VSERVER", "VSVR_CNTRLD"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -39706,71 +39599,71 @@ "advertiseondefaultpartition": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "decrementhoplimit": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "ftp": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "gui": { "choices": ["DISABLED", "ENABLED", "SECUREONLY"], "no_log": False, - "type": "str", + "type": "raw", }, "hostroute": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "icmp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ip6hostrtgw": {"no_log": False, "type": "str"}, - "ipv6address": {"no_log": False, "type": "str"}, - "map": {"no_log": False, "type": "str"}, - "metric": {"no_log": False, "type": "int"}, + "ip6hostrtgw": {"no_log": False, "type": "raw"}, + "ipv6address": {"no_log": False, "type": "raw"}, + "map": {"no_log": False, "type": "raw"}, + "metric": {"no_log": False, "type": "raw"}, "mgmtaccess": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "mptcpadvertise": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "nd": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "ndowner": {"no_log": False, "type": "float"}, + "nd": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "ndowner": {"no_log": False, "type": "raw"}, "networkroute": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ospf6lsatype": { "choices": ["EXTERNAL", "INTRA_AREA"], "no_log": False, - "type": "str", + "type": "raw", }, - "ospfarea": {"no_log": False, "type": "float"}, + "ospfarea": {"no_log": False, "type": "raw"}, "ownerdownresponse": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "ownernode": {"no_log": False, "type": "float"}, "restrictaccess": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "scope": { "choices": ["global", "link-local"], @@ -39780,15 +39673,15 @@ "snmp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ssh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "tag": {"no_log": False, "type": "float"}, - "td": {"no_log": False, "type": "float"}, + "ssh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "tag": {"no_log": False, "type": "raw"}, + "td": {"no_log": False, "type": "raw"}, "telnet": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "type": { "choices": [ @@ -39804,16 +39697,16 @@ "type": "str", }, "vlan": {"no_log": False, "type": "float"}, - "vrid6": {"no_log": False, "type": "float"}, + "vrid6": {"no_log": False, "type": "raw"}, "vserver": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "vserverrhilevel": { "choices": ["ALL_VSERVERS", "NONE", "ONE_VSERVER", "VSVR_CNTRLD"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -39877,11 +39770,11 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "alert1gracetimeout": {"no_log": False, "type": "float"}, - "alert2gracetimeout": {"no_log": False, "type": "float"}, - "heartbeatinterval": {"no_log": False, "type": "float"}, - "inventoryrefreshinterval": {"no_log": False, "type": "float"}, - "licenseexpiryalerttime": {"no_log": False, "type": "float"}, + "alert1gracetimeout": {"no_log": False, "type": "raw"}, + "alert2gracetimeout": {"no_log": False, "type": "raw"}, + "heartbeatinterval": {"no_log": False, "type": "raw"}, + "inventoryrefreshinterval": {"no_log": False, "type": "raw"}, + "licenseexpiryalerttime": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -40020,22 +39913,22 @@ "primary_key": "limitidentifier", "primary_key_composite": [], "readwrite_arguments": { - "limitidentifier": {"no_log": False, "type": "str"}, + "limitidentifier": {"no_log": False, "type": "raw"}, "limittype": { "choices": ["BURSTY", "SMOOTH"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxbandwidth": {"no_log": False, "type": "float"}, + "maxbandwidth": {"no_log": False, "type": "raw"}, "mode": { "choices": ["CONNECTION", "NONE", "REQUEST_RATE"], "no_log": False, - "type": "str", + "type": "raw", }, - "selectorname": {"no_log": False, "type": "str"}, - "threshold": {"no_log": False, "type": "float"}, - "timeslice": {"no_log": False, "type": "float"}, - "trapsintimeslice": {"no_log": False, "type": "float"}, + "selectorname": {"no_log": False, "type": "raw"}, + "threshold": {"no_log": False, "type": "raw"}, + "timeslice": {"no_log": False, "type": "raw"}, + "trapsintimeslice": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -40080,8 +39973,8 @@ "primary_key": "selectorname", "primary_key_composite": [], "readwrite_arguments": { - "rule": {"elements": "str", "no_log": False, "type": "list"}, - "selectorname": {"no_log": False, "type": "str"}, + "rule": {"no_log": False, "type": "raw"}, + "selectorname": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["rule", "selectorname"], @@ -40258,58 +40151,58 @@ "advancedanalyticsstats": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "aftpallowrandomsourceport": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "cip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "cipheader": {"no_log": False, "type": "str"}, - "cookieversion": {"choices": ["0", "1"], "no_log": False, "type": "str"}, - "crportrange": {"no_log": False, "type": "str"}, - "exclusivequotamaxclient": {"no_log": False, "type": "float"}, - "exclusivequotaspillover": {"no_log": False, "type": "float"}, - "ftpportrange": {"no_log": False, "type": "str"}, - "grantquotamaxclient": {"no_log": False, "type": "float"}, - "grantquotaspillover": {"no_log": False, "type": "float"}, - "httpport": {"elements": "int", "no_log": False, "type": "list"}, - "icaports": {"elements": "int", "no_log": False, "type": "list"}, + "cip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "cipheader": {"no_log": False, "type": "raw"}, + "cookieversion": {"choices": [0, 1], "no_log": False, "type": "raw"}, + "crportrange": {"no_log": False, "type": "raw"}, + "exclusivequotamaxclient": {"no_log": False, "type": "raw"}, + "exclusivequotaspillover": {"no_log": False, "type": "raw"}, + "ftpportrange": {"no_log": False, "type": "raw"}, + "grantquotamaxclient": {"no_log": False, "type": "raw"}, + "grantquotaspillover": {"no_log": False, "type": "raw"}, + "httpport": {"no_log": False, "type": "raw"}, + "icaports": {"no_log": False, "type": "raw"}, "internaluserlogin": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ipttl": {"no_log": False, "type": "float"}, - "maxconn": {"no_log": False, "type": "float"}, - "maxreq": {"no_log": False, "type": "float"}, - "mgmthttpport": {"no_log": False, "type": "int"}, - "mgmthttpsport": {"no_log": False, "type": "int"}, - "pmtumin": {"no_log": False, "type": "float"}, - "pmtutimeout": {"no_log": False, "type": "float"}, + "ipttl": {"no_log": False, "type": "raw"}, + "maxconn": {"no_log": False, "type": "raw"}, + "maxreq": {"no_log": False, "type": "raw"}, + "mgmthttpport": {"no_log": False, "type": "raw"}, + "mgmthttpsport": {"no_log": False, "type": "raw"}, + "pmtumin": {"no_log": False, "type": "raw"}, + "pmtutimeout": {"no_log": False, "type": "raw"}, "proxyprotocol": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "securecookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "secureicaports": {"elements": "int", "no_log": False, "type": "list"}, - "servicepathingressvlan": {"no_log": False, "type": "float"}, + "secureicaports": {"no_log": False, "type": "raw"}, + "servicepathingressvlan": {"no_log": False, "type": "raw"}, "tcpcip": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "timezone": {"no_log": False, "type": "str"}, + "timezone": {"no_log": False, "type": "raw"}, "useproxyport": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -40395,10 +40288,10 @@ "primary_key_composite": [], "readwrite_arguments": { "force": {"no_log": False, "type": "bool"}, - "maxbandwidth": {"no_log": False, "type": "float"}, - "maxconn": {"no_log": False, "type": "float"}, - "maxmemlimit": {"no_log": False, "type": "float"}, - "minbandwidth": {"no_log": False, "type": "float"}, + "maxbandwidth": {"no_log": False, "type": "raw"}, + "maxconn": {"no_log": False, "type": "raw"}, + "maxmemlimit": {"no_log": False, "type": "raw"}, + "minbandwidth": {"no_log": False, "type": "raw"}, "nspartition_bridgegroup_binding": { "no_log": False, "options": { @@ -40447,8 +40340,8 @@ }, "type": "dict", }, - "partitionmac": {"no_log": False, "type": "str"}, - "partitionname": {"no_log": False, "type": "str"}, + "partitionmac": {"no_log": False, "type": "raw"}, + "partitionname": {"no_log": False, "type": "raw"}, "save": {"no_log": False, "type": "bool"}, }, "singleton": False, @@ -40573,10 +40466,10 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "icmpthreshold": {"no_log": False, "type": "float"}, - "tcprstthreshold": {"no_log": False, "type": "float"}, - "tcpthreshold": {"no_log": False, "type": "float"}, - "udpthreshold": {"no_log": False, "type": "float"}, + "icmpthreshold": {"no_log": False, "type": "raw"}, + "tcprstthreshold": {"no_log": False, "type": "raw"}, + "tcpthreshold": {"no_log": False, "type": "raw"}, + "udpthreshold": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -40609,11 +40502,11 @@ "primary_key": "ipaddress", "primary_key_composite": [], "readwrite_arguments": { - "ipaddress": {"no_log": False, "type": "str"}, - "password": {"no_log": True, "type": "str"}, - "secure": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "srcip": {"no_log": False, "type": "str"}, - "validatecert": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "ipaddress": {"no_log": False, "type": "raw"}, + "password": {"no_log": True, "type": "raw"}, + "secure": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "srcip": {"no_log": False, "type": "raw"}, + "validatecert": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -40874,11 +40767,11 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "basethreshold": {"no_log": False, "type": "int"}, + "basethreshold": {"no_log": False, "type": "raw"}, "throttle": { "choices": ["Aggressive", "Normal", "Relaxed"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -40969,8 +40862,8 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "memlimit": {"no_log": False, "type": "float"}, - "size": {"no_log": False, "type": "float"}, + "memlimit": {"no_log": False, "type": "raw"}, + "size": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": ["memlimit", "size"], @@ -41049,32 +40942,32 @@ "ackonpush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "autosyncookietimeout": {"no_log": False, "type": "float"}, + "autosyncookietimeout": {"no_log": False, "type": "raw"}, "compacttcpoptionnoop": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "connflushifnomem": { "choices": ["FIFO", "HALFCLOSED_AND_IDLE", "NONE "], "no_log": False, - "type": "str", + "type": "raw", }, - "connflushthres": {"no_log": False, "type": "float"}, - "delayedack": {"no_log": False, "type": "float"}, + "connflushthres": {"no_log": False, "type": "raw"}, + "delayedack": {"no_log": False, "type": "raw"}, "delinkclientserveronrst": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "downstaterst": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "initialcwnd": {"no_log": False, "type": "float"}, + "initialcwnd": {"no_log": False, "type": "raw"}, "kaprobeupdatelastactivity": { "choices": ["DISABLED", "ENABLED"], "no_log": False, @@ -41083,94 +40976,94 @@ "learnvsvrmss": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "limitedpersist": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxburst": {"no_log": False, "type": "float"}, - "maxdynserverprobes": {"no_log": False, "type": "float"}, - "maxpktpermss": {"no_log": False, "type": "float"}, - "maxsynackretx": {"no_log": False, "type": "float"}, - "maxsynhold": {"no_log": False, "type": "float"}, - "maxsynholdperprobe": {"no_log": False, "type": "float"}, - "maxtimewaitconn": {"no_log": False, "type": "float"}, - "minrto": {"no_log": False, "type": "int"}, + "maxburst": {"no_log": False, "type": "raw"}, + "maxdynserverprobes": {"no_log": False, "type": "raw"}, + "maxpktpermss": {"no_log": False, "type": "raw"}, + "maxsynackretx": {"no_log": False, "type": "raw"}, + "maxsynhold": {"no_log": False, "type": "raw"}, + "maxsynholdperprobe": {"no_log": False, "type": "raw"}, + "maxtimewaitconn": {"no_log": False, "type": "raw"}, + "minrto": {"no_log": False, "type": "raw"}, "mptcpchecksum": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "mptcpclosemptcpsessiononlastsfclose": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "mptcpconcloseonpassivesf": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "mptcpfastcloseoption": { "choices": ["ACK", "RESET"], "no_log": False, - "type": "str", + "type": "raw", }, "mptcpimmediatesfcloseonfin": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "mptcpmaxpendingsf": {"no_log": False, "type": "float"}, - "mptcpmaxsf": {"no_log": False, "type": "float"}, - "mptcppendingjointhreshold": {"no_log": False, "type": "float"}, + "mptcpmaxpendingsf": {"no_log": False, "type": "raw"}, + "mptcpmaxsf": {"no_log": False, "type": "raw"}, + "mptcppendingjointhreshold": {"no_log": False, "type": "raw"}, "mptcpreliableaddaddr": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "mptcprtostoswitchsf": {"no_log": False, "type": "float"}, + "mptcprtostoswitchsf": {"no_log": False, "type": "raw"}, "mptcpsendsfresetoption": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "mptcpsfreplacetimeout": {"no_log": False, "type": "float"}, - "mptcpsftimeout": {"no_log": False, "type": "float"}, + "mptcpsfreplacetimeout": {"no_log": False, "type": "raw"}, + "mptcpsftimeout": {"no_log": False, "type": "raw"}, "mptcpusebackupondss": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "msslearndelay": {"no_log": False, "type": "float"}, - "msslearninterval": {"no_log": False, "type": "float"}, + "msslearndelay": {"no_log": False, "type": "raw"}, + "msslearninterval": {"no_log": False, "type": "raw"}, "nagle": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "oooqsize": {"no_log": False, "type": "float"}, - "pktperretx": {"no_log": False, "type": "int"}, + "oooqsize": {"no_log": False, "type": "raw"}, + "pktperretx": {"no_log": False, "type": "raw"}, "recvbuffsize": {"no_log": False, "type": "float"}, "sack": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "slowstartincr": {"no_log": False, "type": "int"}, + "slowstartincr": {"no_log": False, "type": "raw"}, "synattackdetection": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "synholdfastgiveup": {"no_log": False, "type": "float"}, - "tcpfastopencookietimeout": {"no_log": False, "type": "float"}, - "tcpfintimeout": {"no_log": False, "type": "float"}, - "tcpmaxretries": {"no_log": False, "type": "float"}, - "ws": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "wsval": {"no_log": False, "type": "float"}, + "synholdfastgiveup": {"no_log": False, "type": "raw"}, + "tcpfastopencookietimeout": {"no_log": False, "type": "raw"}, + "tcpfintimeout": {"no_log": False, "type": "raw"}, + "tcpmaxretries": {"no_log": False, "type": "raw"}, + "ws": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "wsval": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -41375,185 +41268,185 @@ "ackaggregation": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ackonpush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "applyadaptivetcp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "buffersize": {"no_log": False, "type": "float"}, + "buffersize": {"no_log": False, "type": "raw"}, "burstratecontrol": { "choices": ["DISABLED", "DYNAMIC", "FIXED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientiptcpoption": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "clientiptcpoptionnumber": {"no_log": False, "type": "float"}, - "delayedack": {"no_log": False, "type": "float"}, + "clientiptcpoptionnumber": {"no_log": False, "type": "raw"}, + "delayedack": {"no_log": False, "type": "raw"}, "dropestconnontimeout": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "drophalfclosedconnontimeout": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dsack": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dupackthresh": {"no_log": False, "type": "float"}, + "dupackthresh": {"no_log": False, "type": "raw"}, "dynamicreceivebuffering": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ecn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, + "ecn": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, "establishclientconn": { "choices": ["AUTOMATIC", "CONN_ESTABLISHED", "ON_FIRST_DATA"], "no_log": False, - "type": "str", + "type": "raw", }, "fack": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "flavor": { "choices": ["BIC", "CUBIC", "Default", "Nile", "Westwood"], "no_log": False, - "type": "str", + "type": "raw", }, "frto": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "hystart": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "initialcwnd": {"no_log": False, "type": "float"}, - "ka": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "kaconnidletime": {"no_log": False, "type": "float"}, - "kamaxprobes": {"no_log": False, "type": "float"}, - "kaprobeinterval": {"no_log": False, "type": "float"}, + "initialcwnd": {"no_log": False, "type": "raw"}, + "ka": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "kaconnidletime": {"no_log": False, "type": "raw"}, + "kamaxprobes": {"no_log": False, "type": "raw"}, + "kaprobeinterval": {"no_log": False, "type": "raw"}, "kaprobeupdatelastactivity": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxburst": {"no_log": False, "type": "float"}, - "maxcwnd": {"no_log": False, "type": "float"}, - "maxpktpermss": {"no_log": False, "type": "float"}, - "minrto": {"no_log": False, "type": "float"}, + "maxburst": {"no_log": False, "type": "raw"}, + "maxcwnd": {"no_log": False, "type": "raw"}, + "maxpktpermss": {"no_log": False, "type": "raw"}, + "minrto": {"no_log": False, "type": "raw"}, "mpcapablecbit": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "mptcp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "mptcpdropdataonpreestsf": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "mptcpfastopen": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "mptcpsessiontimeout": {"no_log": False, "type": "float"}, - "mss": {"no_log": False, "type": "float"}, + "mptcpsessiontimeout": {"no_log": False, "type": "raw"}, + "mss": {"no_log": False, "type": "raw"}, "nagle": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, - "oooqsize": {"no_log": False, "type": "float"}, - "pktperretx": {"no_log": False, "type": "float"}, - "rateqmax": {"no_log": False, "type": "float"}, + "name": {"no_log": False, "type": "raw"}, + "oooqsize": {"no_log": False, "type": "raw"}, + "pktperretx": {"no_log": False, "type": "raw"}, + "rateqmax": {"no_log": False, "type": "raw"}, "rstmaxack": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "rstwindowattenuate": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sack": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sendbuffsize": {"no_log": False, "type": "float"}, + "sendbuffsize": {"no_log": False, "type": "raw"}, "sendclientportintcpoption": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "slowstartincr": {"no_log": False, "type": "float"}, - "slowstartthreshold": {"no_log": False, "type": "float"}, + "slowstartincr": {"no_log": False, "type": "raw"}, + "slowstartthreshold": {"no_log": False, "type": "raw"}, "spoofsyndrop": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "syncookie": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "taillossprobe": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tcpfastopen": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "tcpfastopencookiesize": {"no_log": False, "type": "float"}, + "tcpfastopencookiesize": {"no_log": False, "type": "raw"}, "tcpmode": { "choices": ["ENDPOINT", "TRANSPARENT"], "no_log": False, - "type": "str", + "type": "raw", }, - "tcprate": {"no_log": False, "type": "float"}, + "tcprate": {"no_log": False, "type": "raw"}, "tcpsegoffload": { "choices": ["AUTOMATIC", "DISABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "timestamp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ws": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "wsval": {"no_log": False, "type": "float"}, + "ws": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "wsval": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -41655,22 +41548,22 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "anyclient": {"no_log": False, "type": "float"}, - "anyserver": {"no_log": False, "type": "float"}, - "anytcpclient": {"no_log": False, "type": "float"}, - "anytcpserver": {"no_log": False, "type": "float"}, + "anyclient": {"no_log": False, "type": "raw"}, + "anyserver": {"no_log": False, "type": "raw"}, + "anytcpclient": {"no_log": False, "type": "raw"}, + "anytcpserver": {"no_log": False, "type": "raw"}, "client": {"no_log": False, "type": "float"}, - "halfclose": {"no_log": False, "type": "float"}, - "httpclient": {"no_log": False, "type": "float"}, - "httpserver": {"no_log": False, "type": "float"}, - "newconnidletimeout": {"no_log": False, "type": "float"}, - "nontcpzombie": {"no_log": False, "type": "float"}, - "reducedfintimeout": {"no_log": False, "type": "float"}, - "reducedrsttimeout": {"no_log": False, "type": "float"}, + "halfclose": {"no_log": False, "type": "raw"}, + "httpclient": {"no_log": False, "type": "raw"}, + "httpserver": {"no_log": False, "type": "raw"}, + "newconnidletimeout": {"no_log": False, "type": "raw"}, + "nontcpzombie": {"no_log": False, "type": "raw"}, + "reducedfintimeout": {"no_log": False, "type": "raw"}, + "reducedrsttimeout": {"no_log": False, "type": "raw"}, "server": {"no_log": False, "type": "float"}, - "tcpclient": {"no_log": False, "type": "float"}, - "tcpserver": {"no_log": False, "type": "float"}, - "zombie": {"no_log": False, "type": "float"}, + "tcpclient": {"no_log": False, "type": "raw"}, + "tcpserver": {"no_log": False, "type": "raw"}, + "zombie": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -41722,9 +41615,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "interval": {"no_log": False, "type": "int"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "interval": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "nstimer_autoscalepolicy_binding": { "no_log": False, @@ -41742,7 +41635,7 @@ }, "type": "dict", }, - "unit": {"choices": ["MIN", "SEC"], "no_log": False, "type": "str"}, + "unit": {"choices": ["MIN", "SEC"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["comment", "interval", "name", "unit"], @@ -42129,17 +42022,17 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "expires": {"no_log": False, "type": "float"}, - "iffull": {"choices": ["lru", "undef"], "no_log": False, "type": "str"}, - "ifnovalue": {"choices": ["init", "undef"], "no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "expires": {"no_log": False, "type": "raw"}, + "iffull": {"choices": ["lru", "undef"], "no_log": False, "type": "raw"}, + "ifnovalue": {"choices": ["init", "undef"], "no_log": False, "type": "raw"}, "ifvaluetoobig": { "choices": ["truncate", "undef"], "no_log": False, - "type": "str", + "type": "raw", }, - "init": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "init": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "scope": { "choices": ["global", "transaction"], "no_log": False, @@ -42185,14 +42078,14 @@ "cpuyield": { "choices": ["DEFAULT", "NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "masterclockcpu1": { "choices": ["NO", "YES"], "no_log": False, "type": "str", }, - "ownernode": {"no_log": False, "type": "float"}, + "ownernode": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["cpuyield", "ownernode"], @@ -42220,9 +42113,9 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "buffersizemb": {"no_log": False, "type": "float"}, - "customreqhdrs": {"elements": "str", "no_log": False, "type": "list"}, - "customrsphdrs": {"elements": "str", "no_log": False, "type": "list"}, + "buffersizemb": {"no_log": False, "type": "raw"}, + "customreqhdrs": {"no_log": False, "type": "raw"}, + "customrsphdrs": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": ["buffersizemb", "customreqhdrs", "customrsphdrs"], @@ -42258,9 +42151,9 @@ "primary_key": "prefix", "primary_key_composite": [], "readwrite_arguments": { - "description": {"no_log": False, "type": "str"}, - "namespace": {"no_log": False, "type": "str"}, - "prefix": {"no_log": False, "type": "str"}, + "description": {"no_log": False, "type": "raw"}, + "namespace": {"no_log": False, "type": "raw"}, + "prefix": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["description", "namespace", "prefix"], @@ -42291,11 +42184,11 @@ "authentication": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "autokeylogsec": {"no_log": False, "type": "float"}, - "revokelogsec": {"no_log": False, "type": "float"}, - "trustedkey": {"elements": "int", "no_log": False, "type": "list"}, + "autokeylogsec": {"no_log": False, "type": "raw"}, + "revokelogsec": {"no_log": False, "type": "raw"}, + "trustedkey": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -42343,17 +42236,17 @@ "primary_key": "serverip", "primary_key_composite": ["servername"], "readwrite_arguments": { - "autokey": {"no_log": False, "type": "bool"}, - "key": {"no_log": False, "type": "float"}, - "maxpoll": {"no_log": False, "type": "float"}, - "minpoll": {"no_log": False, "type": "float"}, + "autokey": {"no_log": False, "type": "raw"}, + "key": {"no_log": False, "type": "raw"}, + "maxpoll": {"no_log": False, "type": "raw"}, + "minpoll": {"no_log": False, "type": "raw"}, "preferredntpserver": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "serverip": {"no_log": False, "type": "str"}, - "servername": {"no_log": False, "type": "str"}, + "serverip": {"no_log": False, "type": "raw"}, + "servername": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -42416,22 +42309,22 @@ "autonomusprefix": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "decrementprefixlifetimes": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "depricateprefix": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "ipv6prefix": {"no_log": False, "type": "str"}, - "onlinkprefix": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "prefixpreferredlifetime": {"no_log": False, "type": "float"}, - "prefixvalidelifetime": {"no_log": False, "type": "float"}, + "ipv6prefix": {"no_log": False, "type": "raw"}, + "onlinkprefix": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "prefixpreferredlifetime": {"no_log": False, "type": "raw"}, + "prefixvalidelifetime": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -42491,24 +42384,24 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "announcemulticount": {"no_log": False, "type": "float"}, + "announcemulticount": {"no_log": False, "type": "raw"}, "mapping": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxmaplife": {"no_log": False, "type": "float"}, - "minmaplife": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, + "maxmaplife": {"no_log": False, "type": "raw"}, + "minmaplife": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "peer": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "thirdparty": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -42554,9 +42447,9 @@ "primary_key_composite": [], "readwrite_arguments": { "ipaddress": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "pcpprofile": {"no_log": False, "type": "str"}, - "port": {"no_log": False, "type": "int"}, + "name": {"no_log": False, "type": "raw"}, + "pcpprofile": {"no_log": False, "type": "raw"}, + "port": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["name", "pcpprofile", "port"], @@ -42753,9 +42646,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "clientsecuritymessage": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "clientsecuritymessage": {"no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "type": { "choices": ["ADVANCED", "CLASSIC"], "no_log": False, @@ -42829,26 +42722,26 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "bodyexpr": {"no_log": False, "type": "str"}, - "cacheforsecs": {"no_log": False, "type": "float"}, - "comment": {"no_log": False, "type": "str"}, - "fullreqexpr": {"no_log": False, "type": "str"}, - "headers": {"elements": "str", "no_log": False, "type": "list"}, - "hostexpr": {"no_log": False, "type": "str"}, - "httpmethod": {"choices": ["GET", "POST"], "no_log": False, "type": "str"}, - "ipaddress": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "parameters": {"elements": "str", "no_log": False, "type": "list"}, - "port": {"no_log": False, "type": "int"}, - "resultexpr": {"no_log": False, "type": "str"}, + "bodyexpr": {"no_log": False, "type": "raw"}, + "cacheforsecs": {"no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, + "fullreqexpr": {"no_log": False, "type": "raw"}, + "headers": {"no_log": False, "type": "raw"}, + "hostexpr": {"no_log": False, "type": "raw"}, + "httpmethod": {"choices": ["GET", "POST"], "no_log": False, "type": "raw"}, + "ipaddress": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "parameters": {"no_log": False, "type": "raw"}, + "port": {"no_log": False, "type": "raw"}, + "resultexpr": {"no_log": False, "type": "raw"}, "returntype": { "choices": ["BOOL", "NUM", "TEXT"], "no_log": False, "type": "str", }, "scheme": {"choices": ["http", "https"], "no_log": False, "type": "str"}, - "urlstemexpr": {"no_log": False, "type": "str"}, - "vserver": {"no_log": False, "type": "str"}, + "urlstemexpr": {"no_log": False, "type": "raw"}, + "vserver": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -42924,7 +42817,7 @@ "password_keys": [], "primary_key": "", "primary_key_composite": [], - "readwrite_arguments": {"timeout": {"no_log": False, "type": "float"}}, + "readwrite_arguments": {"timeout": {"no_log": False, "type": "raw"}}, "singleton": True, "update_payload_keys": ["timeout"], }, @@ -43161,8 +43054,8 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "policystringmap_pattern_binding": { "no_log": False, "options": { @@ -43296,8 +43189,8 @@ "primary_key_composite": [], "readwrite_arguments": { "nodeid": {"no_log": False, "type": "float"}, - "reqbandsize": {"no_log": False, "type": "int"}, - "respbandsize": {"no_log": False, "type": "int"}, + "reqbandsize": {"no_log": False, "type": "raw"}, + "respbandsize": {"no_log": False, "type": "raw"}, "type": { "choices": ["MQTT_JUMBO_REQ", "REQUEST", "RESPONSE"], "no_log": False, @@ -43364,13 +43257,13 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "routingalgorithm": { "choices": ["PLAINTEXT"], "no_log": False, - "type": "str", + "type": "raw", }, - "serveridlength": {"no_log": False, "type": "float"}, + "serveridlength": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["name", "routingalgorithm", "serveridlength"], @@ -43397,9 +43290,7 @@ "password_keys": [], "primary_key": "", "primary_key_composite": [], - "readwrite_arguments": { - "quicsecrettimeout": {"no_log": False, "type": "float"} - }, + "readwrite_arguments": {"quicsecrettimeout": {"no_log": False, "type": "raw"}}, "singleton": True, "update_payload_keys": ["quicsecrettimeout"], }, @@ -43472,35 +43363,35 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "ackdelayexponent": {"no_log": False, "type": "float"}, - "activeconnectionidlimit": {"no_log": False, "type": "float"}, + "ackdelayexponent": {"no_log": False, "type": "raw"}, + "activeconnectionidlimit": {"no_log": False, "type": "raw"}, "activeconnectionmigration": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "congestionctrlalgorithm": { "choices": ["BBR", "CUBIC", "Default", "NewReno"], "no_log": False, - "type": "str", - }, - "initialmaxdata": {"no_log": False, "type": "float"}, - "initialmaxstreamdatabidilocal": {"no_log": False, "type": "float"}, - "initialmaxstreamdatabidiremote": {"no_log": False, "type": "float"}, - "initialmaxstreamdatauni": {"no_log": False, "type": "float"}, - "initialmaxstreamsbidi": {"no_log": False, "type": "float"}, - "initialmaxstreamsuni": {"no_log": False, "type": "float"}, - "maxackdelay": {"no_log": False, "type": "float"}, - "maxidletimeout": {"no_log": False, "type": "float"}, - "maxudpdatagramsperburst": {"no_log": False, "type": "float"}, - "maxudppayloadsize": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, - "newtokenvalidityperiod": {"no_log": False, "type": "float"}, - "retrytokenvalidityperiod": {"no_log": False, "type": "float"}, + "type": "raw", + }, + "initialmaxdata": {"no_log": False, "type": "raw"}, + "initialmaxstreamdatabidilocal": {"no_log": False, "type": "raw"}, + "initialmaxstreamdatabidiremote": {"no_log": False, "type": "raw"}, + "initialmaxstreamdatauni": {"no_log": False, "type": "raw"}, + "initialmaxstreamsbidi": {"no_log": False, "type": "raw"}, + "initialmaxstreamsuni": {"no_log": False, "type": "raw"}, + "maxackdelay": {"no_log": False, "type": "raw"}, + "maxidletimeout": {"no_log": False, "type": "raw"}, + "maxudpdatagramsperburst": {"no_log": False, "type": "raw"}, + "maxudppayloadsize": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "newtokenvalidityperiod": {"no_log": False, "type": "raw"}, + "retrytokenvalidityperiod": {"no_log": False, "type": "raw"}, "statelessaddressvalidation": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -43639,75 +43530,75 @@ "addusernameinrdpfile": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "audiocapturemode": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, "keyboardhook": { "choices": ["InFullScreenMode", "OnLocal", "OnRemote"], "no_log": False, - "type": "str", + "type": "raw", }, "multimonitorsupport": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, - "psk": {"no_log": True, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "psk": {"no_log": True, "type": "raw"}, "randomizerdpfilename": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "rdpcookievalidity": {"no_log": False, "type": "float"}, - "rdpcustomparams": {"no_log": False, "type": "str"}, - "rdpfilename": {"no_log": False, "type": "str"}, - "rdphost": {"no_log": False, "type": "str"}, - "rdplinkattribute": {"no_log": False, "type": "str"}, - "rdplistener": {"no_log": False, "type": "str"}, + "rdpcookievalidity": {"no_log": False, "type": "raw"}, + "rdpcustomparams": {"no_log": False, "type": "raw"}, + "rdpfilename": {"no_log": False, "type": "raw"}, + "rdphost": {"no_log": False, "type": "raw"}, + "rdplinkattribute": {"no_log": False, "type": "raw"}, + "rdplistener": {"no_log": False, "type": "raw"}, "rdpurloverride": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, "rdpvalidateclientip": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, "redirectclipboard": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, "redirectcomports": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, "redirectdrives": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, "redirectpnpdevices": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, "redirectprinters": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, "videoplaybackmode": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -43795,14 +43686,14 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "name": {"no_log": False, "type": "str"}, - "psk": {"no_log": True, "type": "str"}, - "rdpip": {"no_log": False, "type": "str"}, - "rdpport": {"no_log": False, "type": "float"}, + "name": {"no_log": False, "type": "raw"}, + "psk": {"no_log": True, "type": "raw"}, + "rdpip": {"no_log": False, "type": "raw"}, + "rdpport": {"no_log": False, "type": "raw"}, "rdpredirection": { "choices": ["DISABLE", "ENABLE"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -43955,10 +43846,10 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "proxypassword": {"no_log": True, "type": "str"}, - "proxyport": {"no_log": False, "type": "float"}, - "proxyserver": {"no_log": False, "type": "str"}, - "proxyusername": {"no_log": False, "type": "str"}, + "proxypassword": {"no_log": True, "type": "raw"}, + "proxyport": {"no_log": False, "type": "raw"}, + "proxyserver": {"no_log": False, "type": "raw"}, + "proxyusername": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -44021,13 +43912,13 @@ "no_log": False, "type": "str", }, - "comment": {"no_log": False, "type": "str"}, - "headers": {"elements": "str", "no_log": False, "type": "list"}, + "comment": {"no_log": False, "type": "raw"}, + "headers": {"no_log": False, "type": "raw"}, "htmlpage": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "reasonphrase": {"no_log": False, "type": "str"}, - "responsestatuscode": {"no_log": False, "type": "float"}, + "reasonphrase": {"no_log": False, "type": "raw"}, + "responsestatuscode": {"no_log": False, "type": "raw"}, "target": {"no_log": False, "type": "str"}, "type": { "choices": [ @@ -44207,8 +44098,8 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "timeout": {"no_log": False, "type": "float"}, - "undefaction": {"no_log": False, "type": "str"}, + "timeout": {"no_log": False, "type": "raw"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": ["timeout", "undefaction"], @@ -44254,10 +44145,10 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "appflowaction": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "appflowaction": {"no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "responderpolicylabel_responderpolicy_binding": { "no_log": False, @@ -44276,7 +44167,7 @@ "type": "dict", }, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -44455,12 +44346,12 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "refinesearch": {"no_log": False, "type": "str"}, + "refinesearch": {"no_log": False, "type": "raw"}, "search": {"no_log": False, "type": "str"}, - "stringbuilderexpr": {"no_log": False, "type": "str"}, + "stringbuilderexpr": {"no_log": False, "type": "raw"}, "target": {"no_log": False, "type": "str"}, "type": { "choices": [ @@ -44635,8 +44526,8 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "timeout": {"no_log": False, "type": "float"}, - "undefaction": {"no_log": False, "type": "str"}, + "timeout": {"no_log": False, "type": "raw"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": ["timeout", "undefaction"], @@ -44681,9 +44572,9 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rewritepolicylabel_rewritepolicy_binding": { "no_log": False, @@ -44702,7 +44593,7 @@ "type": "dict", }, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -44908,19 +44799,19 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "aclname": {"no_log": False, "type": "str"}, + "aclname": {"no_log": False, "type": "raw"}, "connfailover": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "natip": {"no_log": False, "type": "str"}, - "netmask": {"no_log": False, "type": "str"}, - "network": {"no_log": False, "type": "str"}, + "netmask": {"no_log": False, "type": "raw"}, + "network": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "ownergroup": {"no_log": False, "type": "str"}, - "redirectport": {"no_log": False, "type": "int"}, + "ownergroup": {"no_log": False, "type": "raw"}, + "redirectport": {"no_log": False, "type": "raw"}, "rnat6_nsip6_binding": { "no_log": False, "options": { @@ -44988,13 +44879,13 @@ "srcippersistency": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "td": {"no_log": False, "type": "float"}, + "td": {"no_log": False, "type": "raw"}, "useproxyport": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -45051,10 +44942,10 @@ "primary_key_composite": [], "readwrite_arguments": { "acl6name": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "network": {"no_log": False, "type": "str"}, - "ownergroup": {"no_log": False, "type": "str"}, - "redirectport": {"no_log": False, "type": "int"}, + "ownergroup": {"no_log": False, "type": "raw"}, + "redirectport": {"no_log": False, "type": "raw"}, "rnat6_nsip6_binding": { "no_log": False, "options": { @@ -45074,7 +44965,7 @@ "srcippersistency": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "td": {"no_log": False, "type": "float"}, }, @@ -45226,12 +45117,12 @@ "srcippersistency": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tcpproxy": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -45328,23 +45219,22 @@ "advertise": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "cost": {"no_log": False, "type": "float"}, - "cost1": {"no_log": False, "type": "float"}, + "cost1": {"no_log": False, "type": "raw"}, "detail": {"no_log": False, "type": "bool"}, - "distance": {"no_log": False, "type": "float"}, - "gateway": {"no_log": False, "type": "str"}, - "monitor": {"no_log": False, "type": "str"}, - "msr": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "netmask": {"no_log": False, "type": "str"}, - "network": {"no_log": False, "type": "str"}, + "distance": {"no_log": False, "type": "raw"}, + "gateway": {"no_log": False, "type": "raw"}, + "monitor": {"no_log": False, "type": "raw"}, + "msr": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "netmask": {"no_log": False, "type": "raw"}, + "network": {"no_log": False, "type": "raw"}, "ownergroup": {"no_log": False, "type": "str"}, "protocol": { "choices": ["BGP", "ISIS", "OSPF", "RIP"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "routetype": { "choices": [ @@ -45359,9 +45249,9 @@ "no_log": False, "type": "str", }, - "td": {"no_log": False, "type": "float"}, + "td": {"no_log": False, "type": "raw"}, "vlan": {"no_log": False, "type": "float"}, - "weight": {"no_log": False, "type": "float"}, + "weight": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -45437,15 +45327,15 @@ "advertise": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "cost": {"no_log": False, "type": "float"}, + "cost": {"no_log": False, "type": "raw"}, "detail": {"no_log": False, "type": "bool"}, - "distance": {"no_log": False, "type": "float"}, - "gateway": {"no_log": False, "type": "str"}, - "monitor": {"no_log": False, "type": "str"}, - "msr": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "network": {"no_log": False, "type": "str"}, + "distance": {"no_log": False, "type": "raw"}, + "gateway": {"no_log": False, "type": "raw"}, + "monitor": {"no_log": False, "type": "raw"}, + "msr": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "network": {"no_log": False, "type": "raw"}, "ownergroup": {"no_log": False, "type": "str"}, "routetype": { "choices": [ @@ -45462,10 +45352,10 @@ "no_log": False, "type": "str", }, - "td": {"no_log": False, "type": "float"}, - "vlan": {"no_log": False, "type": "float"}, - "vxlan": {"no_log": False, "type": "float"}, - "weight": {"no_log": False, "type": "float"}, + "td": {"no_log": False, "type": "raw"}, + "vlan": {"no_log": False, "type": "raw"}, + "vxlan": {"no_log": False, "type": "raw"}, + "weight": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -45513,7 +45403,7 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "commandstring": {"no_log": False, "type": "str"}, + "commandstring": {"no_log": False, "type": "raw"}, "nodeid": {"no_log": False, "type": "float"}, }, "singleton": False, @@ -45596,7 +45486,7 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, "delay": {"no_log": False, "type": "float"}, "domain": {"no_log": False, "type": "str"}, "domainresolvenow": {"no_log": False, "type": "bool"}, @@ -45605,7 +45495,7 @@ "internal": {"no_log": False, "type": "bool"}, "ipaddress": {"no_log": False, "type": "str"}, "ipv6address": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "querytype": { "choices": ["A", "AAAA", "SRV"], @@ -45749,71 +45639,71 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "accessdown": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "accessdown": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "all": {"no_log": False, "type": "bool"}, "appflowlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "cachetype": { "choices": ["FORWARD", "REVERSE", "TRANSPARENT"], "no_log": False, "type": "str", }, - "cip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "cipheader": {"no_log": False, "type": "str"}, - "cka": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "cip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "cipheader": {"no_log": False, "type": "raw"}, + "cka": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "cleartextport": {"no_log": False, "type": "int"}, - "clttimeout": {"no_log": False, "type": "float"}, - "cmp": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "contentinspectionprofilename": {"no_log": False, "type": "str"}, - "customserverid": {"no_log": False, "type": "str"}, + "clttimeout": {"no_log": False, "type": "raw"}, + "cmp": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, + "contentinspectionprofilename": {"no_log": False, "type": "raw"}, + "customserverid": {"no_log": False, "type": "raw"}, "delay": {"no_log": False, "type": "float"}, - "dnsprofilename": {"no_log": False, "type": "str"}, + "dnsprofilename": {"no_log": False, "type": "raw"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "graceful": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "hashid": {"no_log": False, "type": "float"}, - "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "httpprofilename": {"no_log": False, "type": "str"}, + "hashid": {"no_log": False, "type": "raw"}, + "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "httpprofilename": {"no_log": False, "type": "raw"}, "internal": {"no_log": False, "type": "bool"}, "ip": {"no_log": False, "type": "str"}, "ipaddress": {"no_log": False, "type": "str"}, - "maxbandwidth": {"no_log": False, "type": "float"}, - "maxclient": {"no_log": False, "type": "float"}, - "maxreq": {"no_log": False, "type": "float"}, + "maxbandwidth": {"no_log": False, "type": "raw"}, + "maxclient": {"no_log": False, "type": "raw"}, + "maxreq": {"no_log": False, "type": "raw"}, "monconnectionclose": { "choices": ["FIN", "RESET"], "no_log": False, - "type": "str", + "type": "raw", }, "monitor_name_svc": {"no_log": False, "type": "str"}, - "monthreshold": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, - "netprofile": {"no_log": False, "type": "str"}, + "monthreshold": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "netprofile": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "pathmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "pathmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "pathmonitorindv": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "port": {"no_log": False, "type": "int"}, "processlocal": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "rtspsessionidremap": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "serverid": {"no_log": False, "type": "float"}, "servername": {"no_log": False, "type": "str"}, @@ -45919,13 +45809,13 @@ "no_log": False, "type": "str", }, - "sp": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "svrtimeout": {"no_log": False, "type": "float"}, - "tcpb": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "tcpprofilename": {"no_log": False, "type": "str"}, + "sp": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "svrtimeout": {"no_log": False, "type": "raw"}, + "tcpb": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "tcpprofilename": {"no_log": False, "type": "raw"}, "td": {"no_log": False, "type": "float"}, - "useproxyport": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "usip": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "useproxyport": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "usip": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "weight": {"no_log": False, "type": "float"}, }, "singleton": False, @@ -46133,79 +46023,79 @@ "appflowlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "autodelayedtrofs": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "autodisabledelay": {"no_log": False, "type": "float"}, + "autodisabledelay": {"no_log": False, "type": "raw"}, "autodisablegraceful": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "autoscale": { "choices": ["API", "CLOUD", "DISABLED", "DNS", "POLICY"], "no_log": False, "type": "str", }, - "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "cacheable": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "cachetype": { "choices": ["FORWARD", "REVERSE", "TRANSPARENT"], "no_log": False, "type": "str", }, - "cip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "cipheader": {"no_log": False, "type": "str"}, - "cka": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "clttimeout": {"no_log": False, "type": "float"}, - "cmp": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "customserverid": {"no_log": False, "type": "str"}, - "dbsttl": {"no_log": False, "type": "float"}, + "cip": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "cipheader": {"no_log": False, "type": "raw"}, + "cka": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "clttimeout": {"no_log": False, "type": "raw"}, + "cmp": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "comment": {"no_log": False, "type": "raw"}, + "customserverid": {"no_log": False, "type": "raw"}, + "dbsttl": {"no_log": False, "type": "raw"}, "delay": {"no_log": False, "type": "float"}, "downstateflush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dup_weight": {"no_log": False, "type": "float"}, + "dup_weight": {"no_log": False, "type": "raw"}, "graceful": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "hashid": {"no_log": False, "type": "float"}, - "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "httpprofilename": {"no_log": False, "type": "str"}, + "hashid": {"no_log": False, "type": "raw"}, + "healthmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "httpprofilename": {"no_log": False, "type": "raw"}, "includemembers": {"no_log": False, "type": "bool"}, - "maxbandwidth": {"no_log": False, "type": "float"}, - "maxclient": {"no_log": False, "type": "float"}, - "maxreq": {"no_log": False, "type": "float"}, + "maxbandwidth": {"no_log": False, "type": "raw"}, + "maxclient": {"no_log": False, "type": "raw"}, + "maxreq": {"no_log": False, "type": "raw"}, "memberport": {"no_log": False, "type": "int"}, "monconnectionclose": { "choices": ["FIN", "RESET"], "no_log": False, - "type": "str", + "type": "raw", }, - "monitor_name_svc": {"no_log": False, "type": "str"}, - "monthreshold": {"no_log": False, "type": "float"}, - "nameserver": {"no_log": False, "type": "str"}, - "netprofile": {"no_log": False, "type": "str"}, + "monitor_name_svc": {"no_log": False, "type": "raw"}, + "monthreshold": {"no_log": False, "type": "raw"}, + "nameserver": {"no_log": False, "type": "raw"}, + "netprofile": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "order": {"no_log": False, "type": "float"}, - "pathmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "order": {"no_log": False, "type": "raw"}, + "pathmonitor": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "pathmonitorindv": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "port": {"no_log": False, "type": "int"}, + "port": {"no_log": False, "type": "raw"}, "rtspsessionidremap": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "serverid": {"no_log": False, "type": "float"}, - "servername": {"no_log": False, "type": "str"}, + "servername": {"no_log": False, "type": "raw"}, "servicegroup_lbmonitor_binding": { "no_log": False, "options": { @@ -46238,7 +46128,7 @@ }, "type": "dict", }, - "servicegroupname": {"no_log": False, "type": "str"}, + "servicegroupname": {"no_log": False, "type": "raw"}, "servicetype": { "choices": [ "ADNS", @@ -46293,14 +46183,14 @@ "no_log": False, "type": "str", }, - "sp": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "svrtimeout": {"no_log": False, "type": "float"}, - "tcpb": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "tcpprofilename": {"no_log": False, "type": "str"}, + "sp": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "svrtimeout": {"no_log": False, "type": "raw"}, + "tcpb": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "tcpprofilename": {"no_log": False, "type": "raw"}, "td": {"no_log": False, "type": "float"}, - "useproxyport": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "usip": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "weight": {"no_log": False, "type": "float"}, + "useproxyport": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "usip": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "weight": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -46504,16 +46394,16 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "addrnpi": {"no_log": False, "type": "float"}, - "addrrange": {"no_log": False, "type": "str"}, - "addrton": {"no_log": False, "type": "float"}, + "addrnpi": {"no_log": False, "type": "raw"}, + "addrrange": {"no_log": False, "type": "raw"}, + "addrton": {"no_log": False, "type": "raw"}, "clientmode": { "choices": ["RECEIVERONLY", "TRANSCEIVER", "TRANSMITTERONLY"], "no_log": False, - "type": "str", + "type": "raw", }, - "msgqueue": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "msgqueuesize": {"no_log": False, "type": "float"}, + "msgqueue": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "msgqueuesize": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -46602,16 +46492,16 @@ "logging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "normalvalue": {"no_log": False, "type": "float"}, + "normalvalue": {"no_log": False, "type": "raw"}, "severity": { "choices": ["Critical", "Informational", "Major", "Minor", "Warning"], "no_log": False, - "type": "str", + "type": "raw", }, - "thresholdvalue": {"no_log": False, "type": "float"}, - "time": {"no_log": False, "type": "float"}, + "thresholdvalue": {"no_log": False, "type": "raw"}, + "time": {"no_log": False, "type": "raw"}, "trapname": { "choices": [ "1024KEY-EXCHANGE-RATE", @@ -46763,7 +46653,7 @@ "WARM-RESTART-EVENT", ], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -46833,7 +46723,7 @@ "primary_key_composite": [], "readwrite_arguments": { "engineid": {"no_log": False, "type": "str"}, - "ownernode": {"no_log": False, "type": "float"}, + "ownernode": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["engineid", "ownernode"], @@ -46895,9 +46785,9 @@ "primary_key": "ipaddress", "primary_key_composite": ["netmask"], "readwrite_arguments": { - "domainresolveretry": {"no_log": False, "type": "int"}, - "ipaddress": {"no_log": False, "type": "str"}, - "netmask": {"no_log": False, "type": "str"}, + "domainresolveretry": {"no_log": False, "type": "raw"}, + "ipaddress": {"no_log": False, "type": "raw"}, + "netmask": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["domainresolveretry", "ipaddress", "netmask"], @@ -46925,11 +46815,11 @@ "primary_key": "ownernode", "primary_key_composite": [], "readwrite_arguments": { - "contact": {"no_log": False, "type": "str"}, - "customid": {"no_log": False, "type": "str"}, - "location": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "ownernode": {"no_log": False, "type": "float"}, + "contact": {"no_log": False, "type": "raw"}, + "customid": {"no_log": False, "type": "raw"}, + "location": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "ownernode": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["contact", "customid", "location", "name", "ownernode"], @@ -46966,22 +46856,22 @@ "partitionnameintrap": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "severityinfointrap": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "snmpset": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "snmptraplogging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "snmptraplogginglevel": { "choices": [ @@ -46995,7 +46885,7 @@ "WARNING", ], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -47053,14 +46943,14 @@ "allpartitions": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "communityname": {"no_log": False, "type": "str"}, - "destport": {"no_log": False, "type": "int"}, + "communityname": {"no_log": False, "type": "raw"}, + "destport": {"no_log": False, "type": "raw"}, "severity": { "choices": ["Critical", "Informational", "Major", "Minor", "Warning"], "no_log": False, - "type": "str", + "type": "raw", }, "snmptrap_snmpuser_binding": { "no_log": False, @@ -47078,15 +46968,15 @@ }, "type": "dict", }, - "srcip": {"no_log": False, "type": "str"}, - "td": {"no_log": False, "type": "float"}, + "srcip": {"no_log": False, "type": "raw"}, + "td": {"no_log": False, "type": "raw"}, "trapclass": { "choices": ["generic", "specific"], "no_log": False, - "type": "str", + "type": "raw", }, - "trapdestination": {"no_log": False, "type": "str"}, - "version": {"choices": ["V1", "V2", "V3"], "no_log": False, "type": "str"}, + "trapdestination": {"no_log": False, "type": "raw"}, + "version": {"choices": ["V1", "V2", "V3"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -47193,12 +47083,12 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "authpasswd": {"no_log": True, "type": "str"}, - "authtype": {"choices": ["MD5", "SHA"], "no_log": False, "type": "str"}, + "authpasswd": {"no_log": True, "type": "raw"}, + "authtype": {"choices": ["MD5", "SHA"], "no_log": False, "type": "raw"}, "group": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "privpasswd": {"no_log": True, "type": "str"}, - "privtype": {"choices": ["AES", "DES"], "no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "privpasswd": {"no_log": True, "type": "raw"}, + "privtype": {"choices": ["AES", "DES"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -47314,8 +47204,8 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, @@ -47798,12 +47688,12 @@ "readwrite_arguments": { "bundle": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, "cert": {"no_log": False, "type": "str"}, - "certkey": {"no_log": False, "type": "str"}, + "certkey": {"no_log": False, "type": "raw"}, "deletefromdevice": {"no_log": False, "type": "bool"}, "expirymonitor": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "fipskey": {"no_log": False, "type": "str"}, "hsmkey": {"no_log": False, "type": "str"}, @@ -47815,7 +47705,7 @@ "key": {"no_log": False, "type": "str"}, "linkcertkeyname": {"no_log": False, "type": "str"}, "nodomaincheck": {"no_log": False, "type": "bool"}, - "notificationperiod": {"no_log": False, "type": "float"}, + "notificationperiod": {"no_log": False, "type": "raw"}, "ocspstaplingcache": {"no_log": False, "type": "bool"}, "passplain": {"no_log": True, "type": "str"}, "password": {"no_log": False, "type": "bool"}, @@ -47994,9 +47884,9 @@ "primary_key": "ciphergroupname", "primary_key_composite": [], "readwrite_arguments": { - "ciphergroupname": {"no_log": False, "type": "str"}, - "ciphername": {"no_log": False, "type": "str"}, - "cipherpriority": {"no_log": False, "type": "float"}, + "ciphergroupname": {"no_log": False, "type": "raw"}, + "ciphername": {"no_log": False, "type": "raw"}, + "cipherpriority": {"no_log": False, "type": "raw"}, "ciphgrpalias": {"no_log": False, "type": "str"}, "sslcipher_sslciphersuite_binding": { "no_log": False, @@ -48134,36 +48024,36 @@ "primary_key": "crlname", "primary_key_composite": [], "readwrite_arguments": { - "basedn": {"no_log": False, "type": "str"}, - "binary": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "binddn": {"no_log": False, "type": "str"}, - "cacert": {"no_log": False, "type": "str"}, + "basedn": {"no_log": False, "type": "raw"}, + "binary": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "binddn": {"no_log": False, "type": "raw"}, + "cacert": {"no_log": False, "type": "raw"}, "cacertfile": {"no_log": False, "type": "str"}, "cakeyfile": {"no_log": False, "type": "str"}, - "crlname": {"no_log": False, "type": "str"}, + "crlname": {"no_log": False, "type": "raw"}, "crlpath": {"no_log": False, "type": "str"}, - "day": {"no_log": False, "type": "float"}, + "day": {"no_log": False, "type": "raw"}, "gencrl": {"no_log": False, "type": "str"}, "indexfile": {"no_log": False, "type": "str"}, "inform": {"choices": ["DER", "PEM"], "no_log": False, "type": "str"}, "interval": { "choices": ["DAILY", "MONTHLY", "NONE", "NOW", "WEEKLY"], "no_log": False, - "type": "str", + "type": "raw", }, - "method": {"choices": ["HTTP", "LDAP"], "no_log": False, "type": "str"}, - "password": {"no_log": True, "type": "str"}, - "port": {"no_log": False, "type": "int"}, + "method": {"choices": ["HTTP", "LDAP"], "no_log": False, "type": "raw"}, + "password": {"no_log": True, "type": "raw"}, + "port": {"no_log": False, "type": "raw"}, "refresh": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "revoke": {"no_log": False, "type": "str"}, - "scope": {"choices": ["Base", "One"], "no_log": False, "type": "str"}, - "server": {"no_log": False, "type": "str"}, - "time": {"no_log": False, "type": "str"}, - "url": {"no_log": False, "type": "str"}, + "scope": {"choices": ["Base", "One"], "no_log": False, "type": "raw"}, + "server": {"no_log": False, "type": "raw"}, + "time": {"no_log": False, "type": "raw"}, + "url": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -48326,23 +48216,23 @@ "helloverifyrequest": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxbadmacignorecount": {"no_log": False, "type": "float"}, - "maxholdqlen": {"no_log": False, "type": "float"}, - "maxpacketsize": {"no_log": False, "type": "float"}, - "maxrecordsize": {"no_log": False, "type": "float"}, - "maxretrytime": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, + "maxbadmacignorecount": {"no_log": False, "type": "raw"}, + "maxholdqlen": {"no_log": False, "type": "raw"}, + "maxpacketsize": {"no_log": False, "type": "raw"}, + "maxrecordsize": {"no_log": False, "type": "raw"}, + "maxretrytime": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "pmtudiscovery": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "terminatesession": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -48426,7 +48316,7 @@ "primary_key_composite": [], "readwrite_arguments": { "fipsfw": {"no_log": False, "type": "str"}, - "hsmlabel": {"no_log": False, "type": "str"}, + "hsmlabel": {"no_log": False, "type": "raw"}, "inithsm": {"choices": ["Level-2"], "no_log": False, "type": "str"}, "oldsopassword": {"no_log": True, "type": "str"}, "sopassword": {"no_log": True, "type": "str"}, @@ -48750,26 +48640,26 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "ssllogclauth": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ssllogclauthfailures": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sslloghs": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sslloghsfailures": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -48843,29 +48733,29 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "batchingdelay": {"no_log": False, "type": "float"}, - "batchingdepth": {"no_log": False, "type": "float"}, + "batchingdelay": {"no_log": False, "type": "raw"}, + "batchingdepth": {"no_log": False, "type": "raw"}, "cache": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "cachetimeout": {"no_log": False, "type": "float"}, - "httpmethod": {"choices": ["GET", "POST"], "no_log": False, "type": "str"}, + "cachetimeout": {"no_log": False, "type": "raw"}, + "httpmethod": {"choices": ["GET", "POST"], "no_log": False, "type": "raw"}, "insertclientcert": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, - "ocspurlresolvetimeout": {"no_log": False, "type": "float"}, - "producedattimeskew": {"no_log": False, "type": "float"}, - "respondercert": {"no_log": False, "type": "str"}, - "resptimeout": {"no_log": False, "type": "float"}, - "signingcert": {"no_log": False, "type": "str"}, - "trustresponder": {"no_log": False, "type": "bool"}, + "name": {"no_log": False, "type": "raw"}, + "ocspurlresolvetimeout": {"no_log": False, "type": "raw"}, + "producedattimeskew": {"no_log": False, "type": "raw"}, + "respondercert": {"no_log": False, "type": "raw"}, + "resptimeout": {"no_log": False, "type": "raw"}, + "signingcert": {"no_log": False, "type": "raw"}, + "trustresponder": {"no_log": False, "type": "raw"}, "url": {"no_log": False, "type": "str"}, - "usenonce": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "usenonce": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -48936,12 +48826,12 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "crlmemorysizemb": {"no_log": False, "type": "float"}, - "cryptodevdisablelimit": {"no_log": False, "type": "float"}, + "crlmemorysizemb": {"no_log": False, "type": "raw"}, + "cryptodevdisablelimit": {"no_log": False, "type": "raw"}, "defaultprofile": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "denysslreneg": { "choices": [ @@ -48952,52 +48842,52 @@ "NONSECURE", ], "no_log": False, - "type": "str", + "type": "raw", }, "dropreqwithnohostheader": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "encrypttriggerpktcount": {"no_log": False, "type": "float"}, + "encrypttriggerpktcount": {"no_log": False, "type": "raw"}, "heterogeneoussslhw": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "hybridfipsmode": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "insertcertspace": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "insertionencoding": { "choices": ["UTF-8", "Unicode"], "no_log": False, - "type": "str", + "type": "raw", }, "ndcppcompliancecertcheck": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "ocspcachesize": {"no_log": False, "type": "float"}, - "operationqueuelimit": {"no_log": False, "type": "float"}, - "pushenctriggertimeout": {"no_log": False, "type": "float"}, - "pushflag": {"no_log": False, "type": "float"}, + "ocspcachesize": {"no_log": False, "type": "raw"}, + "operationqueuelimit": {"no_log": False, "type": "raw"}, + "pushenctriggertimeout": {"no_log": False, "type": "raw"}, + "pushflag": {"no_log": False, "type": "raw"}, "quantumsize": { - "choices": ["16384", "4096", "8192"], + "choices": [4096, 8192, 16384], "no_log": False, - "type": "str", + "type": "raw", }, "sendclosenotify": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "sigdigesttype": { "choices": [ @@ -49019,30 +48909,29 @@ "RSA-SHA384", "RSA-SHA512", ], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "snihttphostmatch": { "choices": ["CERT", "NO", "STRICT"], "no_log": False, - "type": "str", + "type": "raw", }, - "softwarecryptothreshold": {"no_log": False, "type": "float"}, + "softwarecryptothreshold": {"no_log": False, "type": "raw"}, "sslierrorcache": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sslimaxerrorcachemem": {"no_log": False, "type": "float"}, - "ssltriggertimeout": {"no_log": False, "type": "float"}, + "sslimaxerrorcachemem": {"no_log": False, "type": "raw"}, + "ssltriggertimeout": {"no_log": False, "type": "raw"}, "strictcachecks": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "undefactioncontrol": {"no_log": False, "type": "str"}, - "undefactiondata": {"no_log": False, "type": "str"}, + "undefactioncontrol": {"no_log": False, "type": "raw"}, + "undefactiondata": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -49175,8 +49064,8 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "reqaction": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, "sslpolicylabel_sslpolicy_binding": { @@ -49195,7 +49084,7 @@ }, "type": "dict", }, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["action", "comment", "name", "rule", "undefaction"], @@ -49468,43 +49357,43 @@ "allowextendedmastersecret": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "allowunknownsni": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "alpnprotocol": { "choices": ["HTTP1.1", "HTTP2", "NONE"], "no_log": False, - "type": "str", + "type": "raw", }, - "ciphername": {"no_log": False, "type": "str"}, - "cipherpriority": {"no_log": False, "type": "float"}, + "ciphername": {"no_log": False, "type": "raw"}, + "cipherpriority": {"no_log": False, "type": "raw"}, "cipherredirect": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "cipherurl": {"no_log": False, "type": "str"}, - "cleartextport": {"no_log": False, "type": "int"}, + "cipherurl": {"no_log": False, "type": "raw"}, + "cleartextport": {"no_log": False, "type": "raw"}, "clientauth": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientauthuseboundcachain": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientcert": { "choices": ["Mandatory", "Optional"], "no_log": False, - "type": "str", + "type": "raw", }, - "commonname": {"no_log": False, "type": "str"}, + "commonname": {"no_log": False, "type": "raw"}, "denysslreneg": { "choices": [ "ALL", @@ -49514,140 +49403,140 @@ "NONSECURE", ], "no_log": False, - "type": "str", + "type": "raw", }, - "dh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "dhcount": {"no_log": False, "type": "float"}, + "dh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "dhcount": {"no_log": False, "type": "raw"}, "dhekeyexchangewithpsk": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "dhfile": {"no_log": False, "type": "str"}, + "dhfile": {"no_log": False, "type": "raw"}, "dhkeyexpsizelimit": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dropreqwithnohostheader": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "encrypttriggerpktcount": {"no_log": False, "type": "float"}, + "encrypttriggerpktcount": {"no_log": False, "type": "raw"}, "ersa": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ersacount": {"no_log": False, "type": "float"}, + "ersacount": {"no_log": False, "type": "raw"}, "hsts": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "includesubdomains": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "insertionencoding": { "choices": ["UTF-8", "Unicode"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxage": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, + "maxage": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "ocspstapling": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "preload": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "prevsessionkeylifetime": {"no_log": False, "type": "float"}, + "preload": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "prevsessionkeylifetime": {"no_log": False, "type": "raw"}, "pushenctrigger": { "choices": ["Always", "Ignore", "Merge", "Timer"], "no_log": False, - "type": "str", + "type": "raw", }, - "pushenctriggertimeout": {"no_log": False, "type": "float"}, - "pushflag": {"no_log": False, "type": "float"}, + "pushenctriggertimeout": {"no_log": False, "type": "raw"}, + "pushflag": {"no_log": False, "type": "raw"}, "quantumsize": { - "choices": ["16384", "4096", "8192"], + "choices": [4096, 8192, 16384], "no_log": False, - "type": "str", + "type": "raw", }, "redirectportrewrite": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sendclosenotify": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "serverauth": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sessionkeylifetime": {"no_log": False, "type": "float"}, + "sessionkeylifetime": {"no_log": False, "type": "raw"}, "sessionticket": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sessionticketkeydata": {"no_log": True, "type": "str"}, + "sessionticketkeydata": {"no_log": True, "type": "raw"}, "sessionticketkeyrefresh": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sessionticketlifetime": {"no_log": False, "type": "float"}, + "sessionticketlifetime": {"no_log": False, "type": "raw"}, "sessreuse": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sesstimeout": {"no_log": False, "type": "float"}, + "sesstimeout": {"no_log": False, "type": "raw"}, "skipclientcertpolicycheck": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "snienable": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "snihttphostmatch": { "choices": ["CERT", "NO", "STRICT"], "no_log": False, - "type": "str", + "type": "raw", }, "ssl3": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sslimaxsessperserver": {"no_log": False, "type": "float"}, + "sslimaxsessperserver": {"no_log": False, "type": "raw"}, "sslinterception": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ssliocspcheck": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sslireneg": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ssllogprofile": {"no_log": False, "type": "str"}, + "ssllogprofile": {"no_log": False, "type": "raw"}, "sslprofile_ecccurve_binding": { "no_log": False, "options": { @@ -49720,44 +49609,44 @@ "sslredirect": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ssltriggertimeout": {"no_log": False, "type": "float"}, + "ssltriggertimeout": {"no_log": False, "type": "raw"}, "strictcachecks": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "strictsigdigestcheck": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls1": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls11": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls12": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls13": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "tls13sessionticketsperauthcontext": {"no_log": False, "type": "float"}, + "tls13sessionticketsperauthcontext": {"no_log": False, "type": "raw"}, "zerorttearlydata": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -50066,49 +49955,49 @@ "cipherredirect": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "cipherurl": {"no_log": False, "type": "str"}, + "cipherurl": {"no_log": False, "type": "raw"}, "clientauth": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientcert": { "choices": ["Mandatory", "Optional"], "no_log": False, - "type": "str", + "type": "raw", }, - "commonname": {"no_log": False, "type": "str"}, - "dh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "dhcount": {"no_log": False, "type": "float"}, - "dhfile": {"no_log": False, "type": "str"}, + "commonname": {"no_log": False, "type": "raw"}, + "dh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "dhcount": {"no_log": False, "type": "raw"}, + "dhfile": {"no_log": False, "type": "raw"}, "dhkeyexpsizelimit": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dtls1": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dtls12": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dtlsprofilename": {"no_log": False, "type": "str"}, + "dtlsprofilename": {"no_log": False, "type": "raw"}, "ersa": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ersacount": {"no_log": False, "type": "float"}, + "ersacount": {"no_log": False, "type": "raw"}, "ocspstapling": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "pushenctrigger": { "choices": ["Always", "Ignore", "Merge", "Timer"], @@ -50118,45 +50007,45 @@ "redirectportrewrite": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sendclosenotify": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "serverauth": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "servicename": {"no_log": False, "type": "str"}, + "servicename": {"no_log": False, "type": "raw"}, "sessreuse": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sesstimeout": {"no_log": False, "type": "float"}, + "sesstimeout": {"no_log": False, "type": "raw"}, "snienable": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ssl2": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ssl3": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sslprofile": {"no_log": False, "type": "str"}, + "sslprofile": {"no_log": False, "type": "raw"}, "sslredirect": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sslservice_ecccurve_binding": { "no_log": False, @@ -50305,33 +50194,33 @@ "sslv2redirect": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sslv2url": {"no_log": False, "type": "str"}, + "sslv2url": {"no_log": False, "type": "raw"}, "strictsigdigestcheck": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls1": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls11": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls12": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls13": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -50617,40 +50506,40 @@ "primary_key": "servicegroupname", "primary_key_composite": [], "readwrite_arguments": { - "commonname": {"no_log": False, "type": "str"}, + "commonname": {"no_log": False, "type": "raw"}, "ocspstapling": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sendclosenotify": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "serverauth": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "servicegroupname": {"no_log": False, "type": "str"}, + "servicegroupname": {"no_log": False, "type": "raw"}, "sessreuse": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sesstimeout": {"no_log": False, "type": "float"}, + "sesstimeout": {"no_log": False, "type": "raw"}, "snienable": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ssl3": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sslprofile": {"no_log": False, "type": "str"}, + "sslprofile": {"no_log": False, "type": "raw"}, "sslservicegroup_ecccurve_binding": { "no_log": False, "options": { @@ -50718,27 +50607,27 @@ "strictsigdigestcheck": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls1": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls11": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls12": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls13": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -50986,67 +50875,67 @@ "cipherredirect": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "cipherurl": {"no_log": False, "type": "str"}, - "cleartextport": {"no_log": False, "type": "int"}, + "cipherurl": {"no_log": False, "type": "raw"}, + "cleartextport": {"no_log": False, "type": "raw"}, "clientauth": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "clientcert": { "choices": ["Mandatory", "Optional"], "no_log": False, - "type": "str", + "type": "raw", }, - "dh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "str"}, - "dhcount": {"no_log": False, "type": "float"}, + "dh": {"choices": ["DISABLED", "ENABLED"], "no_log": False, "type": "raw"}, + "dhcount": {"no_log": False, "type": "raw"}, "dhekeyexchangewithpsk": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "dhfile": {"no_log": False, "type": "str"}, + "dhfile": {"no_log": False, "type": "raw"}, "dhkeyexpsizelimit": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dtls1": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "dtls12": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dtlsprofilename": {"no_log": False, "type": "str"}, + "dtlsprofilename": {"no_log": False, "type": "raw"}, "ersa": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "ersacount": {"no_log": False, "type": "float"}, + "ersacount": {"no_log": False, "type": "raw"}, "hsts": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "includesubdomains": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxage": {"no_log": False, "type": "float"}, + "maxage": {"no_log": False, "type": "raw"}, "ocspstapling": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "preload": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, + "preload": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, "pushenctrigger": { "choices": ["Always", "Ignore", "Merge", "Timer"], "no_log": False, @@ -51055,46 +50944,46 @@ "redirectportrewrite": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sendclosenotify": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "sessreuse": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sesstimeout": {"no_log": False, "type": "float"}, + "sesstimeout": {"no_log": False, "type": "raw"}, "snienable": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ssl2": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ssl3": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sslprofile": {"no_log": False, "type": "str"}, + "sslprofile": {"no_log": False, "type": "raw"}, "sslredirect": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sslv2redirect": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sslv2url": {"no_log": False, "type": "str"}, + "sslv2url": {"no_log": False, "type": "raw"}, "sslvserver_appfwpolicy_binding": { "no_log": False, "options": { @@ -51322,34 +51211,34 @@ "strictsigdigestcheck": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls1": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls11": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls12": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tls13": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "tls13sessionticketsperauthcontext": {"no_log": False, "type": "float"}, - "vservername": {"no_log": False, "type": "str"}, + "tls13sessionticketsperauthcontext": {"no_log": False, "type": "raw"}, + "vservername": {"no_log": False, "type": "raw"}, "zerorttearlydata": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -51722,23 +51611,23 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "acceptancethreshold": {"no_log": False, "type": "str"}, + "acceptancethreshold": {"no_log": False, "type": "raw"}, "appflowlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "breachthreshold": {"no_log": False, "type": "float"}, - "interval": {"no_log": False, "type": "float"}, - "maxtransactionthreshold": {"no_log": False, "type": "float"}, - "mintransactionthreshold": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, - "samplecount": {"no_log": False, "type": "float"}, - "selectorname": {"no_log": False, "type": "str"}, + "breachthreshold": {"no_log": False, "type": "raw"}, + "interval": {"no_log": False, "type": "raw"}, + "maxtransactionthreshold": {"no_log": False, "type": "raw"}, + "mintransactionthreshold": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "samplecount": {"no_log": False, "type": "raw"}, + "selectorname": {"no_log": False, "type": "raw"}, "snmptrap": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "sort": { "choices": [ @@ -51750,17 +51639,17 @@ "RESPTIME_BREACHES", ], "no_log": False, - "type": "str", + "type": "raw", }, "trackackonlypackets": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "tracktransactions": { "choices": ["NONE", "RESPTIME"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -51880,35 +51769,35 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "cerrequesttimeout": {"no_log": False, "type": "float"}, - "healthcheck": {"choices": ["NO", "YES"], "no_log": False, "type": "str"}, - "healthcheckttl": {"no_log": False, "type": "float"}, + "cerrequesttimeout": {"no_log": False, "type": "raw"}, + "healthcheck": {"choices": ["NO", "YES"], "no_log": False, "type": "raw"}, + "healthcheckttl": {"no_log": False, "type": "raw"}, "holdonsubscriberabsence": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "idlettl": {"no_log": False, "type": "float"}, - "negativettl": {"no_log": False, "type": "float"}, + "negativettl": {"no_log": False, "type": "raw"}, "negativettllimitedsuccess": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, "nodeid": {"no_log": False, "type": "float"}, "pcrfrealm": {"no_log": False, "type": "str"}, "purgesdbongxfailure": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "requestretryattempts": {"no_log": False, "type": "float"}, - "requesttimeout": {"no_log": False, "type": "float"}, - "revalidationtimeout": {"no_log": False, "type": "float"}, - "service": {"no_log": False, "type": "str"}, - "servicepathavp": {"elements": "int", "no_log": False, "type": "list"}, - "servicepathvendorid": {"no_log": False, "type": "float"}, - "vserver": {"no_log": False, "type": "str"}, + "requestretryattempts": {"no_log": False, "type": "raw"}, + "requesttimeout": {"no_log": False, "type": "raw"}, + "revalidationtimeout": {"no_log": False, "type": "raw"}, + "service": {"no_log": False, "type": "raw"}, + "servicepathavp": {"no_log": False, "type": "raw"}, + "servicepathvendorid": {"no_log": False, "type": "raw"}, + "vserver": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -51955,20 +51844,20 @@ "idleaction": { "choices": ["ccrTerminate", "ccrUpdate", "delete"], "no_log": False, - "type": "str", + "type": "raw", }, - "idlettl": {"no_log": False, "type": "float"}, + "idlettl": {"no_log": False, "type": "raw"}, "interfacetype": { "choices": ["GxOnly", "None", "RadiusAndGx", "RadiusOnly"], "no_log": False, - "type": "str", + "type": "raw", }, "ipv6prefixlookuplist": { "elements": "int", "no_log": False, "type": "list", }, - "keytype": {"choices": ["IP", "IPANDVLAN"], "no_log": False, "type": "str"}, + "keytype": {"choices": ["IP", "IPANDVLAN"], "no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -52009,8 +51898,8 @@ "primary_key": "ip", "primary_key_composite": ["vlan"], "readwrite_arguments": { - "ip": {"no_log": False, "type": "str"}, - "servicepath": {"no_log": False, "type": "str"}, + "ip": {"no_log": False, "type": "raw"}, + "servicepath": {"no_log": False, "type": "raw"}, "subscriberrules": {"elements": "str", "no_log": False, "type": "list"}, "subscriptionidtype": { "choices": ["E164", "IMSI", "NAI", "PRIVATE", "SIP_URI"], @@ -52057,7 +51946,7 @@ "radiusinterimasstart": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -52227,8 +52116,8 @@ "primary_key_composite": [], "readwrite_arguments": { "communityname": {"no_log": False, "type": "str"}, - "datapath": {"no_log": False, "type": "str"}, - "loglevel": {"no_log": False, "type": "str"}, + "datapath": {"no_log": False, "type": "raw"}, + "loglevel": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": ["datapath", "loglevel"], @@ -52259,7 +52148,7 @@ "pemode": { "choices": ["CPUBOUND", "DEFAULT"], "no_log": False, - "type": "str", + "type": "raw", } }, "singleton": False, @@ -53359,12 +53248,11 @@ "readwrite_arguments": { "allowedmanagementinterface": { "choices": ["API", "CLI"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "groupname": {"no_log": False, "type": "str"}, - "promptstring": {"no_log": False, "type": "str"}, + "groupname": {"no_log": False, "type": "raw"}, + "promptstring": {"no_log": False, "type": "raw"}, "systemgroup_nspartition_binding": { "no_log": False, "options": { @@ -53413,7 +53301,7 @@ }, "type": "dict", }, - "timeout": {"no_log": False, "type": "float"}, + "timeout": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -53608,7 +53496,7 @@ "basicauth": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "cliloglevel": { "choices": [ @@ -53622,69 +53510,69 @@ "WARNING", ], "no_log": False, - "type": "str", + "type": "raw", }, "doppler": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "fipsusermode": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "forcepasswordchange": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "googleanalytics": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "localauth": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxsessionperuser": {"no_log": False, "type": "float"}, - "minpasswordlen": {"no_log": False, "type": "float"}, - "natpcbforceflushlimit": {"no_log": False, "type": "float"}, + "maxsessionperuser": {"no_log": False, "type": "raw"}, + "minpasswordlen": {"no_log": False, "type": "raw"}, + "natpcbforceflushlimit": {"no_log": False, "type": "raw"}, "natpcbrstontimeout": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "promptstring": {"no_log": False, "type": "str"}, + "promptstring": {"no_log": False, "type": "raw"}, "rbaonresponse": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "reauthonauthparamchange": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "removesensitivefiles": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "restrictedtimeout": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "strongpassword": { "choices": ["disabled", "enableall", "enablelocal"], "no_log": False, - "type": "str", + "type": "raw", }, - "timeout": {"no_log": False, "type": "float"}, - "totalauthtimeout": {"no_log": False, "type": "float"}, + "timeout": {"no_log": False, "type": "raw"}, + "totalauthtimeout": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -53851,23 +53739,22 @@ "readwrite_arguments": { "allowedmanagementinterface": { "choices": ["API", "CLI"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "externalauth": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "logging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxsession": {"no_log": False, "type": "float"}, + "maxsession": {"no_log": False, "type": "raw"}, "password": {"no_log": True, "type": "str"}, - "promptstring": {"no_log": False, "type": "str"}, + "promptstring": {"no_log": False, "type": "raw"}, "systemuser_nspartition_binding": { "no_log": False, "options": { @@ -53900,8 +53787,8 @@ }, "type": "dict", }, - "timeout": {"no_log": False, "type": "float"}, - "username": {"no_log": False, "type": "str"}, + "timeout": {"no_log": False, "type": "raw"}, + "username": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -54020,20 +53907,20 @@ "primary_key_composite": [], "readwrite_arguments": { "actionurl": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "namevaluepair": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "namevaluepair": {"no_log": False, "type": "raw"}, "nvtype": { "choices": ["DYNAMIC", "STATIC"], "no_log": False, - "type": "str", + "type": "raw", }, "passwdfield": {"no_log": False, "type": "str"}, - "responsesize": {"no_log": False, "type": "float"}, + "responsesize": {"no_log": False, "type": "raw"}, "ssosuccessrule": {"no_log": False, "type": "str"}, "submitmethod": { "choices": ["GET", "POST"], "no_log": False, - "type": "str", + "type": "raw", }, "userfield": {"no_log": False, "type": "str"}, }, @@ -54446,152 +54333,152 @@ "primary_key_composite": [], "readwrite_arguments": { "assertionconsumerserviceurl": {"no_log": False, "type": "str"}, - "attribute1": {"no_log": False, "type": "str"}, - "attribute10": {"no_log": False, "type": "str"}, + "attribute1": {"no_log": False, "type": "raw"}, + "attribute10": {"no_log": False, "type": "raw"}, "attribute10expr": {"no_log": False, "type": "str"}, "attribute10format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute10friendlyname": {"no_log": False, "type": "str"}, - "attribute11": {"no_log": False, "type": "str"}, + "attribute10friendlyname": {"no_log": False, "type": "raw"}, + "attribute11": {"no_log": False, "type": "raw"}, "attribute11expr": {"no_log": False, "type": "str"}, "attribute11format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute11friendlyname": {"no_log": False, "type": "str"}, - "attribute12": {"no_log": False, "type": "str"}, + "attribute11friendlyname": {"no_log": False, "type": "raw"}, + "attribute12": {"no_log": False, "type": "raw"}, "attribute12expr": {"no_log": False, "type": "str"}, "attribute12format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute12friendlyname": {"no_log": False, "type": "str"}, - "attribute13": {"no_log": False, "type": "str"}, + "attribute12friendlyname": {"no_log": False, "type": "raw"}, + "attribute13": {"no_log": False, "type": "raw"}, "attribute13expr": {"no_log": False, "type": "str"}, "attribute13format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute13friendlyname": {"no_log": False, "type": "str"}, - "attribute14": {"no_log": False, "type": "str"}, + "attribute13friendlyname": {"no_log": False, "type": "raw"}, + "attribute14": {"no_log": False, "type": "raw"}, "attribute14expr": {"no_log": False, "type": "str"}, "attribute14format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute14friendlyname": {"no_log": False, "type": "str"}, - "attribute15": {"no_log": False, "type": "str"}, + "attribute14friendlyname": {"no_log": False, "type": "raw"}, + "attribute15": {"no_log": False, "type": "raw"}, "attribute15expr": {"no_log": False, "type": "str"}, "attribute15format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute15friendlyname": {"no_log": False, "type": "str"}, - "attribute16": {"no_log": False, "type": "str"}, + "attribute15friendlyname": {"no_log": False, "type": "raw"}, + "attribute16": {"no_log": False, "type": "raw"}, "attribute16expr": {"no_log": False, "type": "str"}, "attribute16format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute16friendlyname": {"no_log": False, "type": "str"}, + "attribute16friendlyname": {"no_log": False, "type": "raw"}, "attribute1expr": {"no_log": False, "type": "str"}, "attribute1format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute1friendlyname": {"no_log": False, "type": "str"}, - "attribute2": {"no_log": False, "type": "str"}, + "attribute1friendlyname": {"no_log": False, "type": "raw"}, + "attribute2": {"no_log": False, "type": "raw"}, "attribute2expr": {"no_log": False, "type": "str"}, "attribute2format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute2friendlyname": {"no_log": False, "type": "str"}, - "attribute3": {"no_log": False, "type": "str"}, + "attribute2friendlyname": {"no_log": False, "type": "raw"}, + "attribute3": {"no_log": False, "type": "raw"}, "attribute3expr": {"no_log": False, "type": "str"}, "attribute3format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute3friendlyname": {"no_log": False, "type": "str"}, - "attribute4": {"no_log": False, "type": "str"}, + "attribute3friendlyname": {"no_log": False, "type": "raw"}, + "attribute4": {"no_log": False, "type": "raw"}, "attribute4expr": {"no_log": False, "type": "str"}, "attribute4format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute4friendlyname": {"no_log": False, "type": "str"}, - "attribute5": {"no_log": False, "type": "str"}, + "attribute4friendlyname": {"no_log": False, "type": "raw"}, + "attribute5": {"no_log": False, "type": "raw"}, "attribute5expr": {"no_log": False, "type": "str"}, "attribute5format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute5friendlyname": {"no_log": False, "type": "str"}, - "attribute6": {"no_log": False, "type": "str"}, + "attribute5friendlyname": {"no_log": False, "type": "raw"}, + "attribute6": {"no_log": False, "type": "raw"}, "attribute6expr": {"no_log": False, "type": "str"}, "attribute6format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute6friendlyname": {"no_log": False, "type": "str"}, - "attribute7": {"no_log": False, "type": "str"}, + "attribute6friendlyname": {"no_log": False, "type": "raw"}, + "attribute7": {"no_log": False, "type": "raw"}, "attribute7expr": {"no_log": False, "type": "str"}, "attribute7format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute7friendlyname": {"no_log": False, "type": "str"}, - "attribute8": {"no_log": False, "type": "str"}, + "attribute7friendlyname": {"no_log": False, "type": "raw"}, + "attribute8": {"no_log": False, "type": "raw"}, "attribute8expr": {"no_log": False, "type": "str"}, "attribute8format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute8friendlyname": {"no_log": False, "type": "str"}, - "attribute9": {"no_log": False, "type": "str"}, + "attribute8friendlyname": {"no_log": False, "type": "raw"}, + "attribute9": {"no_log": False, "type": "raw"}, "attribute9expr": {"no_log": False, "type": "str"}, "attribute9format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute9friendlyname": {"no_log": False, "type": "str"}, - "audience": {"no_log": False, "type": "str"}, + "attribute9friendlyname": {"no_log": False, "type": "raw"}, + "audience": {"no_log": False, "type": "raw"}, "digestmethod": { "choices": ["SHA1", "SHA256"], "no_log": False, - "type": "str", + "type": "raw", }, "encryptassertion": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "encryptionalgorithm": { "choices": ["AES128", "AES192", "AES256", "DES3"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, - "nameidexpr": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "nameidexpr": {"no_log": False, "type": "raw"}, "nameidformat": { "choices": [ "Unspecified", @@ -54604,24 +54491,24 @@ "transient", ], "no_log": False, - "type": "str", + "type": "raw", }, - "relaystaterule": {"no_log": False, "type": "str"}, - "samlissuername": {"no_log": False, "type": "str"}, - "samlsigningcertname": {"no_log": False, "type": "str"}, - "samlspcertname": {"no_log": False, "type": "str"}, - "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "relaystaterule": {"no_log": False, "type": "raw"}, + "samlissuername": {"no_log": False, "type": "raw"}, + "samlsigningcertname": {"no_log": False, "type": "raw"}, + "samlspcertname": {"no_log": False, "type": "raw"}, + "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "signassertion": { "choices": ["ASSERTION", "BOTH", "NONE", "RESPONSE"], "no_log": False, - "type": "str", + "type": "raw", }, "signaturealg": { "choices": ["RSA-SHA1", "RSA-SHA256"], "no_log": False, - "type": "str", + "type": "raw", }, - "skewtime": {"no_log": False, "type": "float"}, + "skewtime": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -54765,30 +54652,30 @@ "defaultauthorizationaction": { "choices": ["ALLOW", "DENY"], "no_log": False, - "type": "str", + "type": "raw", }, - "homepage": {"no_log": False, "type": "str"}, + "homepage": {"no_log": False, "type": "raw"}, "httponlycookie": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "kcdaccount": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "kcdaccount": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "persistentcookie": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "persistentcookievalidity": {"no_log": False, "type": "float"}, - "sesstimeout": {"no_log": False, "type": "float"}, - "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "persistentcookievalidity": {"no_log": False, "type": "raw"}, + "sesstimeout": {"no_log": False, "type": "raw"}, + "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "ssocredential": { "choices": ["PRIMARY", "SECONDARY"], "no_log": False, - "type": "str", + "type": "raw", }, - "ssodomain": {"no_log": False, "type": "str"}, + "ssodomain": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -54842,29 +54729,29 @@ "defaultauthorizationaction": { "choices": ["ALLOW", "DENY"], "no_log": False, - "type": "str", + "type": "raw", }, - "homepage": {"no_log": False, "type": "str"}, + "homepage": {"no_log": False, "type": "raw"}, "httponlycookie": { "choices": ["NO", "YES"], "no_log": False, - "type": "str", + "type": "raw", }, - "kcdaccount": {"no_log": False, "type": "str"}, + "kcdaccount": {"no_log": False, "type": "raw"}, "persistentcookie": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "persistentcookievalidity": {"no_log": False, "type": "float"}, - "sesstimeout": {"no_log": False, "type": "float"}, - "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "persistentcookievalidity": {"no_log": False, "type": "raw"}, + "sesstimeout": {"no_log": False, "type": "raw"}, + "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "ssocredential": { "choices": ["PRIMARY", "SECONDARY"], "no_log": False, - "type": "str", + "type": "raw", }, - "ssodomain": {"no_log": False, "type": "str"}, + "ssodomain": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -54911,9 +54798,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "action": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, + "action": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["action", "name", "rule"], @@ -54973,7 +54860,7 @@ "forcedtimeout": { "choices": ["RESET", "START", "STOP"], "no_log": False, - "type": "str", + "type": "raw", }, "forcedtimeoutval": {"no_log": False, "type": "float"}, "formssoaction": {"no_log": False, "type": "str"}, @@ -54982,17 +54869,17 @@ "no_log": False, "type": "str", }, - "kcdaccount": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "passwdexpression": {"no_log": False, "type": "str"}, + "kcdaccount": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "passwdexpression": {"no_log": False, "type": "raw"}, "persistentcookie": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "samlssoprofile": {"no_log": False, "type": "str"}, "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "userexpression": {"no_log": False, "type": "str"}, + "userexpression": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -55041,9 +54928,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "action": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, + "action": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["action", "name", "rule"], @@ -55169,16 +55056,16 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "cookiedomainfrom": {"no_log": False, "type": "str"}, - "cookiedomaininto": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "cookiedomainfrom": {"no_log": False, "type": "raw"}, + "cookiedomaininto": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "priority": {"no_log": False, "type": "float"}, "profilename": {"no_log": False, "type": "str"}, - "requrlfrom": {"no_log": False, "type": "str"}, - "requrlinto": {"no_log": False, "type": "str"}, - "resurlfrom": {"no_log": False, "type": "str"}, - "resurlinto": {"no_log": False, "type": "str"}, + "requrlfrom": {"no_log": False, "type": "raw"}, + "requrlinto": {"no_log": False, "type": "raw"}, + "resurlfrom": {"no_log": False, "type": "raw"}, + "resurlinto": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -55297,9 +55184,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "profilename": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, @@ -55464,14 +55351,14 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "onlytransformabsurlinbody": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "type": {"choices": ["URL"], "no_log": False, "type": "str"}, + "type": {"choices": ["URL"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["comment", "name", "onlytransformabsurlinbody", "type"], @@ -55646,9 +55533,9 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, @@ -55736,11 +55623,11 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "cloudhost": {"no_log": False, "type": "str"}, - "hoursbetweendbupdates": {"no_log": False, "type": "float"}, - "localdatabasethreads": {"no_log": False, "type": "float"}, - "seeddbpath": {"no_log": False, "type": "str"}, - "timeofdaytoupdatedb": {"no_log": False, "type": "str"}, + "cloudhost": {"no_log": False, "type": "raw"}, + "hoursbetweendbupdates": {"no_log": False, "type": "raw"}, + "localdatabasethreads": {"no_log": False, "type": "raw"}, + "seeddbpath": {"no_log": False, "type": "raw"}, + "timeofdaytoupdatedb": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": [ @@ -55782,9 +55669,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, "extension": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "transport": {"choices": ["SSL", "TCP"], "no_log": False, "type": "str"}, }, "singleton": False, @@ -55832,11 +55719,11 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, "defaultlb": {"no_log": False, "type": "str"}, "ipaddress": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "params": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "params": {"no_log": False, "type": "raw"}, "port": {"no_log": False, "type": "int"}, "userprotocol": {"no_log": False, "type": "str"}, }, @@ -55875,8 +55762,8 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "type": { "choices": [ @@ -55935,12 +55822,12 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, "videooptimizationdetectionpolicylabel_videooptimizationdetectionpolicy_binding": { "no_log": False, "options": { @@ -56257,10 +56144,10 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "comment": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "rate": {"no_log": False, "type": "int"}, + "rate": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["comment", "name", "rate"], @@ -56307,12 +56194,12 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, - "undefaction": {"no_log": False, "type": "str"}, + "undefaction": {"no_log": False, "type": "raw"}, "videooptimizationpacingpolicylabel_videooptimizationpacingpolicy_binding": { "no_log": False, "options": { @@ -56476,8 +56363,8 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "quicpacingrate": {"no_log": False, "type": "float"}, - "randomsamplingpercentage": {"no_log": False, "type": "float"}, + "quicpacingrate": {"no_log": False, "type": "raw"}, + "randomsamplingpercentage": {"no_log": False, "type": "raw"}, }, "singleton": True, "update_payload_keys": ["quicpacingrate", "randomsamplingpercentage"], @@ -56533,23 +56420,23 @@ "primary_key": "id", "primary_key_composite": [], "readwrite_arguments": { - "aliasname": {"no_log": False, "type": "str"}, + "aliasname": {"no_log": False, "type": "raw"}, "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "id": {"no_log": False, "type": "float"}, + "id": {"no_log": False, "type": "raw"}, "ipv6dynamicrouting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "mtu": {"no_log": False, "type": "float"}, + "mtu": {"no_log": False, "type": "raw"}, "sharing": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "vlan_channel_binding": { "no_log": False, @@ -56838,18 +56725,18 @@ "clientcontrol": { "choices": ["ALLOW", "DENY"], "no_log": False, - "type": "str", + "type": "raw", }, "locationbasedvpn": { "choices": ["Everywhere", "Remote"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "networkaccessonvpnfailure": { "choices": ["fullAccess", "onlyToGateway"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -56941,22 +56828,22 @@ "primary_key": "profilename", "primary_key_composite": [], "readwrite_arguments": { - "clientconsumedcookies": {"no_log": False, "type": "str"}, - "javascriptrewritepolicylabel": {"no_log": False, "type": "str"}, - "profilename": {"no_log": False, "type": "str"}, - "regexforfindingcustomurls": {"no_log": False, "type": "str"}, - "regexforfindingurlincss": {"no_log": False, "type": "str"}, - "regexforfindingurlinjavascript": {"no_log": False, "type": "str"}, - "regexforfindingurlinxcomponent": {"no_log": False, "type": "str"}, - "regexforfindingurlinxml": {"no_log": False, "type": "str"}, - "reqhdrrewritepolicylabel": {"no_log": False, "type": "str"}, + "clientconsumedcookies": {"no_log": False, "type": "raw"}, + "javascriptrewritepolicylabel": {"no_log": False, "type": "raw"}, + "profilename": {"no_log": False, "type": "raw"}, + "regexforfindingcustomurls": {"no_log": False, "type": "raw"}, + "regexforfindingurlincss": {"no_log": False, "type": "raw"}, + "regexforfindingurlinjavascript": {"no_log": False, "type": "raw"}, + "regexforfindingurlinxcomponent": {"no_log": False, "type": "raw"}, + "regexforfindingurlinxml": {"no_log": False, "type": "raw"}, + "reqhdrrewritepolicylabel": {"no_log": False, "type": "raw"}, "requirepersistentcookie": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "reshdrrewritepolicylabel": {"no_log": False, "type": "str"}, - "urlrewritepolicylabel": {"no_log": False, "type": "str"}, + "reshdrrewritepolicylabel": {"no_log": False, "type": "raw"}, + "urlrewritepolicylabel": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -57078,20 +56965,20 @@ "primary_key_composite": [], "readwrite_arguments": { "actionurl": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "namevaluepair": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "namevaluepair": {"no_log": False, "type": "raw"}, "nvtype": { "choices": ["DYNAMIC", "STATIC"], "no_log": False, - "type": "str", + "type": "raw", }, "passwdfield": {"no_log": False, "type": "str"}, - "responsesize": {"no_log": False, "type": "float"}, + "responsesize": {"no_log": False, "type": "raw"}, "ssosuccessrule": {"no_log": False, "type": "str"}, "submitmethod": { "choices": ["GET", "POST"], "no_log": False, - "type": "str", + "type": "raw", }, "userfield": {"no_log": False, "type": "str"}, }, @@ -58533,84 +58420,82 @@ "advancedclientlessvpnmode": { "choices": ["DISABLED", "ENABLED", "STRICT"], "no_log": False, - "type": "str", + "type": "raw", }, - "allowedlogingroups": {"no_log": False, "type": "str"}, - "allprotocolproxy": {"no_log": False, "type": "str"}, - "alwaysonprofilename": {"no_log": False, "type": "str"}, - "apptokentimeout": {"no_log": False, "type": "float"}, - "authorizationgroup": {"no_log": False, "type": "str"}, - "autoproxyurl": {"no_log": False, "type": "str"}, + "allowedlogingroups": {"no_log": False, "type": "raw"}, + "allprotocolproxy": {"no_log": False, "type": "raw"}, + "alwaysonprofilename": {"no_log": False, "type": "raw"}, + "apptokentimeout": {"no_log": False, "type": "raw"}, + "authorizationgroup": {"no_log": False, "type": "raw"}, + "autoproxyurl": {"no_log": False, "type": "raw"}, "backendcertvalidation": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "backendserversni": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "citrixreceiverhome": {"no_log": False, "type": "str"}, - "clientchoices": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "citrixreceiverhome": {"no_log": False, "type": "raw"}, + "clientchoices": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "clientcleanupprompt": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "clientconfiguration": { "choices": ["none", "trace"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "clientdebug": { "choices": ["OFF", "debug", "events", "stats"], "no_log": False, - "type": "str", + "type": "raw", }, - "clientidletimeout": {"no_log": False, "type": "float"}, + "clientidletimeout": {"no_log": False, "type": "raw"}, "clientlessmodeurlencoding": { "choices": ["ENCRYPT", "OPAQUE", "TRANSPARENT"], "no_log": False, - "type": "str", + "type": "raw", }, "clientlesspersistentcookie": { "choices": ["ALLOW", "DENY", "PROMPT"], "no_log": False, - "type": "str", + "type": "raw", }, "clientlessvpnmode": { "choices": ["DISABLED", "OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "clientoptions": { "choices": ["all", "configuration", "filetransfer", "none", "services"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, - "clientsecurity": {"no_log": False, "type": "str"}, - "clientsecuritygroup": {"no_log": False, "type": "str"}, + "clientsecurity": {"no_log": False, "type": "raw"}, + "clientsecuritygroup": {"no_log": False, "type": "raw"}, "clientsecuritylog": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "clientsecuritymessage": {"no_log": False, "type": "str"}, - "clientversions": {"no_log": False, "type": "str"}, + "clientsecuritymessage": {"no_log": False, "type": "raw"}, + "clientversions": {"no_log": False, "type": "raw"}, "defaultauthorizationaction": { "choices": ["ALLOW", "DENY"], "no_log": False, - "type": "str", + "type": "raw", }, - "dnsvservername": {"no_log": False, "type": "str"}, - "emailhome": {"no_log": False, "type": "str"}, + "dnsvservername": {"no_log": False, "type": "raw"}, + "emailhome": {"no_log": False, "type": "raw"}, "encryptcsecexp": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "epaclienttype": { "choices": ["AGENT", "PLUGIN"], @@ -58631,121 +58516,120 @@ "none", "plugin", ], - "elements": "str", "no_log": False, - "type": "list", - }, - "forcedtimeout": {"no_log": False, "type": "float"}, - "forcedtimeoutwarning": {"no_log": False, "type": "float"}, - "fqdnspoofedip": {"no_log": False, "type": "str"}, - "ftpproxy": {"no_log": False, "type": "str"}, - "gopherproxy": {"no_log": False, "type": "str"}, - "homepage": {"no_log": False, "type": "str"}, - "httpport": {"elements": "int", "no_log": False, "type": "list"}, - "httpproxy": {"no_log": False, "type": "str"}, - "icaproxy": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "type": "raw", + }, + "forcedtimeout": {"no_log": False, "type": "raw"}, + "forcedtimeoutwarning": {"no_log": False, "type": "raw"}, + "fqdnspoofedip": {"no_log": False, "type": "raw"}, + "ftpproxy": {"no_log": False, "type": "raw"}, + "gopherproxy": {"no_log": False, "type": "raw"}, + "homepage": {"no_log": False, "type": "raw"}, + "httpport": {"no_log": False, "type": "raw"}, + "httpproxy": {"no_log": False, "type": "raw"}, + "icaproxy": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "icasessiontimeout": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "icauseraccounting": {"no_log": False, "type": "str"}, + "icauseraccounting": {"no_log": False, "type": "raw"}, "iconwithreceiver": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "iipdnssuffix": {"no_log": False, "type": "str"}, - "kcdaccount": {"no_log": False, "type": "str"}, + "iipdnssuffix": {"no_log": False, "type": "raw"}, + "kcdaccount": {"no_log": False, "type": "raw"}, "killconnections": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "linuxpluginupgrade": { "choices": ["Always", "Essential", "Never"], "no_log": False, - "type": "str", + "type": "raw", }, "locallanaccess": { "choices": ["FORCED", "OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "loginscript": {"no_log": False, "type": "str"}, - "logoutscript": {"no_log": False, "type": "str"}, + "loginscript": {"no_log": False, "type": "raw"}, + "logoutscript": {"no_log": False, "type": "raw"}, "macpluginupgrade": { "choices": ["Always", "Essential", "Never"], "no_log": False, - "type": "str", + "type": "raw", }, - "mdxtokentimeout": {"no_log": False, "type": "float"}, - "netmask": {"no_log": False, "type": "str"}, - "ntdomain": {"no_log": False, "type": "str"}, - "pcoipprofilename": {"no_log": False, "type": "str"}, + "mdxtokentimeout": {"no_log": False, "type": "raw"}, + "netmask": {"no_log": False, "type": "raw"}, + "ntdomain": {"no_log": False, "type": "raw"}, + "pcoipprofilename": {"no_log": False, "type": "raw"}, "proxy": { "choices": ["BROWSER", "NS", "OFF"], "no_log": False, - "type": "str", + "type": "raw", }, - "proxyexception": {"no_log": False, "type": "str"}, + "proxyexception": {"no_log": False, "type": "raw"}, "proxylocalbypass": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "rdpclientprofilename": {"no_log": False, "type": "str"}, - "rfc1918": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "rdpclientprofilename": {"no_log": False, "type": "raw"}, + "rfc1918": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "samesite": { "choices": ["LAX", "None", "STRICT"], "no_log": False, - "type": "str", + "type": "raw", }, "securebrowse": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sesstimeout": {"no_log": False, "type": "float"}, - "smartgroup": {"no_log": False, "type": "str"}, - "socksproxy": {"no_log": False, "type": "str"}, + "sesstimeout": {"no_log": False, "type": "raw"}, + "smartgroup": {"no_log": False, "type": "raw"}, + "socksproxy": {"no_log": False, "type": "raw"}, "splitdns": { "choices": ["BOTH", "LOCAL", "REMOTE"], "no_log": False, - "type": "str", + "type": "raw", }, "splittunnel": { "choices": ["OFF", "ON", "REVERSE"], "no_log": False, - "type": "str", + "type": "raw", }, - "spoofiip": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "sslproxy": {"no_log": False, "type": "str"}, - "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "spoofiip": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "sslproxy": {"no_log": False, "type": "raw"}, + "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "ssocredential": { "choices": ["PRIMARY", "SECONDARY"], "no_log": False, - "type": "str", + "type": "raw", }, - "storefronturl": {"no_log": False, "type": "str"}, + "storefronturl": {"no_log": False, "type": "raw"}, "transparentinterception": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "uitheme": { "choices": ["CUSTOM", "DEFAULT", "GREENBUBBLE"], "no_log": False, - "type": "str", + "type": "raw", }, "useiip": { "choices": ["NOSPILLOVER", "OFF", "SPILLOVER"], "no_log": False, - "type": "str", + "type": "raw", }, - "usemip": {"choices": ["NS", "OFF"], "no_log": False, "type": "str"}, - "userdomains": {"no_log": False, "type": "str"}, - "wihome": {"no_log": False, "type": "str"}, + "usemip": {"choices": ["NS", "OFF"], "no_log": False, "type": "raw"}, + "userdomains": {"no_log": False, "type": "raw"}, + "wihome": {"no_log": False, "type": "raw"}, "wihomeaddresstype": { "choices": ["IPV4", "IPV6"], "no_log": False, @@ -58754,7 +58638,7 @@ "windowsautologon": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "windowsclienttype": { "choices": ["AGENT", "PLUGIN"], @@ -58764,13 +58648,13 @@ "windowspluginupgrade": { "choices": ["Always", "Essential", "Never"], "no_log": False, - "type": "str", + "type": "raw", }, - "winsip": {"no_log": False, "type": "str"}, + "winsip": {"no_log": False, "type": "raw"}, "wiportalmode": { "choices": ["COMPACT", "NORMAL"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -58928,10 +58812,10 @@ "icvverification": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, - "sessionidletimeout": {"no_log": False, "type": "float"}, + "name": {"no_log": False, "type": "raw"}, + "sessionidletimeout": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -58973,8 +58857,8 @@ "primary_key_composite": [], "readwrite_arguments": { "logindomain": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "udpport": {"no_log": False, "type": "int"}, + "name": {"no_log": False, "type": "raw"}, + "udpport": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["logindomain", "name", "udpport"], @@ -59191,152 +59075,152 @@ "primary_key_composite": [], "readwrite_arguments": { "assertionconsumerserviceurl": {"no_log": False, "type": "str"}, - "attribute1": {"no_log": False, "type": "str"}, - "attribute10": {"no_log": False, "type": "str"}, + "attribute1": {"no_log": False, "type": "raw"}, + "attribute10": {"no_log": False, "type": "raw"}, "attribute10expr": {"no_log": False, "type": "str"}, "attribute10format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute10friendlyname": {"no_log": False, "type": "str"}, - "attribute11": {"no_log": False, "type": "str"}, + "attribute10friendlyname": {"no_log": False, "type": "raw"}, + "attribute11": {"no_log": False, "type": "raw"}, "attribute11expr": {"no_log": False, "type": "str"}, "attribute11format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute11friendlyname": {"no_log": False, "type": "str"}, - "attribute12": {"no_log": False, "type": "str"}, + "attribute11friendlyname": {"no_log": False, "type": "raw"}, + "attribute12": {"no_log": False, "type": "raw"}, "attribute12expr": {"no_log": False, "type": "str"}, "attribute12format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute12friendlyname": {"no_log": False, "type": "str"}, - "attribute13": {"no_log": False, "type": "str"}, + "attribute12friendlyname": {"no_log": False, "type": "raw"}, + "attribute13": {"no_log": False, "type": "raw"}, "attribute13expr": {"no_log": False, "type": "str"}, "attribute13format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute13friendlyname": {"no_log": False, "type": "str"}, - "attribute14": {"no_log": False, "type": "str"}, + "attribute13friendlyname": {"no_log": False, "type": "raw"}, + "attribute14": {"no_log": False, "type": "raw"}, "attribute14expr": {"no_log": False, "type": "str"}, "attribute14format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute14friendlyname": {"no_log": False, "type": "str"}, - "attribute15": {"no_log": False, "type": "str"}, + "attribute14friendlyname": {"no_log": False, "type": "raw"}, + "attribute15": {"no_log": False, "type": "raw"}, "attribute15expr": {"no_log": False, "type": "str"}, "attribute15format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute15friendlyname": {"no_log": False, "type": "str"}, - "attribute16": {"no_log": False, "type": "str"}, + "attribute15friendlyname": {"no_log": False, "type": "raw"}, + "attribute16": {"no_log": False, "type": "raw"}, "attribute16expr": {"no_log": False, "type": "str"}, "attribute16format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute16friendlyname": {"no_log": False, "type": "str"}, + "attribute16friendlyname": {"no_log": False, "type": "raw"}, "attribute1expr": {"no_log": False, "type": "str"}, "attribute1format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute1friendlyname": {"no_log": False, "type": "str"}, - "attribute2": {"no_log": False, "type": "str"}, + "attribute1friendlyname": {"no_log": False, "type": "raw"}, + "attribute2": {"no_log": False, "type": "raw"}, "attribute2expr": {"no_log": False, "type": "str"}, "attribute2format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute2friendlyname": {"no_log": False, "type": "str"}, - "attribute3": {"no_log": False, "type": "str"}, + "attribute2friendlyname": {"no_log": False, "type": "raw"}, + "attribute3": {"no_log": False, "type": "raw"}, "attribute3expr": {"no_log": False, "type": "str"}, "attribute3format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute3friendlyname": {"no_log": False, "type": "str"}, - "attribute4": {"no_log": False, "type": "str"}, + "attribute3friendlyname": {"no_log": False, "type": "raw"}, + "attribute4": {"no_log": False, "type": "raw"}, "attribute4expr": {"no_log": False, "type": "str"}, "attribute4format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute4friendlyname": {"no_log": False, "type": "str"}, - "attribute5": {"no_log": False, "type": "str"}, + "attribute4friendlyname": {"no_log": False, "type": "raw"}, + "attribute5": {"no_log": False, "type": "raw"}, "attribute5expr": {"no_log": False, "type": "str"}, "attribute5format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute5friendlyname": {"no_log": False, "type": "str"}, - "attribute6": {"no_log": False, "type": "str"}, + "attribute5friendlyname": {"no_log": False, "type": "raw"}, + "attribute6": {"no_log": False, "type": "raw"}, "attribute6expr": {"no_log": False, "type": "str"}, "attribute6format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute6friendlyname": {"no_log": False, "type": "str"}, - "attribute7": {"no_log": False, "type": "str"}, + "attribute6friendlyname": {"no_log": False, "type": "raw"}, + "attribute7": {"no_log": False, "type": "raw"}, "attribute7expr": {"no_log": False, "type": "str"}, "attribute7format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute7friendlyname": {"no_log": False, "type": "str"}, - "attribute8": {"no_log": False, "type": "str"}, + "attribute7friendlyname": {"no_log": False, "type": "raw"}, + "attribute8": {"no_log": False, "type": "raw"}, "attribute8expr": {"no_log": False, "type": "str"}, "attribute8format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute8friendlyname": {"no_log": False, "type": "str"}, - "attribute9": {"no_log": False, "type": "str"}, + "attribute8friendlyname": {"no_log": False, "type": "raw"}, + "attribute9": {"no_log": False, "type": "raw"}, "attribute9expr": {"no_log": False, "type": "str"}, "attribute9format": { "choices": ["Basic", "URI"], "no_log": False, - "type": "str", + "type": "raw", }, - "attribute9friendlyname": {"no_log": False, "type": "str"}, - "audience": {"no_log": False, "type": "str"}, + "attribute9friendlyname": {"no_log": False, "type": "raw"}, + "audience": {"no_log": False, "type": "raw"}, "digestmethod": { "choices": ["SHA1", "SHA256"], "no_log": False, - "type": "str", + "type": "raw", }, "encryptassertion": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "encryptionalgorithm": { "choices": ["AES128", "AES192", "AES256", "DES3"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, - "nameidexpr": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "nameidexpr": {"no_log": False, "type": "raw"}, "nameidformat": { "choices": [ "Unspecified", @@ -59349,25 +59233,25 @@ "transient", ], "no_log": False, - "type": "str", + "type": "raw", }, - "relaystaterule": {"no_log": False, "type": "str"}, - "samlissuername": {"no_log": False, "type": "str"}, - "samlsigningcertname": {"no_log": False, "type": "str"}, - "samlspcertname": {"no_log": False, "type": "str"}, - "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "relaystaterule": {"no_log": False, "type": "raw"}, + "samlissuername": {"no_log": False, "type": "raw"}, + "samlsigningcertname": {"no_log": False, "type": "raw"}, + "samlspcertname": {"no_log": False, "type": "raw"}, + "sendpassword": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "signassertion": { "choices": ["ASSERTION", "BOTH", "NONE", "RESPONSE"], "no_log": False, - "type": "str", + "type": "raw", }, "signaturealg": { "choices": ["RSA-SHA1", "RSA-SHA256"], "no_log": False, - "type": "str", + "type": "raw", }, - "signatureservice": {"no_log": False, "type": "str"}, - "skewtime": {"no_log": False, "type": "float"}, + "signatureservice": {"no_log": False, "type": "raw"}, + "skewtime": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -59635,67 +59519,66 @@ "advancedclientlessvpnmode": { "choices": ["DISABLED", "ENABLED", "STRICT"], "no_log": False, - "type": "str", + "type": "raw", }, - "allowedlogingroups": {"no_log": False, "type": "str"}, - "allprotocolproxy": {"no_log": False, "type": "str"}, - "alwaysonprofilename": {"no_log": False, "type": "str"}, - "authorizationgroup": {"no_log": False, "type": "str"}, - "autoproxyurl": {"no_log": False, "type": "str"}, - "citrixreceiverhome": {"no_log": False, "type": "str"}, - "clientchoices": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "allowedlogingroups": {"no_log": False, "type": "raw"}, + "allprotocolproxy": {"no_log": False, "type": "raw"}, + "alwaysonprofilename": {"no_log": False, "type": "raw"}, + "authorizationgroup": {"no_log": False, "type": "raw"}, + "autoproxyurl": {"no_log": False, "type": "raw"}, + "citrixreceiverhome": {"no_log": False, "type": "raw"}, + "clientchoices": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "clientcleanupprompt": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "clientconfiguration": { "choices": ["none", "trace"], - "elements": "str", "no_log": False, - "type": "list", + "type": "raw", }, "clientdebug": { "choices": ["OFF", "debug", "events", "stats"], "no_log": False, - "type": "str", + "type": "raw", }, - "clientidletimeout": {"no_log": False, "type": "float"}, + "clientidletimeout": {"no_log": False, "type": "raw"}, "clientlessmodeurlencoding": { "choices": ["ENCRYPT", "OPAQUE", "TRANSPARENT"], "no_log": False, - "type": "str", + "type": "raw", }, "clientlesspersistentcookie": { "choices": ["ALLOW", "DENY", "PROMPT"], "no_log": False, - "type": "str", + "type": "raw", }, "clientlessvpnmode": { "choices": ["DISABLED", "OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "clientoptions": { "choices": ["all", "configuration", "filetransfer", "none", "services"], "no_log": False, - "type": "str", + "type": "raw", }, - "clientsecurity": {"no_log": False, "type": "str"}, - "clientsecuritygroup": {"no_log": False, "type": "str"}, + "clientsecurity": {"no_log": False, "type": "raw"}, + "clientsecuritygroup": {"no_log": False, "type": "raw"}, "clientsecuritylog": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "clientsecuritymessage": {"no_log": False, "type": "str"}, + "clientsecuritymessage": {"no_log": False, "type": "raw"}, "defaultauthorizationaction": { "choices": ["ALLOW", "DENY"], "no_log": False, - "type": "str", + "type": "raw", }, - "dnsvservername": {"no_log": False, "type": "str"}, - "emailhome": {"no_log": False, "type": "str"}, + "dnsvservername": {"no_log": False, "type": "raw"}, + "emailhome": {"no_log": False, "type": "raw"}, "epaclienttype": { "choices": ["AGENT", "PLUGIN"], "no_log": False, @@ -59715,71 +59598,70 @@ "none", "plugin", ], - "elements": "str", "no_log": False, - "type": "list", - }, - "forcedtimeout": {"no_log": False, "type": "float"}, - "forcedtimeoutwarning": {"no_log": False, "type": "float"}, - "fqdnspoofedip": {"no_log": False, "type": "str"}, - "ftpproxy": {"no_log": False, "type": "str"}, - "gopherproxy": {"no_log": False, "type": "str"}, - "homepage": {"no_log": False, "type": "str"}, - "httpport": {"elements": "int", "no_log": False, "type": "list"}, - "httpproxy": {"no_log": False, "type": "str"}, - "icaproxy": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "type": "raw", + }, + "forcedtimeout": {"no_log": False, "type": "raw"}, + "forcedtimeoutwarning": {"no_log": False, "type": "raw"}, + "fqdnspoofedip": {"no_log": False, "type": "raw"}, + "ftpproxy": {"no_log": False, "type": "raw"}, + "gopherproxy": {"no_log": False, "type": "raw"}, + "homepage": {"no_log": False, "type": "raw"}, + "httpport": {"no_log": False, "type": "raw"}, + "httpproxy": {"no_log": False, "type": "raw"}, + "icaproxy": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "iconwithreceiver": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "iipdnssuffix": {"no_log": False, "type": "str"}, - "kcdaccount": {"no_log": False, "type": "str"}, + "iipdnssuffix": {"no_log": False, "type": "raw"}, + "kcdaccount": {"no_log": False, "type": "raw"}, "killconnections": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "linuxpluginupgrade": { "choices": ["Always", "Essential", "Never"], "no_log": False, - "type": "str", + "type": "raw", }, "locallanaccess": { "choices": ["FORCED", "OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "loginscript": {"no_log": False, "type": "str"}, - "logoutscript": {"no_log": False, "type": "str"}, + "loginscript": {"no_log": False, "type": "raw"}, + "logoutscript": {"no_log": False, "type": "raw"}, "macpluginupgrade": { "choices": ["Always", "Essential", "Never"], "no_log": False, - "type": "str", + "type": "raw", }, - "name": {"no_log": False, "type": "str"}, - "netmask": {"no_log": False, "type": "str"}, - "ntdomain": {"no_log": False, "type": "str"}, - "pcoipprofilename": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, + "netmask": {"no_log": False, "type": "raw"}, + "ntdomain": {"no_log": False, "type": "raw"}, + "pcoipprofilename": {"no_log": False, "type": "raw"}, "proxy": { "choices": ["BROWSER", "NS", "OFF"], "no_log": False, - "type": "str", + "type": "raw", }, - "proxyexception": {"no_log": False, "type": "str"}, + "proxyexception": {"no_log": False, "type": "raw"}, "proxylocalbypass": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "rdpclientprofilename": {"no_log": False, "type": "str"}, - "rfc1918": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "rdpclientprofilename": {"no_log": False, "type": "raw"}, + "rfc1918": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "securebrowse": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "sesstimeout": {"no_log": False, "type": "float"}, + "sesstimeout": {"no_log": False, "type": "raw"}, "sfgatewayauthtype": { "choices": [ "RSA", @@ -59791,42 +59673,42 @@ "smartCard", ], "no_log": False, - "type": "str", + "type": "raw", }, - "smartgroup": {"no_log": False, "type": "str"}, - "socksproxy": {"no_log": False, "type": "str"}, + "smartgroup": {"no_log": False, "type": "raw"}, + "socksproxy": {"no_log": False, "type": "raw"}, "splitdns": { "choices": ["BOTH", "LOCAL", "REMOTE"], "no_log": False, - "type": "str", + "type": "raw", }, "splittunnel": { "choices": ["OFF", "ON", "REVERSE"], "no_log": False, - "type": "str", + "type": "raw", }, - "spoofiip": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "sslproxy": {"no_log": False, "type": "str"}, - "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "spoofiip": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, + "sslproxy": {"no_log": False, "type": "raw"}, + "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "ssocredential": { "choices": ["PRIMARY", "SECONDARY"], "no_log": False, - "type": "str", + "type": "raw", }, - "storefronturl": {"no_log": False, "type": "str"}, + "storefronturl": {"no_log": False, "type": "raw"}, "transparentinterception": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "useiip": { "choices": ["NOSPILLOVER", "OFF", "SPILLOVER"], "no_log": False, - "type": "str", + "type": "raw", }, - "usemip": {"choices": ["NS", "OFF"], "no_log": False, "type": "str"}, - "useraccounting": {"no_log": False, "type": "str"}, - "wihome": {"no_log": False, "type": "str"}, + "usemip": {"choices": ["NS", "OFF"], "no_log": False, "type": "raw"}, + "useraccounting": {"no_log": False, "type": "raw"}, + "wihome": {"no_log": False, "type": "raw"}, "wihomeaddresstype": { "choices": ["IPV4", "IPV6"], "no_log": False, @@ -59835,7 +59717,7 @@ "windowsautologon": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "windowsclienttype": { "choices": ["AGENT", "PLUGIN"], @@ -59845,13 +59727,13 @@ "windowspluginupgrade": { "choices": ["Always", "Essential", "Never"], "no_log": False, - "type": "str", + "type": "raw", }, - "winsip": {"no_log": False, "type": "str"}, + "winsip": {"no_log": False, "type": "raw"}, "wiportalmode": { "choices": ["COMPACT", "NORMAL"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -59962,9 +59844,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "action": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, + "action": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["action", "name", "rule"], @@ -60025,15 +59907,15 @@ "formssoaction": {"no_log": False, "type": "str"}, "fta": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, "hdx": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "kcdaccount": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "passwdexpression": {"no_log": False, "type": "str"}, - "proxy": {"no_log": False, "type": "str"}, + "kcdaccount": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "passwdexpression": {"no_log": False, "type": "raw"}, + "proxy": {"no_log": False, "type": "raw"}, "qual": {"choices": ["http", "tcp"], "no_log": False, "type": "str"}, "samlssoprofile": {"no_log": False, "type": "str"}, "sso": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, - "userexpression": {"no_log": False, "type": "str"}, - "wanscaler": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "userexpression": {"no_log": False, "type": "raw"}, + "wanscaler": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -60082,9 +59964,9 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "action": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, - "rule": {"no_log": False, "type": "str"}, + "action": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "rule": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": ["action", "name", "rule"], @@ -60143,28 +60025,28 @@ "primary_key_composite": [], "readwrite_arguments": { "actualurl": {"no_log": False, "type": "str"}, - "appjson": {"no_log": False, "type": "str"}, + "appjson": {"no_log": False, "type": "raw"}, "applicationtype": { "choices": ["CVPN", "SaaS", "VPN"], "no_log": False, - "type": "str", + "type": "raw", }, "clientlessaccess": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "comment": {"no_log": False, "type": "str"}, - "iconurl": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "iconurl": {"no_log": False, "type": "raw"}, "linkname": {"no_log": False, "type": "str"}, - "samlssoprofile": {"no_log": False, "type": "str"}, + "samlssoprofile": {"no_log": False, "type": "raw"}, "ssotype": { "choices": ["samlauth", "selfauth", "unifiedgateway"], "no_log": False, - "type": "str", + "type": "raw", }, - "urlname": {"no_log": False, "type": "str"}, - "vservername": {"no_log": False, "type": "str"}, + "urlname": {"no_log": False, "type": "raw"}, + "vservername": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -60237,25 +60119,25 @@ "applicationtype": { "choices": ["CVPN", "SaaS", "VPN"], "no_log": False, - "type": "str", + "type": "raw", }, "clientlessaccess": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "comment": {"no_log": False, "type": "str"}, - "iconurl": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "iconurl": {"no_log": False, "type": "raw"}, "linkname": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "samlssoprofile": {"no_log": False, "type": "str"}, + "samlssoprofile": {"no_log": False, "type": "raw"}, "ssotype": { "choices": ["samlauth", "selfauth", "unifiedgateway"], "no_log": False, - "type": "str", + "type": "raw", }, - "vservername": {"no_log": False, "type": "str"}, + "vservername": {"no_log": False, "type": "raw"}, }, "singleton": False, "update_payload_keys": [ @@ -60304,9 +60186,9 @@ "primary_key_composite": [], "readwrite_arguments": { "action": {"no_log": False, "type": "str"}, - "comment": {"no_log": False, "type": "str"}, - "logaction": {"no_log": False, "type": "str"}, - "name": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, + "logaction": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, "rule": {"no_log": False, "type": "str"}, }, @@ -60473,98 +60355,98 @@ "primary_key": "name", "primary_key_composite": [], "readwrite_arguments": { - "advancedepa": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "advancedepa": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "appflowlog": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "authentication": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, - "authnprofile": {"no_log": False, "type": "str"}, - "certkeynames": {"no_log": False, "type": "str"}, + "authnprofile": {"no_log": False, "type": "raw"}, + "certkeynames": {"no_log": False, "type": "raw"}, "cginfrahomepageredirect": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "comment": {"no_log": False, "type": "str"}, + "comment": {"no_log": False, "type": "raw"}, "deploymenttype": { "choices": ["ICA_STOREFRONT", "ICA_WEBINTERFACE", "MOBILITY", "NONE"], "no_log": False, "type": "str", }, - "devicecert": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "devicecert": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "doublehop": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "downstateflush": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "dtls": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "dtls": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "failedlogintimeout": {"no_log": False, "type": "float"}, - "httpprofilename": {"no_log": False, "type": "str"}, - "icaonly": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "httpprofilename": {"no_log": False, "type": "raw"}, + "icaonly": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "icaproxysessionmigration": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "icmpvsrresponse": { "choices": ["ACTIVE", "PASSIVE"], "no_log": False, - "type": "str", + "type": "raw", }, - "ipset": {"no_log": False, "type": "str"}, + "ipset": {"no_log": False, "type": "raw"}, "ipv46": {"no_log": False, "type": "str"}, - "l2conn": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "l2conn": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "linuxepapluginupgrade": { "choices": ["Always", "Essential", "Never"], "no_log": False, - "type": "str", + "type": "raw", }, - "listenpolicy": {"no_log": False, "type": "str"}, - "listenpriority": {"no_log": False, "type": "float"}, - "loginonce": {"choices": ["OFF", "ON"], "no_log": False, "type": "str"}, + "listenpolicy": {"no_log": False, "type": "raw"}, + "listenpriority": {"no_log": False, "type": "raw"}, + "loginonce": {"choices": ["OFF", "ON"], "no_log": False, "type": "raw"}, "logoutonsmartcardremoval": { "choices": ["OFF", "ON"], "no_log": False, - "type": "str", + "type": "raw", }, "macepapluginupgrade": { "choices": ["Always", "Essential", "Never"], "no_log": False, - "type": "str", + "type": "raw", }, - "maxaaausers": {"no_log": False, "type": "float"}, - "maxloginattempts": {"no_log": False, "type": "float"}, - "name": {"no_log": False, "type": "str"}, - "netprofile": {"no_log": False, "type": "str"}, + "maxaaausers": {"no_log": False, "type": "raw"}, + "maxloginattempts": {"no_log": False, "type": "raw"}, + "name": {"no_log": False, "type": "raw"}, + "netprofile": {"no_log": False, "type": "raw"}, "newname": {"no_log": False, "type": "str"}, - "pcoipvserverprofilename": {"no_log": False, "type": "str"}, + "pcoipvserverprofilename": {"no_log": False, "type": "raw"}, "port": {"no_log": False, "type": "int"}, "range": {"no_log": False, "type": "float"}, - "rdpserverprofilename": {"no_log": False, "type": "str"}, + "rdpserverprofilename": {"no_log": False, "type": "raw"}, "rhistate": { "choices": ["ACTIVE", "PASSIVE"], "no_log": False, - "type": "str", + "type": "raw", }, "samesite": { "choices": ["LAX", "None", "STRICT"], "no_log": False, - "type": "str", + "type": "raw", }, "servicetype": {"choices": ["DTLS", "SSL"], "no_log": False, "type": "str"}, - "tcpprofilename": {"no_log": False, "type": "str"}, - "userdomains": {"no_log": False, "type": "str"}, + "tcpprofilename": {"no_log": False, "type": "raw"}, + "userdomains": {"no_log": False, "type": "raw"}, "vpnvserver_aaapreauthenticationpolicy_binding": { "no_log": False, "options": { @@ -61189,11 +61071,11 @@ }, "type": "dict", }, - "vserverfqdn": {"no_log": False, "type": "str"}, + "vserverfqdn": {"no_log": False, "type": "raw"}, "windowsepapluginupgrade": { "choices": ["Always", "Essential", "Never"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": False, @@ -63258,25 +63140,25 @@ "primary_key_composite": [], "readwrite_arguments": { "all": {"no_log": False, "type": "bool"}, - "id": {"no_log": False, "type": "float"}, - "ownernode": {"no_log": False, "type": "float"}, + "id": {"no_log": False, "type": "raw"}, + "ownernode": {"no_log": False, "type": "raw"}, "preemption": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "preemptiondelaytimer": {"no_log": False, "type": "float"}, - "priority": {"no_log": False, "type": "float"}, + "preemptiondelaytimer": {"no_log": False, "type": "raw"}, + "priority": {"no_log": False, "type": "raw"}, "sharing": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "trackifnumpriority": {"no_log": False, "type": "float"}, + "trackifnumpriority": {"no_log": False, "type": "raw"}, "tracking": { "choices": ["ALL", "NONE", "ONE", "PROGRESSIVE"], "no_log": False, - "type": "str", + "type": "raw", }, "vrid6_channel_binding": { "no_log": False, @@ -63441,25 +63323,25 @@ "primary_key_composite": [], "readwrite_arguments": { "all": {"no_log": False, "type": "bool"}, - "id": {"no_log": False, "type": "float"}, - "ownernode": {"no_log": False, "type": "float"}, + "id": {"no_log": False, "type": "raw"}, + "ownernode": {"no_log": False, "type": "raw"}, "preemption": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "preemptiondelaytimer": {"no_log": False, "type": "float"}, - "priority": {"no_log": False, "type": "float"}, + "preemptiondelaytimer": {"no_log": False, "type": "raw"}, + "priority": {"no_log": False, "type": "raw"}, "sharing": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "trackifnumpriority": {"no_log": False, "type": "float"}, + "trackifnumpriority": {"no_log": False, "type": "raw"}, "tracking": { "choices": ["ALL", "NONE", "ONE", "PROGRESSIVE"], "no_log": False, - "type": "str", + "type": "raw", }, "vrid6_channel_binding": { "no_log": False, @@ -63713,12 +63595,12 @@ "primary_key": "", "primary_key_composite": [], "readwrite_arguments": { - "deadinterval": {"no_log": False, "type": "float"}, - "hellointerval": {"no_log": False, "type": "float"}, + "deadinterval": {"no_log": False, "type": "raw"}, + "hellointerval": {"no_log": False, "type": "raw"}, "sendtomaster": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, }, "singleton": True, @@ -63830,27 +63712,27 @@ "dynamicrouting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "id": {"no_log": False, "type": "float"}, + "id": {"no_log": False, "type": "raw"}, "innervlantagging": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, "ipv6dynamicrouting": { "choices": ["DISABLED", "ENABLED"], "no_log": False, - "type": "str", + "type": "raw", }, - "port": {"no_log": False, "type": "int"}, + "port": {"no_log": False, "type": "raw"}, "protocol": { "choices": ["ETHERNET", "IPv4", "IPv6", "NSH"], "no_log": False, "type": "str", }, "type": {"choices": ["VXLAN", "VXLANGPE"], "no_log": False, "type": "str"}, - "vlan": {"no_log": False, "type": "float"}, + "vlan": {"no_log": False, "type": "raw"}, "vxlan_nsip6_binding": { "no_log": False, "options": { diff --git a/tests/integration/targets/systemuser/aliases b/tests/integration/targets/systemuser/aliases new file mode 100644 index 000000000..28a231e46 --- /dev/null +++ b/tests/integration/targets/systemuser/aliases @@ -0,0 +1,3 @@ +gather_facts/no +netscaler/cpx/ +netscaler/vpx/ diff --git a/tests/integration/targets/systemuser/tasks/main.yaml b/tests/integration/targets/systemuser/tasks/main.yaml new file mode 100644 index 000000000..fccb15cca --- /dev/null +++ b/tests/integration/targets/systemuser/tasks/main.yaml @@ -0,0 +1,173 @@ +--- +- name: SYSTEMUSER | ADD | --check + delegate_to: localhost + register: result + check_mode: true + tags: test + netscaler.adc.systemuser: + nsip: "{{ nsip }}" + nitro_user: "{{ nitro_user }}" + nitro_pass: "{{ nitro_pass }}" + nitro_protocol: "{{ nitro_protocol }}" + validate_certs: "{{ validate_certs }}" + save_config: "{{ save_config }}" + state: present + username: testuser + password: testuser + timeout: 1000 +- name: Assert | SYSTEMUSER | ADD | --check + tags: test + ansible.builtin.assert: + that: + - "result.failed==false" + - "result.changed==true" +- name: SYSTEMUSER | ADD + delegate_to: localhost + register: result + check_mode: false + tags: test + netscaler.adc.systemuser: + nsip: "{{ nsip }}" + nitro_user: "{{ nitro_user }}" + nitro_pass: "{{ nitro_pass }}" + nitro_protocol: "{{ nitro_protocol }}" + validate_certs: "{{ validate_certs }}" + save_config: "{{ save_config }}" + state: present + username: testuser + password: testuser + timeout: 1000 +- name: Assert | SYSTEMUSER | ADD + ansible.builtin.assert: + that: + - "result.failed==false" + - "result.changed==true" +- name: SYSTEMUSER | ADD | idempotent + delegate_to: localhost + register: result + check_mode: false + tags: test + netscaler.adc.systemuser: + nsip: "{{ nsip }}" + nitro_user: "{{ nitro_user }}" + nitro_pass: "{{ nitro_pass }}" + nitro_protocol: "{{ nitro_protocol }}" + validate_certs: "{{ validate_certs }}" + save_config: "{{ save_config }}" + state: present + username: testuser + password: testuser + timeout: 1000 +- name: Assert | SYSTEMUSER | ADD | idempotent + tags: test + ansible.builtin.assert: + that: + - "result.failed==false" + - "result.changed==false" +- name: SYSTEMUSER | UNSET + delegate_to: localhost + register: result + check_mode: false + tags: test + netscaler.adc.systemuser: + nsip: "{{ nsip }}" + nitro_user: "{{ nitro_user }}" + nitro_pass: "{{ nitro_pass }}" + nitro_protocol: "{{ nitro_protocol }}" + validate_certs: "{{ validate_certs }}" + save_config: "{{ save_config }}" + state: unset + username: testuser + timeout: true +- name: Assert | SYSTEMUSER | UNSET + tags: test + ansible.builtin.assert: + that: + - "result.failed==false" + - "result.changed==true" +- name: SYSTEMUSER | UNSET | idempotent + delegate_to: localhost + register: result + check_mode: false + tags: test + netscaler.adc.systemuser: + nsip: "{{ nsip }}" + nitro_user: "{{ nitro_user }}" + nitro_pass: "{{ nitro_pass }}" + nitro_protocol: "{{ nitro_protocol }}" + validate_certs: "{{ validate_certs }}" + save_config: "{{ save_config }}" + state: unset + username: testuser + timeout: true +- name: Assert | SYSTEMUSER | UNSET | idempotent + tags: test + ansible.builtin.assert: + that: + - "result.failed==false" + - "result.changed==true" +- name: SYSTEMUSER | DELETE | --check + delegate_to: localhost + register: result + check_mode: true + tags: test + netscaler.adc.systemuser: + nsip: "{{ nsip }}" + nitro_user: "{{ nitro_user }}" + nitro_pass: "{{ nitro_pass }}" + nitro_protocol: "{{ nitro_protocol }}" + validate_certs: "{{ validate_certs }}" + save_config: "{{ save_config }}" + state: absent + username: testuser + password: testuser + timeout: 1000 +- name: Assert | SYSTEMUSER | DELETE | --check + tags: test + ansible.builtin.assert: + that: + - "result.failed==false" + - "result.changed==true" +- name: SYSTEMUSER | DELETE + delegate_to: localhost + register: result + check_mode: false + tags: test + netscaler.adc.systemuser: + nsip: "{{ nsip }}" + nitro_user: "{{ nitro_user }}" + nitro_pass: "{{ nitro_pass }}" + nitro_protocol: "{{ nitro_protocol }}" + validate_certs: "{{ validate_certs }}" + save_config: "{{ save_config }}" + state: absent + username: testuser + password: testuser + timeout: 1000 +- name: Assert | SYSTEMUSER | DELETE + ansible.builtin.assert: + that: + - "result.failed==false" + - "result.changed==true" +- name: SYSTEMUSER | DELETE | idempotent + delegate_to: localhost + register: result + check_mode: false + tags: test + netscaler.adc.systemuser: + nsip: "{{ nsip }}" + nitro_user: "{{ nitro_user }}" + nitro_pass: "{{ nitro_pass }}" + nitro_protocol: "{{ nitro_protocol }}" + validate_certs: "{{ validate_certs }}" + save_config: "{{ save_config }}" + state: absent + username: testuser + password: testuser + timeout: 1000 +- name: Assert | SYSTEMUSER | DELETE | idempotent + tags: test + ansible.builtin.assert: + that: + - "result.failed==false" + - "result.changed==false"