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,312 @@
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
+ 'GetAuthorizationExceptionRuleResult',
15
+ 'AwaitableGetAuthorizationExceptionRuleResult',
16
+ 'get_authorization_exception_rule',
17
+ 'get_authorization_exception_rule_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetAuthorizationExceptionRuleResult:
22
+ """
23
+ A collection of values returned by getAuthorizationExceptionRule.
24
+ """
25
+ def __init__(__self__, childrens=None, command_sets=None, condition_attribute_name=None, condition_attribute_value=None, condition_dictionary_name=None, condition_dictionary_value=None, condition_id=None, condition_is_negate=None, condition_operator=None, condition_type=None, default=None, id=None, name=None, policy_set_id=None, profile=None, rank=None, state=None):
26
+ if childrens and not isinstance(childrens, list):
27
+ raise TypeError("Expected argument 'childrens' to be a list")
28
+ pulumi.set(__self__, "childrens", childrens)
29
+ if command_sets and not isinstance(command_sets, list):
30
+ raise TypeError("Expected argument 'command_sets' to be a list")
31
+ pulumi.set(__self__, "command_sets", command_sets)
32
+ if condition_attribute_name and not isinstance(condition_attribute_name, str):
33
+ raise TypeError("Expected argument 'condition_attribute_name' to be a str")
34
+ pulumi.set(__self__, "condition_attribute_name", condition_attribute_name)
35
+ if condition_attribute_value and not isinstance(condition_attribute_value, str):
36
+ raise TypeError("Expected argument 'condition_attribute_value' to be a str")
37
+ pulumi.set(__self__, "condition_attribute_value", condition_attribute_value)
38
+ if condition_dictionary_name and not isinstance(condition_dictionary_name, str):
39
+ raise TypeError("Expected argument 'condition_dictionary_name' to be a str")
40
+ pulumi.set(__self__, "condition_dictionary_name", condition_dictionary_name)
41
+ if condition_dictionary_value and not isinstance(condition_dictionary_value, str):
42
+ raise TypeError("Expected argument 'condition_dictionary_value' to be a str")
43
+ pulumi.set(__self__, "condition_dictionary_value", condition_dictionary_value)
44
+ if condition_id and not isinstance(condition_id, str):
45
+ raise TypeError("Expected argument 'condition_id' to be a str")
46
+ pulumi.set(__self__, "condition_id", condition_id)
47
+ if condition_is_negate and not isinstance(condition_is_negate, bool):
48
+ raise TypeError("Expected argument 'condition_is_negate' to be a bool")
49
+ pulumi.set(__self__, "condition_is_negate", condition_is_negate)
50
+ if condition_operator and not isinstance(condition_operator, str):
51
+ raise TypeError("Expected argument 'condition_operator' to be a str")
52
+ pulumi.set(__self__, "condition_operator", condition_operator)
53
+ if condition_type and not isinstance(condition_type, str):
54
+ raise TypeError("Expected argument 'condition_type' to be a str")
55
+ pulumi.set(__self__, "condition_type", condition_type)
56
+ if default and not isinstance(default, bool):
57
+ raise TypeError("Expected argument 'default' to be a bool")
58
+ pulumi.set(__self__, "default", default)
59
+ if id and not isinstance(id, str):
60
+ raise TypeError("Expected argument 'id' to be a str")
61
+ pulumi.set(__self__, "id", id)
62
+ if name and not isinstance(name, str):
63
+ raise TypeError("Expected argument 'name' to be a str")
64
+ pulumi.set(__self__, "name", name)
65
+ if policy_set_id and not isinstance(policy_set_id, str):
66
+ raise TypeError("Expected argument 'policy_set_id' to be a str")
67
+ pulumi.set(__self__, "policy_set_id", policy_set_id)
68
+ if profile and not isinstance(profile, str):
69
+ raise TypeError("Expected argument 'profile' to be a str")
70
+ pulumi.set(__self__, "profile", profile)
71
+ if rank and not isinstance(rank, int):
72
+ raise TypeError("Expected argument 'rank' to be a int")
73
+ pulumi.set(__self__, "rank", rank)
74
+ if state and not isinstance(state, str):
75
+ raise TypeError("Expected argument 'state' to be a str")
76
+ pulumi.set(__self__, "state", state)
77
+
78
+ @property
79
+ @pulumi.getter
80
+ def childrens(self) -> Sequence['outputs.GetAuthorizationExceptionRuleChildrenResult']:
81
+ """
82
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
83
+ """
84
+ return pulumi.get(self, "childrens")
85
+
86
+ @property
87
+ @pulumi.getter(name="commandSets")
88
+ def command_sets(self) -> Sequence[str]:
89
+ """
90
+ Command sets enforce the specified list of commands that can be executed by a device administrator
91
+ """
92
+ return pulumi.get(self, "command_sets")
93
+
94
+ @property
95
+ @pulumi.getter(name="conditionAttributeName")
96
+ def condition_attribute_name(self) -> str:
97
+ """
98
+ Dictionary attribute name
99
+ """
100
+ return pulumi.get(self, "condition_attribute_name")
101
+
102
+ @property
103
+ @pulumi.getter(name="conditionAttributeValue")
104
+ def condition_attribute_value(self) -> str:
105
+ """
106
+ Attribute value for condition. Value type is specified in dictionary object.
107
+ """
108
+ return pulumi.get(self, "condition_attribute_value")
109
+
110
+ @property
111
+ @pulumi.getter(name="conditionDictionaryName")
112
+ def condition_dictionary_name(self) -> str:
113
+ """
114
+ Dictionary name
115
+ """
116
+ return pulumi.get(self, "condition_dictionary_name")
117
+
118
+ @property
119
+ @pulumi.getter(name="conditionDictionaryValue")
120
+ def condition_dictionary_value(self) -> str:
121
+ """
122
+ Dictionary value
123
+ """
124
+ return pulumi.get(self, "condition_dictionary_value")
125
+
126
+ @property
127
+ @pulumi.getter(name="conditionId")
128
+ def condition_id(self) -> str:
129
+ """
130
+ UUID for condition
131
+ """
132
+ return pulumi.get(self, "condition_id")
133
+
134
+ @property
135
+ @pulumi.getter(name="conditionIsNegate")
136
+ def condition_is_negate(self) -> bool:
137
+ """
138
+ Indicates whereas this condition is in negate mode
139
+ """
140
+ return pulumi.get(self, "condition_is_negate")
141
+
142
+ @property
143
+ @pulumi.getter(name="conditionOperator")
144
+ def condition_operator(self) -> str:
145
+ """
146
+ Equality operator
147
+ """
148
+ return pulumi.get(self, "condition_operator")
149
+
150
+ @property
151
+ @pulumi.getter(name="conditionType")
152
+ def condition_type(self) -> str:
153
+ """
154
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
155
+ """
156
+ return pulumi.get(self, "condition_type")
157
+
158
+ @property
159
+ @pulumi.getter
160
+ def default(self) -> bool:
161
+ """
162
+ Indicates if this rule is the default one
163
+ """
164
+ return pulumi.get(self, "default")
165
+
166
+ @property
167
+ @pulumi.getter
168
+ def id(self) -> str:
169
+ """
170
+ The id of the object
171
+ """
172
+ return pulumi.get(self, "id")
173
+
174
+ @property
175
+ @pulumi.getter
176
+ def name(self) -> str:
177
+ """
178
+ Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
179
+ """
180
+ return pulumi.get(self, "name")
181
+
182
+ @property
183
+ @pulumi.getter(name="policySetId")
184
+ def policy_set_id(self) -> str:
185
+ """
186
+ Policy set ID
187
+ """
188
+ return pulumi.get(self, "policy_set_id")
189
+
190
+ @property
191
+ @pulumi.getter
192
+ def profile(self) -> str:
193
+ """
194
+ Device admin profiles control the initial login session of the device administrator
195
+ """
196
+ return pulumi.get(self, "profile")
197
+
198
+ @property
199
+ @pulumi.getter
200
+ def rank(self) -> int:
201
+ """
202
+ The rank (priority) in relation to other rules. Lower rank is higher priority.
203
+ """
204
+ return pulumi.get(self, "rank")
205
+
206
+ @property
207
+ @pulumi.getter
208
+ def state(self) -> str:
209
+ """
210
+ The state that the rule is in. A disabled rule cannot be matched.
211
+ """
212
+ return pulumi.get(self, "state")
213
+
214
+
215
+ class AwaitableGetAuthorizationExceptionRuleResult(GetAuthorizationExceptionRuleResult):
216
+ # pylint: disable=using-constant-test
217
+ def __await__(self):
218
+ if False:
219
+ yield self
220
+ return GetAuthorizationExceptionRuleResult(
221
+ childrens=self.childrens,
222
+ command_sets=self.command_sets,
223
+ condition_attribute_name=self.condition_attribute_name,
224
+ condition_attribute_value=self.condition_attribute_value,
225
+ condition_dictionary_name=self.condition_dictionary_name,
226
+ condition_dictionary_value=self.condition_dictionary_value,
227
+ condition_id=self.condition_id,
228
+ condition_is_negate=self.condition_is_negate,
229
+ condition_operator=self.condition_operator,
230
+ condition_type=self.condition_type,
231
+ default=self.default,
232
+ id=self.id,
233
+ name=self.name,
234
+ policy_set_id=self.policy_set_id,
235
+ profile=self.profile,
236
+ rank=self.rank,
237
+ state=self.state)
238
+
239
+
240
+ def get_authorization_exception_rule(id: Optional[str] = None,
241
+ name: Optional[str] = None,
242
+ policy_set_id: Optional[str] = None,
243
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAuthorizationExceptionRuleResult:
244
+ """
245
+ This data source can read the Device Admin Authorization Exception Rule.
246
+
247
+ ## Example Usage
248
+
249
+ ```python
250
+ import pulumi
251
+ import pulumi_ise as ise
252
+
253
+ example = ise.deviceadmin.get_authorization_exception_rule(id="76d24097-41c4-4558-a4d0-a8c07ac08470",
254
+ policy_set_id="d82952cb-b901-4b09-b363-5ebf39bdbaf9")
255
+ ```
256
+
257
+
258
+ :param str id: The id of the object
259
+ :param str name: Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
260
+ :param str policy_set_id: Policy set ID
261
+ """
262
+ __args__ = dict()
263
+ __args__['id'] = id
264
+ __args__['name'] = name
265
+ __args__['policySetId'] = policy_set_id
266
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
267
+ __ret__ = pulumi.runtime.invoke('ise:deviceadmin/getAuthorizationExceptionRule:getAuthorizationExceptionRule', __args__, opts=opts, typ=GetAuthorizationExceptionRuleResult).value
268
+
269
+ return AwaitableGetAuthorizationExceptionRuleResult(
270
+ childrens=pulumi.get(__ret__, 'childrens'),
271
+ command_sets=pulumi.get(__ret__, 'command_sets'),
272
+ condition_attribute_name=pulumi.get(__ret__, 'condition_attribute_name'),
273
+ condition_attribute_value=pulumi.get(__ret__, 'condition_attribute_value'),
274
+ condition_dictionary_name=pulumi.get(__ret__, 'condition_dictionary_name'),
275
+ condition_dictionary_value=pulumi.get(__ret__, 'condition_dictionary_value'),
276
+ condition_id=pulumi.get(__ret__, 'condition_id'),
277
+ condition_is_negate=pulumi.get(__ret__, 'condition_is_negate'),
278
+ condition_operator=pulumi.get(__ret__, 'condition_operator'),
279
+ condition_type=pulumi.get(__ret__, 'condition_type'),
280
+ default=pulumi.get(__ret__, 'default'),
281
+ id=pulumi.get(__ret__, 'id'),
282
+ name=pulumi.get(__ret__, 'name'),
283
+ policy_set_id=pulumi.get(__ret__, 'policy_set_id'),
284
+ profile=pulumi.get(__ret__, 'profile'),
285
+ rank=pulumi.get(__ret__, 'rank'),
286
+ state=pulumi.get(__ret__, 'state'))
287
+
288
+
289
+ @_utilities.lift_output_func(get_authorization_exception_rule)
290
+ def get_authorization_exception_rule_output(id: Optional[pulumi.Input[Optional[str]]] = None,
291
+ name: Optional[pulumi.Input[Optional[str]]] = None,
292
+ policy_set_id: Optional[pulumi.Input[str]] = None,
293
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAuthorizationExceptionRuleResult]:
294
+ """
295
+ This data source can read the Device Admin Authorization Exception Rule.
296
+
297
+ ## Example Usage
298
+
299
+ ```python
300
+ import pulumi
301
+ import pulumi_ise as ise
302
+
303
+ example = ise.deviceadmin.get_authorization_exception_rule(id="76d24097-41c4-4558-a4d0-a8c07ac08470",
304
+ policy_set_id="d82952cb-b901-4b09-b363-5ebf39bdbaf9")
305
+ ```
306
+
307
+
308
+ :param str id: The id of the object
309
+ :param str name: Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
310
+ :param str policy_set_id: Policy set ID
311
+ """
312
+ ...
@@ -0,0 +1,292 @@
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
+ 'GetAuthorizationGlobalExceptionRuleResult',
15
+ 'AwaitableGetAuthorizationGlobalExceptionRuleResult',
16
+ 'get_authorization_global_exception_rule',
17
+ 'get_authorization_global_exception_rule_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetAuthorizationGlobalExceptionRuleResult:
22
+ """
23
+ A collection of values returned by getAuthorizationGlobalExceptionRule.
24
+ """
25
+ def __init__(__self__, childrens=None, command_sets=None, condition_attribute_name=None, condition_attribute_value=None, condition_dictionary_name=None, condition_dictionary_value=None, condition_id=None, condition_is_negate=None, condition_operator=None, condition_type=None, default=None, id=None, name=None, profile=None, rank=None, state=None):
26
+ if childrens and not isinstance(childrens, list):
27
+ raise TypeError("Expected argument 'childrens' to be a list")
28
+ pulumi.set(__self__, "childrens", childrens)
29
+ if command_sets and not isinstance(command_sets, list):
30
+ raise TypeError("Expected argument 'command_sets' to be a list")
31
+ pulumi.set(__self__, "command_sets", command_sets)
32
+ if condition_attribute_name and not isinstance(condition_attribute_name, str):
33
+ raise TypeError("Expected argument 'condition_attribute_name' to be a str")
34
+ pulumi.set(__self__, "condition_attribute_name", condition_attribute_name)
35
+ if condition_attribute_value and not isinstance(condition_attribute_value, str):
36
+ raise TypeError("Expected argument 'condition_attribute_value' to be a str")
37
+ pulumi.set(__self__, "condition_attribute_value", condition_attribute_value)
38
+ if condition_dictionary_name and not isinstance(condition_dictionary_name, str):
39
+ raise TypeError("Expected argument 'condition_dictionary_name' to be a str")
40
+ pulumi.set(__self__, "condition_dictionary_name", condition_dictionary_name)
41
+ if condition_dictionary_value and not isinstance(condition_dictionary_value, str):
42
+ raise TypeError("Expected argument 'condition_dictionary_value' to be a str")
43
+ pulumi.set(__self__, "condition_dictionary_value", condition_dictionary_value)
44
+ if condition_id and not isinstance(condition_id, str):
45
+ raise TypeError("Expected argument 'condition_id' to be a str")
46
+ pulumi.set(__self__, "condition_id", condition_id)
47
+ if condition_is_negate and not isinstance(condition_is_negate, bool):
48
+ raise TypeError("Expected argument 'condition_is_negate' to be a bool")
49
+ pulumi.set(__self__, "condition_is_negate", condition_is_negate)
50
+ if condition_operator and not isinstance(condition_operator, str):
51
+ raise TypeError("Expected argument 'condition_operator' to be a str")
52
+ pulumi.set(__self__, "condition_operator", condition_operator)
53
+ if condition_type and not isinstance(condition_type, str):
54
+ raise TypeError("Expected argument 'condition_type' to be a str")
55
+ pulumi.set(__self__, "condition_type", condition_type)
56
+ if default and not isinstance(default, bool):
57
+ raise TypeError("Expected argument 'default' to be a bool")
58
+ pulumi.set(__self__, "default", default)
59
+ if id and not isinstance(id, str):
60
+ raise TypeError("Expected argument 'id' to be a str")
61
+ pulumi.set(__self__, "id", id)
62
+ if name and not isinstance(name, str):
63
+ raise TypeError("Expected argument 'name' to be a str")
64
+ pulumi.set(__self__, "name", name)
65
+ if profile and not isinstance(profile, str):
66
+ raise TypeError("Expected argument 'profile' to be a str")
67
+ pulumi.set(__self__, "profile", profile)
68
+ if rank and not isinstance(rank, int):
69
+ raise TypeError("Expected argument 'rank' to be a int")
70
+ pulumi.set(__self__, "rank", rank)
71
+ if state and not isinstance(state, str):
72
+ raise TypeError("Expected argument 'state' to be a str")
73
+ pulumi.set(__self__, "state", state)
74
+
75
+ @property
76
+ @pulumi.getter
77
+ def childrens(self) -> Sequence['outputs.GetAuthorizationGlobalExceptionRuleChildrenResult']:
78
+ """
79
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
80
+ """
81
+ return pulumi.get(self, "childrens")
82
+
83
+ @property
84
+ @pulumi.getter(name="commandSets")
85
+ def command_sets(self) -> Sequence[str]:
86
+ """
87
+ Command sets enforce the specified list of commands that can be executed by a device administrator
88
+ """
89
+ return pulumi.get(self, "command_sets")
90
+
91
+ @property
92
+ @pulumi.getter(name="conditionAttributeName")
93
+ def condition_attribute_name(self) -> str:
94
+ """
95
+ Dictionary attribute name
96
+ """
97
+ return pulumi.get(self, "condition_attribute_name")
98
+
99
+ @property
100
+ @pulumi.getter(name="conditionAttributeValue")
101
+ def condition_attribute_value(self) -> str:
102
+ """
103
+ Attribute value for condition. Value type is specified in dictionary object.
104
+ """
105
+ return pulumi.get(self, "condition_attribute_value")
106
+
107
+ @property
108
+ @pulumi.getter(name="conditionDictionaryName")
109
+ def condition_dictionary_name(self) -> str:
110
+ """
111
+ Dictionary name
112
+ """
113
+ return pulumi.get(self, "condition_dictionary_name")
114
+
115
+ @property
116
+ @pulumi.getter(name="conditionDictionaryValue")
117
+ def condition_dictionary_value(self) -> str:
118
+ """
119
+ Dictionary value
120
+ """
121
+ return pulumi.get(self, "condition_dictionary_value")
122
+
123
+ @property
124
+ @pulumi.getter(name="conditionId")
125
+ def condition_id(self) -> str:
126
+ """
127
+ UUID for condition
128
+ """
129
+ return pulumi.get(self, "condition_id")
130
+
131
+ @property
132
+ @pulumi.getter(name="conditionIsNegate")
133
+ def condition_is_negate(self) -> bool:
134
+ """
135
+ Indicates whereas this condition is in negate mode
136
+ """
137
+ return pulumi.get(self, "condition_is_negate")
138
+
139
+ @property
140
+ @pulumi.getter(name="conditionOperator")
141
+ def condition_operator(self) -> str:
142
+ """
143
+ Equality operator
144
+ """
145
+ return pulumi.get(self, "condition_operator")
146
+
147
+ @property
148
+ @pulumi.getter(name="conditionType")
149
+ def condition_type(self) -> str:
150
+ """
151
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
152
+ """
153
+ return pulumi.get(self, "condition_type")
154
+
155
+ @property
156
+ @pulumi.getter
157
+ def default(self) -> bool:
158
+ """
159
+ Indicates if this rule is the default one
160
+ """
161
+ return pulumi.get(self, "default")
162
+
163
+ @property
164
+ @pulumi.getter
165
+ def id(self) -> str:
166
+ """
167
+ The id of the object
168
+ """
169
+ return pulumi.get(self, "id")
170
+
171
+ @property
172
+ @pulumi.getter
173
+ def name(self) -> str:
174
+ """
175
+ Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
176
+ """
177
+ return pulumi.get(self, "name")
178
+
179
+ @property
180
+ @pulumi.getter
181
+ def profile(self) -> str:
182
+ """
183
+ Device admin profiles control the initial login session of the device administrator
184
+ """
185
+ return pulumi.get(self, "profile")
186
+
187
+ @property
188
+ @pulumi.getter
189
+ def rank(self) -> int:
190
+ """
191
+ The rank (priority) in relation to other rules. Lower rank is higher priority.
192
+ """
193
+ return pulumi.get(self, "rank")
194
+
195
+ @property
196
+ @pulumi.getter
197
+ def state(self) -> str:
198
+ """
199
+ The state that the rule is in. A disabled rule cannot be matched.
200
+ """
201
+ return pulumi.get(self, "state")
202
+
203
+
204
+ class AwaitableGetAuthorizationGlobalExceptionRuleResult(GetAuthorizationGlobalExceptionRuleResult):
205
+ # pylint: disable=using-constant-test
206
+ def __await__(self):
207
+ if False:
208
+ yield self
209
+ return GetAuthorizationGlobalExceptionRuleResult(
210
+ childrens=self.childrens,
211
+ command_sets=self.command_sets,
212
+ condition_attribute_name=self.condition_attribute_name,
213
+ condition_attribute_value=self.condition_attribute_value,
214
+ condition_dictionary_name=self.condition_dictionary_name,
215
+ condition_dictionary_value=self.condition_dictionary_value,
216
+ condition_id=self.condition_id,
217
+ condition_is_negate=self.condition_is_negate,
218
+ condition_operator=self.condition_operator,
219
+ condition_type=self.condition_type,
220
+ default=self.default,
221
+ id=self.id,
222
+ name=self.name,
223
+ profile=self.profile,
224
+ rank=self.rank,
225
+ state=self.state)
226
+
227
+
228
+ def get_authorization_global_exception_rule(id: Optional[str] = None,
229
+ name: Optional[str] = None,
230
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAuthorizationGlobalExceptionRuleResult:
231
+ """
232
+ This data source can read the Device Admin Authorization Global Exception Rule.
233
+
234
+ ## Example Usage
235
+
236
+ ```python
237
+ import pulumi
238
+ import pulumi_ise as ise
239
+
240
+ example = ise.deviceadmin.get_authorization_global_exception_rule(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
241
+ ```
242
+
243
+
244
+ :param str id: The id of the object
245
+ :param str name: Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
246
+ """
247
+ __args__ = dict()
248
+ __args__['id'] = id
249
+ __args__['name'] = name
250
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
251
+ __ret__ = pulumi.runtime.invoke('ise:deviceadmin/getAuthorizationGlobalExceptionRule:getAuthorizationGlobalExceptionRule', __args__, opts=opts, typ=GetAuthorizationGlobalExceptionRuleResult).value
252
+
253
+ return AwaitableGetAuthorizationGlobalExceptionRuleResult(
254
+ childrens=pulumi.get(__ret__, 'childrens'),
255
+ command_sets=pulumi.get(__ret__, 'command_sets'),
256
+ condition_attribute_name=pulumi.get(__ret__, 'condition_attribute_name'),
257
+ condition_attribute_value=pulumi.get(__ret__, 'condition_attribute_value'),
258
+ condition_dictionary_name=pulumi.get(__ret__, 'condition_dictionary_name'),
259
+ condition_dictionary_value=pulumi.get(__ret__, 'condition_dictionary_value'),
260
+ condition_id=pulumi.get(__ret__, 'condition_id'),
261
+ condition_is_negate=pulumi.get(__ret__, 'condition_is_negate'),
262
+ condition_operator=pulumi.get(__ret__, 'condition_operator'),
263
+ condition_type=pulumi.get(__ret__, 'condition_type'),
264
+ default=pulumi.get(__ret__, 'default'),
265
+ id=pulumi.get(__ret__, 'id'),
266
+ name=pulumi.get(__ret__, 'name'),
267
+ profile=pulumi.get(__ret__, 'profile'),
268
+ rank=pulumi.get(__ret__, 'rank'),
269
+ state=pulumi.get(__ret__, 'state'))
270
+
271
+
272
+ @_utilities.lift_output_func(get_authorization_global_exception_rule)
273
+ def get_authorization_global_exception_rule_output(id: Optional[pulumi.Input[Optional[str]]] = None,
274
+ name: Optional[pulumi.Input[Optional[str]]] = None,
275
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAuthorizationGlobalExceptionRuleResult]:
276
+ """
277
+ This data source can read the Device Admin Authorization Global Exception Rule.
278
+
279
+ ## Example Usage
280
+
281
+ ```python
282
+ import pulumi
283
+ import pulumi_ise as ise
284
+
285
+ example = ise.deviceadmin.get_authorization_global_exception_rule(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
286
+ ```
287
+
288
+
289
+ :param str id: The id of the object
290
+ :param str name: Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
291
+ """
292
+ ...