pulumi-ise 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_ise/__init__.py +362 -0
- pulumi_ise/_utilities.py +291 -0
- pulumi_ise/config/__init__.py +8 -0
- pulumi_ise/config/__init__.pyi +36 -0
- pulumi_ise/config/vars.py +52 -0
- pulumi_ise/deviceadmin/__init__.py +29 -0
- pulumi_ise/deviceadmin/_inputs.py +1952 -0
- pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +376 -0
- pulumi_ise/deviceadmin/authentication_rule.py +1045 -0
- pulumi_ise/deviceadmin/authorization_exception_rule.py +937 -0
- pulumi_ise/deviceadmin/authorization_global_exception_rule.py +887 -0
- pulumi_ise/deviceadmin/authorization_rule.py +937 -0
- pulumi_ise/deviceadmin/condition.py +645 -0
- pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +161 -0
- pulumi_ise/deviceadmin/get_authentication_rule.py +338 -0
- pulumi_ise/deviceadmin/get_authorization_exception_rule.py +312 -0
- pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +292 -0
- pulumi_ise/deviceadmin/get_authorization_rule.py +312 -0
- pulumi_ise/deviceadmin/get_condition.py +227 -0
- pulumi_ise/deviceadmin/get_policy_set.py +305 -0
- pulumi_ise/deviceadmin/get_tacacs_command_set.py +146 -0
- pulumi_ise/deviceadmin/get_tacacs_profile.py +133 -0
- pulumi_ise/deviceadmin/get_time_and_date_condition.py +265 -0
- pulumi_ise/deviceadmin/outputs.py +3173 -0
- pulumi_ise/deviceadmin/policy_set.py +942 -0
- pulumi_ise/deviceadmin/tacacs_command_set.py +321 -0
- pulumi_ise/deviceadmin/tacacs_profile.py +272 -0
- pulumi_ise/deviceadmin/time_and_date_condition.py +765 -0
- pulumi_ise/identitymanagement/__init__.py +26 -0
- pulumi_ise/identitymanagement/_inputs.py +313 -0
- pulumi_ise/identitymanagement/active_directory_add_groups.py +478 -0
- pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +211 -0
- pulumi_ise/identitymanagement/active_directory_join_point.py +1671 -0
- pulumi_ise/identitymanagement/certificate_authentication_profile.py +520 -0
- pulumi_ise/identitymanagement/endpoint.py +1371 -0
- pulumi_ise/identitymanagement/endpoint_identity_group.py +322 -0
- pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +198 -0
- pulumi_ise/identitymanagement/get_active_directory_join_point.py +518 -0
- pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +187 -0
- pulumi_ise/identitymanagement/get_endpoint.py +434 -0
- pulumi_ise/identitymanagement/get_endpoint_identity_group.py +148 -0
- pulumi_ise/identitymanagement/get_identity_source_sequence.py +159 -0
- pulumi_ise/identitymanagement/get_internal_user.py +278 -0
- pulumi_ise/identitymanagement/get_user_identity_group.py +135 -0
- pulumi_ise/identitymanagement/identity_source_sequence.py +371 -0
- pulumi_ise/identitymanagement/internal_user.py +825 -0
- pulumi_ise/identitymanagement/outputs.py +486 -0
- pulumi_ise/identitymanagement/user_identity_group.py +275 -0
- pulumi_ise/network/__init__.py +13 -0
- pulumi_ise/network/_inputs.py +69 -0
- pulumi_ise/network/device.py +2189 -0
- pulumi_ise/network/device_group.py +276 -0
- pulumi_ise/network/get_device.py +643 -0
- pulumi_ise/network/get_device_group.py +135 -0
- pulumi_ise/network/outputs.py +115 -0
- pulumi_ise/networkaccess/__init__.py +31 -0
- pulumi_ise/networkaccess/_inputs.py +1948 -0
- pulumi_ise/networkaccess/allowed_protocols.py +3962 -0
- pulumi_ise/networkaccess/authentication_rule.py +1045 -0
- pulumi_ise/networkaccess/authorization_exception_rule.py +937 -0
- pulumi_ise/networkaccess/authorization_global_exception_rule.py +887 -0
- pulumi_ise/networkaccess/authorization_profile.py +1677 -0
- pulumi_ise/networkaccess/authorization_rule.py +937 -0
- pulumi_ise/networkaccess/condition.py +645 -0
- pulumi_ise/networkaccess/dictionary.py +326 -0
- pulumi_ise/networkaccess/downloadable_acl.py +325 -0
- pulumi_ise/networkaccess/get_allowed_protocols.py +1097 -0
- pulumi_ise/networkaccess/get_authentication_rule.py +338 -0
- pulumi_ise/networkaccess/get_authorization_exception_rule.py +312 -0
- pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +292 -0
- pulumi_ise/networkaccess/get_authorization_profile.py +526 -0
- pulumi_ise/networkaccess/get_authorization_rule.py +312 -0
- pulumi_ise/networkaccess/get_condition.py +227 -0
- pulumi_ise/networkaccess/get_dictionary.py +148 -0
- pulumi_ise/networkaccess/get_downloadable_acl.py +148 -0
- pulumi_ise/networkaccess/get_policy_set.py +305 -0
- pulumi_ise/networkaccess/get_time_and_date_condition.py +265 -0
- pulumi_ise/networkaccess/outputs.py +3188 -0
- pulumi_ise/networkaccess/policy_set.py +942 -0
- pulumi_ise/networkaccess/time_and_date_condition.py +765 -0
- pulumi_ise/provider.py +204 -0
- pulumi_ise/pulumi-plugin.json +4 -0
- pulumi_ise/py.typed +0 -0
- pulumi_ise/system/__init__.py +13 -0
- pulumi_ise/system/_inputs.py +56 -0
- pulumi_ise/system/get_license_tier_state.py +105 -0
- pulumi_ise/system/get_repository.py +187 -0
- pulumi_ise/system/license_tier_state.py +184 -0
- pulumi_ise/system/outputs.py +78 -0
- pulumi_ise/system/repository.py +473 -0
- pulumi_ise/trustsec/__init__.py +17 -0
- pulumi_ise/trustsec/egress_matrix_cell.py +424 -0
- pulumi_ise/trustsec/get_egress_matrix_cell.py +169 -0
- pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +200 -0
- pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +161 -0
- pulumi_ise/trustsec/get_security_group.py +161 -0
- pulumi_ise/trustsec/get_security_group_acl.py +161 -0
- pulumi_ise/trustsec/ip_to_sgt_mapping.py +512 -0
- pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +371 -0
- pulumi_ise/trustsec/security_group.py +374 -0
- pulumi_ise/trustsec/security_group_acl.py +374 -0
- pulumi_ise-0.1.0.dist-info/METADATA +63 -0
- pulumi_ise-0.1.0.dist-info/RECORD +105 -0
- pulumi_ise-0.1.0.dist-info/WHEEL +5 -0
- pulumi_ise-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1097 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
|
12
|
+
__all__ = [
|
13
|
+
'GetAllowedProtocolsResult',
|
14
|
+
'AwaitableGetAllowedProtocolsResult',
|
15
|
+
'get_allowed_protocols',
|
16
|
+
'get_allowed_protocols_output',
|
17
|
+
]
|
18
|
+
|
19
|
+
@pulumi.output_type
|
20
|
+
class GetAllowedProtocolsResult:
|
21
|
+
"""
|
22
|
+
A collection of values returned by getAllowedProtocols.
|
23
|
+
"""
|
24
|
+
def __init__(__self__, allow5g=None, allow_chap=None, allow_eap_fast=None, allow_eap_md5=None, allow_eap_tls=None, allow_eap_ttls=None, allow_leap=None, allow_ms_chap_v1=None, allow_ms_chap_v2=None, allow_pap_ascii=None, allow_peap=None, allow_preferred_eap_protocol=None, allow_teap=None, allow_weak_ciphers_for_eap=None, description=None, eap_fast_accept_client_cert=None, eap_fast_allow_machine_authentication=None, eap_fast_eap_gtc=None, eap_fast_eap_gtc_pwd_change=None, eap_fast_eap_gtc_pwd_change_retries=None, eap_fast_eap_ms_chap_v2=None, eap_fast_eap_ms_chap_v2_pwd_change=None, eap_fast_eap_ms_chap_v2_pwd_change_retries=None, eap_fast_eap_tls=None, eap_fast_eap_tls_auth_of_expired_certs=None, eap_fast_enable_eap_chaining=None, eap_fast_pacs_allow_anonymous_provisioning=None, eap_fast_pacs_allow_authenticated_provisioning=None, eap_fast_pacs_allow_client_cert=None, eap_fast_pacs_allow_machine_authentication=None, eap_fast_pacs_authorization_pac_ttl=None, eap_fast_pacs_authorization_pac_ttl_unit=None, eap_fast_pacs_machine_pac_ttl=None, eap_fast_pacs_machine_pac_ttl_unit=None, eap_fast_pacs_server_returns=None, eap_fast_pacs_stateless_session_resume=None, eap_fast_pacs_tunnel_pac_ttl=None, eap_fast_pacs_tunnel_pac_ttl_unit=None, eap_fast_pacs_use_proactive_pac_update_percentage=None, eap_fast_use_pacs=None, eap_tls_allow_auth_of_expired_certs=None, eap_tls_enable_stateless_session_resume=None, eap_tls_l_bit=None, eap_tls_session_ticket_percentage=None, eap_tls_session_ticket_ttl=None, eap_tls_session_ticket_ttl_unit=None, eap_ttls_chap=None, eap_ttls_eap_md5=None, eap_ttls_eap_ms_chap_v2=None, eap_ttls_eap_ms_chap_v2_pwd_change=None, eap_ttls_eap_ms_chap_v2_pwd_change_retries=None, eap_ttls_ms_chap_v1=None, eap_ttls_ms_chap_v2=None, eap_ttls_pap_ascii=None, id=None, name=None, peap_allow_peap_eap_gtc=None, peap_allow_peap_eap_gtc_pwd_change=None, peap_allow_peap_eap_gtc_pwd_change_retries=None, peap_allow_peap_eap_ms_chap_v2=None, peap_allow_peap_eap_ms_chap_v2_pwd_change=None, peap_allow_peap_eap_ms_chap_v2_pwd_change_retries=None, peap_allow_peap_eap_tls=None, peap_allow_peap_eap_tls_auth_of_expired_certs=None, peap_peap_v0=None, preferred_eap_protocol=None, process_host_lookup=None, require_cryptobinding=None, require_message_auth=None, teap_downgrade_msk=None, teap_eap_accept_client_cert_during_tunnel_est=None, teap_eap_chaining=None, teap_eap_ms_chap_v2=None, teap_eap_ms_chap_v2_pwd_change=None, teap_eap_ms_chap_v2_pwd_change_retries=None, teap_eap_tls=None, teap_eap_tls_auth_of_expired_certs=None, teap_request_basic_pwd_auth=None):
|
25
|
+
if allow5g and not isinstance(allow5g, bool):
|
26
|
+
raise TypeError("Expected argument 'allow5g' to be a bool")
|
27
|
+
pulumi.set(__self__, "allow5g", allow5g)
|
28
|
+
if allow_chap and not isinstance(allow_chap, bool):
|
29
|
+
raise TypeError("Expected argument 'allow_chap' to be a bool")
|
30
|
+
pulumi.set(__self__, "allow_chap", allow_chap)
|
31
|
+
if allow_eap_fast and not isinstance(allow_eap_fast, bool):
|
32
|
+
raise TypeError("Expected argument 'allow_eap_fast' to be a bool")
|
33
|
+
pulumi.set(__self__, "allow_eap_fast", allow_eap_fast)
|
34
|
+
if allow_eap_md5 and not isinstance(allow_eap_md5, bool):
|
35
|
+
raise TypeError("Expected argument 'allow_eap_md5' to be a bool")
|
36
|
+
pulumi.set(__self__, "allow_eap_md5", allow_eap_md5)
|
37
|
+
if allow_eap_tls and not isinstance(allow_eap_tls, bool):
|
38
|
+
raise TypeError("Expected argument 'allow_eap_tls' to be a bool")
|
39
|
+
pulumi.set(__self__, "allow_eap_tls", allow_eap_tls)
|
40
|
+
if allow_eap_ttls and not isinstance(allow_eap_ttls, bool):
|
41
|
+
raise TypeError("Expected argument 'allow_eap_ttls' to be a bool")
|
42
|
+
pulumi.set(__self__, "allow_eap_ttls", allow_eap_ttls)
|
43
|
+
if allow_leap and not isinstance(allow_leap, bool):
|
44
|
+
raise TypeError("Expected argument 'allow_leap' to be a bool")
|
45
|
+
pulumi.set(__self__, "allow_leap", allow_leap)
|
46
|
+
if allow_ms_chap_v1 and not isinstance(allow_ms_chap_v1, bool):
|
47
|
+
raise TypeError("Expected argument 'allow_ms_chap_v1' to be a bool")
|
48
|
+
pulumi.set(__self__, "allow_ms_chap_v1", allow_ms_chap_v1)
|
49
|
+
if allow_ms_chap_v2 and not isinstance(allow_ms_chap_v2, bool):
|
50
|
+
raise TypeError("Expected argument 'allow_ms_chap_v2' to be a bool")
|
51
|
+
pulumi.set(__self__, "allow_ms_chap_v2", allow_ms_chap_v2)
|
52
|
+
if allow_pap_ascii and not isinstance(allow_pap_ascii, bool):
|
53
|
+
raise TypeError("Expected argument 'allow_pap_ascii' to be a bool")
|
54
|
+
pulumi.set(__self__, "allow_pap_ascii", allow_pap_ascii)
|
55
|
+
if allow_peap and not isinstance(allow_peap, bool):
|
56
|
+
raise TypeError("Expected argument 'allow_peap' to be a bool")
|
57
|
+
pulumi.set(__self__, "allow_peap", allow_peap)
|
58
|
+
if allow_preferred_eap_protocol and not isinstance(allow_preferred_eap_protocol, bool):
|
59
|
+
raise TypeError("Expected argument 'allow_preferred_eap_protocol' to be a bool")
|
60
|
+
pulumi.set(__self__, "allow_preferred_eap_protocol", allow_preferred_eap_protocol)
|
61
|
+
if allow_teap and not isinstance(allow_teap, bool):
|
62
|
+
raise TypeError("Expected argument 'allow_teap' to be a bool")
|
63
|
+
pulumi.set(__self__, "allow_teap", allow_teap)
|
64
|
+
if allow_weak_ciphers_for_eap and not isinstance(allow_weak_ciphers_for_eap, bool):
|
65
|
+
raise TypeError("Expected argument 'allow_weak_ciphers_for_eap' to be a bool")
|
66
|
+
pulumi.set(__self__, "allow_weak_ciphers_for_eap", allow_weak_ciphers_for_eap)
|
67
|
+
if description and not isinstance(description, str):
|
68
|
+
raise TypeError("Expected argument 'description' to be a str")
|
69
|
+
pulumi.set(__self__, "description", description)
|
70
|
+
if eap_fast_accept_client_cert and not isinstance(eap_fast_accept_client_cert, bool):
|
71
|
+
raise TypeError("Expected argument 'eap_fast_accept_client_cert' to be a bool")
|
72
|
+
pulumi.set(__self__, "eap_fast_accept_client_cert", eap_fast_accept_client_cert)
|
73
|
+
if eap_fast_allow_machine_authentication and not isinstance(eap_fast_allow_machine_authentication, bool):
|
74
|
+
raise TypeError("Expected argument 'eap_fast_allow_machine_authentication' to be a bool")
|
75
|
+
pulumi.set(__self__, "eap_fast_allow_machine_authentication", eap_fast_allow_machine_authentication)
|
76
|
+
if eap_fast_eap_gtc and not isinstance(eap_fast_eap_gtc, bool):
|
77
|
+
raise TypeError("Expected argument 'eap_fast_eap_gtc' to be a bool")
|
78
|
+
pulumi.set(__self__, "eap_fast_eap_gtc", eap_fast_eap_gtc)
|
79
|
+
if eap_fast_eap_gtc_pwd_change and not isinstance(eap_fast_eap_gtc_pwd_change, bool):
|
80
|
+
raise TypeError("Expected argument 'eap_fast_eap_gtc_pwd_change' to be a bool")
|
81
|
+
pulumi.set(__self__, "eap_fast_eap_gtc_pwd_change", eap_fast_eap_gtc_pwd_change)
|
82
|
+
if eap_fast_eap_gtc_pwd_change_retries and not isinstance(eap_fast_eap_gtc_pwd_change_retries, int):
|
83
|
+
raise TypeError("Expected argument 'eap_fast_eap_gtc_pwd_change_retries' to be a int")
|
84
|
+
pulumi.set(__self__, "eap_fast_eap_gtc_pwd_change_retries", eap_fast_eap_gtc_pwd_change_retries)
|
85
|
+
if eap_fast_eap_ms_chap_v2 and not isinstance(eap_fast_eap_ms_chap_v2, bool):
|
86
|
+
raise TypeError("Expected argument 'eap_fast_eap_ms_chap_v2' to be a bool")
|
87
|
+
pulumi.set(__self__, "eap_fast_eap_ms_chap_v2", eap_fast_eap_ms_chap_v2)
|
88
|
+
if eap_fast_eap_ms_chap_v2_pwd_change and not isinstance(eap_fast_eap_ms_chap_v2_pwd_change, bool):
|
89
|
+
raise TypeError("Expected argument 'eap_fast_eap_ms_chap_v2_pwd_change' to be a bool")
|
90
|
+
pulumi.set(__self__, "eap_fast_eap_ms_chap_v2_pwd_change", eap_fast_eap_ms_chap_v2_pwd_change)
|
91
|
+
if eap_fast_eap_ms_chap_v2_pwd_change_retries and not isinstance(eap_fast_eap_ms_chap_v2_pwd_change_retries, int):
|
92
|
+
raise TypeError("Expected argument 'eap_fast_eap_ms_chap_v2_pwd_change_retries' to be a int")
|
93
|
+
pulumi.set(__self__, "eap_fast_eap_ms_chap_v2_pwd_change_retries", eap_fast_eap_ms_chap_v2_pwd_change_retries)
|
94
|
+
if eap_fast_eap_tls and not isinstance(eap_fast_eap_tls, bool):
|
95
|
+
raise TypeError("Expected argument 'eap_fast_eap_tls' to be a bool")
|
96
|
+
pulumi.set(__self__, "eap_fast_eap_tls", eap_fast_eap_tls)
|
97
|
+
if eap_fast_eap_tls_auth_of_expired_certs and not isinstance(eap_fast_eap_tls_auth_of_expired_certs, bool):
|
98
|
+
raise TypeError("Expected argument 'eap_fast_eap_tls_auth_of_expired_certs' to be a bool")
|
99
|
+
pulumi.set(__self__, "eap_fast_eap_tls_auth_of_expired_certs", eap_fast_eap_tls_auth_of_expired_certs)
|
100
|
+
if eap_fast_enable_eap_chaining and not isinstance(eap_fast_enable_eap_chaining, bool):
|
101
|
+
raise TypeError("Expected argument 'eap_fast_enable_eap_chaining' to be a bool")
|
102
|
+
pulumi.set(__self__, "eap_fast_enable_eap_chaining", eap_fast_enable_eap_chaining)
|
103
|
+
if eap_fast_pacs_allow_anonymous_provisioning and not isinstance(eap_fast_pacs_allow_anonymous_provisioning, bool):
|
104
|
+
raise TypeError("Expected argument 'eap_fast_pacs_allow_anonymous_provisioning' to be a bool")
|
105
|
+
pulumi.set(__self__, "eap_fast_pacs_allow_anonymous_provisioning", eap_fast_pacs_allow_anonymous_provisioning)
|
106
|
+
if eap_fast_pacs_allow_authenticated_provisioning and not isinstance(eap_fast_pacs_allow_authenticated_provisioning, bool):
|
107
|
+
raise TypeError("Expected argument 'eap_fast_pacs_allow_authenticated_provisioning' to be a bool")
|
108
|
+
pulumi.set(__self__, "eap_fast_pacs_allow_authenticated_provisioning", eap_fast_pacs_allow_authenticated_provisioning)
|
109
|
+
if eap_fast_pacs_allow_client_cert and not isinstance(eap_fast_pacs_allow_client_cert, bool):
|
110
|
+
raise TypeError("Expected argument 'eap_fast_pacs_allow_client_cert' to be a bool")
|
111
|
+
pulumi.set(__self__, "eap_fast_pacs_allow_client_cert", eap_fast_pacs_allow_client_cert)
|
112
|
+
if eap_fast_pacs_allow_machine_authentication and not isinstance(eap_fast_pacs_allow_machine_authentication, bool):
|
113
|
+
raise TypeError("Expected argument 'eap_fast_pacs_allow_machine_authentication' to be a bool")
|
114
|
+
pulumi.set(__self__, "eap_fast_pacs_allow_machine_authentication", eap_fast_pacs_allow_machine_authentication)
|
115
|
+
if eap_fast_pacs_authorization_pac_ttl and not isinstance(eap_fast_pacs_authorization_pac_ttl, int):
|
116
|
+
raise TypeError("Expected argument 'eap_fast_pacs_authorization_pac_ttl' to be a int")
|
117
|
+
pulumi.set(__self__, "eap_fast_pacs_authorization_pac_ttl", eap_fast_pacs_authorization_pac_ttl)
|
118
|
+
if eap_fast_pacs_authorization_pac_ttl_unit and not isinstance(eap_fast_pacs_authorization_pac_ttl_unit, str):
|
119
|
+
raise TypeError("Expected argument 'eap_fast_pacs_authorization_pac_ttl_unit' to be a str")
|
120
|
+
pulumi.set(__self__, "eap_fast_pacs_authorization_pac_ttl_unit", eap_fast_pacs_authorization_pac_ttl_unit)
|
121
|
+
if eap_fast_pacs_machine_pac_ttl and not isinstance(eap_fast_pacs_machine_pac_ttl, int):
|
122
|
+
raise TypeError("Expected argument 'eap_fast_pacs_machine_pac_ttl' to be a int")
|
123
|
+
pulumi.set(__self__, "eap_fast_pacs_machine_pac_ttl", eap_fast_pacs_machine_pac_ttl)
|
124
|
+
if eap_fast_pacs_machine_pac_ttl_unit and not isinstance(eap_fast_pacs_machine_pac_ttl_unit, str):
|
125
|
+
raise TypeError("Expected argument 'eap_fast_pacs_machine_pac_ttl_unit' to be a str")
|
126
|
+
pulumi.set(__self__, "eap_fast_pacs_machine_pac_ttl_unit", eap_fast_pacs_machine_pac_ttl_unit)
|
127
|
+
if eap_fast_pacs_server_returns and not isinstance(eap_fast_pacs_server_returns, bool):
|
128
|
+
raise TypeError("Expected argument 'eap_fast_pacs_server_returns' to be a bool")
|
129
|
+
pulumi.set(__self__, "eap_fast_pacs_server_returns", eap_fast_pacs_server_returns)
|
130
|
+
if eap_fast_pacs_stateless_session_resume and not isinstance(eap_fast_pacs_stateless_session_resume, bool):
|
131
|
+
raise TypeError("Expected argument 'eap_fast_pacs_stateless_session_resume' to be a bool")
|
132
|
+
pulumi.set(__self__, "eap_fast_pacs_stateless_session_resume", eap_fast_pacs_stateless_session_resume)
|
133
|
+
if eap_fast_pacs_tunnel_pac_ttl and not isinstance(eap_fast_pacs_tunnel_pac_ttl, int):
|
134
|
+
raise TypeError("Expected argument 'eap_fast_pacs_tunnel_pac_ttl' to be a int")
|
135
|
+
pulumi.set(__self__, "eap_fast_pacs_tunnel_pac_ttl", eap_fast_pacs_tunnel_pac_ttl)
|
136
|
+
if eap_fast_pacs_tunnel_pac_ttl_unit and not isinstance(eap_fast_pacs_tunnel_pac_ttl_unit, str):
|
137
|
+
raise TypeError("Expected argument 'eap_fast_pacs_tunnel_pac_ttl_unit' to be a str")
|
138
|
+
pulumi.set(__self__, "eap_fast_pacs_tunnel_pac_ttl_unit", eap_fast_pacs_tunnel_pac_ttl_unit)
|
139
|
+
if eap_fast_pacs_use_proactive_pac_update_percentage and not isinstance(eap_fast_pacs_use_proactive_pac_update_percentage, int):
|
140
|
+
raise TypeError("Expected argument 'eap_fast_pacs_use_proactive_pac_update_percentage' to be a int")
|
141
|
+
pulumi.set(__self__, "eap_fast_pacs_use_proactive_pac_update_percentage", eap_fast_pacs_use_proactive_pac_update_percentage)
|
142
|
+
if eap_fast_use_pacs and not isinstance(eap_fast_use_pacs, bool):
|
143
|
+
raise TypeError("Expected argument 'eap_fast_use_pacs' to be a bool")
|
144
|
+
pulumi.set(__self__, "eap_fast_use_pacs", eap_fast_use_pacs)
|
145
|
+
if eap_tls_allow_auth_of_expired_certs and not isinstance(eap_tls_allow_auth_of_expired_certs, bool):
|
146
|
+
raise TypeError("Expected argument 'eap_tls_allow_auth_of_expired_certs' to be a bool")
|
147
|
+
pulumi.set(__self__, "eap_tls_allow_auth_of_expired_certs", eap_tls_allow_auth_of_expired_certs)
|
148
|
+
if eap_tls_enable_stateless_session_resume and not isinstance(eap_tls_enable_stateless_session_resume, bool):
|
149
|
+
raise TypeError("Expected argument 'eap_tls_enable_stateless_session_resume' to be a bool")
|
150
|
+
pulumi.set(__self__, "eap_tls_enable_stateless_session_resume", eap_tls_enable_stateless_session_resume)
|
151
|
+
if eap_tls_l_bit and not isinstance(eap_tls_l_bit, bool):
|
152
|
+
raise TypeError("Expected argument 'eap_tls_l_bit' to be a bool")
|
153
|
+
pulumi.set(__self__, "eap_tls_l_bit", eap_tls_l_bit)
|
154
|
+
if eap_tls_session_ticket_percentage and not isinstance(eap_tls_session_ticket_percentage, int):
|
155
|
+
raise TypeError("Expected argument 'eap_tls_session_ticket_percentage' to be a int")
|
156
|
+
pulumi.set(__self__, "eap_tls_session_ticket_percentage", eap_tls_session_ticket_percentage)
|
157
|
+
if eap_tls_session_ticket_ttl and not isinstance(eap_tls_session_ticket_ttl, int):
|
158
|
+
raise TypeError("Expected argument 'eap_tls_session_ticket_ttl' to be a int")
|
159
|
+
pulumi.set(__self__, "eap_tls_session_ticket_ttl", eap_tls_session_ticket_ttl)
|
160
|
+
if eap_tls_session_ticket_ttl_unit and not isinstance(eap_tls_session_ticket_ttl_unit, str):
|
161
|
+
raise TypeError("Expected argument 'eap_tls_session_ticket_ttl_unit' to be a str")
|
162
|
+
pulumi.set(__self__, "eap_tls_session_ticket_ttl_unit", eap_tls_session_ticket_ttl_unit)
|
163
|
+
if eap_ttls_chap and not isinstance(eap_ttls_chap, bool):
|
164
|
+
raise TypeError("Expected argument 'eap_ttls_chap' to be a bool")
|
165
|
+
pulumi.set(__self__, "eap_ttls_chap", eap_ttls_chap)
|
166
|
+
if eap_ttls_eap_md5 and not isinstance(eap_ttls_eap_md5, bool):
|
167
|
+
raise TypeError("Expected argument 'eap_ttls_eap_md5' to be a bool")
|
168
|
+
pulumi.set(__self__, "eap_ttls_eap_md5", eap_ttls_eap_md5)
|
169
|
+
if eap_ttls_eap_ms_chap_v2 and not isinstance(eap_ttls_eap_ms_chap_v2, bool):
|
170
|
+
raise TypeError("Expected argument 'eap_ttls_eap_ms_chap_v2' to be a bool")
|
171
|
+
pulumi.set(__self__, "eap_ttls_eap_ms_chap_v2", eap_ttls_eap_ms_chap_v2)
|
172
|
+
if eap_ttls_eap_ms_chap_v2_pwd_change and not isinstance(eap_ttls_eap_ms_chap_v2_pwd_change, bool):
|
173
|
+
raise TypeError("Expected argument 'eap_ttls_eap_ms_chap_v2_pwd_change' to be a bool")
|
174
|
+
pulumi.set(__self__, "eap_ttls_eap_ms_chap_v2_pwd_change", eap_ttls_eap_ms_chap_v2_pwd_change)
|
175
|
+
if eap_ttls_eap_ms_chap_v2_pwd_change_retries and not isinstance(eap_ttls_eap_ms_chap_v2_pwd_change_retries, int):
|
176
|
+
raise TypeError("Expected argument 'eap_ttls_eap_ms_chap_v2_pwd_change_retries' to be a int")
|
177
|
+
pulumi.set(__self__, "eap_ttls_eap_ms_chap_v2_pwd_change_retries", eap_ttls_eap_ms_chap_v2_pwd_change_retries)
|
178
|
+
if eap_ttls_ms_chap_v1 and not isinstance(eap_ttls_ms_chap_v1, bool):
|
179
|
+
raise TypeError("Expected argument 'eap_ttls_ms_chap_v1' to be a bool")
|
180
|
+
pulumi.set(__self__, "eap_ttls_ms_chap_v1", eap_ttls_ms_chap_v1)
|
181
|
+
if eap_ttls_ms_chap_v2 and not isinstance(eap_ttls_ms_chap_v2, bool):
|
182
|
+
raise TypeError("Expected argument 'eap_ttls_ms_chap_v2' to be a bool")
|
183
|
+
pulumi.set(__self__, "eap_ttls_ms_chap_v2", eap_ttls_ms_chap_v2)
|
184
|
+
if eap_ttls_pap_ascii and not isinstance(eap_ttls_pap_ascii, bool):
|
185
|
+
raise TypeError("Expected argument 'eap_ttls_pap_ascii' to be a bool")
|
186
|
+
pulumi.set(__self__, "eap_ttls_pap_ascii", eap_ttls_pap_ascii)
|
187
|
+
if id and not isinstance(id, str):
|
188
|
+
raise TypeError("Expected argument 'id' to be a str")
|
189
|
+
pulumi.set(__self__, "id", id)
|
190
|
+
if name and not isinstance(name, str):
|
191
|
+
raise TypeError("Expected argument 'name' to be a str")
|
192
|
+
pulumi.set(__self__, "name", name)
|
193
|
+
if peap_allow_peap_eap_gtc and not isinstance(peap_allow_peap_eap_gtc, bool):
|
194
|
+
raise TypeError("Expected argument 'peap_allow_peap_eap_gtc' to be a bool")
|
195
|
+
pulumi.set(__self__, "peap_allow_peap_eap_gtc", peap_allow_peap_eap_gtc)
|
196
|
+
if peap_allow_peap_eap_gtc_pwd_change and not isinstance(peap_allow_peap_eap_gtc_pwd_change, bool):
|
197
|
+
raise TypeError("Expected argument 'peap_allow_peap_eap_gtc_pwd_change' to be a bool")
|
198
|
+
pulumi.set(__self__, "peap_allow_peap_eap_gtc_pwd_change", peap_allow_peap_eap_gtc_pwd_change)
|
199
|
+
if peap_allow_peap_eap_gtc_pwd_change_retries and not isinstance(peap_allow_peap_eap_gtc_pwd_change_retries, int):
|
200
|
+
raise TypeError("Expected argument 'peap_allow_peap_eap_gtc_pwd_change_retries' to be a int")
|
201
|
+
pulumi.set(__self__, "peap_allow_peap_eap_gtc_pwd_change_retries", peap_allow_peap_eap_gtc_pwd_change_retries)
|
202
|
+
if peap_allow_peap_eap_ms_chap_v2 and not isinstance(peap_allow_peap_eap_ms_chap_v2, bool):
|
203
|
+
raise TypeError("Expected argument 'peap_allow_peap_eap_ms_chap_v2' to be a bool")
|
204
|
+
pulumi.set(__self__, "peap_allow_peap_eap_ms_chap_v2", peap_allow_peap_eap_ms_chap_v2)
|
205
|
+
if peap_allow_peap_eap_ms_chap_v2_pwd_change and not isinstance(peap_allow_peap_eap_ms_chap_v2_pwd_change, bool):
|
206
|
+
raise TypeError("Expected argument 'peap_allow_peap_eap_ms_chap_v2_pwd_change' to be a bool")
|
207
|
+
pulumi.set(__self__, "peap_allow_peap_eap_ms_chap_v2_pwd_change", peap_allow_peap_eap_ms_chap_v2_pwd_change)
|
208
|
+
if peap_allow_peap_eap_ms_chap_v2_pwd_change_retries and not isinstance(peap_allow_peap_eap_ms_chap_v2_pwd_change_retries, int):
|
209
|
+
raise TypeError("Expected argument 'peap_allow_peap_eap_ms_chap_v2_pwd_change_retries' to be a int")
|
210
|
+
pulumi.set(__self__, "peap_allow_peap_eap_ms_chap_v2_pwd_change_retries", peap_allow_peap_eap_ms_chap_v2_pwd_change_retries)
|
211
|
+
if peap_allow_peap_eap_tls and not isinstance(peap_allow_peap_eap_tls, bool):
|
212
|
+
raise TypeError("Expected argument 'peap_allow_peap_eap_tls' to be a bool")
|
213
|
+
pulumi.set(__self__, "peap_allow_peap_eap_tls", peap_allow_peap_eap_tls)
|
214
|
+
if peap_allow_peap_eap_tls_auth_of_expired_certs and not isinstance(peap_allow_peap_eap_tls_auth_of_expired_certs, bool):
|
215
|
+
raise TypeError("Expected argument 'peap_allow_peap_eap_tls_auth_of_expired_certs' to be a bool")
|
216
|
+
pulumi.set(__self__, "peap_allow_peap_eap_tls_auth_of_expired_certs", peap_allow_peap_eap_tls_auth_of_expired_certs)
|
217
|
+
if peap_peap_v0 and not isinstance(peap_peap_v0, bool):
|
218
|
+
raise TypeError("Expected argument 'peap_peap_v0' to be a bool")
|
219
|
+
pulumi.set(__self__, "peap_peap_v0", peap_peap_v0)
|
220
|
+
if preferred_eap_protocol and not isinstance(preferred_eap_protocol, str):
|
221
|
+
raise TypeError("Expected argument 'preferred_eap_protocol' to be a str")
|
222
|
+
pulumi.set(__self__, "preferred_eap_protocol", preferred_eap_protocol)
|
223
|
+
if process_host_lookup and not isinstance(process_host_lookup, bool):
|
224
|
+
raise TypeError("Expected argument 'process_host_lookup' to be a bool")
|
225
|
+
pulumi.set(__self__, "process_host_lookup", process_host_lookup)
|
226
|
+
if require_cryptobinding and not isinstance(require_cryptobinding, bool):
|
227
|
+
raise TypeError("Expected argument 'require_cryptobinding' to be a bool")
|
228
|
+
pulumi.set(__self__, "require_cryptobinding", require_cryptobinding)
|
229
|
+
if require_message_auth and not isinstance(require_message_auth, bool):
|
230
|
+
raise TypeError("Expected argument 'require_message_auth' to be a bool")
|
231
|
+
pulumi.set(__self__, "require_message_auth", require_message_auth)
|
232
|
+
if teap_downgrade_msk and not isinstance(teap_downgrade_msk, bool):
|
233
|
+
raise TypeError("Expected argument 'teap_downgrade_msk' to be a bool")
|
234
|
+
pulumi.set(__self__, "teap_downgrade_msk", teap_downgrade_msk)
|
235
|
+
if teap_eap_accept_client_cert_during_tunnel_est and not isinstance(teap_eap_accept_client_cert_during_tunnel_est, bool):
|
236
|
+
raise TypeError("Expected argument 'teap_eap_accept_client_cert_during_tunnel_est' to be a bool")
|
237
|
+
pulumi.set(__self__, "teap_eap_accept_client_cert_during_tunnel_est", teap_eap_accept_client_cert_during_tunnel_est)
|
238
|
+
if teap_eap_chaining and not isinstance(teap_eap_chaining, bool):
|
239
|
+
raise TypeError("Expected argument 'teap_eap_chaining' to be a bool")
|
240
|
+
pulumi.set(__self__, "teap_eap_chaining", teap_eap_chaining)
|
241
|
+
if teap_eap_ms_chap_v2 and not isinstance(teap_eap_ms_chap_v2, bool):
|
242
|
+
raise TypeError("Expected argument 'teap_eap_ms_chap_v2' to be a bool")
|
243
|
+
pulumi.set(__self__, "teap_eap_ms_chap_v2", teap_eap_ms_chap_v2)
|
244
|
+
if teap_eap_ms_chap_v2_pwd_change and not isinstance(teap_eap_ms_chap_v2_pwd_change, bool):
|
245
|
+
raise TypeError("Expected argument 'teap_eap_ms_chap_v2_pwd_change' to be a bool")
|
246
|
+
pulumi.set(__self__, "teap_eap_ms_chap_v2_pwd_change", teap_eap_ms_chap_v2_pwd_change)
|
247
|
+
if teap_eap_ms_chap_v2_pwd_change_retries and not isinstance(teap_eap_ms_chap_v2_pwd_change_retries, int):
|
248
|
+
raise TypeError("Expected argument 'teap_eap_ms_chap_v2_pwd_change_retries' to be a int")
|
249
|
+
pulumi.set(__self__, "teap_eap_ms_chap_v2_pwd_change_retries", teap_eap_ms_chap_v2_pwd_change_retries)
|
250
|
+
if teap_eap_tls and not isinstance(teap_eap_tls, bool):
|
251
|
+
raise TypeError("Expected argument 'teap_eap_tls' to be a bool")
|
252
|
+
pulumi.set(__self__, "teap_eap_tls", teap_eap_tls)
|
253
|
+
if teap_eap_tls_auth_of_expired_certs and not isinstance(teap_eap_tls_auth_of_expired_certs, bool):
|
254
|
+
raise TypeError("Expected argument 'teap_eap_tls_auth_of_expired_certs' to be a bool")
|
255
|
+
pulumi.set(__self__, "teap_eap_tls_auth_of_expired_certs", teap_eap_tls_auth_of_expired_certs)
|
256
|
+
if teap_request_basic_pwd_auth and not isinstance(teap_request_basic_pwd_auth, bool):
|
257
|
+
raise TypeError("Expected argument 'teap_request_basic_pwd_auth' to be a bool")
|
258
|
+
pulumi.set(__self__, "teap_request_basic_pwd_auth", teap_request_basic_pwd_auth)
|
259
|
+
|
260
|
+
@property
|
261
|
+
@pulumi.getter
|
262
|
+
def allow5g(self) -> bool:
|
263
|
+
"""
|
264
|
+
Allow 5G. This field is only supported from ISE 3.2.
|
265
|
+
"""
|
266
|
+
return pulumi.get(self, "allow5g")
|
267
|
+
|
268
|
+
@property
|
269
|
+
@pulumi.getter(name="allowChap")
|
270
|
+
def allow_chap(self) -> bool:
|
271
|
+
"""
|
272
|
+
Allow CHAP
|
273
|
+
"""
|
274
|
+
return pulumi.get(self, "allow_chap")
|
275
|
+
|
276
|
+
@property
|
277
|
+
@pulumi.getter(name="allowEapFast")
|
278
|
+
def allow_eap_fast(self) -> bool:
|
279
|
+
"""
|
280
|
+
Allow EAP Fast
|
281
|
+
"""
|
282
|
+
return pulumi.get(self, "allow_eap_fast")
|
283
|
+
|
284
|
+
@property
|
285
|
+
@pulumi.getter(name="allowEapMd5")
|
286
|
+
def allow_eap_md5(self) -> bool:
|
287
|
+
"""
|
288
|
+
Allow EAP MD5
|
289
|
+
"""
|
290
|
+
return pulumi.get(self, "allow_eap_md5")
|
291
|
+
|
292
|
+
@property
|
293
|
+
@pulumi.getter(name="allowEapTls")
|
294
|
+
def allow_eap_tls(self) -> bool:
|
295
|
+
"""
|
296
|
+
Allow EAP TLS
|
297
|
+
"""
|
298
|
+
return pulumi.get(self, "allow_eap_tls")
|
299
|
+
|
300
|
+
@property
|
301
|
+
@pulumi.getter(name="allowEapTtls")
|
302
|
+
def allow_eap_ttls(self) -> bool:
|
303
|
+
"""
|
304
|
+
Allow EAP TTLS
|
305
|
+
"""
|
306
|
+
return pulumi.get(self, "allow_eap_ttls")
|
307
|
+
|
308
|
+
@property
|
309
|
+
@pulumi.getter(name="allowLeap")
|
310
|
+
def allow_leap(self) -> bool:
|
311
|
+
"""
|
312
|
+
Allow LEAP
|
313
|
+
"""
|
314
|
+
return pulumi.get(self, "allow_leap")
|
315
|
+
|
316
|
+
@property
|
317
|
+
@pulumi.getter(name="allowMsChapV1")
|
318
|
+
def allow_ms_chap_v1(self) -> bool:
|
319
|
+
"""
|
320
|
+
Allow MS CHAP v1
|
321
|
+
"""
|
322
|
+
return pulumi.get(self, "allow_ms_chap_v1")
|
323
|
+
|
324
|
+
@property
|
325
|
+
@pulumi.getter(name="allowMsChapV2")
|
326
|
+
def allow_ms_chap_v2(self) -> bool:
|
327
|
+
"""
|
328
|
+
Allow MS CHAP v2
|
329
|
+
"""
|
330
|
+
return pulumi.get(self, "allow_ms_chap_v2")
|
331
|
+
|
332
|
+
@property
|
333
|
+
@pulumi.getter(name="allowPapAscii")
|
334
|
+
def allow_pap_ascii(self) -> bool:
|
335
|
+
"""
|
336
|
+
Allow PAP ASCII
|
337
|
+
"""
|
338
|
+
return pulumi.get(self, "allow_pap_ascii")
|
339
|
+
|
340
|
+
@property
|
341
|
+
@pulumi.getter(name="allowPeap")
|
342
|
+
def allow_peap(self) -> bool:
|
343
|
+
"""
|
344
|
+
Allow PEAP
|
345
|
+
"""
|
346
|
+
return pulumi.get(self, "allow_peap")
|
347
|
+
|
348
|
+
@property
|
349
|
+
@pulumi.getter(name="allowPreferredEapProtocol")
|
350
|
+
def allow_preferred_eap_protocol(self) -> bool:
|
351
|
+
"""
|
352
|
+
Allow preferred EAP protocol
|
353
|
+
"""
|
354
|
+
return pulumi.get(self, "allow_preferred_eap_protocol")
|
355
|
+
|
356
|
+
@property
|
357
|
+
@pulumi.getter(name="allowTeap")
|
358
|
+
def allow_teap(self) -> bool:
|
359
|
+
"""
|
360
|
+
Allow TEAP
|
361
|
+
"""
|
362
|
+
return pulumi.get(self, "allow_teap")
|
363
|
+
|
364
|
+
@property
|
365
|
+
@pulumi.getter(name="allowWeakCiphersForEap")
|
366
|
+
def allow_weak_ciphers_for_eap(self) -> bool:
|
367
|
+
"""
|
368
|
+
Allow weak ciphers for EAP
|
369
|
+
"""
|
370
|
+
return pulumi.get(self, "allow_weak_ciphers_for_eap")
|
371
|
+
|
372
|
+
@property
|
373
|
+
@pulumi.getter
|
374
|
+
def description(self) -> str:
|
375
|
+
"""
|
376
|
+
Description
|
377
|
+
"""
|
378
|
+
return pulumi.get(self, "description")
|
379
|
+
|
380
|
+
@property
|
381
|
+
@pulumi.getter(name="eapFastAcceptClientCert")
|
382
|
+
def eap_fast_accept_client_cert(self) -> bool:
|
383
|
+
"""
|
384
|
+
Accept client certificates. Is required only if `eap_fast_use_pacs` is `false`.
|
385
|
+
"""
|
386
|
+
return pulumi.get(self, "eap_fast_accept_client_cert")
|
387
|
+
|
388
|
+
@property
|
389
|
+
@pulumi.getter(name="eapFastAllowMachineAuthentication")
|
390
|
+
def eap_fast_allow_machine_authentication(self) -> bool:
|
391
|
+
"""
|
392
|
+
Allow machine authentication. Is required only if `eap_fast_use_pacs` is `false`.
|
393
|
+
"""
|
394
|
+
return pulumi.get(self, "eap_fast_allow_machine_authentication")
|
395
|
+
|
396
|
+
@property
|
397
|
+
@pulumi.getter(name="eapFastEapGtc")
|
398
|
+
def eap_fast_eap_gtc(self) -> bool:
|
399
|
+
"""
|
400
|
+
Allow EAP GTC
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "eap_fast_eap_gtc")
|
403
|
+
|
404
|
+
@property
|
405
|
+
@pulumi.getter(name="eapFastEapGtcPwdChange")
|
406
|
+
def eap_fast_eap_gtc_pwd_change(self) -> bool:
|
407
|
+
"""
|
408
|
+
Allow EAP GTC password change. Is required only if `eap_fast_eap_gtc` is `true`.
|
409
|
+
"""
|
410
|
+
return pulumi.get(self, "eap_fast_eap_gtc_pwd_change")
|
411
|
+
|
412
|
+
@property
|
413
|
+
@pulumi.getter(name="eapFastEapGtcPwdChangeRetries")
|
414
|
+
def eap_fast_eap_gtc_pwd_change_retries(self) -> int:
|
415
|
+
"""
|
416
|
+
EAP GTC password change retries. Is required only if `eap_fast_eap_gtc` is `true`.
|
417
|
+
"""
|
418
|
+
return pulumi.get(self, "eap_fast_eap_gtc_pwd_change_retries")
|
419
|
+
|
420
|
+
@property
|
421
|
+
@pulumi.getter(name="eapFastEapMsChapV2")
|
422
|
+
def eap_fast_eap_ms_chap_v2(self) -> bool:
|
423
|
+
"""
|
424
|
+
Allow EAP MS CHAP v2
|
425
|
+
"""
|
426
|
+
return pulumi.get(self, "eap_fast_eap_ms_chap_v2")
|
427
|
+
|
428
|
+
@property
|
429
|
+
@pulumi.getter(name="eapFastEapMsChapV2PwdChange")
|
430
|
+
def eap_fast_eap_ms_chap_v2_pwd_change(self) -> bool:
|
431
|
+
"""
|
432
|
+
Allow EAP MS CHAP v2 password change. Is required only if `eap_fast_eap_ms_chap_v2` is `true`.
|
433
|
+
"""
|
434
|
+
return pulumi.get(self, "eap_fast_eap_ms_chap_v2_pwd_change")
|
435
|
+
|
436
|
+
@property
|
437
|
+
@pulumi.getter(name="eapFastEapMsChapV2PwdChangeRetries")
|
438
|
+
def eap_fast_eap_ms_chap_v2_pwd_change_retries(self) -> int:
|
439
|
+
"""
|
440
|
+
EAP MS CHAP v2 password change retries. Is required only if `eap_fast_eap_ms_chap_v2` is `true`.
|
441
|
+
"""
|
442
|
+
return pulumi.get(self, "eap_fast_eap_ms_chap_v2_pwd_change_retries")
|
443
|
+
|
444
|
+
@property
|
445
|
+
@pulumi.getter(name="eapFastEapTls")
|
446
|
+
def eap_fast_eap_tls(self) -> bool:
|
447
|
+
"""
|
448
|
+
Allow EAP TLS
|
449
|
+
"""
|
450
|
+
return pulumi.get(self, "eap_fast_eap_tls")
|
451
|
+
|
452
|
+
@property
|
453
|
+
@pulumi.getter(name="eapFastEapTlsAuthOfExpiredCerts")
|
454
|
+
def eap_fast_eap_tls_auth_of_expired_certs(self) -> bool:
|
455
|
+
"""
|
456
|
+
Allow EAP TLS authentication of expired certificates. Is required only if `eap_fast_eap_tls` is `true`.
|
457
|
+
"""
|
458
|
+
return pulumi.get(self, "eap_fast_eap_tls_auth_of_expired_certs")
|
459
|
+
|
460
|
+
@property
|
461
|
+
@pulumi.getter(name="eapFastEnableEapChaining")
|
462
|
+
def eap_fast_enable_eap_chaining(self) -> bool:
|
463
|
+
"""
|
464
|
+
Enable EAP chaining
|
465
|
+
"""
|
466
|
+
return pulumi.get(self, "eap_fast_enable_eap_chaining")
|
467
|
+
|
468
|
+
@property
|
469
|
+
@pulumi.getter(name="eapFastPacsAllowAnonymousProvisioning")
|
470
|
+
def eap_fast_pacs_allow_anonymous_provisioning(self) -> bool:
|
471
|
+
"""
|
472
|
+
Allow anonymous provisioning. Is required only if `eap_fast_use_pacs` is `true`.
|
473
|
+
"""
|
474
|
+
return pulumi.get(self, "eap_fast_pacs_allow_anonymous_provisioning")
|
475
|
+
|
476
|
+
@property
|
477
|
+
@pulumi.getter(name="eapFastPacsAllowAuthenticatedProvisioning")
|
478
|
+
def eap_fast_pacs_allow_authenticated_provisioning(self) -> bool:
|
479
|
+
"""
|
480
|
+
Allow authenticated provisioning. Is required only if `eap_fast_use_pacs` is `true`.
|
481
|
+
"""
|
482
|
+
return pulumi.get(self, "eap_fast_pacs_allow_authenticated_provisioning")
|
483
|
+
|
484
|
+
@property
|
485
|
+
@pulumi.getter(name="eapFastPacsAllowClientCert")
|
486
|
+
def eap_fast_pacs_allow_client_cert(self) -> bool:
|
487
|
+
"""
|
488
|
+
Accept client certification for provisioning. Is required only if `eap_fast_pacs_allow_authenticated_provisioning` is `true`.
|
489
|
+
"""
|
490
|
+
return pulumi.get(self, "eap_fast_pacs_allow_client_cert")
|
491
|
+
|
492
|
+
@property
|
493
|
+
@pulumi.getter(name="eapFastPacsAllowMachineAuthentication")
|
494
|
+
def eap_fast_pacs_allow_machine_authentication(self) -> bool:
|
495
|
+
"""
|
496
|
+
Allow machine authentication. Is required only if `eap_fast_use_pacs` is `true`.
|
497
|
+
"""
|
498
|
+
return pulumi.get(self, "eap_fast_pacs_allow_machine_authentication")
|
499
|
+
|
500
|
+
@property
|
501
|
+
@pulumi.getter(name="eapFastPacsAuthorizationPacTtl")
|
502
|
+
def eap_fast_pacs_authorization_pac_ttl(self) -> int:
|
503
|
+
"""
|
504
|
+
Authorization PAC TTL. Is required only if `eap_fast_pacs_stateless_session_resume` is `true`.
|
505
|
+
"""
|
506
|
+
return pulumi.get(self, "eap_fast_pacs_authorization_pac_ttl")
|
507
|
+
|
508
|
+
@property
|
509
|
+
@pulumi.getter(name="eapFastPacsAuthorizationPacTtlUnit")
|
510
|
+
def eap_fast_pacs_authorization_pac_ttl_unit(self) -> str:
|
511
|
+
"""
|
512
|
+
Authorization PAC TTL unit. Is required only if `eap_fast_pacs_stateless_session_resume` is `true`.
|
513
|
+
"""
|
514
|
+
return pulumi.get(self, "eap_fast_pacs_authorization_pac_ttl_unit")
|
515
|
+
|
516
|
+
@property
|
517
|
+
@pulumi.getter(name="eapFastPacsMachinePacTtl")
|
518
|
+
def eap_fast_pacs_machine_pac_ttl(self) -> int:
|
519
|
+
"""
|
520
|
+
Machine PAC TTL. Is required only if `eap_fast_pacs_allow_machine_authentication` is `true`.
|
521
|
+
"""
|
522
|
+
return pulumi.get(self, "eap_fast_pacs_machine_pac_ttl")
|
523
|
+
|
524
|
+
@property
|
525
|
+
@pulumi.getter(name="eapFastPacsMachinePacTtlUnit")
|
526
|
+
def eap_fast_pacs_machine_pac_ttl_unit(self) -> str:
|
527
|
+
"""
|
528
|
+
Machine PAC TTL unit. Is required only if `eap_fast_pacs_allow_machine_authentication` is `true`.
|
529
|
+
"""
|
530
|
+
return pulumi.get(self, "eap_fast_pacs_machine_pac_ttl_unit")
|
531
|
+
|
532
|
+
@property
|
533
|
+
@pulumi.getter(name="eapFastPacsServerReturns")
|
534
|
+
def eap_fast_pacs_server_returns(self) -> bool:
|
535
|
+
"""
|
536
|
+
Server returns access accept after authenticated provisioning. Is required only if `eap_fast_pacs_allow_authenticated_provisioning` is `true`.
|
537
|
+
"""
|
538
|
+
return pulumi.get(self, "eap_fast_pacs_server_returns")
|
539
|
+
|
540
|
+
@property
|
541
|
+
@pulumi.getter(name="eapFastPacsStatelessSessionResume")
|
542
|
+
def eap_fast_pacs_stateless_session_resume(self) -> bool:
|
543
|
+
"""
|
544
|
+
Stateless session resume. Is required only if `eap_fast_use_pacs` is `true`.
|
545
|
+
"""
|
546
|
+
return pulumi.get(self, "eap_fast_pacs_stateless_session_resume")
|
547
|
+
|
548
|
+
@property
|
549
|
+
@pulumi.getter(name="eapFastPacsTunnelPacTtl")
|
550
|
+
def eap_fast_pacs_tunnel_pac_ttl(self) -> int:
|
551
|
+
"""
|
552
|
+
PACs tunnel PAC time to live. Is required only if `eap_fast_use_pacs` is `true`.
|
553
|
+
"""
|
554
|
+
return pulumi.get(self, "eap_fast_pacs_tunnel_pac_ttl")
|
555
|
+
|
556
|
+
@property
|
557
|
+
@pulumi.getter(name="eapFastPacsTunnelPacTtlUnit")
|
558
|
+
def eap_fast_pacs_tunnel_pac_ttl_unit(self) -> str:
|
559
|
+
"""
|
560
|
+
PACs tunnel PAC time to live unit. Is required only if `eap_fast_use_pacs` is `true`.
|
561
|
+
"""
|
562
|
+
return pulumi.get(self, "eap_fast_pacs_tunnel_pac_ttl_unit")
|
563
|
+
|
564
|
+
@property
|
565
|
+
@pulumi.getter(name="eapFastPacsUseProactivePacUpdatePercentage")
|
566
|
+
def eap_fast_pacs_use_proactive_pac_update_percentage(self) -> int:
|
567
|
+
"""
|
568
|
+
Use proactive pac update percentage. Is required only if `eap_fast_use_pacs` is `true`.
|
569
|
+
"""
|
570
|
+
return pulumi.get(self, "eap_fast_pacs_use_proactive_pac_update_percentage")
|
571
|
+
|
572
|
+
@property
|
573
|
+
@pulumi.getter(name="eapFastUsePacs")
|
574
|
+
def eap_fast_use_pacs(self) -> bool:
|
575
|
+
"""
|
576
|
+
Use PACs
|
577
|
+
"""
|
578
|
+
return pulumi.get(self, "eap_fast_use_pacs")
|
579
|
+
|
580
|
+
@property
|
581
|
+
@pulumi.getter(name="eapTlsAllowAuthOfExpiredCerts")
|
582
|
+
def eap_tls_allow_auth_of_expired_certs(self) -> bool:
|
583
|
+
"""
|
584
|
+
Allow authentication of expired certificates
|
585
|
+
"""
|
586
|
+
return pulumi.get(self, "eap_tls_allow_auth_of_expired_certs")
|
587
|
+
|
588
|
+
@property
|
589
|
+
@pulumi.getter(name="eapTlsEnableStatelessSessionResume")
|
590
|
+
def eap_tls_enable_stateless_session_resume(self) -> bool:
|
591
|
+
"""
|
592
|
+
Enable stateless session resume
|
593
|
+
"""
|
594
|
+
return pulumi.get(self, "eap_tls_enable_stateless_session_resume")
|
595
|
+
|
596
|
+
@property
|
597
|
+
@pulumi.getter(name="eapTlsLBit")
|
598
|
+
def eap_tls_l_bit(self) -> bool:
|
599
|
+
"""
|
600
|
+
EAP TLS L-Bit
|
601
|
+
"""
|
602
|
+
return pulumi.get(self, "eap_tls_l_bit")
|
603
|
+
|
604
|
+
@property
|
605
|
+
@pulumi.getter(name="eapTlsSessionTicketPercentage")
|
606
|
+
def eap_tls_session_ticket_percentage(self) -> int:
|
607
|
+
"""
|
608
|
+
Session ticket percentage. Is required only if `eap_tls_enable_stateless_session_resume` is `true`.
|
609
|
+
"""
|
610
|
+
return pulumi.get(self, "eap_tls_session_ticket_percentage")
|
611
|
+
|
612
|
+
@property
|
613
|
+
@pulumi.getter(name="eapTlsSessionTicketTtl")
|
614
|
+
def eap_tls_session_ticket_ttl(self) -> int:
|
615
|
+
"""
|
616
|
+
Session ticket TTL. Is required only if `eap_tls_enable_stateless_session_resume` is `true`.
|
617
|
+
"""
|
618
|
+
return pulumi.get(self, "eap_tls_session_ticket_ttl")
|
619
|
+
|
620
|
+
@property
|
621
|
+
@pulumi.getter(name="eapTlsSessionTicketTtlUnit")
|
622
|
+
def eap_tls_session_ticket_ttl_unit(self) -> str:
|
623
|
+
"""
|
624
|
+
Session ticket TTL unit. Is required only if `eap_tls_enable_stateless_session_resume` is `true`.
|
625
|
+
"""
|
626
|
+
return pulumi.get(self, "eap_tls_session_ticket_ttl_unit")
|
627
|
+
|
628
|
+
@property
|
629
|
+
@pulumi.getter(name="eapTtlsChap")
|
630
|
+
def eap_ttls_chap(self) -> bool:
|
631
|
+
"""
|
632
|
+
Allow CHAP
|
633
|
+
"""
|
634
|
+
return pulumi.get(self, "eap_ttls_chap")
|
635
|
+
|
636
|
+
@property
|
637
|
+
@pulumi.getter(name="eapTtlsEapMd5")
|
638
|
+
def eap_ttls_eap_md5(self) -> bool:
|
639
|
+
"""
|
640
|
+
Allow EAP MD5
|
641
|
+
"""
|
642
|
+
return pulumi.get(self, "eap_ttls_eap_md5")
|
643
|
+
|
644
|
+
@property
|
645
|
+
@pulumi.getter(name="eapTtlsEapMsChapV2")
|
646
|
+
def eap_ttls_eap_ms_chap_v2(self) -> bool:
|
647
|
+
"""
|
648
|
+
Allow EAP MS CHAP v2
|
649
|
+
"""
|
650
|
+
return pulumi.get(self, "eap_ttls_eap_ms_chap_v2")
|
651
|
+
|
652
|
+
@property
|
653
|
+
@pulumi.getter(name="eapTtlsEapMsChapV2PwdChange")
|
654
|
+
def eap_ttls_eap_ms_chap_v2_pwd_change(self) -> bool:
|
655
|
+
"""
|
656
|
+
Allow EAP MS CHAP v2 password change. Is required only if `eap_ttls_eap_ms_chap_v2` is `true`.
|
657
|
+
"""
|
658
|
+
return pulumi.get(self, "eap_ttls_eap_ms_chap_v2_pwd_change")
|
659
|
+
|
660
|
+
@property
|
661
|
+
@pulumi.getter(name="eapTtlsEapMsChapV2PwdChangeRetries")
|
662
|
+
def eap_ttls_eap_ms_chap_v2_pwd_change_retries(self) -> int:
|
663
|
+
"""
|
664
|
+
EAP MS CHAP v2 password change retries. Is required only if `eap_ttls_eap_ms_chap_v2` is `true`.
|
665
|
+
"""
|
666
|
+
return pulumi.get(self, "eap_ttls_eap_ms_chap_v2_pwd_change_retries")
|
667
|
+
|
668
|
+
@property
|
669
|
+
@pulumi.getter(name="eapTtlsMsChapV1")
|
670
|
+
def eap_ttls_ms_chap_v1(self) -> bool:
|
671
|
+
"""
|
672
|
+
Allow MS CHAP v1
|
673
|
+
"""
|
674
|
+
return pulumi.get(self, "eap_ttls_ms_chap_v1")
|
675
|
+
|
676
|
+
@property
|
677
|
+
@pulumi.getter(name="eapTtlsMsChapV2")
|
678
|
+
def eap_ttls_ms_chap_v2(self) -> bool:
|
679
|
+
"""
|
680
|
+
Allow MS CHAP v2
|
681
|
+
"""
|
682
|
+
return pulumi.get(self, "eap_ttls_ms_chap_v2")
|
683
|
+
|
684
|
+
@property
|
685
|
+
@pulumi.getter(name="eapTtlsPapAscii")
|
686
|
+
def eap_ttls_pap_ascii(self) -> bool:
|
687
|
+
"""
|
688
|
+
Allow PAP ASCII
|
689
|
+
"""
|
690
|
+
return pulumi.get(self, "eap_ttls_pap_ascii")
|
691
|
+
|
692
|
+
@property
|
693
|
+
@pulumi.getter
|
694
|
+
def id(self) -> str:
|
695
|
+
"""
|
696
|
+
The id of the object
|
697
|
+
"""
|
698
|
+
return pulumi.get(self, "id")
|
699
|
+
|
700
|
+
@property
|
701
|
+
@pulumi.getter
|
702
|
+
def name(self) -> str:
|
703
|
+
"""
|
704
|
+
The name of the allowed protocols
|
705
|
+
"""
|
706
|
+
return pulumi.get(self, "name")
|
707
|
+
|
708
|
+
@property
|
709
|
+
@pulumi.getter(name="peapAllowPeapEapGtc")
|
710
|
+
def peap_allow_peap_eap_gtc(self) -> bool:
|
711
|
+
"""
|
712
|
+
Allow PEAP EAP GTC
|
713
|
+
"""
|
714
|
+
return pulumi.get(self, "peap_allow_peap_eap_gtc")
|
715
|
+
|
716
|
+
@property
|
717
|
+
@pulumi.getter(name="peapAllowPeapEapGtcPwdChange")
|
718
|
+
def peap_allow_peap_eap_gtc_pwd_change(self) -> bool:
|
719
|
+
"""
|
720
|
+
Allow PEAP EAP GTC password change. Is required only if `allow_peap_eap_gtc` is `true`.
|
721
|
+
"""
|
722
|
+
return pulumi.get(self, "peap_allow_peap_eap_gtc_pwd_change")
|
723
|
+
|
724
|
+
@property
|
725
|
+
@pulumi.getter(name="peapAllowPeapEapGtcPwdChangeRetries")
|
726
|
+
def peap_allow_peap_eap_gtc_pwd_change_retries(self) -> int:
|
727
|
+
"""
|
728
|
+
PEAP EAP GTC password change retries. Is required only if `allow_peap_eap_gtc` is `true`.
|
729
|
+
"""
|
730
|
+
return pulumi.get(self, "peap_allow_peap_eap_gtc_pwd_change_retries")
|
731
|
+
|
732
|
+
@property
|
733
|
+
@pulumi.getter(name="peapAllowPeapEapMsChapV2")
|
734
|
+
def peap_allow_peap_eap_ms_chap_v2(self) -> bool:
|
735
|
+
"""
|
736
|
+
Allow PEAP EAP MS CHAP v2
|
737
|
+
"""
|
738
|
+
return pulumi.get(self, "peap_allow_peap_eap_ms_chap_v2")
|
739
|
+
|
740
|
+
@property
|
741
|
+
@pulumi.getter(name="peapAllowPeapEapMsChapV2PwdChange")
|
742
|
+
def peap_allow_peap_eap_ms_chap_v2_pwd_change(self) -> bool:
|
743
|
+
"""
|
744
|
+
Allow PEAP EAP MS CHAP v2 password change. Is required only if `allow_peap_eap_ms_chap_v2` is `true`.
|
745
|
+
"""
|
746
|
+
return pulumi.get(self, "peap_allow_peap_eap_ms_chap_v2_pwd_change")
|
747
|
+
|
748
|
+
@property
|
749
|
+
@pulumi.getter(name="peapAllowPeapEapMsChapV2PwdChangeRetries")
|
750
|
+
def peap_allow_peap_eap_ms_chap_v2_pwd_change_retries(self) -> int:
|
751
|
+
"""
|
752
|
+
Allow PEAP EAP MS CHAP v2 password change retries. Is required only if `allow_peap_eap_ms_chap_v2` is `true`.
|
753
|
+
"""
|
754
|
+
return pulumi.get(self, "peap_allow_peap_eap_ms_chap_v2_pwd_change_retries")
|
755
|
+
|
756
|
+
@property
|
757
|
+
@pulumi.getter(name="peapAllowPeapEapTls")
|
758
|
+
def peap_allow_peap_eap_tls(self) -> bool:
|
759
|
+
"""
|
760
|
+
Allow PEAP EAP TLS
|
761
|
+
"""
|
762
|
+
return pulumi.get(self, "peap_allow_peap_eap_tls")
|
763
|
+
|
764
|
+
@property
|
765
|
+
@pulumi.getter(name="peapAllowPeapEapTlsAuthOfExpiredCerts")
|
766
|
+
def peap_allow_peap_eap_tls_auth_of_expired_certs(self) -> bool:
|
767
|
+
"""
|
768
|
+
Allow PEAP EAP TLS authentication of expired certificates. Is required only if `peap_allow_peap_eap_tls` is `true`.
|
769
|
+
"""
|
770
|
+
return pulumi.get(self, "peap_allow_peap_eap_tls_auth_of_expired_certs")
|
771
|
+
|
772
|
+
@property
|
773
|
+
@pulumi.getter(name="peapPeapV0")
|
774
|
+
def peap_peap_v0(self) -> bool:
|
775
|
+
"""
|
776
|
+
Allow PEAP v0
|
777
|
+
"""
|
778
|
+
return pulumi.get(self, "peap_peap_v0")
|
779
|
+
|
780
|
+
@property
|
781
|
+
@pulumi.getter(name="preferredEapProtocol")
|
782
|
+
def preferred_eap_protocol(self) -> str:
|
783
|
+
"""
|
784
|
+
Preferred EAP protocol
|
785
|
+
"""
|
786
|
+
return pulumi.get(self, "preferred_eap_protocol")
|
787
|
+
|
788
|
+
@property
|
789
|
+
@pulumi.getter(name="processHostLookup")
|
790
|
+
def process_host_lookup(self) -> bool:
|
791
|
+
"""
|
792
|
+
Process host lookup
|
793
|
+
"""
|
794
|
+
return pulumi.get(self, "process_host_lookup")
|
795
|
+
|
796
|
+
@property
|
797
|
+
@pulumi.getter(name="requireCryptobinding")
|
798
|
+
def require_cryptobinding(self) -> bool:
|
799
|
+
"""
|
800
|
+
Require cryptobinding
|
801
|
+
"""
|
802
|
+
return pulumi.get(self, "require_cryptobinding")
|
803
|
+
|
804
|
+
@property
|
805
|
+
@pulumi.getter(name="requireMessageAuth")
|
806
|
+
def require_message_auth(self) -> bool:
|
807
|
+
"""
|
808
|
+
Require message authentication
|
809
|
+
"""
|
810
|
+
return pulumi.get(self, "require_message_auth")
|
811
|
+
|
812
|
+
@property
|
813
|
+
@pulumi.getter(name="teapDowngradeMsk")
|
814
|
+
def teap_downgrade_msk(self) -> bool:
|
815
|
+
"""
|
816
|
+
Allow downgrade to MSK
|
817
|
+
"""
|
818
|
+
return pulumi.get(self, "teap_downgrade_msk")
|
819
|
+
|
820
|
+
@property
|
821
|
+
@pulumi.getter(name="teapEapAcceptClientCertDuringTunnelEst")
|
822
|
+
def teap_eap_accept_client_cert_during_tunnel_est(self) -> bool:
|
823
|
+
"""
|
824
|
+
Accept client certificate during tunnel establishment
|
825
|
+
"""
|
826
|
+
return pulumi.get(self, "teap_eap_accept_client_cert_during_tunnel_est")
|
827
|
+
|
828
|
+
@property
|
829
|
+
@pulumi.getter(name="teapEapChaining")
|
830
|
+
def teap_eap_chaining(self) -> bool:
|
831
|
+
"""
|
832
|
+
Allow EAP chaining
|
833
|
+
"""
|
834
|
+
return pulumi.get(self, "teap_eap_chaining")
|
835
|
+
|
836
|
+
@property
|
837
|
+
@pulumi.getter(name="teapEapMsChapV2")
|
838
|
+
def teap_eap_ms_chap_v2(self) -> bool:
|
839
|
+
"""
|
840
|
+
Allow EAP MS CHAP v2
|
841
|
+
"""
|
842
|
+
return pulumi.get(self, "teap_eap_ms_chap_v2")
|
843
|
+
|
844
|
+
@property
|
845
|
+
@pulumi.getter(name="teapEapMsChapV2PwdChange")
|
846
|
+
def teap_eap_ms_chap_v2_pwd_change(self) -> bool:
|
847
|
+
"""
|
848
|
+
Allow EAP MS CHAP v2 password change. Is required only if `teap_eap_ms_chap_v2` is `true`.
|
849
|
+
"""
|
850
|
+
return pulumi.get(self, "teap_eap_ms_chap_v2_pwd_change")
|
851
|
+
|
852
|
+
@property
|
853
|
+
@pulumi.getter(name="teapEapMsChapV2PwdChangeRetries")
|
854
|
+
def teap_eap_ms_chap_v2_pwd_change_retries(self) -> int:
|
855
|
+
"""
|
856
|
+
EAP MS CHAP v2 password change retries. Is required only if `teap_eap_ms_chap_v2` is `true`.
|
857
|
+
"""
|
858
|
+
return pulumi.get(self, "teap_eap_ms_chap_v2_pwd_change_retries")
|
859
|
+
|
860
|
+
@property
|
861
|
+
@pulumi.getter(name="teapEapTls")
|
862
|
+
def teap_eap_tls(self) -> bool:
|
863
|
+
"""
|
864
|
+
Allow EAP TLS
|
865
|
+
"""
|
866
|
+
return pulumi.get(self, "teap_eap_tls")
|
867
|
+
|
868
|
+
@property
|
869
|
+
@pulumi.getter(name="teapEapTlsAuthOfExpiredCerts")
|
870
|
+
def teap_eap_tls_auth_of_expired_certs(self) -> bool:
|
871
|
+
"""
|
872
|
+
Allow EAP TLS authentication of expired certs. Is required only if `teap_eap_tls` is `true`.
|
873
|
+
"""
|
874
|
+
return pulumi.get(self, "teap_eap_tls_auth_of_expired_certs")
|
875
|
+
|
876
|
+
@property
|
877
|
+
@pulumi.getter(name="teapRequestBasicPwdAuth")
|
878
|
+
def teap_request_basic_pwd_auth(self) -> bool:
|
879
|
+
"""
|
880
|
+
Request basic password authentication
|
881
|
+
"""
|
882
|
+
return pulumi.get(self, "teap_request_basic_pwd_auth")
|
883
|
+
|
884
|
+
|
885
|
+
class AwaitableGetAllowedProtocolsResult(GetAllowedProtocolsResult):
|
886
|
+
# pylint: disable=using-constant-test
|
887
|
+
def __await__(self):
|
888
|
+
if False:
|
889
|
+
yield self
|
890
|
+
return GetAllowedProtocolsResult(
|
891
|
+
allow5g=self.allow5g,
|
892
|
+
allow_chap=self.allow_chap,
|
893
|
+
allow_eap_fast=self.allow_eap_fast,
|
894
|
+
allow_eap_md5=self.allow_eap_md5,
|
895
|
+
allow_eap_tls=self.allow_eap_tls,
|
896
|
+
allow_eap_ttls=self.allow_eap_ttls,
|
897
|
+
allow_leap=self.allow_leap,
|
898
|
+
allow_ms_chap_v1=self.allow_ms_chap_v1,
|
899
|
+
allow_ms_chap_v2=self.allow_ms_chap_v2,
|
900
|
+
allow_pap_ascii=self.allow_pap_ascii,
|
901
|
+
allow_peap=self.allow_peap,
|
902
|
+
allow_preferred_eap_protocol=self.allow_preferred_eap_protocol,
|
903
|
+
allow_teap=self.allow_teap,
|
904
|
+
allow_weak_ciphers_for_eap=self.allow_weak_ciphers_for_eap,
|
905
|
+
description=self.description,
|
906
|
+
eap_fast_accept_client_cert=self.eap_fast_accept_client_cert,
|
907
|
+
eap_fast_allow_machine_authentication=self.eap_fast_allow_machine_authentication,
|
908
|
+
eap_fast_eap_gtc=self.eap_fast_eap_gtc,
|
909
|
+
eap_fast_eap_gtc_pwd_change=self.eap_fast_eap_gtc_pwd_change,
|
910
|
+
eap_fast_eap_gtc_pwd_change_retries=self.eap_fast_eap_gtc_pwd_change_retries,
|
911
|
+
eap_fast_eap_ms_chap_v2=self.eap_fast_eap_ms_chap_v2,
|
912
|
+
eap_fast_eap_ms_chap_v2_pwd_change=self.eap_fast_eap_ms_chap_v2_pwd_change,
|
913
|
+
eap_fast_eap_ms_chap_v2_pwd_change_retries=self.eap_fast_eap_ms_chap_v2_pwd_change_retries,
|
914
|
+
eap_fast_eap_tls=self.eap_fast_eap_tls,
|
915
|
+
eap_fast_eap_tls_auth_of_expired_certs=self.eap_fast_eap_tls_auth_of_expired_certs,
|
916
|
+
eap_fast_enable_eap_chaining=self.eap_fast_enable_eap_chaining,
|
917
|
+
eap_fast_pacs_allow_anonymous_provisioning=self.eap_fast_pacs_allow_anonymous_provisioning,
|
918
|
+
eap_fast_pacs_allow_authenticated_provisioning=self.eap_fast_pacs_allow_authenticated_provisioning,
|
919
|
+
eap_fast_pacs_allow_client_cert=self.eap_fast_pacs_allow_client_cert,
|
920
|
+
eap_fast_pacs_allow_machine_authentication=self.eap_fast_pacs_allow_machine_authentication,
|
921
|
+
eap_fast_pacs_authorization_pac_ttl=self.eap_fast_pacs_authorization_pac_ttl,
|
922
|
+
eap_fast_pacs_authorization_pac_ttl_unit=self.eap_fast_pacs_authorization_pac_ttl_unit,
|
923
|
+
eap_fast_pacs_machine_pac_ttl=self.eap_fast_pacs_machine_pac_ttl,
|
924
|
+
eap_fast_pacs_machine_pac_ttl_unit=self.eap_fast_pacs_machine_pac_ttl_unit,
|
925
|
+
eap_fast_pacs_server_returns=self.eap_fast_pacs_server_returns,
|
926
|
+
eap_fast_pacs_stateless_session_resume=self.eap_fast_pacs_stateless_session_resume,
|
927
|
+
eap_fast_pacs_tunnel_pac_ttl=self.eap_fast_pacs_tunnel_pac_ttl,
|
928
|
+
eap_fast_pacs_tunnel_pac_ttl_unit=self.eap_fast_pacs_tunnel_pac_ttl_unit,
|
929
|
+
eap_fast_pacs_use_proactive_pac_update_percentage=self.eap_fast_pacs_use_proactive_pac_update_percentage,
|
930
|
+
eap_fast_use_pacs=self.eap_fast_use_pacs,
|
931
|
+
eap_tls_allow_auth_of_expired_certs=self.eap_tls_allow_auth_of_expired_certs,
|
932
|
+
eap_tls_enable_stateless_session_resume=self.eap_tls_enable_stateless_session_resume,
|
933
|
+
eap_tls_l_bit=self.eap_tls_l_bit,
|
934
|
+
eap_tls_session_ticket_percentage=self.eap_tls_session_ticket_percentage,
|
935
|
+
eap_tls_session_ticket_ttl=self.eap_tls_session_ticket_ttl,
|
936
|
+
eap_tls_session_ticket_ttl_unit=self.eap_tls_session_ticket_ttl_unit,
|
937
|
+
eap_ttls_chap=self.eap_ttls_chap,
|
938
|
+
eap_ttls_eap_md5=self.eap_ttls_eap_md5,
|
939
|
+
eap_ttls_eap_ms_chap_v2=self.eap_ttls_eap_ms_chap_v2,
|
940
|
+
eap_ttls_eap_ms_chap_v2_pwd_change=self.eap_ttls_eap_ms_chap_v2_pwd_change,
|
941
|
+
eap_ttls_eap_ms_chap_v2_pwd_change_retries=self.eap_ttls_eap_ms_chap_v2_pwd_change_retries,
|
942
|
+
eap_ttls_ms_chap_v1=self.eap_ttls_ms_chap_v1,
|
943
|
+
eap_ttls_ms_chap_v2=self.eap_ttls_ms_chap_v2,
|
944
|
+
eap_ttls_pap_ascii=self.eap_ttls_pap_ascii,
|
945
|
+
id=self.id,
|
946
|
+
name=self.name,
|
947
|
+
peap_allow_peap_eap_gtc=self.peap_allow_peap_eap_gtc,
|
948
|
+
peap_allow_peap_eap_gtc_pwd_change=self.peap_allow_peap_eap_gtc_pwd_change,
|
949
|
+
peap_allow_peap_eap_gtc_pwd_change_retries=self.peap_allow_peap_eap_gtc_pwd_change_retries,
|
950
|
+
peap_allow_peap_eap_ms_chap_v2=self.peap_allow_peap_eap_ms_chap_v2,
|
951
|
+
peap_allow_peap_eap_ms_chap_v2_pwd_change=self.peap_allow_peap_eap_ms_chap_v2_pwd_change,
|
952
|
+
peap_allow_peap_eap_ms_chap_v2_pwd_change_retries=self.peap_allow_peap_eap_ms_chap_v2_pwd_change_retries,
|
953
|
+
peap_allow_peap_eap_tls=self.peap_allow_peap_eap_tls,
|
954
|
+
peap_allow_peap_eap_tls_auth_of_expired_certs=self.peap_allow_peap_eap_tls_auth_of_expired_certs,
|
955
|
+
peap_peap_v0=self.peap_peap_v0,
|
956
|
+
preferred_eap_protocol=self.preferred_eap_protocol,
|
957
|
+
process_host_lookup=self.process_host_lookup,
|
958
|
+
require_cryptobinding=self.require_cryptobinding,
|
959
|
+
require_message_auth=self.require_message_auth,
|
960
|
+
teap_downgrade_msk=self.teap_downgrade_msk,
|
961
|
+
teap_eap_accept_client_cert_during_tunnel_est=self.teap_eap_accept_client_cert_during_tunnel_est,
|
962
|
+
teap_eap_chaining=self.teap_eap_chaining,
|
963
|
+
teap_eap_ms_chap_v2=self.teap_eap_ms_chap_v2,
|
964
|
+
teap_eap_ms_chap_v2_pwd_change=self.teap_eap_ms_chap_v2_pwd_change,
|
965
|
+
teap_eap_ms_chap_v2_pwd_change_retries=self.teap_eap_ms_chap_v2_pwd_change_retries,
|
966
|
+
teap_eap_tls=self.teap_eap_tls,
|
967
|
+
teap_eap_tls_auth_of_expired_certs=self.teap_eap_tls_auth_of_expired_certs,
|
968
|
+
teap_request_basic_pwd_auth=self.teap_request_basic_pwd_auth)
|
969
|
+
|
970
|
+
|
971
|
+
def get_allowed_protocols(id: Optional[str] = None,
|
972
|
+
name: Optional[str] = None,
|
973
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAllowedProtocolsResult:
|
974
|
+
"""
|
975
|
+
This data source can read an allowed protocols policy element.
|
976
|
+
|
977
|
+
## Example Usage
|
978
|
+
|
979
|
+
```python
|
980
|
+
import pulumi
|
981
|
+
import pulumi_ise as ise
|
982
|
+
|
983
|
+
example = ise.networkaccess.get_allowed_protocols(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
|
984
|
+
```
|
985
|
+
|
986
|
+
|
987
|
+
:param str id: The id of the object
|
988
|
+
:param str name: The name of the allowed protocols
|
989
|
+
"""
|
990
|
+
__args__ = dict()
|
991
|
+
__args__['id'] = id
|
992
|
+
__args__['name'] = name
|
993
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
994
|
+
__ret__ = pulumi.runtime.invoke('ise:networkaccess/getAllowedProtocols:getAllowedProtocols', __args__, opts=opts, typ=GetAllowedProtocolsResult).value
|
995
|
+
|
996
|
+
return AwaitableGetAllowedProtocolsResult(
|
997
|
+
allow5g=pulumi.get(__ret__, 'allow5g'),
|
998
|
+
allow_chap=pulumi.get(__ret__, 'allow_chap'),
|
999
|
+
allow_eap_fast=pulumi.get(__ret__, 'allow_eap_fast'),
|
1000
|
+
allow_eap_md5=pulumi.get(__ret__, 'allow_eap_md5'),
|
1001
|
+
allow_eap_tls=pulumi.get(__ret__, 'allow_eap_tls'),
|
1002
|
+
allow_eap_ttls=pulumi.get(__ret__, 'allow_eap_ttls'),
|
1003
|
+
allow_leap=pulumi.get(__ret__, 'allow_leap'),
|
1004
|
+
allow_ms_chap_v1=pulumi.get(__ret__, 'allow_ms_chap_v1'),
|
1005
|
+
allow_ms_chap_v2=pulumi.get(__ret__, 'allow_ms_chap_v2'),
|
1006
|
+
allow_pap_ascii=pulumi.get(__ret__, 'allow_pap_ascii'),
|
1007
|
+
allow_peap=pulumi.get(__ret__, 'allow_peap'),
|
1008
|
+
allow_preferred_eap_protocol=pulumi.get(__ret__, 'allow_preferred_eap_protocol'),
|
1009
|
+
allow_teap=pulumi.get(__ret__, 'allow_teap'),
|
1010
|
+
allow_weak_ciphers_for_eap=pulumi.get(__ret__, 'allow_weak_ciphers_for_eap'),
|
1011
|
+
description=pulumi.get(__ret__, 'description'),
|
1012
|
+
eap_fast_accept_client_cert=pulumi.get(__ret__, 'eap_fast_accept_client_cert'),
|
1013
|
+
eap_fast_allow_machine_authentication=pulumi.get(__ret__, 'eap_fast_allow_machine_authentication'),
|
1014
|
+
eap_fast_eap_gtc=pulumi.get(__ret__, 'eap_fast_eap_gtc'),
|
1015
|
+
eap_fast_eap_gtc_pwd_change=pulumi.get(__ret__, 'eap_fast_eap_gtc_pwd_change'),
|
1016
|
+
eap_fast_eap_gtc_pwd_change_retries=pulumi.get(__ret__, 'eap_fast_eap_gtc_pwd_change_retries'),
|
1017
|
+
eap_fast_eap_ms_chap_v2=pulumi.get(__ret__, 'eap_fast_eap_ms_chap_v2'),
|
1018
|
+
eap_fast_eap_ms_chap_v2_pwd_change=pulumi.get(__ret__, 'eap_fast_eap_ms_chap_v2_pwd_change'),
|
1019
|
+
eap_fast_eap_ms_chap_v2_pwd_change_retries=pulumi.get(__ret__, 'eap_fast_eap_ms_chap_v2_pwd_change_retries'),
|
1020
|
+
eap_fast_eap_tls=pulumi.get(__ret__, 'eap_fast_eap_tls'),
|
1021
|
+
eap_fast_eap_tls_auth_of_expired_certs=pulumi.get(__ret__, 'eap_fast_eap_tls_auth_of_expired_certs'),
|
1022
|
+
eap_fast_enable_eap_chaining=pulumi.get(__ret__, 'eap_fast_enable_eap_chaining'),
|
1023
|
+
eap_fast_pacs_allow_anonymous_provisioning=pulumi.get(__ret__, 'eap_fast_pacs_allow_anonymous_provisioning'),
|
1024
|
+
eap_fast_pacs_allow_authenticated_provisioning=pulumi.get(__ret__, 'eap_fast_pacs_allow_authenticated_provisioning'),
|
1025
|
+
eap_fast_pacs_allow_client_cert=pulumi.get(__ret__, 'eap_fast_pacs_allow_client_cert'),
|
1026
|
+
eap_fast_pacs_allow_machine_authentication=pulumi.get(__ret__, 'eap_fast_pacs_allow_machine_authentication'),
|
1027
|
+
eap_fast_pacs_authorization_pac_ttl=pulumi.get(__ret__, 'eap_fast_pacs_authorization_pac_ttl'),
|
1028
|
+
eap_fast_pacs_authorization_pac_ttl_unit=pulumi.get(__ret__, 'eap_fast_pacs_authorization_pac_ttl_unit'),
|
1029
|
+
eap_fast_pacs_machine_pac_ttl=pulumi.get(__ret__, 'eap_fast_pacs_machine_pac_ttl'),
|
1030
|
+
eap_fast_pacs_machine_pac_ttl_unit=pulumi.get(__ret__, 'eap_fast_pacs_machine_pac_ttl_unit'),
|
1031
|
+
eap_fast_pacs_server_returns=pulumi.get(__ret__, 'eap_fast_pacs_server_returns'),
|
1032
|
+
eap_fast_pacs_stateless_session_resume=pulumi.get(__ret__, 'eap_fast_pacs_stateless_session_resume'),
|
1033
|
+
eap_fast_pacs_tunnel_pac_ttl=pulumi.get(__ret__, 'eap_fast_pacs_tunnel_pac_ttl'),
|
1034
|
+
eap_fast_pacs_tunnel_pac_ttl_unit=pulumi.get(__ret__, 'eap_fast_pacs_tunnel_pac_ttl_unit'),
|
1035
|
+
eap_fast_pacs_use_proactive_pac_update_percentage=pulumi.get(__ret__, 'eap_fast_pacs_use_proactive_pac_update_percentage'),
|
1036
|
+
eap_fast_use_pacs=pulumi.get(__ret__, 'eap_fast_use_pacs'),
|
1037
|
+
eap_tls_allow_auth_of_expired_certs=pulumi.get(__ret__, 'eap_tls_allow_auth_of_expired_certs'),
|
1038
|
+
eap_tls_enable_stateless_session_resume=pulumi.get(__ret__, 'eap_tls_enable_stateless_session_resume'),
|
1039
|
+
eap_tls_l_bit=pulumi.get(__ret__, 'eap_tls_l_bit'),
|
1040
|
+
eap_tls_session_ticket_percentage=pulumi.get(__ret__, 'eap_tls_session_ticket_percentage'),
|
1041
|
+
eap_tls_session_ticket_ttl=pulumi.get(__ret__, 'eap_tls_session_ticket_ttl'),
|
1042
|
+
eap_tls_session_ticket_ttl_unit=pulumi.get(__ret__, 'eap_tls_session_ticket_ttl_unit'),
|
1043
|
+
eap_ttls_chap=pulumi.get(__ret__, 'eap_ttls_chap'),
|
1044
|
+
eap_ttls_eap_md5=pulumi.get(__ret__, 'eap_ttls_eap_md5'),
|
1045
|
+
eap_ttls_eap_ms_chap_v2=pulumi.get(__ret__, 'eap_ttls_eap_ms_chap_v2'),
|
1046
|
+
eap_ttls_eap_ms_chap_v2_pwd_change=pulumi.get(__ret__, 'eap_ttls_eap_ms_chap_v2_pwd_change'),
|
1047
|
+
eap_ttls_eap_ms_chap_v2_pwd_change_retries=pulumi.get(__ret__, 'eap_ttls_eap_ms_chap_v2_pwd_change_retries'),
|
1048
|
+
eap_ttls_ms_chap_v1=pulumi.get(__ret__, 'eap_ttls_ms_chap_v1'),
|
1049
|
+
eap_ttls_ms_chap_v2=pulumi.get(__ret__, 'eap_ttls_ms_chap_v2'),
|
1050
|
+
eap_ttls_pap_ascii=pulumi.get(__ret__, 'eap_ttls_pap_ascii'),
|
1051
|
+
id=pulumi.get(__ret__, 'id'),
|
1052
|
+
name=pulumi.get(__ret__, 'name'),
|
1053
|
+
peap_allow_peap_eap_gtc=pulumi.get(__ret__, 'peap_allow_peap_eap_gtc'),
|
1054
|
+
peap_allow_peap_eap_gtc_pwd_change=pulumi.get(__ret__, 'peap_allow_peap_eap_gtc_pwd_change'),
|
1055
|
+
peap_allow_peap_eap_gtc_pwd_change_retries=pulumi.get(__ret__, 'peap_allow_peap_eap_gtc_pwd_change_retries'),
|
1056
|
+
peap_allow_peap_eap_ms_chap_v2=pulumi.get(__ret__, 'peap_allow_peap_eap_ms_chap_v2'),
|
1057
|
+
peap_allow_peap_eap_ms_chap_v2_pwd_change=pulumi.get(__ret__, 'peap_allow_peap_eap_ms_chap_v2_pwd_change'),
|
1058
|
+
peap_allow_peap_eap_ms_chap_v2_pwd_change_retries=pulumi.get(__ret__, 'peap_allow_peap_eap_ms_chap_v2_pwd_change_retries'),
|
1059
|
+
peap_allow_peap_eap_tls=pulumi.get(__ret__, 'peap_allow_peap_eap_tls'),
|
1060
|
+
peap_allow_peap_eap_tls_auth_of_expired_certs=pulumi.get(__ret__, 'peap_allow_peap_eap_tls_auth_of_expired_certs'),
|
1061
|
+
peap_peap_v0=pulumi.get(__ret__, 'peap_peap_v0'),
|
1062
|
+
preferred_eap_protocol=pulumi.get(__ret__, 'preferred_eap_protocol'),
|
1063
|
+
process_host_lookup=pulumi.get(__ret__, 'process_host_lookup'),
|
1064
|
+
require_cryptobinding=pulumi.get(__ret__, 'require_cryptobinding'),
|
1065
|
+
require_message_auth=pulumi.get(__ret__, 'require_message_auth'),
|
1066
|
+
teap_downgrade_msk=pulumi.get(__ret__, 'teap_downgrade_msk'),
|
1067
|
+
teap_eap_accept_client_cert_during_tunnel_est=pulumi.get(__ret__, 'teap_eap_accept_client_cert_during_tunnel_est'),
|
1068
|
+
teap_eap_chaining=pulumi.get(__ret__, 'teap_eap_chaining'),
|
1069
|
+
teap_eap_ms_chap_v2=pulumi.get(__ret__, 'teap_eap_ms_chap_v2'),
|
1070
|
+
teap_eap_ms_chap_v2_pwd_change=pulumi.get(__ret__, 'teap_eap_ms_chap_v2_pwd_change'),
|
1071
|
+
teap_eap_ms_chap_v2_pwd_change_retries=pulumi.get(__ret__, 'teap_eap_ms_chap_v2_pwd_change_retries'),
|
1072
|
+
teap_eap_tls=pulumi.get(__ret__, 'teap_eap_tls'),
|
1073
|
+
teap_eap_tls_auth_of_expired_certs=pulumi.get(__ret__, 'teap_eap_tls_auth_of_expired_certs'),
|
1074
|
+
teap_request_basic_pwd_auth=pulumi.get(__ret__, 'teap_request_basic_pwd_auth'))
|
1075
|
+
|
1076
|
+
|
1077
|
+
@_utilities.lift_output_func(get_allowed_protocols)
|
1078
|
+
def get_allowed_protocols_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
1079
|
+
name: Optional[pulumi.Input[Optional[str]]] = None,
|
1080
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAllowedProtocolsResult]:
|
1081
|
+
"""
|
1082
|
+
This data source can read an allowed protocols policy element.
|
1083
|
+
|
1084
|
+
## Example Usage
|
1085
|
+
|
1086
|
+
```python
|
1087
|
+
import pulumi
|
1088
|
+
import pulumi_ise as ise
|
1089
|
+
|
1090
|
+
example = ise.networkaccess.get_allowed_protocols(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
|
1091
|
+
```
|
1092
|
+
|
1093
|
+
|
1094
|
+
:param str id: The id of the object
|
1095
|
+
:param str name: The name of the allowed protocols
|
1096
|
+
"""
|
1097
|
+
...
|