pulumi-ise 0.2.0a1736833585__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
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.0a1736833585.dist-info/METADATA +64 -0
  117. pulumi_ise-0.2.0a1736833585.dist-info/RECORD +119 -0
  118. pulumi_ise-0.2.0a1736833585.dist-info/WHEEL +5 -0
  119. pulumi_ise-0.2.0a1736833585.dist-info/top_level.txt +1 -0
@@ -0,0 +1,174 @@
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
+
17
+ __all__ = [
18
+ 'GetAllowedProtocolsTacacsResult',
19
+ 'AwaitableGetAllowedProtocolsTacacsResult',
20
+ 'get_allowed_protocols_tacacs',
21
+ 'get_allowed_protocols_tacacs_output',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class GetAllowedProtocolsTacacsResult:
26
+ """
27
+ A collection of values returned by getAllowedProtocolsTacacs.
28
+ """
29
+ def __init__(__self__, allow_chap=None, allow_ms_chap_v1=None, allow_pap_ascii=None, description=None, id=None, name=None):
30
+ if allow_chap and not isinstance(allow_chap, bool):
31
+ raise TypeError("Expected argument 'allow_chap' to be a bool")
32
+ pulumi.set(__self__, "allow_chap", allow_chap)
33
+ if allow_ms_chap_v1 and not isinstance(allow_ms_chap_v1, bool):
34
+ raise TypeError("Expected argument 'allow_ms_chap_v1' to be a bool")
35
+ pulumi.set(__self__, "allow_ms_chap_v1", allow_ms_chap_v1)
36
+ if allow_pap_ascii and not isinstance(allow_pap_ascii, bool):
37
+ raise TypeError("Expected argument 'allow_pap_ascii' to be a bool")
38
+ pulumi.set(__self__, "allow_pap_ascii", allow_pap_ascii)
39
+ if description and not isinstance(description, str):
40
+ raise TypeError("Expected argument 'description' to be a str")
41
+ pulumi.set(__self__, "description", description)
42
+ if id and not isinstance(id, str):
43
+ raise TypeError("Expected argument 'id' to be a str")
44
+ pulumi.set(__self__, "id", id)
45
+ if name and not isinstance(name, str):
46
+ raise TypeError("Expected argument 'name' to be a str")
47
+ pulumi.set(__self__, "name", name)
48
+
49
+ @property
50
+ @pulumi.getter(name="allowChap")
51
+ def allow_chap(self) -> bool:
52
+ """
53
+ Allow CHAP
54
+ """
55
+ return pulumi.get(self, "allow_chap")
56
+
57
+ @property
58
+ @pulumi.getter(name="allowMsChapV1")
59
+ def allow_ms_chap_v1(self) -> bool:
60
+ """
61
+ Allow MS CHAP v1
62
+ """
63
+ return pulumi.get(self, "allow_ms_chap_v1")
64
+
65
+ @property
66
+ @pulumi.getter(name="allowPapAscii")
67
+ def allow_pap_ascii(self) -> bool:
68
+ """
69
+ Allow PAP ASCII
70
+ """
71
+ return pulumi.get(self, "allow_pap_ascii")
72
+
73
+ @property
74
+ @pulumi.getter
75
+ def description(self) -> str:
76
+ """
77
+ Description
78
+ """
79
+ return pulumi.get(self, "description")
80
+
81
+ @property
82
+ @pulumi.getter
83
+ def id(self) -> str:
84
+ """
85
+ The id of the object
86
+ """
87
+ return pulumi.get(self, "id")
88
+
89
+ @property
90
+ @pulumi.getter
91
+ def name(self) -> str:
92
+ """
93
+ The name of the allowed protocols
94
+ """
95
+ return pulumi.get(self, "name")
96
+
97
+
98
+ class AwaitableGetAllowedProtocolsTacacsResult(GetAllowedProtocolsTacacsResult):
99
+ # pylint: disable=using-constant-test
100
+ def __await__(self):
101
+ if False:
102
+ yield self
103
+ return GetAllowedProtocolsTacacsResult(
104
+ allow_chap=self.allow_chap,
105
+ allow_ms_chap_v1=self.allow_ms_chap_v1,
106
+ allow_pap_ascii=self.allow_pap_ascii,
107
+ description=self.description,
108
+ id=self.id,
109
+ name=self.name)
110
+
111
+
112
+ def get_allowed_protocols_tacacs(id: Optional[str] = None,
113
+ name: Optional[str] = None,
114
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAllowedProtocolsTacacsResult:
115
+ """
116
+ This data source can read a TACACS allowed protocols policy element.
117
+
118
+ ## Example Usage
119
+
120
+ ```python
121
+ import pulumi
122
+ import pulumi_ise as ise
123
+
124
+ example = ise.deviceadmin.get_allowed_protocols_tacacs(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
125
+ ```
126
+
127
+
128
+ :param str id: The id of the object
129
+ :param str name: The name of the allowed protocols
130
+ """
131
+ __args__ = dict()
132
+ __args__['id'] = id
133
+ __args__['name'] = name
134
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
135
+ __ret__ = pulumi.runtime.invoke('ise:deviceadmin/getAllowedProtocolsTacacs:getAllowedProtocolsTacacs', __args__, opts=opts, typ=GetAllowedProtocolsTacacsResult).value
136
+
137
+ return AwaitableGetAllowedProtocolsTacacsResult(
138
+ allow_chap=pulumi.get(__ret__, 'allow_chap'),
139
+ allow_ms_chap_v1=pulumi.get(__ret__, 'allow_ms_chap_v1'),
140
+ allow_pap_ascii=pulumi.get(__ret__, 'allow_pap_ascii'),
141
+ description=pulumi.get(__ret__, 'description'),
142
+ id=pulumi.get(__ret__, 'id'),
143
+ name=pulumi.get(__ret__, 'name'))
144
+ def get_allowed_protocols_tacacs_output(id: Optional[pulumi.Input[Optional[str]]] = None,
145
+ name: Optional[pulumi.Input[Optional[str]]] = None,
146
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAllowedProtocolsTacacsResult]:
147
+ """
148
+ This data source can read a TACACS allowed protocols policy element.
149
+
150
+ ## Example Usage
151
+
152
+ ```python
153
+ import pulumi
154
+ import pulumi_ise as ise
155
+
156
+ example = ise.deviceadmin.get_allowed_protocols_tacacs(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
157
+ ```
158
+
159
+
160
+ :param str id: The id of the object
161
+ :param str name: The name of the allowed protocols
162
+ """
163
+ __args__ = dict()
164
+ __args__['id'] = id
165
+ __args__['name'] = name
166
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
167
+ __ret__ = pulumi.runtime.invoke_output('ise:deviceadmin/getAllowedProtocolsTacacs:getAllowedProtocolsTacacs', __args__, opts=opts, typ=GetAllowedProtocolsTacacsResult)
168
+ return __ret__.apply(lambda __response__: GetAllowedProtocolsTacacsResult(
169
+ allow_chap=pulumi.get(__response__, 'allow_chap'),
170
+ allow_ms_chap_v1=pulumi.get(__response__, 'allow_ms_chap_v1'),
171
+ allow_pap_ascii=pulumi.get(__response__, 'allow_pap_ascii'),
172
+ description=pulumi.get(__response__, 'description'),
173
+ id=pulumi.get(__response__, 'id'),
174
+ name=pulumi.get(__response__, 'name')))
@@ -0,0 +1,365 @@
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
+ 'GetAuthenticationRuleResult',
20
+ 'AwaitableGetAuthenticationRuleResult',
21
+ 'get_authentication_rule',
22
+ 'get_authentication_rule_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetAuthenticationRuleResult:
27
+ """
28
+ A collection of values returned by getAuthenticationRule.
29
+ """
30
+ def __init__(__self__, childrens=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, identity_source_name=None, if_auth_fail=None, if_process_fail=None, if_user_not_found=None, name=None, policy_set_id=None, rank=None, state=None):
31
+ if childrens and not isinstance(childrens, list):
32
+ raise TypeError("Expected argument 'childrens' to be a list")
33
+ pulumi.set(__self__, "childrens", childrens)
34
+ if condition_attribute_name and not isinstance(condition_attribute_name, str):
35
+ raise TypeError("Expected argument 'condition_attribute_name' to be a str")
36
+ pulumi.set(__self__, "condition_attribute_name", condition_attribute_name)
37
+ if condition_attribute_value and not isinstance(condition_attribute_value, str):
38
+ raise TypeError("Expected argument 'condition_attribute_value' to be a str")
39
+ pulumi.set(__self__, "condition_attribute_value", condition_attribute_value)
40
+ if condition_dictionary_name and not isinstance(condition_dictionary_name, str):
41
+ raise TypeError("Expected argument 'condition_dictionary_name' to be a str")
42
+ pulumi.set(__self__, "condition_dictionary_name", condition_dictionary_name)
43
+ if condition_dictionary_value and not isinstance(condition_dictionary_value, str):
44
+ raise TypeError("Expected argument 'condition_dictionary_value' to be a str")
45
+ pulumi.set(__self__, "condition_dictionary_value", condition_dictionary_value)
46
+ if condition_id and not isinstance(condition_id, str):
47
+ raise TypeError("Expected argument 'condition_id' to be a str")
48
+ pulumi.set(__self__, "condition_id", condition_id)
49
+ if condition_is_negate and not isinstance(condition_is_negate, bool):
50
+ raise TypeError("Expected argument 'condition_is_negate' to be a bool")
51
+ pulumi.set(__self__, "condition_is_negate", condition_is_negate)
52
+ if condition_operator and not isinstance(condition_operator, str):
53
+ raise TypeError("Expected argument 'condition_operator' to be a str")
54
+ pulumi.set(__self__, "condition_operator", condition_operator)
55
+ if condition_type and not isinstance(condition_type, str):
56
+ raise TypeError("Expected argument 'condition_type' to be a str")
57
+ pulumi.set(__self__, "condition_type", condition_type)
58
+ if default and not isinstance(default, bool):
59
+ raise TypeError("Expected argument 'default' to be a bool")
60
+ pulumi.set(__self__, "default", default)
61
+ if id and not isinstance(id, str):
62
+ raise TypeError("Expected argument 'id' to be a str")
63
+ pulumi.set(__self__, "id", id)
64
+ if identity_source_name and not isinstance(identity_source_name, str):
65
+ raise TypeError("Expected argument 'identity_source_name' to be a str")
66
+ pulumi.set(__self__, "identity_source_name", identity_source_name)
67
+ if if_auth_fail and not isinstance(if_auth_fail, str):
68
+ raise TypeError("Expected argument 'if_auth_fail' to be a str")
69
+ pulumi.set(__self__, "if_auth_fail", if_auth_fail)
70
+ if if_process_fail and not isinstance(if_process_fail, str):
71
+ raise TypeError("Expected argument 'if_process_fail' to be a str")
72
+ pulumi.set(__self__, "if_process_fail", if_process_fail)
73
+ if if_user_not_found and not isinstance(if_user_not_found, str):
74
+ raise TypeError("Expected argument 'if_user_not_found' to be a str")
75
+ pulumi.set(__self__, "if_user_not_found", if_user_not_found)
76
+ if name and not isinstance(name, str):
77
+ raise TypeError("Expected argument 'name' to be a str")
78
+ pulumi.set(__self__, "name", name)
79
+ if policy_set_id and not isinstance(policy_set_id, str):
80
+ raise TypeError("Expected argument 'policy_set_id' to be a str")
81
+ pulumi.set(__self__, "policy_set_id", policy_set_id)
82
+ if rank and not isinstance(rank, int):
83
+ raise TypeError("Expected argument 'rank' to be a int")
84
+ pulumi.set(__self__, "rank", rank)
85
+ if state and not isinstance(state, str):
86
+ raise TypeError("Expected argument 'state' to be a str")
87
+ pulumi.set(__self__, "state", state)
88
+
89
+ @property
90
+ @pulumi.getter
91
+ def childrens(self) -> Sequence['outputs.GetAuthenticationRuleChildrenResult']:
92
+ """
93
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
94
+ """
95
+ return pulumi.get(self, "childrens")
96
+
97
+ @property
98
+ @pulumi.getter(name="conditionAttributeName")
99
+ def condition_attribute_name(self) -> str:
100
+ """
101
+ Dictionary attribute name
102
+ """
103
+ return pulumi.get(self, "condition_attribute_name")
104
+
105
+ @property
106
+ @pulumi.getter(name="conditionAttributeValue")
107
+ def condition_attribute_value(self) -> str:
108
+ """
109
+ Attribute value for condition. Value type is specified in dictionary object.
110
+ """
111
+ return pulumi.get(self, "condition_attribute_value")
112
+
113
+ @property
114
+ @pulumi.getter(name="conditionDictionaryName")
115
+ def condition_dictionary_name(self) -> str:
116
+ """
117
+ Dictionary name
118
+ """
119
+ return pulumi.get(self, "condition_dictionary_name")
120
+
121
+ @property
122
+ @pulumi.getter(name="conditionDictionaryValue")
123
+ def condition_dictionary_value(self) -> str:
124
+ """
125
+ Dictionary value
126
+ """
127
+ return pulumi.get(self, "condition_dictionary_value")
128
+
129
+ @property
130
+ @pulumi.getter(name="conditionId")
131
+ def condition_id(self) -> str:
132
+ """
133
+ UUID for condition
134
+ """
135
+ return pulumi.get(self, "condition_id")
136
+
137
+ @property
138
+ @pulumi.getter(name="conditionIsNegate")
139
+ def condition_is_negate(self) -> bool:
140
+ """
141
+ Indicates whereas this condition is in negate mode
142
+ """
143
+ return pulumi.get(self, "condition_is_negate")
144
+
145
+ @property
146
+ @pulumi.getter(name="conditionOperator")
147
+ def condition_operator(self) -> str:
148
+ """
149
+ Equality operator
150
+ """
151
+ return pulumi.get(self, "condition_operator")
152
+
153
+ @property
154
+ @pulumi.getter(name="conditionType")
155
+ def condition_type(self) -> str:
156
+ """
157
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
158
+ """
159
+ return pulumi.get(self, "condition_type")
160
+
161
+ @property
162
+ @pulumi.getter
163
+ def default(self) -> bool:
164
+ """
165
+ Indicates if this rule is the default one
166
+ """
167
+ return pulumi.get(self, "default")
168
+
169
+ @property
170
+ @pulumi.getter
171
+ def id(self) -> str:
172
+ """
173
+ The id of the object
174
+ """
175
+ return pulumi.get(self, "id")
176
+
177
+ @property
178
+ @pulumi.getter(name="identitySourceName")
179
+ def identity_source_name(self) -> str:
180
+ """
181
+ Identity source name from the identity stores
182
+ """
183
+ return pulumi.get(self, "identity_source_name")
184
+
185
+ @property
186
+ @pulumi.getter(name="ifAuthFail")
187
+ def if_auth_fail(self) -> str:
188
+ """
189
+ Action to perform when authentication fails such as Bad credentials, disabled user and so on
190
+ """
191
+ return pulumi.get(self, "if_auth_fail")
192
+
193
+ @property
194
+ @pulumi.getter(name="ifProcessFail")
195
+ def if_process_fail(self) -> str:
196
+ """
197
+ Action to perform when ISE is unable to access the identity database
198
+ """
199
+ return pulumi.get(self, "if_process_fail")
200
+
201
+ @property
202
+ @pulumi.getter(name="ifUserNotFound")
203
+ def if_user_not_found(self) -> str:
204
+ """
205
+ Action to perform when user is not found in any of identity stores
206
+ """
207
+ return pulumi.get(self, "if_user_not_found")
208
+
209
+ @property
210
+ @pulumi.getter
211
+ def name(self) -> str:
212
+ """
213
+ Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
214
+ """
215
+ return pulumi.get(self, "name")
216
+
217
+ @property
218
+ @pulumi.getter(name="policySetId")
219
+ def policy_set_id(self) -> str:
220
+ """
221
+ Policy set ID
222
+ """
223
+ return pulumi.get(self, "policy_set_id")
224
+
225
+ @property
226
+ @pulumi.getter
227
+ def rank(self) -> int:
228
+ """
229
+ The rank (priority) in relation to other rules. Lower rank is higher priority.
230
+ """
231
+ return pulumi.get(self, "rank")
232
+
233
+ @property
234
+ @pulumi.getter
235
+ def state(self) -> str:
236
+ """
237
+ The state that the rule is in. A disabled rule cannot be matched.
238
+ """
239
+ return pulumi.get(self, "state")
240
+
241
+
242
+ class AwaitableGetAuthenticationRuleResult(GetAuthenticationRuleResult):
243
+ # pylint: disable=using-constant-test
244
+ def __await__(self):
245
+ if False:
246
+ yield self
247
+ return GetAuthenticationRuleResult(
248
+ childrens=self.childrens,
249
+ condition_attribute_name=self.condition_attribute_name,
250
+ condition_attribute_value=self.condition_attribute_value,
251
+ condition_dictionary_name=self.condition_dictionary_name,
252
+ condition_dictionary_value=self.condition_dictionary_value,
253
+ condition_id=self.condition_id,
254
+ condition_is_negate=self.condition_is_negate,
255
+ condition_operator=self.condition_operator,
256
+ condition_type=self.condition_type,
257
+ default=self.default,
258
+ id=self.id,
259
+ identity_source_name=self.identity_source_name,
260
+ if_auth_fail=self.if_auth_fail,
261
+ if_process_fail=self.if_process_fail,
262
+ if_user_not_found=self.if_user_not_found,
263
+ name=self.name,
264
+ policy_set_id=self.policy_set_id,
265
+ rank=self.rank,
266
+ state=self.state)
267
+
268
+
269
+ def get_authentication_rule(id: Optional[str] = None,
270
+ name: Optional[str] = None,
271
+ policy_set_id: Optional[str] = None,
272
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAuthenticationRuleResult:
273
+ """
274
+ This data source can read the Device Admin Authentication Rule.
275
+
276
+ ## Example Usage
277
+
278
+ ```python
279
+ import pulumi
280
+ import pulumi_ise as ise
281
+
282
+ example = ise.deviceadmin.get_authentication_rule(id="76d24097-41c4-4558-a4d0-a8c07ac08470",
283
+ policy_set_id="d82952cb-b901-4b09-b363-5ebf39bdbaf9")
284
+ ```
285
+
286
+
287
+ :param str id: The id of the object
288
+ :param str name: Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
289
+ :param str policy_set_id: Policy set ID
290
+ """
291
+ __args__ = dict()
292
+ __args__['id'] = id
293
+ __args__['name'] = name
294
+ __args__['policySetId'] = policy_set_id
295
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
296
+ __ret__ = pulumi.runtime.invoke('ise:deviceadmin/getAuthenticationRule:getAuthenticationRule', __args__, opts=opts, typ=GetAuthenticationRuleResult).value
297
+
298
+ return AwaitableGetAuthenticationRuleResult(
299
+ childrens=pulumi.get(__ret__, 'childrens'),
300
+ condition_attribute_name=pulumi.get(__ret__, 'condition_attribute_name'),
301
+ condition_attribute_value=pulumi.get(__ret__, 'condition_attribute_value'),
302
+ condition_dictionary_name=pulumi.get(__ret__, 'condition_dictionary_name'),
303
+ condition_dictionary_value=pulumi.get(__ret__, 'condition_dictionary_value'),
304
+ condition_id=pulumi.get(__ret__, 'condition_id'),
305
+ condition_is_negate=pulumi.get(__ret__, 'condition_is_negate'),
306
+ condition_operator=pulumi.get(__ret__, 'condition_operator'),
307
+ condition_type=pulumi.get(__ret__, 'condition_type'),
308
+ default=pulumi.get(__ret__, 'default'),
309
+ id=pulumi.get(__ret__, 'id'),
310
+ identity_source_name=pulumi.get(__ret__, 'identity_source_name'),
311
+ if_auth_fail=pulumi.get(__ret__, 'if_auth_fail'),
312
+ if_process_fail=pulumi.get(__ret__, 'if_process_fail'),
313
+ if_user_not_found=pulumi.get(__ret__, 'if_user_not_found'),
314
+ name=pulumi.get(__ret__, 'name'),
315
+ policy_set_id=pulumi.get(__ret__, 'policy_set_id'),
316
+ rank=pulumi.get(__ret__, 'rank'),
317
+ state=pulumi.get(__ret__, 'state'))
318
+ def get_authentication_rule_output(id: Optional[pulumi.Input[Optional[str]]] = None,
319
+ name: Optional[pulumi.Input[Optional[str]]] = None,
320
+ policy_set_id: Optional[pulumi.Input[str]] = None,
321
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAuthenticationRuleResult]:
322
+ """
323
+ This data source can read the Device Admin Authentication Rule.
324
+
325
+ ## Example Usage
326
+
327
+ ```python
328
+ import pulumi
329
+ import pulumi_ise as ise
330
+
331
+ example = ise.deviceadmin.get_authentication_rule(id="76d24097-41c4-4558-a4d0-a8c07ac08470",
332
+ policy_set_id="d82952cb-b901-4b09-b363-5ebf39bdbaf9")
333
+ ```
334
+
335
+
336
+ :param str id: The id of the object
337
+ :param str name: Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
338
+ :param str policy_set_id: Policy set ID
339
+ """
340
+ __args__ = dict()
341
+ __args__['id'] = id
342
+ __args__['name'] = name
343
+ __args__['policySetId'] = policy_set_id
344
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
345
+ __ret__ = pulumi.runtime.invoke_output('ise:deviceadmin/getAuthenticationRule:getAuthenticationRule', __args__, opts=opts, typ=GetAuthenticationRuleResult)
346
+ return __ret__.apply(lambda __response__: GetAuthenticationRuleResult(
347
+ childrens=pulumi.get(__response__, 'childrens'),
348
+ condition_attribute_name=pulumi.get(__response__, 'condition_attribute_name'),
349
+ condition_attribute_value=pulumi.get(__response__, 'condition_attribute_value'),
350
+ condition_dictionary_name=pulumi.get(__response__, 'condition_dictionary_name'),
351
+ condition_dictionary_value=pulumi.get(__response__, 'condition_dictionary_value'),
352
+ condition_id=pulumi.get(__response__, 'condition_id'),
353
+ condition_is_negate=pulumi.get(__response__, 'condition_is_negate'),
354
+ condition_operator=pulumi.get(__response__, 'condition_operator'),
355
+ condition_type=pulumi.get(__response__, 'condition_type'),
356
+ default=pulumi.get(__response__, 'default'),
357
+ id=pulumi.get(__response__, 'id'),
358
+ identity_source_name=pulumi.get(__response__, 'identity_source_name'),
359
+ if_auth_fail=pulumi.get(__response__, 'if_auth_fail'),
360
+ if_process_fail=pulumi.get(__response__, 'if_process_fail'),
361
+ if_user_not_found=pulumi.get(__response__, 'if_user_not_found'),
362
+ name=pulumi.get(__response__, 'name'),
363
+ policy_set_id=pulumi.get(__response__, 'policy_set_id'),
364
+ rank=pulumi.get(__response__, 'rank'),
365
+ state=pulumi.get(__response__, 'state')))