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