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,526 @@
|
|
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
|
+
from . import outputs
|
12
|
+
|
13
|
+
__all__ = [
|
14
|
+
'GetAuthorizationProfileResult',
|
15
|
+
'AwaitableGetAuthorizationProfileResult',
|
16
|
+
'get_authorization_profile',
|
17
|
+
'get_authorization_profile_output',
|
18
|
+
]
|
19
|
+
|
20
|
+
@pulumi.output_type
|
21
|
+
class GetAuthorizationProfileResult:
|
22
|
+
"""
|
23
|
+
A collection of values returned by getAuthorizationProfile.
|
24
|
+
"""
|
25
|
+
def __init__(__self__, access_type=None, acl=None, advanced_attributes=None, agentless_posture=None, airespace_acl=None, airespace_ipv6_acl=None, asa_vpn=None, auto_smart_port=None, avc_profile=None, dacl_name=None, description=None, easywired_session_candidate=None, id=None, interface_template=None, ipv6_acl_filter=None, ipv6_dacl_name=None, mac_sec_policy=None, name=None, neat=None, profile_name=None, reauthentication_connectivity=None, reauthentication_timer=None, service_template=None, track_movement=None, unique_identifier=None, vlan_name_id=None, vlan_tag_id=None, voice_domain_permission=None, web_auth=None, web_redirection_acl=None, web_redirection_display_certificates_renewal_messages=None, web_redirection_portal_name=None, web_redirection_static_ip_host_name_fqdn=None, web_redirection_type=None):
|
26
|
+
if access_type and not isinstance(access_type, str):
|
27
|
+
raise TypeError("Expected argument 'access_type' to be a str")
|
28
|
+
pulumi.set(__self__, "access_type", access_type)
|
29
|
+
if acl and not isinstance(acl, str):
|
30
|
+
raise TypeError("Expected argument 'acl' to be a str")
|
31
|
+
pulumi.set(__self__, "acl", acl)
|
32
|
+
if advanced_attributes and not isinstance(advanced_attributes, list):
|
33
|
+
raise TypeError("Expected argument 'advanced_attributes' to be a list")
|
34
|
+
pulumi.set(__self__, "advanced_attributes", advanced_attributes)
|
35
|
+
if agentless_posture and not isinstance(agentless_posture, bool):
|
36
|
+
raise TypeError("Expected argument 'agentless_posture' to be a bool")
|
37
|
+
pulumi.set(__self__, "agentless_posture", agentless_posture)
|
38
|
+
if airespace_acl and not isinstance(airespace_acl, str):
|
39
|
+
raise TypeError("Expected argument 'airespace_acl' to be a str")
|
40
|
+
pulumi.set(__self__, "airespace_acl", airespace_acl)
|
41
|
+
if airespace_ipv6_acl and not isinstance(airespace_ipv6_acl, str):
|
42
|
+
raise TypeError("Expected argument 'airespace_ipv6_acl' to be a str")
|
43
|
+
pulumi.set(__self__, "airespace_ipv6_acl", airespace_ipv6_acl)
|
44
|
+
if asa_vpn and not isinstance(asa_vpn, str):
|
45
|
+
raise TypeError("Expected argument 'asa_vpn' to be a str")
|
46
|
+
pulumi.set(__self__, "asa_vpn", asa_vpn)
|
47
|
+
if auto_smart_port and not isinstance(auto_smart_port, str):
|
48
|
+
raise TypeError("Expected argument 'auto_smart_port' to be a str")
|
49
|
+
pulumi.set(__self__, "auto_smart_port", auto_smart_port)
|
50
|
+
if avc_profile and not isinstance(avc_profile, str):
|
51
|
+
raise TypeError("Expected argument 'avc_profile' to be a str")
|
52
|
+
pulumi.set(__self__, "avc_profile", avc_profile)
|
53
|
+
if dacl_name and not isinstance(dacl_name, str):
|
54
|
+
raise TypeError("Expected argument 'dacl_name' to be a str")
|
55
|
+
pulumi.set(__self__, "dacl_name", dacl_name)
|
56
|
+
if description and not isinstance(description, str):
|
57
|
+
raise TypeError("Expected argument 'description' to be a str")
|
58
|
+
pulumi.set(__self__, "description", description)
|
59
|
+
if easywired_session_candidate and not isinstance(easywired_session_candidate, bool):
|
60
|
+
raise TypeError("Expected argument 'easywired_session_candidate' to be a bool")
|
61
|
+
pulumi.set(__self__, "easywired_session_candidate", easywired_session_candidate)
|
62
|
+
if id and not isinstance(id, str):
|
63
|
+
raise TypeError("Expected argument 'id' to be a str")
|
64
|
+
pulumi.set(__self__, "id", id)
|
65
|
+
if interface_template and not isinstance(interface_template, str):
|
66
|
+
raise TypeError("Expected argument 'interface_template' to be a str")
|
67
|
+
pulumi.set(__self__, "interface_template", interface_template)
|
68
|
+
if ipv6_acl_filter and not isinstance(ipv6_acl_filter, str):
|
69
|
+
raise TypeError("Expected argument 'ipv6_acl_filter' to be a str")
|
70
|
+
pulumi.set(__self__, "ipv6_acl_filter", ipv6_acl_filter)
|
71
|
+
if ipv6_dacl_name and not isinstance(ipv6_dacl_name, str):
|
72
|
+
raise TypeError("Expected argument 'ipv6_dacl_name' to be a str")
|
73
|
+
pulumi.set(__self__, "ipv6_dacl_name", ipv6_dacl_name)
|
74
|
+
if mac_sec_policy and not isinstance(mac_sec_policy, str):
|
75
|
+
raise TypeError("Expected argument 'mac_sec_policy' to be a str")
|
76
|
+
pulumi.set(__self__, "mac_sec_policy", mac_sec_policy)
|
77
|
+
if name and not isinstance(name, str):
|
78
|
+
raise TypeError("Expected argument 'name' to be a str")
|
79
|
+
pulumi.set(__self__, "name", name)
|
80
|
+
if neat and not isinstance(neat, bool):
|
81
|
+
raise TypeError("Expected argument 'neat' to be a bool")
|
82
|
+
pulumi.set(__self__, "neat", neat)
|
83
|
+
if profile_name and not isinstance(profile_name, str):
|
84
|
+
raise TypeError("Expected argument 'profile_name' to be a str")
|
85
|
+
pulumi.set(__self__, "profile_name", profile_name)
|
86
|
+
if reauthentication_connectivity and not isinstance(reauthentication_connectivity, str):
|
87
|
+
raise TypeError("Expected argument 'reauthentication_connectivity' to be a str")
|
88
|
+
pulumi.set(__self__, "reauthentication_connectivity", reauthentication_connectivity)
|
89
|
+
if reauthentication_timer and not isinstance(reauthentication_timer, int):
|
90
|
+
raise TypeError("Expected argument 'reauthentication_timer' to be a int")
|
91
|
+
pulumi.set(__self__, "reauthentication_timer", reauthentication_timer)
|
92
|
+
if service_template and not isinstance(service_template, bool):
|
93
|
+
raise TypeError("Expected argument 'service_template' to be a bool")
|
94
|
+
pulumi.set(__self__, "service_template", service_template)
|
95
|
+
if track_movement and not isinstance(track_movement, bool):
|
96
|
+
raise TypeError("Expected argument 'track_movement' to be a bool")
|
97
|
+
pulumi.set(__self__, "track_movement", track_movement)
|
98
|
+
if unique_identifier and not isinstance(unique_identifier, str):
|
99
|
+
raise TypeError("Expected argument 'unique_identifier' to be a str")
|
100
|
+
pulumi.set(__self__, "unique_identifier", unique_identifier)
|
101
|
+
if vlan_name_id and not isinstance(vlan_name_id, str):
|
102
|
+
raise TypeError("Expected argument 'vlan_name_id' to be a str")
|
103
|
+
pulumi.set(__self__, "vlan_name_id", vlan_name_id)
|
104
|
+
if vlan_tag_id and not isinstance(vlan_tag_id, int):
|
105
|
+
raise TypeError("Expected argument 'vlan_tag_id' to be a int")
|
106
|
+
pulumi.set(__self__, "vlan_tag_id", vlan_tag_id)
|
107
|
+
if voice_domain_permission and not isinstance(voice_domain_permission, bool):
|
108
|
+
raise TypeError("Expected argument 'voice_domain_permission' to be a bool")
|
109
|
+
pulumi.set(__self__, "voice_domain_permission", voice_domain_permission)
|
110
|
+
if web_auth and not isinstance(web_auth, bool):
|
111
|
+
raise TypeError("Expected argument 'web_auth' to be a bool")
|
112
|
+
pulumi.set(__self__, "web_auth", web_auth)
|
113
|
+
if web_redirection_acl and not isinstance(web_redirection_acl, str):
|
114
|
+
raise TypeError("Expected argument 'web_redirection_acl' to be a str")
|
115
|
+
pulumi.set(__self__, "web_redirection_acl", web_redirection_acl)
|
116
|
+
if web_redirection_display_certificates_renewal_messages and not isinstance(web_redirection_display_certificates_renewal_messages, bool):
|
117
|
+
raise TypeError("Expected argument 'web_redirection_display_certificates_renewal_messages' to be a bool")
|
118
|
+
pulumi.set(__self__, "web_redirection_display_certificates_renewal_messages", web_redirection_display_certificates_renewal_messages)
|
119
|
+
if web_redirection_portal_name and not isinstance(web_redirection_portal_name, str):
|
120
|
+
raise TypeError("Expected argument 'web_redirection_portal_name' to be a str")
|
121
|
+
pulumi.set(__self__, "web_redirection_portal_name", web_redirection_portal_name)
|
122
|
+
if web_redirection_static_ip_host_name_fqdn and not isinstance(web_redirection_static_ip_host_name_fqdn, str):
|
123
|
+
raise TypeError("Expected argument 'web_redirection_static_ip_host_name_fqdn' to be a str")
|
124
|
+
pulumi.set(__self__, "web_redirection_static_ip_host_name_fqdn", web_redirection_static_ip_host_name_fqdn)
|
125
|
+
if web_redirection_type and not isinstance(web_redirection_type, str):
|
126
|
+
raise TypeError("Expected argument 'web_redirection_type' to be a str")
|
127
|
+
pulumi.set(__self__, "web_redirection_type", web_redirection_type)
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="accessType")
|
131
|
+
def access_type(self) -> str:
|
132
|
+
"""
|
133
|
+
Access type
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "access_type")
|
136
|
+
|
137
|
+
@property
|
138
|
+
@pulumi.getter
|
139
|
+
def acl(self) -> str:
|
140
|
+
"""
|
141
|
+
ACL
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "acl")
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter(name="advancedAttributes")
|
147
|
+
def advanced_attributes(self) -> Sequence['outputs.GetAuthorizationProfileAdvancedAttributeResult']:
|
148
|
+
"""
|
149
|
+
List of advanced attributes
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "advanced_attributes")
|
152
|
+
|
153
|
+
@property
|
154
|
+
@pulumi.getter(name="agentlessPosture")
|
155
|
+
def agentless_posture(self) -> bool:
|
156
|
+
"""
|
157
|
+
Agentless Posture.
|
158
|
+
"""
|
159
|
+
return pulumi.get(self, "agentless_posture")
|
160
|
+
|
161
|
+
@property
|
162
|
+
@pulumi.getter(name="airespaceAcl")
|
163
|
+
def airespace_acl(self) -> str:
|
164
|
+
"""
|
165
|
+
Airespace ACL
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "airespace_acl")
|
168
|
+
|
169
|
+
@property
|
170
|
+
@pulumi.getter(name="airespaceIpv6Acl")
|
171
|
+
def airespace_ipv6_acl(self) -> str:
|
172
|
+
"""
|
173
|
+
Airespace IPv6 ACL
|
174
|
+
"""
|
175
|
+
return pulumi.get(self, "airespace_ipv6_acl")
|
176
|
+
|
177
|
+
@property
|
178
|
+
@pulumi.getter(name="asaVpn")
|
179
|
+
def asa_vpn(self) -> str:
|
180
|
+
"""
|
181
|
+
ASA VPN
|
182
|
+
"""
|
183
|
+
return pulumi.get(self, "asa_vpn")
|
184
|
+
|
185
|
+
@property
|
186
|
+
@pulumi.getter(name="autoSmartPort")
|
187
|
+
def auto_smart_port(self) -> str:
|
188
|
+
"""
|
189
|
+
Auto smart port
|
190
|
+
"""
|
191
|
+
return pulumi.get(self, "auto_smart_port")
|
192
|
+
|
193
|
+
@property
|
194
|
+
@pulumi.getter(name="avcProfile")
|
195
|
+
def avc_profile(self) -> str:
|
196
|
+
"""
|
197
|
+
AVC profile
|
198
|
+
"""
|
199
|
+
return pulumi.get(self, "avc_profile")
|
200
|
+
|
201
|
+
@property
|
202
|
+
@pulumi.getter(name="daclName")
|
203
|
+
def dacl_name(self) -> str:
|
204
|
+
"""
|
205
|
+
DACL name
|
206
|
+
"""
|
207
|
+
return pulumi.get(self, "dacl_name")
|
208
|
+
|
209
|
+
@property
|
210
|
+
@pulumi.getter
|
211
|
+
def description(self) -> str:
|
212
|
+
"""
|
213
|
+
Description
|
214
|
+
"""
|
215
|
+
return pulumi.get(self, "description")
|
216
|
+
|
217
|
+
@property
|
218
|
+
@pulumi.getter(name="easywiredSessionCandidate")
|
219
|
+
def easywired_session_candidate(self) -> bool:
|
220
|
+
"""
|
221
|
+
Easy wired session candidate
|
222
|
+
"""
|
223
|
+
return pulumi.get(self, "easywired_session_candidate")
|
224
|
+
|
225
|
+
@property
|
226
|
+
@pulumi.getter
|
227
|
+
def id(self) -> str:
|
228
|
+
"""
|
229
|
+
The id of the object
|
230
|
+
"""
|
231
|
+
return pulumi.get(self, "id")
|
232
|
+
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="interfaceTemplate")
|
235
|
+
def interface_template(self) -> str:
|
236
|
+
"""
|
237
|
+
Interface template
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "interface_template")
|
240
|
+
|
241
|
+
@property
|
242
|
+
@pulumi.getter(name="ipv6AclFilter")
|
243
|
+
def ipv6_acl_filter(self) -> str:
|
244
|
+
"""
|
245
|
+
IPv6 ACL
|
246
|
+
"""
|
247
|
+
return pulumi.get(self, "ipv6_acl_filter")
|
248
|
+
|
249
|
+
@property
|
250
|
+
@pulumi.getter(name="ipv6DaclName")
|
251
|
+
def ipv6_dacl_name(self) -> str:
|
252
|
+
"""
|
253
|
+
IPv6 DACL name
|
254
|
+
"""
|
255
|
+
return pulumi.get(self, "ipv6_dacl_name")
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="macSecPolicy")
|
259
|
+
def mac_sec_policy(self) -> str:
|
260
|
+
"""
|
261
|
+
MacSec policy
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "mac_sec_policy")
|
264
|
+
|
265
|
+
@property
|
266
|
+
@pulumi.getter
|
267
|
+
def name(self) -> str:
|
268
|
+
"""
|
269
|
+
The name of the authorization profile
|
270
|
+
"""
|
271
|
+
return pulumi.get(self, "name")
|
272
|
+
|
273
|
+
@property
|
274
|
+
@pulumi.getter
|
275
|
+
def neat(self) -> bool:
|
276
|
+
"""
|
277
|
+
NEAT
|
278
|
+
"""
|
279
|
+
return pulumi.get(self, "neat")
|
280
|
+
|
281
|
+
@property
|
282
|
+
@pulumi.getter(name="profileName")
|
283
|
+
def profile_name(self) -> str:
|
284
|
+
"""
|
285
|
+
Value needs to be an existing Network Device Profile
|
286
|
+
"""
|
287
|
+
return pulumi.get(self, "profile_name")
|
288
|
+
|
289
|
+
@property
|
290
|
+
@pulumi.getter(name="reauthenticationConnectivity")
|
291
|
+
def reauthentication_connectivity(self) -> str:
|
292
|
+
"""
|
293
|
+
Maintain Connectivity During Reauthentication
|
294
|
+
"""
|
295
|
+
return pulumi.get(self, "reauthentication_connectivity")
|
296
|
+
|
297
|
+
@property
|
298
|
+
@pulumi.getter(name="reauthenticationTimer")
|
299
|
+
def reauthentication_timer(self) -> int:
|
300
|
+
"""
|
301
|
+
Reauthentication timer
|
302
|
+
"""
|
303
|
+
return pulumi.get(self, "reauthentication_timer")
|
304
|
+
|
305
|
+
@property
|
306
|
+
@pulumi.getter(name="serviceTemplate")
|
307
|
+
def service_template(self) -> bool:
|
308
|
+
"""
|
309
|
+
Service template
|
310
|
+
"""
|
311
|
+
return pulumi.get(self, "service_template")
|
312
|
+
|
313
|
+
@property
|
314
|
+
@pulumi.getter(name="trackMovement")
|
315
|
+
def track_movement(self) -> bool:
|
316
|
+
"""
|
317
|
+
Track movement
|
318
|
+
"""
|
319
|
+
return pulumi.get(self, "track_movement")
|
320
|
+
|
321
|
+
@property
|
322
|
+
@pulumi.getter(name="uniqueIdentifier")
|
323
|
+
def unique_identifier(self) -> str:
|
324
|
+
"""
|
325
|
+
Unique identifier
|
326
|
+
"""
|
327
|
+
return pulumi.get(self, "unique_identifier")
|
328
|
+
|
329
|
+
@property
|
330
|
+
@pulumi.getter(name="vlanNameId")
|
331
|
+
def vlan_name_id(self) -> str:
|
332
|
+
"""
|
333
|
+
Vlan name or ID
|
334
|
+
"""
|
335
|
+
return pulumi.get(self, "vlan_name_id")
|
336
|
+
|
337
|
+
@property
|
338
|
+
@pulumi.getter(name="vlanTagId")
|
339
|
+
def vlan_tag_id(self) -> int:
|
340
|
+
"""
|
341
|
+
Vlan tag ID
|
342
|
+
"""
|
343
|
+
return pulumi.get(self, "vlan_tag_id")
|
344
|
+
|
345
|
+
@property
|
346
|
+
@pulumi.getter(name="voiceDomainPermission")
|
347
|
+
def voice_domain_permission(self) -> bool:
|
348
|
+
"""
|
349
|
+
Voice domain permission
|
350
|
+
"""
|
351
|
+
return pulumi.get(self, "voice_domain_permission")
|
352
|
+
|
353
|
+
@property
|
354
|
+
@pulumi.getter(name="webAuth")
|
355
|
+
def web_auth(self) -> bool:
|
356
|
+
"""
|
357
|
+
Web authentication (local)
|
358
|
+
"""
|
359
|
+
return pulumi.get(self, "web_auth")
|
360
|
+
|
361
|
+
@property
|
362
|
+
@pulumi.getter(name="webRedirectionAcl")
|
363
|
+
def web_redirection_acl(self) -> str:
|
364
|
+
"""
|
365
|
+
Web redirection ACL
|
366
|
+
"""
|
367
|
+
return pulumi.get(self, "web_redirection_acl")
|
368
|
+
|
369
|
+
@property
|
370
|
+
@pulumi.getter(name="webRedirectionDisplayCertificatesRenewalMessages")
|
371
|
+
def web_redirection_display_certificates_renewal_messages(self) -> bool:
|
372
|
+
"""
|
373
|
+
This attribute is mandatory when `web_redirection_type` value is `CentralizedWebAuth`. For all other `web_redirection_type` values the field must be ignored.
|
374
|
+
"""
|
375
|
+
return pulumi.get(self, "web_redirection_display_certificates_renewal_messages")
|
376
|
+
|
377
|
+
@property
|
378
|
+
@pulumi.getter(name="webRedirectionPortalName")
|
379
|
+
def web_redirection_portal_name(self) -> str:
|
380
|
+
"""
|
381
|
+
A portal that exist in the DB and fits the `web_redirection_type`
|
382
|
+
"""
|
383
|
+
return pulumi.get(self, "web_redirection_portal_name")
|
384
|
+
|
385
|
+
@property
|
386
|
+
@pulumi.getter(name="webRedirectionStaticIpHostNameFqdn")
|
387
|
+
def web_redirection_static_ip_host_name_fqdn(self) -> str:
|
388
|
+
"""
|
389
|
+
IP, hostname or FQDN
|
390
|
+
"""
|
391
|
+
return pulumi.get(self, "web_redirection_static_ip_host_name_fqdn")
|
392
|
+
|
393
|
+
@property
|
394
|
+
@pulumi.getter(name="webRedirectionType")
|
395
|
+
def web_redirection_type(self) -> str:
|
396
|
+
"""
|
397
|
+
This type must fit the `web_redirection_portal_name`
|
398
|
+
"""
|
399
|
+
return pulumi.get(self, "web_redirection_type")
|
400
|
+
|
401
|
+
|
402
|
+
class AwaitableGetAuthorizationProfileResult(GetAuthorizationProfileResult):
|
403
|
+
# pylint: disable=using-constant-test
|
404
|
+
def __await__(self):
|
405
|
+
if False:
|
406
|
+
yield self
|
407
|
+
return GetAuthorizationProfileResult(
|
408
|
+
access_type=self.access_type,
|
409
|
+
acl=self.acl,
|
410
|
+
advanced_attributes=self.advanced_attributes,
|
411
|
+
agentless_posture=self.agentless_posture,
|
412
|
+
airespace_acl=self.airespace_acl,
|
413
|
+
airespace_ipv6_acl=self.airespace_ipv6_acl,
|
414
|
+
asa_vpn=self.asa_vpn,
|
415
|
+
auto_smart_port=self.auto_smart_port,
|
416
|
+
avc_profile=self.avc_profile,
|
417
|
+
dacl_name=self.dacl_name,
|
418
|
+
description=self.description,
|
419
|
+
easywired_session_candidate=self.easywired_session_candidate,
|
420
|
+
id=self.id,
|
421
|
+
interface_template=self.interface_template,
|
422
|
+
ipv6_acl_filter=self.ipv6_acl_filter,
|
423
|
+
ipv6_dacl_name=self.ipv6_dacl_name,
|
424
|
+
mac_sec_policy=self.mac_sec_policy,
|
425
|
+
name=self.name,
|
426
|
+
neat=self.neat,
|
427
|
+
profile_name=self.profile_name,
|
428
|
+
reauthentication_connectivity=self.reauthentication_connectivity,
|
429
|
+
reauthentication_timer=self.reauthentication_timer,
|
430
|
+
service_template=self.service_template,
|
431
|
+
track_movement=self.track_movement,
|
432
|
+
unique_identifier=self.unique_identifier,
|
433
|
+
vlan_name_id=self.vlan_name_id,
|
434
|
+
vlan_tag_id=self.vlan_tag_id,
|
435
|
+
voice_domain_permission=self.voice_domain_permission,
|
436
|
+
web_auth=self.web_auth,
|
437
|
+
web_redirection_acl=self.web_redirection_acl,
|
438
|
+
web_redirection_display_certificates_renewal_messages=self.web_redirection_display_certificates_renewal_messages,
|
439
|
+
web_redirection_portal_name=self.web_redirection_portal_name,
|
440
|
+
web_redirection_static_ip_host_name_fqdn=self.web_redirection_static_ip_host_name_fqdn,
|
441
|
+
web_redirection_type=self.web_redirection_type)
|
442
|
+
|
443
|
+
|
444
|
+
def get_authorization_profile(id: Optional[str] = None,
|
445
|
+
name: Optional[str] = None,
|
446
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAuthorizationProfileResult:
|
447
|
+
"""
|
448
|
+
This data source can read an authorization profiles policy element.
|
449
|
+
|
450
|
+
## Example Usage
|
451
|
+
|
452
|
+
```python
|
453
|
+
import pulumi
|
454
|
+
import pulumi_ise as ise
|
455
|
+
|
456
|
+
example = ise.networkaccess.get_authorization_profile(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
|
457
|
+
```
|
458
|
+
|
459
|
+
|
460
|
+
:param str id: The id of the object
|
461
|
+
:param str name: The name of the authorization profile
|
462
|
+
"""
|
463
|
+
__args__ = dict()
|
464
|
+
__args__['id'] = id
|
465
|
+
__args__['name'] = name
|
466
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
467
|
+
__ret__ = pulumi.runtime.invoke('ise:networkaccess/getAuthorizationProfile:getAuthorizationProfile', __args__, opts=opts, typ=GetAuthorizationProfileResult).value
|
468
|
+
|
469
|
+
return AwaitableGetAuthorizationProfileResult(
|
470
|
+
access_type=pulumi.get(__ret__, 'access_type'),
|
471
|
+
acl=pulumi.get(__ret__, 'acl'),
|
472
|
+
advanced_attributes=pulumi.get(__ret__, 'advanced_attributes'),
|
473
|
+
agentless_posture=pulumi.get(__ret__, 'agentless_posture'),
|
474
|
+
airespace_acl=pulumi.get(__ret__, 'airespace_acl'),
|
475
|
+
airespace_ipv6_acl=pulumi.get(__ret__, 'airespace_ipv6_acl'),
|
476
|
+
asa_vpn=pulumi.get(__ret__, 'asa_vpn'),
|
477
|
+
auto_smart_port=pulumi.get(__ret__, 'auto_smart_port'),
|
478
|
+
avc_profile=pulumi.get(__ret__, 'avc_profile'),
|
479
|
+
dacl_name=pulumi.get(__ret__, 'dacl_name'),
|
480
|
+
description=pulumi.get(__ret__, 'description'),
|
481
|
+
easywired_session_candidate=pulumi.get(__ret__, 'easywired_session_candidate'),
|
482
|
+
id=pulumi.get(__ret__, 'id'),
|
483
|
+
interface_template=pulumi.get(__ret__, 'interface_template'),
|
484
|
+
ipv6_acl_filter=pulumi.get(__ret__, 'ipv6_acl_filter'),
|
485
|
+
ipv6_dacl_name=pulumi.get(__ret__, 'ipv6_dacl_name'),
|
486
|
+
mac_sec_policy=pulumi.get(__ret__, 'mac_sec_policy'),
|
487
|
+
name=pulumi.get(__ret__, 'name'),
|
488
|
+
neat=pulumi.get(__ret__, 'neat'),
|
489
|
+
profile_name=pulumi.get(__ret__, 'profile_name'),
|
490
|
+
reauthentication_connectivity=pulumi.get(__ret__, 'reauthentication_connectivity'),
|
491
|
+
reauthentication_timer=pulumi.get(__ret__, 'reauthentication_timer'),
|
492
|
+
service_template=pulumi.get(__ret__, 'service_template'),
|
493
|
+
track_movement=pulumi.get(__ret__, 'track_movement'),
|
494
|
+
unique_identifier=pulumi.get(__ret__, 'unique_identifier'),
|
495
|
+
vlan_name_id=pulumi.get(__ret__, 'vlan_name_id'),
|
496
|
+
vlan_tag_id=pulumi.get(__ret__, 'vlan_tag_id'),
|
497
|
+
voice_domain_permission=pulumi.get(__ret__, 'voice_domain_permission'),
|
498
|
+
web_auth=pulumi.get(__ret__, 'web_auth'),
|
499
|
+
web_redirection_acl=pulumi.get(__ret__, 'web_redirection_acl'),
|
500
|
+
web_redirection_display_certificates_renewal_messages=pulumi.get(__ret__, 'web_redirection_display_certificates_renewal_messages'),
|
501
|
+
web_redirection_portal_name=pulumi.get(__ret__, 'web_redirection_portal_name'),
|
502
|
+
web_redirection_static_ip_host_name_fqdn=pulumi.get(__ret__, 'web_redirection_static_ip_host_name_fqdn'),
|
503
|
+
web_redirection_type=pulumi.get(__ret__, 'web_redirection_type'))
|
504
|
+
|
505
|
+
|
506
|
+
@_utilities.lift_output_func(get_authorization_profile)
|
507
|
+
def get_authorization_profile_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
508
|
+
name: Optional[pulumi.Input[Optional[str]]] = None,
|
509
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAuthorizationProfileResult]:
|
510
|
+
"""
|
511
|
+
This data source can read an authorization profiles policy element.
|
512
|
+
|
513
|
+
## Example Usage
|
514
|
+
|
515
|
+
```python
|
516
|
+
import pulumi
|
517
|
+
import pulumi_ise as ise
|
518
|
+
|
519
|
+
example = ise.networkaccess.get_authorization_profile(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
|
520
|
+
```
|
521
|
+
|
522
|
+
|
523
|
+
:param str id: The id of the object
|
524
|
+
:param str name: The name of the authorization profile
|
525
|
+
"""
|
526
|
+
...
|