pulumi-ise 0.1.7__py3-none-any.whl → 0.1.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_ise/__init__.py +80 -0
- pulumi_ise/_utilities.py +1 -1
- pulumi_ise/config/__init__.pyi +5 -0
- pulumi_ise/config/vars.py +5 -0
- pulumi_ise/deviceadmin/__init__.py +5 -0
- pulumi_ise/deviceadmin/_inputs.py +565 -0
- pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +5 -0
- pulumi_ise/deviceadmin/authentication_rule.py +5 -0
- pulumi_ise/deviceadmin/authentication_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/authorization_exception_rule.py +5 -0
- pulumi_ise/deviceadmin/authorization_exception_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/authorization_global_exception_rule.py +5 -0
- pulumi_ise/deviceadmin/authorization_global_exception_rule_update_rank.py +221 -0
- pulumi_ise/deviceadmin/authorization_rule.py +5 -0
- pulumi_ise/deviceadmin/authorization_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/condition.py +5 -0
- pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +17 -4
- pulumi_ise/deviceadmin/get_authentication_rule.py +31 -4
- pulumi_ise/deviceadmin/get_authorization_exception_rule.py +29 -4
- pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +27 -4
- pulumi_ise/deviceadmin/get_authorization_rule.py +29 -4
- pulumi_ise/deviceadmin/get_condition.py +22 -4
- pulumi_ise/deviceadmin/get_policy_set.py +28 -4
- pulumi_ise/deviceadmin/get_tacacs_command_set.py +16 -4
- pulumi_ise/deviceadmin/get_tacacs_profile.py +15 -4
- pulumi_ise/deviceadmin/get_time_and_date_condition.py +25 -4
- pulumi_ise/deviceadmin/outputs.py +5 -0
- pulumi_ise/deviceadmin/policy_set.py +7 -2
- pulumi_ise/deviceadmin/policy_set_update_rank.py +221 -0
- pulumi_ise/deviceadmin/tacacs_command_set.py +5 -0
- pulumi_ise/deviceadmin/tacacs_profile.py +5 -0
- pulumi_ise/deviceadmin/time_and_date_condition.py +5 -0
- pulumi_ise/identitymanagement/_inputs.py +106 -0
- pulumi_ise/identitymanagement/active_directory_add_groups.py +5 -0
- pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +5 -0
- pulumi_ise/identitymanagement/active_directory_join_point.py +5 -0
- pulumi_ise/identitymanagement/certificate_authentication_profile.py +5 -0
- pulumi_ise/identitymanagement/endpoint.py +5 -0
- pulumi_ise/identitymanagement/endpoint_identity_group.py +5 -0
- pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +21 -4
- pulumi_ise/identitymanagement/get_active_directory_join_point.py +44 -4
- pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +19 -4
- pulumi_ise/identitymanagement/get_endpoint.py +38 -4
- pulumi_ise/identitymanagement/get_endpoint_identity_group.py +16 -4
- pulumi_ise/identitymanagement/get_identity_source_sequence.py +17 -4
- pulumi_ise/identitymanagement/get_internal_user.py +26 -4
- pulumi_ise/identitymanagement/get_user_identity_group.py +15 -4
- pulumi_ise/identitymanagement/identity_source_sequence.py +5 -0
- pulumi_ise/identitymanagement/internal_user.py +5 -0
- pulumi_ise/identitymanagement/outputs.py +5 -0
- pulumi_ise/identitymanagement/user_identity_group.py +5 -0
- pulumi_ise/network/_inputs.py +25 -0
- pulumi_ise/network/device.py +5 -0
- pulumi_ise/network/device_group.py +5 -0
- pulumi_ise/network/get_device.py +54 -4
- pulumi_ise/network/get_device_group.py +15 -4
- pulumi_ise/network/outputs.py +5 -0
- pulumi_ise/networkaccess/__init__.py +5 -0
- pulumi_ise/networkaccess/_inputs.py +558 -0
- pulumi_ise/networkaccess/allowed_protocols.py +5 -0
- pulumi_ise/networkaccess/authentication_rule.py +5 -0
- pulumi_ise/networkaccess/authentication_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/authorization_exception_rule.py +5 -0
- pulumi_ise/networkaccess/authorization_exception_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/authorization_global_exception_rule.py +5 -0
- pulumi_ise/networkaccess/authorization_global_exception_rule_update_rank.py +221 -0
- pulumi_ise/networkaccess/authorization_profile.py +5 -0
- pulumi_ise/networkaccess/authorization_rule.py +5 -0
- pulumi_ise/networkaccess/authorization_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/condition.py +5 -0
- pulumi_ise/networkaccess/dictionary.py +5 -0
- pulumi_ise/networkaccess/downloadable_acl.py +5 -0
- pulumi_ise/networkaccess/get_allowed_protocols.py +89 -4
- pulumi_ise/networkaccess/get_authentication_rule.py +31 -4
- pulumi_ise/networkaccess/get_authorization_exception_rule.py +29 -4
- pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +27 -4
- pulumi_ise/networkaccess/get_authorization_profile.py +45 -4
- pulumi_ise/networkaccess/get_authorization_rule.py +29 -4
- pulumi_ise/networkaccess/get_condition.py +22 -4
- pulumi_ise/networkaccess/get_dictionary.py +16 -4
- pulumi_ise/networkaccess/get_downloadable_acl.py +16 -4
- pulumi_ise/networkaccess/get_policy_set.py +28 -4
- pulumi_ise/networkaccess/get_time_and_date_condition.py +25 -4
- pulumi_ise/networkaccess/outputs.py +5 -0
- pulumi_ise/networkaccess/policy_set.py +7 -2
- pulumi_ise/networkaccess/policy_set_update_rank.py +221 -0
- pulumi_ise/networkaccess/time_and_date_condition.py +5 -0
- pulumi_ise/provider.py +5 -0
- pulumi_ise/pulumi-plugin.json +1 -1
- pulumi_ise/system/_inputs.py +23 -0
- pulumi_ise/system/get_license_tier_state.py +12 -4
- pulumi_ise/system/get_repository.py +19 -4
- pulumi_ise/system/license_tier_state.py +5 -0
- pulumi_ise/system/outputs.py +5 -0
- pulumi_ise/system/repository.py +5 -0
- pulumi_ise/trustsec/egress_matrix_cell.py +5 -0
- pulumi_ise/trustsec/get_egress_matrix_cell.py +17 -4
- pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +20 -4
- pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +17 -4
- pulumi_ise/trustsec/get_security_group.py +17 -4
- pulumi_ise/trustsec/get_security_group_acl.py +17 -4
- pulumi_ise/trustsec/ip_to_sgt_mapping.py +5 -0
- pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +5 -0
- pulumi_ise/trustsec/security_group.py +5 -0
- pulumi_ise/trustsec/security_group_acl.py +5 -0
- {pulumi_ise-0.1.7.dist-info → pulumi_ise-0.1.9.dist-info}/METADATA +3 -2
- pulumi_ise-0.1.9.dist-info/RECORD +115 -0
- {pulumi_ise-0.1.7.dist-info → pulumi_ise-0.1.9.dist-info}/WHEEL +1 -1
- pulumi_ise-0.1.7.dist-info/RECORD +0 -105
- {pulumi_ise-0.1.7.dist-info → pulumi_ise-0.1.9.dist-info}/top_level.txt +0 -0
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -267,9 +272,6 @@ def get_authorization_global_exception_rule(id: Optional[str] = None,
|
|
267
272
|
profile=pulumi.get(__ret__, 'profile'),
|
268
273
|
rank=pulumi.get(__ret__, 'rank'),
|
269
274
|
state=pulumi.get(__ret__, 'state'))
|
270
|
-
|
271
|
-
|
272
|
-
@_utilities.lift_output_func(get_authorization_global_exception_rule)
|
273
275
|
def get_authorization_global_exception_rule_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
274
276
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
275
277
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAuthorizationGlobalExceptionRuleResult]:
|
@@ -289,4 +291,25 @@ def get_authorization_global_exception_rule_output(id: Optional[pulumi.Input[Opt
|
|
289
291
|
:param str id: The id of the object
|
290
292
|
:param str name: Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
|
291
293
|
"""
|
292
|
-
|
294
|
+
__args__ = dict()
|
295
|
+
__args__['id'] = id
|
296
|
+
__args__['name'] = name
|
297
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
298
|
+
__ret__ = pulumi.runtime.invoke_output('ise:deviceadmin/getAuthorizationGlobalExceptionRule:getAuthorizationGlobalExceptionRule', __args__, opts=opts, typ=GetAuthorizationGlobalExceptionRuleResult)
|
299
|
+
return __ret__.apply(lambda __response__: GetAuthorizationGlobalExceptionRuleResult(
|
300
|
+
childrens=pulumi.get(__response__, 'childrens'),
|
301
|
+
command_sets=pulumi.get(__response__, 'command_sets'),
|
302
|
+
condition_attribute_name=pulumi.get(__response__, 'condition_attribute_name'),
|
303
|
+
condition_attribute_value=pulumi.get(__response__, 'condition_attribute_value'),
|
304
|
+
condition_dictionary_name=pulumi.get(__response__, 'condition_dictionary_name'),
|
305
|
+
condition_dictionary_value=pulumi.get(__response__, 'condition_dictionary_value'),
|
306
|
+
condition_id=pulumi.get(__response__, 'condition_id'),
|
307
|
+
condition_is_negate=pulumi.get(__response__, 'condition_is_negate'),
|
308
|
+
condition_operator=pulumi.get(__response__, 'condition_operator'),
|
309
|
+
condition_type=pulumi.get(__response__, 'condition_type'),
|
310
|
+
default=pulumi.get(__response__, 'default'),
|
311
|
+
id=pulumi.get(__response__, 'id'),
|
312
|
+
name=pulumi.get(__response__, 'name'),
|
313
|
+
profile=pulumi.get(__response__, 'profile'),
|
314
|
+
rank=pulumi.get(__response__, 'rank'),
|
315
|
+
state=pulumi.get(__response__, 'state')))
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -284,9 +289,6 @@ def get_authorization_rule(id: Optional[str] = None,
|
|
284
289
|
profile=pulumi.get(__ret__, 'profile'),
|
285
290
|
rank=pulumi.get(__ret__, 'rank'),
|
286
291
|
state=pulumi.get(__ret__, 'state'))
|
287
|
-
|
288
|
-
|
289
|
-
@_utilities.lift_output_func(get_authorization_rule)
|
290
292
|
def get_authorization_rule_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
291
293
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
292
294
|
policy_set_id: Optional[pulumi.Input[str]] = None,
|
@@ -309,4 +311,27 @@ def get_authorization_rule_output(id: Optional[pulumi.Input[Optional[str]]] = No
|
|
309
311
|
:param str name: Rule name, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
|
310
312
|
:param str policy_set_id: Policy set ID
|
311
313
|
"""
|
312
|
-
|
314
|
+
__args__ = dict()
|
315
|
+
__args__['id'] = id
|
316
|
+
__args__['name'] = name
|
317
|
+
__args__['policySetId'] = policy_set_id
|
318
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
319
|
+
__ret__ = pulumi.runtime.invoke_output('ise:deviceadmin/getAuthorizationRule:getAuthorizationRule', __args__, opts=opts, typ=GetAuthorizationRuleResult)
|
320
|
+
return __ret__.apply(lambda __response__: GetAuthorizationRuleResult(
|
321
|
+
childrens=pulumi.get(__response__, 'childrens'),
|
322
|
+
command_sets=pulumi.get(__response__, 'command_sets'),
|
323
|
+
condition_attribute_name=pulumi.get(__response__, 'condition_attribute_name'),
|
324
|
+
condition_attribute_value=pulumi.get(__response__, 'condition_attribute_value'),
|
325
|
+
condition_dictionary_name=pulumi.get(__response__, 'condition_dictionary_name'),
|
326
|
+
condition_dictionary_value=pulumi.get(__response__, 'condition_dictionary_value'),
|
327
|
+
condition_id=pulumi.get(__response__, 'condition_id'),
|
328
|
+
condition_is_negate=pulumi.get(__response__, 'condition_is_negate'),
|
329
|
+
condition_operator=pulumi.get(__response__, 'condition_operator'),
|
330
|
+
condition_type=pulumi.get(__response__, 'condition_type'),
|
331
|
+
default=pulumi.get(__response__, 'default'),
|
332
|
+
id=pulumi.get(__response__, 'id'),
|
333
|
+
name=pulumi.get(__response__, 'name'),
|
334
|
+
policy_set_id=pulumi.get(__response__, 'policy_set_id'),
|
335
|
+
profile=pulumi.get(__response__, 'profile'),
|
336
|
+
rank=pulumi.get(__response__, 'rank'),
|
337
|
+
state=pulumi.get(__response__, 'state')))
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -202,9 +207,6 @@ def get_condition(id: Optional[str] = None,
|
|
202
207
|
is_negate=pulumi.get(__ret__, 'is_negate'),
|
203
208
|
name=pulumi.get(__ret__, 'name'),
|
204
209
|
operator=pulumi.get(__ret__, 'operator'))
|
205
|
-
|
206
|
-
|
207
|
-
@_utilities.lift_output_func(get_condition)
|
208
210
|
def get_condition_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
209
211
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
210
212
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetConditionResult]:
|
@@ -224,4 +226,20 @@ def get_condition_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
224
226
|
:param str id: The id of the object
|
225
227
|
:param str name: Condition name
|
226
228
|
"""
|
227
|
-
|
229
|
+
__args__ = dict()
|
230
|
+
__args__['id'] = id
|
231
|
+
__args__['name'] = name
|
232
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
233
|
+
__ret__ = pulumi.runtime.invoke_output('ise:deviceadmin/getCondition:getCondition', __args__, opts=opts, typ=GetConditionResult)
|
234
|
+
return __ret__.apply(lambda __response__: GetConditionResult(
|
235
|
+
attribute_name=pulumi.get(__response__, 'attribute_name'),
|
236
|
+
attribute_value=pulumi.get(__response__, 'attribute_value'),
|
237
|
+
childrens=pulumi.get(__response__, 'childrens'),
|
238
|
+
condition_type=pulumi.get(__response__, 'condition_type'),
|
239
|
+
description=pulumi.get(__response__, 'description'),
|
240
|
+
dictionary_name=pulumi.get(__response__, 'dictionary_name'),
|
241
|
+
dictionary_value=pulumi.get(__response__, 'dictionary_value'),
|
242
|
+
id=pulumi.get(__response__, 'id'),
|
243
|
+
is_negate=pulumi.get(__response__, 'is_negate'),
|
244
|
+
name=pulumi.get(__response__, 'name'),
|
245
|
+
operator=pulumi.get(__response__, 'operator')))
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -280,9 +285,6 @@ def get_policy_set(id: Optional[str] = None,
|
|
280
285
|
rank=pulumi.get(__ret__, 'rank'),
|
281
286
|
service_name=pulumi.get(__ret__, 'service_name'),
|
282
287
|
state=pulumi.get(__ret__, 'state'))
|
283
|
-
|
284
|
-
|
285
|
-
@_utilities.lift_output_func(get_policy_set)
|
286
288
|
def get_policy_set_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
287
289
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
288
290
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPolicySetResult]:
|
@@ -302,4 +304,26 @@ def get_policy_set_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
302
304
|
:param str id: The id of the object
|
303
305
|
:param str name: Given name for the policy set, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
|
304
306
|
"""
|
305
|
-
|
307
|
+
__args__ = dict()
|
308
|
+
__args__['id'] = id
|
309
|
+
__args__['name'] = name
|
310
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
311
|
+
__ret__ = pulumi.runtime.invoke_output('ise:deviceadmin/getPolicySet:getPolicySet', __args__, opts=opts, typ=GetPolicySetResult)
|
312
|
+
return __ret__.apply(lambda __response__: GetPolicySetResult(
|
313
|
+
childrens=pulumi.get(__response__, 'childrens'),
|
314
|
+
condition_attribute_name=pulumi.get(__response__, 'condition_attribute_name'),
|
315
|
+
condition_attribute_value=pulumi.get(__response__, 'condition_attribute_value'),
|
316
|
+
condition_dictionary_name=pulumi.get(__response__, 'condition_dictionary_name'),
|
317
|
+
condition_dictionary_value=pulumi.get(__response__, 'condition_dictionary_value'),
|
318
|
+
condition_id=pulumi.get(__response__, 'condition_id'),
|
319
|
+
condition_is_negate=pulumi.get(__response__, 'condition_is_negate'),
|
320
|
+
condition_operator=pulumi.get(__response__, 'condition_operator'),
|
321
|
+
condition_type=pulumi.get(__response__, 'condition_type'),
|
322
|
+
default=pulumi.get(__response__, 'default'),
|
323
|
+
description=pulumi.get(__response__, 'description'),
|
324
|
+
id=pulumi.get(__response__, 'id'),
|
325
|
+
is_proxy=pulumi.get(__response__, 'is_proxy'),
|
326
|
+
name=pulumi.get(__response__, 'name'),
|
327
|
+
rank=pulumi.get(__response__, 'rank'),
|
328
|
+
service_name=pulumi.get(__response__, 'service_name'),
|
329
|
+
state=pulumi.get(__response__, 'state')))
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -121,9 +126,6 @@ def get_tacacs_command_set(id: Optional[str] = None,
|
|
121
126
|
id=pulumi.get(__ret__, 'id'),
|
122
127
|
name=pulumi.get(__ret__, 'name'),
|
123
128
|
permit_unmatched=pulumi.get(__ret__, 'permit_unmatched'))
|
124
|
-
|
125
|
-
|
126
|
-
@_utilities.lift_output_func(get_tacacs_command_set)
|
127
129
|
def get_tacacs_command_set_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
128
130
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
129
131
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTacacsCommandSetResult]:
|
@@ -143,4 +145,14 @@ def get_tacacs_command_set_output(id: Optional[pulumi.Input[Optional[str]]] = No
|
|
143
145
|
:param str id: The id of the object
|
144
146
|
:param str name: The name of the TACACS command set
|
145
147
|
"""
|
146
|
-
|
148
|
+
__args__ = dict()
|
149
|
+
__args__['id'] = id
|
150
|
+
__args__['name'] = name
|
151
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
152
|
+
__ret__ = pulumi.runtime.invoke_output('ise:deviceadmin/getTacacsCommandSet:getTacacsCommandSet', __args__, opts=opts, typ=GetTacacsCommandSetResult)
|
153
|
+
return __ret__.apply(lambda __response__: GetTacacsCommandSetResult(
|
154
|
+
commands=pulumi.get(__response__, 'commands'),
|
155
|
+
description=pulumi.get(__response__, 'description'),
|
156
|
+
id=pulumi.get(__response__, 'id'),
|
157
|
+
name=pulumi.get(__response__, 'name'),
|
158
|
+
permit_unmatched=pulumi.get(__response__, 'permit_unmatched')))
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -108,9 +113,6 @@ def get_tacacs_profile(id: Optional[str] = None,
|
|
108
113
|
id=pulumi.get(__ret__, 'id'),
|
109
114
|
name=pulumi.get(__ret__, 'name'),
|
110
115
|
session_attributes=pulumi.get(__ret__, 'session_attributes'))
|
111
|
-
|
112
|
-
|
113
|
-
@_utilities.lift_output_func(get_tacacs_profile)
|
114
116
|
def get_tacacs_profile_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
115
117
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
116
118
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTacacsProfileResult]:
|
@@ -130,4 +132,13 @@ def get_tacacs_profile_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
130
132
|
:param str id: The id of the object
|
131
133
|
:param str name: The name of the TACACS profile
|
132
134
|
"""
|
133
|
-
|
135
|
+
__args__ = dict()
|
136
|
+
__args__['id'] = id
|
137
|
+
__args__['name'] = name
|
138
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
139
|
+
__ret__ = pulumi.runtime.invoke_output('ise:deviceadmin/getTacacsProfile:getTacacsProfile', __args__, opts=opts, typ=GetTacacsProfileResult)
|
140
|
+
return __ret__.apply(lambda __response__: GetTacacsProfileResult(
|
141
|
+
description=pulumi.get(__response__, 'description'),
|
142
|
+
id=pulumi.get(__response__, 'id'),
|
143
|
+
name=pulumi.get(__response__, 'name'),
|
144
|
+
session_attributes=pulumi.get(__response__, 'session_attributes')))
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
@@ -240,9 +245,6 @@ def get_time_and_date_condition(id: Optional[str] = None,
|
|
240
245
|
start_time=pulumi.get(__ret__, 'start_time'),
|
241
246
|
week_days=pulumi.get(__ret__, 'week_days'),
|
242
247
|
week_days_exceptions=pulumi.get(__ret__, 'week_days_exceptions'))
|
243
|
-
|
244
|
-
|
245
|
-
@_utilities.lift_output_func(get_time_and_date_condition)
|
246
248
|
def get_time_and_date_condition_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
247
249
|
name: Optional[pulumi.Input[Optional[str]]] = None,
|
248
250
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTimeAndDateConditionResult]:
|
@@ -262,4 +264,23 @@ def get_time_and_date_condition_output(id: Optional[pulumi.Input[Optional[str]]]
|
|
262
264
|
:param str id: The id of the object
|
263
265
|
:param str name: Condition name
|
264
266
|
"""
|
265
|
-
|
267
|
+
__args__ = dict()
|
268
|
+
__args__['id'] = id
|
269
|
+
__args__['name'] = name
|
270
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
271
|
+
__ret__ = pulumi.runtime.invoke_output('ise:deviceadmin/getTimeAndDateCondition:getTimeAndDateCondition', __args__, opts=opts, typ=GetTimeAndDateConditionResult)
|
272
|
+
return __ret__.apply(lambda __response__: GetTimeAndDateConditionResult(
|
273
|
+
description=pulumi.get(__response__, 'description'),
|
274
|
+
end_date=pulumi.get(__response__, 'end_date'),
|
275
|
+
end_time=pulumi.get(__response__, 'end_time'),
|
276
|
+
exception_end_date=pulumi.get(__response__, 'exception_end_date'),
|
277
|
+
exception_end_time=pulumi.get(__response__, 'exception_end_time'),
|
278
|
+
exception_start_date=pulumi.get(__response__, 'exception_start_date'),
|
279
|
+
exception_start_time=pulumi.get(__response__, 'exception_start_time'),
|
280
|
+
id=pulumi.get(__response__, 'id'),
|
281
|
+
is_negate=pulumi.get(__response__, 'is_negate'),
|
282
|
+
name=pulumi.get(__response__, 'name'),
|
283
|
+
start_date=pulumi.get(__response__, 'start_date'),
|
284
|
+
start_time=pulumi.get(__response__, 'start_time'),
|
285
|
+
week_days=pulumi.get(__response__, 'week_days'),
|
286
|
+
week_days_exceptions=pulumi.get(__response__, 'week_days_exceptions')))
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -893,7 +898,7 @@ class PolicySet(pulumi.CustomResource):
|
|
893
898
|
|
894
899
|
@property
|
895
900
|
@pulumi.getter
|
896
|
-
def description(self) -> pulumi.Output[str]:
|
901
|
+
def description(self) -> pulumi.Output[Optional[str]]:
|
897
902
|
"""
|
898
903
|
The description of the policy set
|
899
904
|
"""
|
@@ -917,7 +922,7 @@ class PolicySet(pulumi.CustomResource):
|
|
917
922
|
|
918
923
|
@property
|
919
924
|
@pulumi.getter
|
920
|
-
def rank(self) -> pulumi.Output[int]:
|
925
|
+
def rank(self) -> pulumi.Output[Optional[int]]:
|
921
926
|
"""
|
922
927
|
The rank (priority) in relation to other policy sets. Lower rank is higher priority.
|
923
928
|
"""
|
@@ -0,0 +1,221 @@
|
|
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__ = ['PolicySetUpdateRankArgs', 'PolicySetUpdateRank']
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class PolicySetUpdateRankArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
policy_set_id: pulumi.Input[str],
|
23
|
+
rank: pulumi.Input[int]):
|
24
|
+
"""
|
25
|
+
The set of arguments for constructing a PolicySetUpdateRank resource.
|
26
|
+
:param pulumi.Input[str] policy_set_id: Policy set ID
|
27
|
+
:param pulumi.Input[int] rank: The rank (priority) in relation to other rules. Lower rank is higher priority.
|
28
|
+
"""
|
29
|
+
pulumi.set(__self__, "policy_set_id", policy_set_id)
|
30
|
+
pulumi.set(__self__, "rank", rank)
|
31
|
+
|
32
|
+
@property
|
33
|
+
@pulumi.getter(name="policySetId")
|
34
|
+
def policy_set_id(self) -> pulumi.Input[str]:
|
35
|
+
"""
|
36
|
+
Policy set ID
|
37
|
+
"""
|
38
|
+
return pulumi.get(self, "policy_set_id")
|
39
|
+
|
40
|
+
@policy_set_id.setter
|
41
|
+
def policy_set_id(self, value: pulumi.Input[str]):
|
42
|
+
pulumi.set(self, "policy_set_id", value)
|
43
|
+
|
44
|
+
@property
|
45
|
+
@pulumi.getter
|
46
|
+
def rank(self) -> pulumi.Input[int]:
|
47
|
+
"""
|
48
|
+
The rank (priority) in relation to other rules. Lower rank is higher priority.
|
49
|
+
"""
|
50
|
+
return pulumi.get(self, "rank")
|
51
|
+
|
52
|
+
@rank.setter
|
53
|
+
def rank(self, value: pulumi.Input[int]):
|
54
|
+
pulumi.set(self, "rank", value)
|
55
|
+
|
56
|
+
|
57
|
+
@pulumi.input_type
|
58
|
+
class _PolicySetUpdateRankState:
|
59
|
+
def __init__(__self__, *,
|
60
|
+
policy_set_id: Optional[pulumi.Input[str]] = None,
|
61
|
+
rank: Optional[pulumi.Input[int]] = None):
|
62
|
+
"""
|
63
|
+
Input properties used for looking up and filtering PolicySetUpdateRank resources.
|
64
|
+
:param pulumi.Input[str] policy_set_id: Policy set ID
|
65
|
+
:param pulumi.Input[int] rank: The rank (priority) in relation to other rules. Lower rank is higher priority.
|
66
|
+
"""
|
67
|
+
if policy_set_id is not None:
|
68
|
+
pulumi.set(__self__, "policy_set_id", policy_set_id)
|
69
|
+
if rank is not None:
|
70
|
+
pulumi.set(__self__, "rank", rank)
|
71
|
+
|
72
|
+
@property
|
73
|
+
@pulumi.getter(name="policySetId")
|
74
|
+
def policy_set_id(self) -> Optional[pulumi.Input[str]]:
|
75
|
+
"""
|
76
|
+
Policy set ID
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "policy_set_id")
|
79
|
+
|
80
|
+
@policy_set_id.setter
|
81
|
+
def policy_set_id(self, value: Optional[pulumi.Input[str]]):
|
82
|
+
pulumi.set(self, "policy_set_id", value)
|
83
|
+
|
84
|
+
@property
|
85
|
+
@pulumi.getter
|
86
|
+
def rank(self) -> Optional[pulumi.Input[int]]:
|
87
|
+
"""
|
88
|
+
The rank (priority) in relation to other rules. Lower rank is higher priority.
|
89
|
+
"""
|
90
|
+
return pulumi.get(self, "rank")
|
91
|
+
|
92
|
+
@rank.setter
|
93
|
+
def rank(self, value: Optional[pulumi.Input[int]]):
|
94
|
+
pulumi.set(self, "rank", value)
|
95
|
+
|
96
|
+
|
97
|
+
class PolicySetUpdateRank(pulumi.CustomResource):
|
98
|
+
@overload
|
99
|
+
def __init__(__self__,
|
100
|
+
resource_name: str,
|
101
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
102
|
+
policy_set_id: Optional[pulumi.Input[str]] = None,
|
103
|
+
rank: Optional[pulumi.Input[int]] = None,
|
104
|
+
__props__=None):
|
105
|
+
"""
|
106
|
+
This resource is used to update rank field in device admin policy set. It serves as a workaround for the ISE API/Backend limitation which restricts rank assignments to a strictly incremental sequence. By utilizing this resource and device_admin_policy_set resource, you can bypass the APIs limitation. Creation of this resource is performing PUT operation (Update) and it only tracks rank field. When this resource is destroyed, no action is performed on ISE and resource is just removed from state.
|
107
|
+
|
108
|
+
## Example Usage
|
109
|
+
|
110
|
+
```python
|
111
|
+
import pulumi
|
112
|
+
import pulumi_ise as ise
|
113
|
+
|
114
|
+
example = ise.deviceadmin.PolicySetUpdateRank("example",
|
115
|
+
policy_set_id="d82952cb-b901-4b09-b363-5ebf39bdbaf9",
|
116
|
+
rank=0)
|
117
|
+
```
|
118
|
+
|
119
|
+
:param str resource_name: The name of the resource.
|
120
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
121
|
+
:param pulumi.Input[str] policy_set_id: Policy set ID
|
122
|
+
:param pulumi.Input[int] rank: The rank (priority) in relation to other rules. Lower rank is higher priority.
|
123
|
+
"""
|
124
|
+
...
|
125
|
+
@overload
|
126
|
+
def __init__(__self__,
|
127
|
+
resource_name: str,
|
128
|
+
args: PolicySetUpdateRankArgs,
|
129
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
130
|
+
"""
|
131
|
+
This resource is used to update rank field in device admin policy set. It serves as a workaround for the ISE API/Backend limitation which restricts rank assignments to a strictly incremental sequence. By utilizing this resource and device_admin_policy_set resource, you can bypass the APIs limitation. Creation of this resource is performing PUT operation (Update) and it only tracks rank field. When this resource is destroyed, no action is performed on ISE and resource is just removed from state.
|
132
|
+
|
133
|
+
## Example Usage
|
134
|
+
|
135
|
+
```python
|
136
|
+
import pulumi
|
137
|
+
import pulumi_ise as ise
|
138
|
+
|
139
|
+
example = ise.deviceadmin.PolicySetUpdateRank("example",
|
140
|
+
policy_set_id="d82952cb-b901-4b09-b363-5ebf39bdbaf9",
|
141
|
+
rank=0)
|
142
|
+
```
|
143
|
+
|
144
|
+
:param str resource_name: The name of the resource.
|
145
|
+
:param PolicySetUpdateRankArgs args: The arguments to use to populate this resource's properties.
|
146
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
147
|
+
"""
|
148
|
+
...
|
149
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
150
|
+
resource_args, opts = _utilities.get_resource_args_opts(PolicySetUpdateRankArgs, pulumi.ResourceOptions, *args, **kwargs)
|
151
|
+
if resource_args is not None:
|
152
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
153
|
+
else:
|
154
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
155
|
+
|
156
|
+
def _internal_init(__self__,
|
157
|
+
resource_name: str,
|
158
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
159
|
+
policy_set_id: Optional[pulumi.Input[str]] = None,
|
160
|
+
rank: Optional[pulumi.Input[int]] = None,
|
161
|
+
__props__=None):
|
162
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
163
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
164
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
165
|
+
if opts.id is None:
|
166
|
+
if __props__ is not None:
|
167
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
168
|
+
__props__ = PolicySetUpdateRankArgs.__new__(PolicySetUpdateRankArgs)
|
169
|
+
|
170
|
+
if policy_set_id is None and not opts.urn:
|
171
|
+
raise TypeError("Missing required property 'policy_set_id'")
|
172
|
+
__props__.__dict__["policy_set_id"] = policy_set_id
|
173
|
+
if rank is None and not opts.urn:
|
174
|
+
raise TypeError("Missing required property 'rank'")
|
175
|
+
__props__.__dict__["rank"] = rank
|
176
|
+
super(PolicySetUpdateRank, __self__).__init__(
|
177
|
+
'ise:deviceadmin/policySetUpdateRank:PolicySetUpdateRank',
|
178
|
+
resource_name,
|
179
|
+
__props__,
|
180
|
+
opts)
|
181
|
+
|
182
|
+
@staticmethod
|
183
|
+
def get(resource_name: str,
|
184
|
+
id: pulumi.Input[str],
|
185
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
186
|
+
policy_set_id: Optional[pulumi.Input[str]] = None,
|
187
|
+
rank: Optional[pulumi.Input[int]] = None) -> 'PolicySetUpdateRank':
|
188
|
+
"""
|
189
|
+
Get an existing PolicySetUpdateRank resource's state with the given name, id, and optional extra
|
190
|
+
properties used to qualify the lookup.
|
191
|
+
|
192
|
+
:param str resource_name: The unique name of the resulting resource.
|
193
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
194
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
195
|
+
:param pulumi.Input[str] policy_set_id: Policy set ID
|
196
|
+
:param pulumi.Input[int] rank: The rank (priority) in relation to other rules. Lower rank is higher priority.
|
197
|
+
"""
|
198
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
199
|
+
|
200
|
+
__props__ = _PolicySetUpdateRankState.__new__(_PolicySetUpdateRankState)
|
201
|
+
|
202
|
+
__props__.__dict__["policy_set_id"] = policy_set_id
|
203
|
+
__props__.__dict__["rank"] = rank
|
204
|
+
return PolicySetUpdateRank(resource_name, opts=opts, __props__=__props__)
|
205
|
+
|
206
|
+
@property
|
207
|
+
@pulumi.getter(name="policySetId")
|
208
|
+
def policy_set_id(self) -> pulumi.Output[str]:
|
209
|
+
"""
|
210
|
+
Policy set ID
|
211
|
+
"""
|
212
|
+
return pulumi.get(self, "policy_set_id")
|
213
|
+
|
214
|
+
@property
|
215
|
+
@pulumi.getter
|
216
|
+
def rank(self) -> pulumi.Output[int]:
|
217
|
+
"""
|
218
|
+
The rank (priority) in relation to other rules. Lower rank is higher priority.
|
219
|
+
"""
|
220
|
+
return pulumi.get(self, "rank")
|
221
|
+
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = ['TimeAndDateConditionArgs', 'TimeAndDateCondition']
|