pulumi-ise 0.2.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.
Files changed (119) hide show
  1. pulumi_ise/__init__.py +458 -0
  2. pulumi_ise/_utilities.py +327 -0
  3. pulumi_ise/config/__init__.py +8 -0
  4. pulumi_ise/config/__init__.pyi +41 -0
  5. pulumi_ise/config/vars.py +57 -0
  6. pulumi_ise/deviceadmin/__init__.py +34 -0
  7. pulumi_ise/deviceadmin/_inputs.py +2517 -0
  8. pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +381 -0
  9. pulumi_ise/deviceadmin/authentication_rule.py +1050 -0
  10. pulumi_ise/deviceadmin/authentication_rule_update_rank.py +271 -0
  11. pulumi_ise/deviceadmin/authorization_exception_rule.py +942 -0
  12. pulumi_ise/deviceadmin/authorization_exception_rule_update_rank.py +271 -0
  13. pulumi_ise/deviceadmin/authorization_global_exception_rule.py +843 -0
  14. pulumi_ise/deviceadmin/authorization_global_exception_rule_update_rank.py +221 -0
  15. pulumi_ise/deviceadmin/authorization_rule.py +942 -0
  16. pulumi_ise/deviceadmin/authorization_rule_update_rank.py +271 -0
  17. pulumi_ise/deviceadmin/condition.py +650 -0
  18. pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +174 -0
  19. pulumi_ise/deviceadmin/get_authentication_rule.py +365 -0
  20. pulumi_ise/deviceadmin/get_authorization_exception_rule.py +337 -0
  21. pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +301 -0
  22. pulumi_ise/deviceadmin/get_authorization_rule.py +337 -0
  23. pulumi_ise/deviceadmin/get_condition.py +245 -0
  24. pulumi_ise/deviceadmin/get_policy_set.py +329 -0
  25. pulumi_ise/deviceadmin/get_tacacs_command_set.py +158 -0
  26. pulumi_ise/deviceadmin/get_tacacs_profile.py +144 -0
  27. pulumi_ise/deviceadmin/get_time_and_date_condition.py +286 -0
  28. pulumi_ise/deviceadmin/outputs.py +3178 -0
  29. pulumi_ise/deviceadmin/policy_set.py +947 -0
  30. pulumi_ise/deviceadmin/policy_set_update_rank.py +221 -0
  31. pulumi_ise/deviceadmin/tacacs_command_set.py +326 -0
  32. pulumi_ise/deviceadmin/tacacs_profile.py +277 -0
  33. pulumi_ise/deviceadmin/time_and_date_condition.py +770 -0
  34. pulumi_ise/identitymanagement/__init__.py +26 -0
  35. pulumi_ise/identitymanagement/_inputs.py +419 -0
  36. pulumi_ise/identitymanagement/active_directory_add_groups.py +483 -0
  37. pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +216 -0
  38. pulumi_ise/identitymanagement/active_directory_join_point.py +1676 -0
  39. pulumi_ise/identitymanagement/certificate_authentication_profile.py +525 -0
  40. pulumi_ise/identitymanagement/endpoint.py +1376 -0
  41. pulumi_ise/identitymanagement/endpoint_identity_group.py +327 -0
  42. pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +215 -0
  43. pulumi_ise/identitymanagement/get_active_directory_join_point.py +558 -0
  44. pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +202 -0
  45. pulumi_ise/identitymanagement/get_endpoint.py +468 -0
  46. pulumi_ise/identitymanagement/get_endpoint_identity_group.py +160 -0
  47. pulumi_ise/identitymanagement/get_identity_source_sequence.py +172 -0
  48. pulumi_ise/identitymanagement/get_internal_user.py +300 -0
  49. pulumi_ise/identitymanagement/get_user_identity_group.py +146 -0
  50. pulumi_ise/identitymanagement/identity_source_sequence.py +376 -0
  51. pulumi_ise/identitymanagement/internal_user.py +830 -0
  52. pulumi_ise/identitymanagement/outputs.py +491 -0
  53. pulumi_ise/identitymanagement/user_identity_group.py +280 -0
  54. pulumi_ise/network/__init__.py +13 -0
  55. pulumi_ise/network/_inputs.py +94 -0
  56. pulumi_ise/network/device.py +2194 -0
  57. pulumi_ise/network/device_group.py +281 -0
  58. pulumi_ise/network/get_device.py +693 -0
  59. pulumi_ise/network/get_device_group.py +146 -0
  60. pulumi_ise/network/outputs.py +120 -0
  61. pulumi_ise/networkaccess/__init__.py +36 -0
  62. pulumi_ise/networkaccess/_inputs.py +2506 -0
  63. pulumi_ise/networkaccess/allowed_protocols.py +3967 -0
  64. pulumi_ise/networkaccess/authentication_rule.py +1050 -0
  65. pulumi_ise/networkaccess/authentication_rule_update_rank.py +271 -0
  66. pulumi_ise/networkaccess/authorization_exception_rule.py +942 -0
  67. pulumi_ise/networkaccess/authorization_exception_rule_update_rank.py +271 -0
  68. pulumi_ise/networkaccess/authorization_global_exception_rule.py +843 -0
  69. pulumi_ise/networkaccess/authorization_global_exception_rule_update_rank.py +221 -0
  70. pulumi_ise/networkaccess/authorization_profile.py +1682 -0
  71. pulumi_ise/networkaccess/authorization_rule.py +942 -0
  72. pulumi_ise/networkaccess/authorization_rule_update_rank.py +271 -0
  73. pulumi_ise/networkaccess/condition.py +650 -0
  74. pulumi_ise/networkaccess/dictionary.py +331 -0
  75. pulumi_ise/networkaccess/downloadable_acl.py +330 -0
  76. pulumi_ise/networkaccess/get_allowed_protocols.py +1182 -0
  77. pulumi_ise/networkaccess/get_authentication_rule.py +365 -0
  78. pulumi_ise/networkaccess/get_authorization_exception_rule.py +337 -0
  79. pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +301 -0
  80. pulumi_ise/networkaccess/get_authorization_profile.py +567 -0
  81. pulumi_ise/networkaccess/get_authorization_rule.py +337 -0
  82. pulumi_ise/networkaccess/get_condition.py +245 -0
  83. pulumi_ise/networkaccess/get_dictionary.py +160 -0
  84. pulumi_ise/networkaccess/get_downloadable_acl.py +160 -0
  85. pulumi_ise/networkaccess/get_policy_set.py +329 -0
  86. pulumi_ise/networkaccess/get_time_and_date_condition.py +286 -0
  87. pulumi_ise/networkaccess/outputs.py +3193 -0
  88. pulumi_ise/networkaccess/policy_set.py +947 -0
  89. pulumi_ise/networkaccess/policy_set_update_rank.py +221 -0
  90. pulumi_ise/networkaccess/time_and_date_condition.py +770 -0
  91. pulumi_ise/provider.py +209 -0
  92. pulumi_ise/pulumi-plugin.json +5 -0
  93. pulumi_ise/py.typed +0 -0
  94. pulumi_ise/system/__init__.py +13 -0
  95. pulumi_ise/system/_inputs.py +79 -0
  96. pulumi_ise/system/get_license_tier_state.py +113 -0
  97. pulumi_ise/system/get_repository.py +202 -0
  98. pulumi_ise/system/license_tier_state.py +189 -0
  99. pulumi_ise/system/outputs.py +83 -0
  100. pulumi_ise/system/repository.py +478 -0
  101. pulumi_ise/trustsec/__init__.py +21 -0
  102. pulumi_ise/trustsec/egress_matrix_cell.py +429 -0
  103. pulumi_ise/trustsec/egress_matrix_cell_default.py +327 -0
  104. pulumi_ise/trustsec/get_egress_matrix_cell.py +182 -0
  105. pulumi_ise/trustsec/get_egress_matrix_cell_default.py +154 -0
  106. pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +216 -0
  107. pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +174 -0
  108. pulumi_ise/trustsec/get_security_group.py +174 -0
  109. pulumi_ise/trustsec/get_security_group_acl.py +174 -0
  110. pulumi_ise/trustsec/get_sxp_domain_filter.py +188 -0
  111. pulumi_ise/trustsec/ip_to_sgt_mapping.py +517 -0
  112. pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +376 -0
  113. pulumi_ise/trustsec/security_group.py +379 -0
  114. pulumi_ise/trustsec/security_group_acl.py +379 -0
  115. pulumi_ise/trustsec/sxp_domain_filter.py +422 -0
  116. pulumi_ise-0.2.0.dist-info/METADATA +64 -0
  117. pulumi_ise-0.2.0.dist-info/RECORD +119 -0
  118. pulumi_ise-0.2.0.dist-info/WHEEL +5 -0
  119. pulumi_ise-0.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,558 @@
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 sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetActiveDirectoryJoinPointResult',
20
+ 'AwaitableGetActiveDirectoryJoinPointResult',
21
+ 'get_active_directory_join_point',
22
+ 'get_active_directory_join_point_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetActiveDirectoryJoinPointResult:
27
+ """
28
+ A collection of values returned by getActiveDirectoryJoinPoint.
29
+ """
30
+ def __init__(__self__, ad_scopes_names=None, aging_time=None, attributes=None, auth_protection_type=None, country=None, department=None, description=None, domain=None, email=None, enable_callback_for_dialin_client=None, enable_dialin_permission_check=None, enable_domain_allowed_list=None, enable_failed_auth_protection=None, enable_machine_access=None, enable_machine_auth=None, enable_pass_change=None, enable_rewrites=None, failed_auth_threshold=None, first_name=None, groups=None, id=None, identity_not_in_ad_behaviour=None, job_title=None, last_name=None, locality=None, name=None, organizational_unit=None, plaintext_auth=None, rewrite_rules=None, schema=None, state_or_province=None, street_address=None, telephone=None, unreachable_domains_behaviour=None):
31
+ if ad_scopes_names and not isinstance(ad_scopes_names, str):
32
+ raise TypeError("Expected argument 'ad_scopes_names' to be a str")
33
+ pulumi.set(__self__, "ad_scopes_names", ad_scopes_names)
34
+ if aging_time and not isinstance(aging_time, int):
35
+ raise TypeError("Expected argument 'aging_time' to be a int")
36
+ pulumi.set(__self__, "aging_time", aging_time)
37
+ if attributes and not isinstance(attributes, list):
38
+ raise TypeError("Expected argument 'attributes' to be a list")
39
+ pulumi.set(__self__, "attributes", attributes)
40
+ if auth_protection_type and not isinstance(auth_protection_type, str):
41
+ raise TypeError("Expected argument 'auth_protection_type' to be a str")
42
+ pulumi.set(__self__, "auth_protection_type", auth_protection_type)
43
+ if country and not isinstance(country, str):
44
+ raise TypeError("Expected argument 'country' to be a str")
45
+ pulumi.set(__self__, "country", country)
46
+ if department and not isinstance(department, str):
47
+ raise TypeError("Expected argument 'department' to be a str")
48
+ pulumi.set(__self__, "department", department)
49
+ if description and not isinstance(description, str):
50
+ raise TypeError("Expected argument 'description' to be a str")
51
+ pulumi.set(__self__, "description", description)
52
+ if domain and not isinstance(domain, str):
53
+ raise TypeError("Expected argument 'domain' to be a str")
54
+ pulumi.set(__self__, "domain", domain)
55
+ if email and not isinstance(email, str):
56
+ raise TypeError("Expected argument 'email' to be a str")
57
+ pulumi.set(__self__, "email", email)
58
+ if enable_callback_for_dialin_client and not isinstance(enable_callback_for_dialin_client, bool):
59
+ raise TypeError("Expected argument 'enable_callback_for_dialin_client' to be a bool")
60
+ pulumi.set(__self__, "enable_callback_for_dialin_client", enable_callback_for_dialin_client)
61
+ if enable_dialin_permission_check and not isinstance(enable_dialin_permission_check, bool):
62
+ raise TypeError("Expected argument 'enable_dialin_permission_check' to be a bool")
63
+ pulumi.set(__self__, "enable_dialin_permission_check", enable_dialin_permission_check)
64
+ if enable_domain_allowed_list and not isinstance(enable_domain_allowed_list, bool):
65
+ raise TypeError("Expected argument 'enable_domain_allowed_list' to be a bool")
66
+ pulumi.set(__self__, "enable_domain_allowed_list", enable_domain_allowed_list)
67
+ if enable_failed_auth_protection and not isinstance(enable_failed_auth_protection, bool):
68
+ raise TypeError("Expected argument 'enable_failed_auth_protection' to be a bool")
69
+ pulumi.set(__self__, "enable_failed_auth_protection", enable_failed_auth_protection)
70
+ if enable_machine_access and not isinstance(enable_machine_access, bool):
71
+ raise TypeError("Expected argument 'enable_machine_access' to be a bool")
72
+ pulumi.set(__self__, "enable_machine_access", enable_machine_access)
73
+ if enable_machine_auth and not isinstance(enable_machine_auth, bool):
74
+ raise TypeError("Expected argument 'enable_machine_auth' to be a bool")
75
+ pulumi.set(__self__, "enable_machine_auth", enable_machine_auth)
76
+ if enable_pass_change and not isinstance(enable_pass_change, bool):
77
+ raise TypeError("Expected argument 'enable_pass_change' to be a bool")
78
+ pulumi.set(__self__, "enable_pass_change", enable_pass_change)
79
+ if enable_rewrites and not isinstance(enable_rewrites, bool):
80
+ raise TypeError("Expected argument 'enable_rewrites' to be a bool")
81
+ pulumi.set(__self__, "enable_rewrites", enable_rewrites)
82
+ if failed_auth_threshold and not isinstance(failed_auth_threshold, int):
83
+ raise TypeError("Expected argument 'failed_auth_threshold' to be a int")
84
+ pulumi.set(__self__, "failed_auth_threshold", failed_auth_threshold)
85
+ if first_name and not isinstance(first_name, str):
86
+ raise TypeError("Expected argument 'first_name' to be a str")
87
+ pulumi.set(__self__, "first_name", first_name)
88
+ if groups and not isinstance(groups, list):
89
+ raise TypeError("Expected argument 'groups' to be a list")
90
+ pulumi.set(__self__, "groups", groups)
91
+ if id and not isinstance(id, str):
92
+ raise TypeError("Expected argument 'id' to be a str")
93
+ pulumi.set(__self__, "id", id)
94
+ if identity_not_in_ad_behaviour and not isinstance(identity_not_in_ad_behaviour, str):
95
+ raise TypeError("Expected argument 'identity_not_in_ad_behaviour' to be a str")
96
+ pulumi.set(__self__, "identity_not_in_ad_behaviour", identity_not_in_ad_behaviour)
97
+ if job_title and not isinstance(job_title, str):
98
+ raise TypeError("Expected argument 'job_title' to be a str")
99
+ pulumi.set(__self__, "job_title", job_title)
100
+ if last_name and not isinstance(last_name, str):
101
+ raise TypeError("Expected argument 'last_name' to be a str")
102
+ pulumi.set(__self__, "last_name", last_name)
103
+ if locality and not isinstance(locality, str):
104
+ raise TypeError("Expected argument 'locality' to be a str")
105
+ pulumi.set(__self__, "locality", locality)
106
+ if name and not isinstance(name, str):
107
+ raise TypeError("Expected argument 'name' to be a str")
108
+ pulumi.set(__self__, "name", name)
109
+ if organizational_unit and not isinstance(organizational_unit, str):
110
+ raise TypeError("Expected argument 'organizational_unit' to be a str")
111
+ pulumi.set(__self__, "organizational_unit", organizational_unit)
112
+ if plaintext_auth and not isinstance(plaintext_auth, bool):
113
+ raise TypeError("Expected argument 'plaintext_auth' to be a bool")
114
+ pulumi.set(__self__, "plaintext_auth", plaintext_auth)
115
+ if rewrite_rules and not isinstance(rewrite_rules, list):
116
+ raise TypeError("Expected argument 'rewrite_rules' to be a list")
117
+ pulumi.set(__self__, "rewrite_rules", rewrite_rules)
118
+ if schema and not isinstance(schema, str):
119
+ raise TypeError("Expected argument 'schema' to be a str")
120
+ pulumi.set(__self__, "schema", schema)
121
+ if state_or_province and not isinstance(state_or_province, str):
122
+ raise TypeError("Expected argument 'state_or_province' to be a str")
123
+ pulumi.set(__self__, "state_or_province", state_or_province)
124
+ if street_address and not isinstance(street_address, str):
125
+ raise TypeError("Expected argument 'street_address' to be a str")
126
+ pulumi.set(__self__, "street_address", street_address)
127
+ if telephone and not isinstance(telephone, str):
128
+ raise TypeError("Expected argument 'telephone' to be a str")
129
+ pulumi.set(__self__, "telephone", telephone)
130
+ if unreachable_domains_behaviour and not isinstance(unreachable_domains_behaviour, str):
131
+ raise TypeError("Expected argument 'unreachable_domains_behaviour' to be a str")
132
+ pulumi.set(__self__, "unreachable_domains_behaviour", unreachable_domains_behaviour)
133
+
134
+ @property
135
+ @pulumi.getter(name="adScopesNames")
136
+ def ad_scopes_names(self) -> str:
137
+ """
138
+ String that contains the names of the scopes that the active directory belongs to. Names are separated by comma.
139
+ """
140
+ return pulumi.get(self, "ad_scopes_names")
141
+
142
+ @property
143
+ @pulumi.getter(name="agingTime")
144
+ def aging_time(self) -> int:
145
+ """
146
+ Aging Time
147
+ """
148
+ return pulumi.get(self, "aging_time")
149
+
150
+ @property
151
+ @pulumi.getter
152
+ def attributes(self) -> Sequence['outputs.GetActiveDirectoryJoinPointAttributeResult']:
153
+ """
154
+ List of AD attributes
155
+ """
156
+ return pulumi.get(self, "attributes")
157
+
158
+ @property
159
+ @pulumi.getter(name="authProtectionType")
160
+ def auth_protection_type(self) -> str:
161
+ """
162
+ Enable prevent AD account lockout for WIRELESS/WIRED/BOTH
163
+ """
164
+ return pulumi.get(self, "auth_protection_type")
165
+
166
+ @property
167
+ @pulumi.getter
168
+ def country(self) -> str:
169
+ """
170
+ User info attribute
171
+ """
172
+ return pulumi.get(self, "country")
173
+
174
+ @property
175
+ @pulumi.getter
176
+ def department(self) -> str:
177
+ """
178
+ User info attribute
179
+ """
180
+ return pulumi.get(self, "department")
181
+
182
+ @property
183
+ @pulumi.getter
184
+ def description(self) -> str:
185
+ """
186
+ Join point description
187
+ """
188
+ return pulumi.get(self, "description")
189
+
190
+ @property
191
+ @pulumi.getter
192
+ def domain(self) -> str:
193
+ """
194
+ AD domain associated with the join point
195
+ """
196
+ return pulumi.get(self, "domain")
197
+
198
+ @property
199
+ @pulumi.getter
200
+ def email(self) -> str:
201
+ """
202
+ User info attribute
203
+ """
204
+ return pulumi.get(self, "email")
205
+
206
+ @property
207
+ @pulumi.getter(name="enableCallbackForDialinClient")
208
+ def enable_callback_for_dialin_client(self) -> bool:
209
+ """
210
+ Enable Callback For Dial In Client
211
+ """
212
+ return pulumi.get(self, "enable_callback_for_dialin_client")
213
+
214
+ @property
215
+ @pulumi.getter(name="enableDialinPermissionCheck")
216
+ def enable_dialin_permission_check(self) -> bool:
217
+ """
218
+ Enable Dial In Permission Check
219
+ """
220
+ return pulumi.get(self, "enable_dialin_permission_check")
221
+
222
+ @property
223
+ @pulumi.getter(name="enableDomainAllowedList")
224
+ def enable_domain_allowed_list(self) -> bool:
225
+ return pulumi.get(self, "enable_domain_allowed_list")
226
+
227
+ @property
228
+ @pulumi.getter(name="enableFailedAuthProtection")
229
+ def enable_failed_auth_protection(self) -> bool:
230
+ """
231
+ Enable prevent AD account lockout due to too many bad password attempts
232
+ """
233
+ return pulumi.get(self, "enable_failed_auth_protection")
234
+
235
+ @property
236
+ @pulumi.getter(name="enableMachineAccess")
237
+ def enable_machine_access(self) -> bool:
238
+ """
239
+ Enable Machine Access
240
+ """
241
+ return pulumi.get(self, "enable_machine_access")
242
+
243
+ @property
244
+ @pulumi.getter(name="enableMachineAuth")
245
+ def enable_machine_auth(self) -> bool:
246
+ """
247
+ Enable Machine Authentication
248
+ """
249
+ return pulumi.get(self, "enable_machine_auth")
250
+
251
+ @property
252
+ @pulumi.getter(name="enablePassChange")
253
+ def enable_pass_change(self) -> bool:
254
+ """
255
+ Enable Password Change
256
+ """
257
+ return pulumi.get(self, "enable_pass_change")
258
+
259
+ @property
260
+ @pulumi.getter(name="enableRewrites")
261
+ def enable_rewrites(self) -> bool:
262
+ """
263
+ Enable Rewrites
264
+ """
265
+ return pulumi.get(self, "enable_rewrites")
266
+
267
+ @property
268
+ @pulumi.getter(name="failedAuthThreshold")
269
+ def failed_auth_threshold(self) -> int:
270
+ """
271
+ Number of bad password attempts
272
+ """
273
+ return pulumi.get(self, "failed_auth_threshold")
274
+
275
+ @property
276
+ @pulumi.getter(name="firstName")
277
+ def first_name(self) -> str:
278
+ """
279
+ User info attribute
280
+ """
281
+ return pulumi.get(self, "first_name")
282
+
283
+ @property
284
+ @pulumi.getter
285
+ def groups(self) -> Sequence['outputs.GetActiveDirectoryJoinPointGroupResult']:
286
+ """
287
+ List of AD Groups
288
+ """
289
+ return pulumi.get(self, "groups")
290
+
291
+ @property
292
+ @pulumi.getter
293
+ def id(self) -> str:
294
+ """
295
+ The id of the object
296
+ """
297
+ return pulumi.get(self, "id")
298
+
299
+ @property
300
+ @pulumi.getter(name="identityNotInAdBehaviour")
301
+ def identity_not_in_ad_behaviour(self) -> str:
302
+ """
303
+ Identity Not In AD Behaviour
304
+ """
305
+ return pulumi.get(self, "identity_not_in_ad_behaviour")
306
+
307
+ @property
308
+ @pulumi.getter(name="jobTitle")
309
+ def job_title(self) -> str:
310
+ """
311
+ User info attribute
312
+ """
313
+ return pulumi.get(self, "job_title")
314
+
315
+ @property
316
+ @pulumi.getter(name="lastName")
317
+ def last_name(self) -> str:
318
+ """
319
+ User info attribute
320
+ """
321
+ return pulumi.get(self, "last_name")
322
+
323
+ @property
324
+ @pulumi.getter
325
+ def locality(self) -> str:
326
+ """
327
+ User info attribute
328
+ """
329
+ return pulumi.get(self, "locality")
330
+
331
+ @property
332
+ @pulumi.getter
333
+ def name(self) -> str:
334
+ """
335
+ The name of the active directory join point
336
+ """
337
+ return pulumi.get(self, "name")
338
+
339
+ @property
340
+ @pulumi.getter(name="organizationalUnit")
341
+ def organizational_unit(self) -> str:
342
+ """
343
+ User info attribute
344
+ """
345
+ return pulumi.get(self, "organizational_unit")
346
+
347
+ @property
348
+ @pulumi.getter(name="plaintextAuth")
349
+ def plaintext_auth(self) -> bool:
350
+ """
351
+ Plain Text Authentication
352
+ """
353
+ return pulumi.get(self, "plaintext_auth")
354
+
355
+ @property
356
+ @pulumi.getter(name="rewriteRules")
357
+ def rewrite_rules(self) -> Sequence['outputs.GetActiveDirectoryJoinPointRewriteRuleResult']:
358
+ """
359
+ List of Rewrite rules
360
+ """
361
+ return pulumi.get(self, "rewrite_rules")
362
+
363
+ @property
364
+ @pulumi.getter
365
+ def schema(self) -> str:
366
+ """
367
+ Schema
368
+ """
369
+ return pulumi.get(self, "schema")
370
+
371
+ @property
372
+ @pulumi.getter(name="stateOrProvince")
373
+ def state_or_province(self) -> str:
374
+ """
375
+ User info attribute
376
+ """
377
+ return pulumi.get(self, "state_or_province")
378
+
379
+ @property
380
+ @pulumi.getter(name="streetAddress")
381
+ def street_address(self) -> str:
382
+ """
383
+ User info attribute
384
+ """
385
+ return pulumi.get(self, "street_address")
386
+
387
+ @property
388
+ @pulumi.getter
389
+ def telephone(self) -> str:
390
+ """
391
+ User info attribute
392
+ """
393
+ return pulumi.get(self, "telephone")
394
+
395
+ @property
396
+ @pulumi.getter(name="unreachableDomainsBehaviour")
397
+ def unreachable_domains_behaviour(self) -> str:
398
+ """
399
+ Unreachable Domains Behaviour
400
+ """
401
+ return pulumi.get(self, "unreachable_domains_behaviour")
402
+
403
+
404
+ class AwaitableGetActiveDirectoryJoinPointResult(GetActiveDirectoryJoinPointResult):
405
+ # pylint: disable=using-constant-test
406
+ def __await__(self):
407
+ if False:
408
+ yield self
409
+ return GetActiveDirectoryJoinPointResult(
410
+ ad_scopes_names=self.ad_scopes_names,
411
+ aging_time=self.aging_time,
412
+ attributes=self.attributes,
413
+ auth_protection_type=self.auth_protection_type,
414
+ country=self.country,
415
+ department=self.department,
416
+ description=self.description,
417
+ domain=self.domain,
418
+ email=self.email,
419
+ enable_callback_for_dialin_client=self.enable_callback_for_dialin_client,
420
+ enable_dialin_permission_check=self.enable_dialin_permission_check,
421
+ enable_domain_allowed_list=self.enable_domain_allowed_list,
422
+ enable_failed_auth_protection=self.enable_failed_auth_protection,
423
+ enable_machine_access=self.enable_machine_access,
424
+ enable_machine_auth=self.enable_machine_auth,
425
+ enable_pass_change=self.enable_pass_change,
426
+ enable_rewrites=self.enable_rewrites,
427
+ failed_auth_threshold=self.failed_auth_threshold,
428
+ first_name=self.first_name,
429
+ groups=self.groups,
430
+ id=self.id,
431
+ identity_not_in_ad_behaviour=self.identity_not_in_ad_behaviour,
432
+ job_title=self.job_title,
433
+ last_name=self.last_name,
434
+ locality=self.locality,
435
+ name=self.name,
436
+ organizational_unit=self.organizational_unit,
437
+ plaintext_auth=self.plaintext_auth,
438
+ rewrite_rules=self.rewrite_rules,
439
+ schema=self.schema,
440
+ state_or_province=self.state_or_province,
441
+ street_address=self.street_address,
442
+ telephone=self.telephone,
443
+ unreachable_domains_behaviour=self.unreachable_domains_behaviour)
444
+
445
+
446
+ def get_active_directory_join_point(id: Optional[str] = None,
447
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetActiveDirectoryJoinPointResult:
448
+ """
449
+ This data source can read the Active Directory Join Point.
450
+
451
+ ## Example Usage
452
+
453
+ ```python
454
+ import pulumi
455
+ import pulumi_ise as ise
456
+
457
+ example = ise.identitymanagement.get_active_directory_join_point(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
458
+ ```
459
+
460
+
461
+ :param str id: The id of the object
462
+ """
463
+ __args__ = dict()
464
+ __args__['id'] = id
465
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
466
+ __ret__ = pulumi.runtime.invoke('ise:identitymanagement/getActiveDirectoryJoinPoint:getActiveDirectoryJoinPoint', __args__, opts=opts, typ=GetActiveDirectoryJoinPointResult).value
467
+
468
+ return AwaitableGetActiveDirectoryJoinPointResult(
469
+ ad_scopes_names=pulumi.get(__ret__, 'ad_scopes_names'),
470
+ aging_time=pulumi.get(__ret__, 'aging_time'),
471
+ attributes=pulumi.get(__ret__, 'attributes'),
472
+ auth_protection_type=pulumi.get(__ret__, 'auth_protection_type'),
473
+ country=pulumi.get(__ret__, 'country'),
474
+ department=pulumi.get(__ret__, 'department'),
475
+ description=pulumi.get(__ret__, 'description'),
476
+ domain=pulumi.get(__ret__, 'domain'),
477
+ email=pulumi.get(__ret__, 'email'),
478
+ enable_callback_for_dialin_client=pulumi.get(__ret__, 'enable_callback_for_dialin_client'),
479
+ enable_dialin_permission_check=pulumi.get(__ret__, 'enable_dialin_permission_check'),
480
+ enable_domain_allowed_list=pulumi.get(__ret__, 'enable_domain_allowed_list'),
481
+ enable_failed_auth_protection=pulumi.get(__ret__, 'enable_failed_auth_protection'),
482
+ enable_machine_access=pulumi.get(__ret__, 'enable_machine_access'),
483
+ enable_machine_auth=pulumi.get(__ret__, 'enable_machine_auth'),
484
+ enable_pass_change=pulumi.get(__ret__, 'enable_pass_change'),
485
+ enable_rewrites=pulumi.get(__ret__, 'enable_rewrites'),
486
+ failed_auth_threshold=pulumi.get(__ret__, 'failed_auth_threshold'),
487
+ first_name=pulumi.get(__ret__, 'first_name'),
488
+ groups=pulumi.get(__ret__, 'groups'),
489
+ id=pulumi.get(__ret__, 'id'),
490
+ identity_not_in_ad_behaviour=pulumi.get(__ret__, 'identity_not_in_ad_behaviour'),
491
+ job_title=pulumi.get(__ret__, 'job_title'),
492
+ last_name=pulumi.get(__ret__, 'last_name'),
493
+ locality=pulumi.get(__ret__, 'locality'),
494
+ name=pulumi.get(__ret__, 'name'),
495
+ organizational_unit=pulumi.get(__ret__, 'organizational_unit'),
496
+ plaintext_auth=pulumi.get(__ret__, 'plaintext_auth'),
497
+ rewrite_rules=pulumi.get(__ret__, 'rewrite_rules'),
498
+ schema=pulumi.get(__ret__, 'schema'),
499
+ state_or_province=pulumi.get(__ret__, 'state_or_province'),
500
+ street_address=pulumi.get(__ret__, 'street_address'),
501
+ telephone=pulumi.get(__ret__, 'telephone'),
502
+ unreachable_domains_behaviour=pulumi.get(__ret__, 'unreachable_domains_behaviour'))
503
+ def get_active_directory_join_point_output(id: Optional[pulumi.Input[str]] = None,
504
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetActiveDirectoryJoinPointResult]:
505
+ """
506
+ This data source can read the Active Directory Join Point.
507
+
508
+ ## Example Usage
509
+
510
+ ```python
511
+ import pulumi
512
+ import pulumi_ise as ise
513
+
514
+ example = ise.identitymanagement.get_active_directory_join_point(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
515
+ ```
516
+
517
+
518
+ :param str id: The id of the object
519
+ """
520
+ __args__ = dict()
521
+ __args__['id'] = id
522
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
523
+ __ret__ = pulumi.runtime.invoke_output('ise:identitymanagement/getActiveDirectoryJoinPoint:getActiveDirectoryJoinPoint', __args__, opts=opts, typ=GetActiveDirectoryJoinPointResult)
524
+ return __ret__.apply(lambda __response__: GetActiveDirectoryJoinPointResult(
525
+ ad_scopes_names=pulumi.get(__response__, 'ad_scopes_names'),
526
+ aging_time=pulumi.get(__response__, 'aging_time'),
527
+ attributes=pulumi.get(__response__, 'attributes'),
528
+ auth_protection_type=pulumi.get(__response__, 'auth_protection_type'),
529
+ country=pulumi.get(__response__, 'country'),
530
+ department=pulumi.get(__response__, 'department'),
531
+ description=pulumi.get(__response__, 'description'),
532
+ domain=pulumi.get(__response__, 'domain'),
533
+ email=pulumi.get(__response__, 'email'),
534
+ enable_callback_for_dialin_client=pulumi.get(__response__, 'enable_callback_for_dialin_client'),
535
+ enable_dialin_permission_check=pulumi.get(__response__, 'enable_dialin_permission_check'),
536
+ enable_domain_allowed_list=pulumi.get(__response__, 'enable_domain_allowed_list'),
537
+ enable_failed_auth_protection=pulumi.get(__response__, 'enable_failed_auth_protection'),
538
+ enable_machine_access=pulumi.get(__response__, 'enable_machine_access'),
539
+ enable_machine_auth=pulumi.get(__response__, 'enable_machine_auth'),
540
+ enable_pass_change=pulumi.get(__response__, 'enable_pass_change'),
541
+ enable_rewrites=pulumi.get(__response__, 'enable_rewrites'),
542
+ failed_auth_threshold=pulumi.get(__response__, 'failed_auth_threshold'),
543
+ first_name=pulumi.get(__response__, 'first_name'),
544
+ groups=pulumi.get(__response__, 'groups'),
545
+ id=pulumi.get(__response__, 'id'),
546
+ identity_not_in_ad_behaviour=pulumi.get(__response__, 'identity_not_in_ad_behaviour'),
547
+ job_title=pulumi.get(__response__, 'job_title'),
548
+ last_name=pulumi.get(__response__, 'last_name'),
549
+ locality=pulumi.get(__response__, 'locality'),
550
+ name=pulumi.get(__response__, 'name'),
551
+ organizational_unit=pulumi.get(__response__, 'organizational_unit'),
552
+ plaintext_auth=pulumi.get(__response__, 'plaintext_auth'),
553
+ rewrite_rules=pulumi.get(__response__, 'rewrite_rules'),
554
+ schema=pulumi.get(__response__, 'schema'),
555
+ state_or_province=pulumi.get(__response__, 'state_or_province'),
556
+ street_address=pulumi.get(__response__, 'street_address'),
557
+ telephone=pulumi.get(__response__, 'telephone'),
558
+ unreachable_domains_behaviour=pulumi.get(__response__, 'unreachable_domains_behaviour')))