pulumi-ise 0.3.0a1745474191__py3-none-any.whl → 0.3.0a1745554688__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 (24) hide show
  1. pulumi_ise/__init__.py +80 -0
  2. pulumi_ise/deviceadmin/__init__.py +5 -0
  3. pulumi_ise/deviceadmin/_inputs.py +269 -0
  4. pulumi_ise/deviceadmin/authentication_rule_update_ranks.py +216 -0
  5. pulumi_ise/deviceadmin/authorization_exception_rule_update_ranks.py +216 -0
  6. pulumi_ise/deviceadmin/authorization_global_exception_rule_update_ranks.py +164 -0
  7. pulumi_ise/deviceadmin/authorization_rule_update_ranks.py +216 -0
  8. pulumi_ise/deviceadmin/outputs.py +159 -0
  9. pulumi_ise/deviceadmin/policy_set_update_ranks.py +164 -0
  10. pulumi_ise/network/device.py +32 -32
  11. pulumi_ise/network/get_device.py +10 -10
  12. pulumi_ise/networkaccess/__init__.py +5 -0
  13. pulumi_ise/networkaccess/_inputs.py +275 -6
  14. pulumi_ise/networkaccess/authentication_rule_update_ranks.py +216 -0
  15. pulumi_ise/networkaccess/authorization_exception_rule_update_ranks.py +216 -0
  16. pulumi_ise/networkaccess/authorization_global_exception_rule_update_ranks.py +164 -0
  17. pulumi_ise/networkaccess/authorization_rule_update_ranks.py +216 -0
  18. pulumi_ise/networkaccess/outputs.py +167 -8
  19. pulumi_ise/networkaccess/policy_set_update_ranks.py +164 -0
  20. pulumi_ise/pulumi-plugin.json +1 -1
  21. {pulumi_ise-0.3.0a1745474191.dist-info → pulumi_ise-0.3.0a1745554688.dist-info}/METADATA +1 -1
  22. {pulumi_ise-0.3.0a1745474191.dist-info → pulumi_ise-0.3.0a1745554688.dist-info}/RECORD +24 -14
  23. {pulumi_ise-0.3.0a1745474191.dist-info → pulumi_ise-0.3.0a1745554688.dist-info}/WHEEL +0 -0
  24. {pulumi_ise-0.3.0a1745474191.dist-info → pulumi_ise-0.3.0a1745554688.dist-info}/top_level.txt +0 -0
@@ -19,17 +19,22 @@ from . import outputs
19
19
  __all__ = [
20
20
  'AuthenticationRuleChildren',
21
21
  'AuthenticationRuleChildrenChildren',
22
+ 'AuthenticationRuleUpdateRanksRule',
22
23
  'AuthorizationExceptionRuleChildren',
23
24
  'AuthorizationExceptionRuleChildrenChildren',
25
+ 'AuthorizationExceptionRuleUpdateRanksRule',
24
26
  'AuthorizationGlobalExceptionRuleChildren',
25
27
  'AuthorizationGlobalExceptionRuleChildrenChildren',
28
+ 'AuthorizationGlobalExceptionRuleUpdateRanksRule',
26
29
  'AuthorizationProfileAdvancedAttribute',
27
30
  'AuthorizationRuleChildren',
28
31
  'AuthorizationRuleChildrenChildren',
32
+ 'AuthorizationRuleUpdateRanksRule',
29
33
  'ConditionChildren',
30
34
  'ConditionChildrenChildren',
31
35
  'PolicySetChildren',
32
36
  'PolicySetChildrenChildren',
37
+ 'PolicySetUpdateRanksPolicy',
33
38
  'GetAuthenticationRuleChildrenResult',
34
39
  'GetAuthenticationRuleChildrenChildrenResult',
35
40
  'GetAuthorizationExceptionRuleChildrenResult',
@@ -323,6 +328,37 @@ class AuthenticationRuleChildrenChildren(dict):
323
328
  return pulumi.get(self, "operator")
324
329
 
325
330
 
331
+ @pulumi.output_type
332
+ class AuthenticationRuleUpdateRanksRule(dict):
333
+ def __init__(__self__, *,
334
+ id: Optional[builtins.str] = None,
335
+ rank: Optional[builtins.int] = None):
336
+ """
337
+ :param builtins.str id: Authentication rule ID
338
+ :param builtins.int rank: The rank (priority) in relation to other rules. Lower rank is higher priority.
339
+ """
340
+ if id is not None:
341
+ pulumi.set(__self__, "id", id)
342
+ if rank is not None:
343
+ pulumi.set(__self__, "rank", rank)
344
+
345
+ @property
346
+ @pulumi.getter
347
+ def id(self) -> Optional[builtins.str]:
348
+ """
349
+ Authentication rule ID
350
+ """
351
+ return pulumi.get(self, "id")
352
+
353
+ @property
354
+ @pulumi.getter
355
+ def rank(self) -> Optional[builtins.int]:
356
+ """
357
+ The rank (priority) in relation to other rules. Lower rank is higher priority.
358
+ """
359
+ return pulumi.get(self, "rank")
360
+
361
+
326
362
  @pulumi.output_type
327
363
  class AuthorizationExceptionRuleChildren(dict):
328
364
  @staticmethod
@@ -601,6 +637,37 @@ class AuthorizationExceptionRuleChildrenChildren(dict):
601
637
  return pulumi.get(self, "operator")
602
638
 
603
639
 
640
+ @pulumi.output_type
641
+ class AuthorizationExceptionRuleUpdateRanksRule(dict):
642
+ def __init__(__self__, *,
643
+ id: Optional[builtins.str] = None,
644
+ rank: Optional[builtins.int] = None):
645
+ """
646
+ :param builtins.str id: Authorization rule ID
647
+ :param builtins.int rank: The rank (priority) in relation to other rules. Lower rank is higher priority.
648
+ """
649
+ if id is not None:
650
+ pulumi.set(__self__, "id", id)
651
+ if rank is not None:
652
+ pulumi.set(__self__, "rank", rank)
653
+
654
+ @property
655
+ @pulumi.getter
656
+ def id(self) -> Optional[builtins.str]:
657
+ """
658
+ Authorization rule ID
659
+ """
660
+ return pulumi.get(self, "id")
661
+
662
+ @property
663
+ @pulumi.getter
664
+ def rank(self) -> Optional[builtins.int]:
665
+ """
666
+ The rank (priority) in relation to other rules. Lower rank is higher priority.
667
+ """
668
+ return pulumi.get(self, "rank")
669
+
670
+
604
671
  @pulumi.output_type
605
672
  class AuthorizationGlobalExceptionRuleChildren(dict):
606
673
  @staticmethod
@@ -879,6 +946,37 @@ class AuthorizationGlobalExceptionRuleChildrenChildren(dict):
879
946
  return pulumi.get(self, "operator")
880
947
 
881
948
 
949
+ @pulumi.output_type
950
+ class AuthorizationGlobalExceptionRuleUpdateRanksRule(dict):
951
+ def __init__(__self__, *,
952
+ id: Optional[builtins.str] = None,
953
+ rank: Optional[builtins.int] = None):
954
+ """
955
+ :param builtins.str id: Authorization rule ID
956
+ :param builtins.int rank: The rank (priority) in relation to other rules. Lower rank is higher priority.
957
+ """
958
+ if id is not None:
959
+ pulumi.set(__self__, "id", id)
960
+ if rank is not None:
961
+ pulumi.set(__self__, "rank", rank)
962
+
963
+ @property
964
+ @pulumi.getter
965
+ def id(self) -> Optional[builtins.str]:
966
+ """
967
+ Authorization rule ID
968
+ """
969
+ return pulumi.get(self, "id")
970
+
971
+ @property
972
+ @pulumi.getter
973
+ def rank(self) -> Optional[builtins.int]:
974
+ """
975
+ The rank (priority) in relation to other rules. Lower rank is higher priority.
976
+ """
977
+ return pulumi.get(self, "rank")
978
+
979
+
882
980
  @pulumi.output_type
883
981
  class AuthorizationProfileAdvancedAttribute(dict):
884
982
  @staticmethod
@@ -1265,6 +1363,37 @@ class AuthorizationRuleChildrenChildren(dict):
1265
1363
  return pulumi.get(self, "operator")
1266
1364
 
1267
1365
 
1366
+ @pulumi.output_type
1367
+ class AuthorizationRuleUpdateRanksRule(dict):
1368
+ def __init__(__self__, *,
1369
+ id: Optional[builtins.str] = None,
1370
+ rank: Optional[builtins.int] = None):
1371
+ """
1372
+ :param builtins.str id: Authorization rule ID
1373
+ :param builtins.int rank: The rank (priority) in relation to other rules. Lower rank is higher priority.
1374
+ """
1375
+ if id is not None:
1376
+ pulumi.set(__self__, "id", id)
1377
+ if rank is not None:
1378
+ pulumi.set(__self__, "rank", rank)
1379
+
1380
+ @property
1381
+ @pulumi.getter
1382
+ def id(self) -> Optional[builtins.str]:
1383
+ """
1384
+ Authorization rule ID
1385
+ """
1386
+ return pulumi.get(self, "id")
1387
+
1388
+ @property
1389
+ @pulumi.getter
1390
+ def rank(self) -> Optional[builtins.int]:
1391
+ """
1392
+ The rank (priority) in relation to other rules. Lower rank is higher priority.
1393
+ """
1394
+ return pulumi.get(self, "rank")
1395
+
1396
+
1268
1397
  @pulumi.output_type
1269
1398
  class ConditionChildren(dict):
1270
1399
  @staticmethod
@@ -1317,7 +1446,7 @@ class ConditionChildren(dict):
1317
1446
  :param builtins.str dictionary_value: Dictionary value
1318
1447
  :param builtins.str id: UUID for condition
1319
1448
  :param builtins.bool is_negate: Indicates whereas this condition is in negate mode
1320
- :param builtins.str name: Condition name
1449
+ :param builtins.str name: Condition name. Required if `condition_type` is `ConditionReference`, if `condition_type` is `ConditionAttributes` then this attribute is not used.
1321
1450
  :param builtins.str operator: Equality operator
1322
1451
  - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1323
1452
  """
@@ -1420,7 +1549,7 @@ class ConditionChildren(dict):
1420
1549
  @pulumi.getter
1421
1550
  def name(self) -> Optional[builtins.str]:
1422
1551
  """
1423
- Condition name
1552
+ Condition name. Required if `condition_type` is `ConditionReference`, if `condition_type` is `ConditionAttributes` then this attribute is not used.
1424
1553
  """
1425
1554
  return pulumi.get(self, "name")
1426
1555
 
@@ -1484,7 +1613,7 @@ class ConditionChildrenChildren(dict):
1484
1613
  :param builtins.str dictionary_value: Dictionary value
1485
1614
  :param builtins.str id: UUID for condition
1486
1615
  :param builtins.bool is_negate: Indicates whereas this condition is in negate mode
1487
- :param builtins.str name: Condition name
1616
+ :param builtins.str name: Condition name. Required if `condition_type` is `ConditionReference`, if `condition_type` is `ConditionAttributes` then this attribute is not used.
1488
1617
  :param builtins.str operator: Equality operator
1489
1618
  - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1490
1619
  """
@@ -1577,7 +1706,7 @@ class ConditionChildrenChildren(dict):
1577
1706
  @pulumi.getter
1578
1707
  def name(self) -> Optional[builtins.str]:
1579
1708
  """
1580
- Condition name
1709
+ Condition name. Required if `condition_type` is `ConditionReference`, if `condition_type` is `ConditionAttributes` then this attribute is not used.
1581
1710
  """
1582
1711
  return pulumi.get(self, "name")
1583
1712
 
@@ -1869,6 +1998,36 @@ class PolicySetChildrenChildren(dict):
1869
1998
  return pulumi.get(self, "operator")
1870
1999
 
1871
2000
 
2001
+ @pulumi.output_type
2002
+ class PolicySetUpdateRanksPolicy(dict):
2003
+ def __init__(__self__, *,
2004
+ rank: builtins.int,
2005
+ id: Optional[builtins.str] = None):
2006
+ """
2007
+ :param builtins.int rank: The rank (priority) in relation to other rules. Lower rank is higher priority.
2008
+ :param builtins.str id: Policy set ID
2009
+ """
2010
+ pulumi.set(__self__, "rank", rank)
2011
+ if id is not None:
2012
+ pulumi.set(__self__, "id", id)
2013
+
2014
+ @property
2015
+ @pulumi.getter
2016
+ def rank(self) -> builtins.int:
2017
+ """
2018
+ The rank (priority) in relation to other rules. Lower rank is higher priority.
2019
+ """
2020
+ return pulumi.get(self, "rank")
2021
+
2022
+ @property
2023
+ @pulumi.getter
2024
+ def id(self) -> Optional[builtins.str]:
2025
+ """
2026
+ Policy set ID
2027
+ """
2028
+ return pulumi.get(self, "id")
2029
+
2030
+
1872
2031
  @pulumi.output_type
1873
2032
  class GetAuthenticationRuleChildrenResult(dict):
1874
2033
  def __init__(__self__, *,
@@ -2770,7 +2929,7 @@ class GetConditionChildrenResult(dict):
2770
2929
  :param builtins.str dictionary_value: Dictionary value
2771
2930
  :param builtins.str id: UUID for condition
2772
2931
  :param builtins.bool is_negate: Indicates whereas this condition is in negate mode
2773
- :param builtins.str name: Condition name
2932
+ :param builtins.str name: Condition name. Required if `condition_type` is `ConditionReference`, if `condition_type` is `ConditionAttributes` then this attribute is not used.
2774
2933
  :param builtins.str operator: Equality operator
2775
2934
  """
2776
2935
  pulumi.set(__self__, "attribute_name", attribute_name)
@@ -2861,7 +3020,7 @@ class GetConditionChildrenResult(dict):
2861
3020
  @pulumi.getter
2862
3021
  def name(self) -> builtins.str:
2863
3022
  """
2864
- Condition name
3023
+ Condition name. Required if `condition_type` is `ConditionReference`, if `condition_type` is `ConditionAttributes` then this attribute is not used.
2865
3024
  """
2866
3025
  return pulumi.get(self, "name")
2867
3026
 
@@ -2896,7 +3055,7 @@ class GetConditionChildrenChildrenResult(dict):
2896
3055
  :param builtins.str dictionary_value: Dictionary value
2897
3056
  :param builtins.str id: UUID for condition
2898
3057
  :param builtins.bool is_negate: Indicates whereas this condition is in negate mode
2899
- :param builtins.str name: Condition name
3058
+ :param builtins.str name: Condition name. Required if `condition_type` is `ConditionReference`, if `condition_type` is `ConditionAttributes` then this attribute is not used.
2900
3059
  :param builtins.str operator: Equality operator
2901
3060
  """
2902
3061
  pulumi.set(__self__, "attribute_name", attribute_name)
@@ -2978,7 +3137,7 @@ class GetConditionChildrenChildrenResult(dict):
2978
3137
  @pulumi.getter
2979
3138
  def name(self) -> builtins.str:
2980
3139
  """
2981
- Condition name
3140
+ Condition name. Required if `condition_type` is `ConditionReference`, if `condition_type` is `ConditionAttributes` then this attribute is not used.
2982
3141
  """
2983
3142
  return pulumi.get(self, "name")
2984
3143
 
@@ -0,0 +1,164 @@
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 builtins
6
+ import copy
7
+ import warnings
8
+ import sys
9
+ import pulumi
10
+ import pulumi.runtime
11
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
12
+ if sys.version_info >= (3, 11):
13
+ from typing import NotRequired, TypedDict, TypeAlias
14
+ else:
15
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
16
+ from .. import _utilities
17
+ from . import outputs
18
+ from ._inputs import *
19
+
20
+ __all__ = ['PolicySetUpdateRanksArgs', 'PolicySetUpdateRanks']
21
+
22
+ @pulumi.input_type
23
+ class PolicySetUpdateRanksArgs:
24
+ def __init__(__self__, *,
25
+ policies: Optional[pulumi.Input[Sequence[pulumi.Input['PolicySetUpdateRanksPolicyArgs']]]] = None):
26
+ """
27
+ The set of arguments for constructing a PolicySetUpdateRanks resource.
28
+ """
29
+ if policies is not None:
30
+ pulumi.set(__self__, "policies", policies)
31
+
32
+ @property
33
+ @pulumi.getter
34
+ def policies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PolicySetUpdateRanksPolicyArgs']]]]:
35
+ return pulumi.get(self, "policies")
36
+
37
+ @policies.setter
38
+ def policies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PolicySetUpdateRanksPolicyArgs']]]]):
39
+ pulumi.set(self, "policies", value)
40
+
41
+
42
+ @pulumi.input_type
43
+ class _PolicySetUpdateRanksState:
44
+ def __init__(__self__, *,
45
+ policies: Optional[pulumi.Input[Sequence[pulumi.Input['PolicySetUpdateRanksPolicyArgs']]]] = None):
46
+ """
47
+ Input properties used for looking up and filtering PolicySetUpdateRanks resources.
48
+ """
49
+ if policies is not None:
50
+ pulumi.set(__self__, "policies", policies)
51
+
52
+ @property
53
+ @pulumi.getter
54
+ def policies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PolicySetUpdateRanksPolicyArgs']]]]:
55
+ return pulumi.get(self, "policies")
56
+
57
+ @policies.setter
58
+ def policies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PolicySetUpdateRanksPolicyArgs']]]]):
59
+ pulumi.set(self, "policies", value)
60
+
61
+
62
+ class PolicySetUpdateRanks(pulumi.CustomResource):
63
+ @overload
64
+ def __init__(__self__,
65
+ resource_name: str,
66
+ opts: Optional[pulumi.ResourceOptions] = None,
67
+ policies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PolicySetUpdateRanksPolicyArgs', 'PolicySetUpdateRanksPolicyArgsDict']]]]] = None,
68
+ __props__=None):
69
+ """
70
+ This resource is used to bulk update rank field in network access 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 network_access_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.
71
+
72
+ ## Example Usage
73
+
74
+ ```python
75
+ import pulumi
76
+ import pulumi_ise as ise
77
+
78
+ example = ise.networkaccess.PolicySetUpdateRanks("example", policies=[{
79
+ "id": "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
80
+ "rank": 0,
81
+ }])
82
+ ```
83
+
84
+ :param str resource_name: The name of the resource.
85
+ :param pulumi.ResourceOptions opts: Options for the resource.
86
+ """
87
+ ...
88
+ @overload
89
+ def __init__(__self__,
90
+ resource_name: str,
91
+ args: Optional[PolicySetUpdateRanksArgs] = None,
92
+ opts: Optional[pulumi.ResourceOptions] = None):
93
+ """
94
+ This resource is used to bulk update rank field in network access 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 network_access_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.
95
+
96
+ ## Example Usage
97
+
98
+ ```python
99
+ import pulumi
100
+ import pulumi_ise as ise
101
+
102
+ example = ise.networkaccess.PolicySetUpdateRanks("example", policies=[{
103
+ "id": "d82952cb-b901-4b09-b363-5ebf39bdbaf9",
104
+ "rank": 0,
105
+ }])
106
+ ```
107
+
108
+ :param str resource_name: The name of the resource.
109
+ :param PolicySetUpdateRanksArgs args: The arguments to use to populate this resource's properties.
110
+ :param pulumi.ResourceOptions opts: Options for the resource.
111
+ """
112
+ ...
113
+ def __init__(__self__, resource_name: str, *args, **kwargs):
114
+ resource_args, opts = _utilities.get_resource_args_opts(PolicySetUpdateRanksArgs, pulumi.ResourceOptions, *args, **kwargs)
115
+ if resource_args is not None:
116
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
117
+ else:
118
+ __self__._internal_init(resource_name, *args, **kwargs)
119
+
120
+ def _internal_init(__self__,
121
+ resource_name: str,
122
+ opts: Optional[pulumi.ResourceOptions] = None,
123
+ policies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PolicySetUpdateRanksPolicyArgs', 'PolicySetUpdateRanksPolicyArgsDict']]]]] = None,
124
+ __props__=None):
125
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
126
+ if not isinstance(opts, pulumi.ResourceOptions):
127
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
128
+ if opts.id is None:
129
+ if __props__ is not None:
130
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
131
+ __props__ = PolicySetUpdateRanksArgs.__new__(PolicySetUpdateRanksArgs)
132
+
133
+ __props__.__dict__["policies"] = policies
134
+ super(PolicySetUpdateRanks, __self__).__init__(
135
+ 'ise:networkaccess/policySetUpdateRanks:PolicySetUpdateRanks',
136
+ resource_name,
137
+ __props__,
138
+ opts)
139
+
140
+ @staticmethod
141
+ def get(resource_name: str,
142
+ id: pulumi.Input[str],
143
+ opts: Optional[pulumi.ResourceOptions] = None,
144
+ policies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PolicySetUpdateRanksPolicyArgs', 'PolicySetUpdateRanksPolicyArgsDict']]]]] = None) -> 'PolicySetUpdateRanks':
145
+ """
146
+ Get an existing PolicySetUpdateRanks resource's state with the given name, id, and optional extra
147
+ properties used to qualify the lookup.
148
+
149
+ :param str resource_name: The unique name of the resulting resource.
150
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
151
+ :param pulumi.ResourceOptions opts: Options for the resource.
152
+ """
153
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
154
+
155
+ __props__ = _PolicySetUpdateRanksState.__new__(_PolicySetUpdateRanksState)
156
+
157
+ __props__.__dict__["policies"] = policies
158
+ return PolicySetUpdateRanks(resource_name, opts=opts, __props__=__props__)
159
+
160
+ @property
161
+ @pulumi.getter
162
+ def policies(self) -> pulumi.Output[Optional[Sequence['outputs.PolicySetUpdateRanksPolicy']]]:
163
+ return pulumi.get(self, "policies")
164
+
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "ise",
4
- "version": "0.3.0-alpha.1745474191"
4
+ "version": "0.3.0-alpha.1745554688"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_ise
3
- Version: 0.3.0a1745474191
3
+ Version: 0.3.0a1745554688
4
4
  Summary: A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.com
@@ -1,22 +1,26 @@
1
- pulumi_ise/__init__.py,sha256=SOexcnhVuI_RSBm30rSXkFkXotzmLmLPgH5fwUV6GYg,12448
1
+ pulumi_ise/__init__.py,sha256=hWAjIgMMuc4I_YhkEqT1xIaiSSvjyS1nwr6jiLNgBqI,15024
2
2
  pulumi_ise/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
3
3
  pulumi_ise/provider.py,sha256=DLYXDtjbDgFtUDhHF0VVuibf4_e174iiRrdbTWHK-cA,10052
4
- pulumi_ise/pulumi-plugin.json,sha256=IysuIY_5fqvFz89dEQvZEeNHn3SU2LZ8w3BLj_Uu71U,79
4
+ pulumi_ise/pulumi-plugin.json,sha256=iCUdNJyjjYXQbVe7u-_CsFrW6yoz32_k7FnCF8TbdqI,79
5
5
  pulumi_ise/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  pulumi_ise/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
7
7
  pulumi_ise/config/__init__.pyi,sha256=8SP82zqkU0GONbSUd-og0yDuS9uA6dQJXsx6CzqNRFw,1201
8
8
  pulumi_ise/config/vars.py,sha256=3hUUsxBfuLROrtmbv1OXS_gIBaTuoVrbseq88Cyxby4,1782
9
- pulumi_ise/deviceadmin/__init__.py,sha256=is_zeKmW1B5Zhohq3qBY1MhY36Z1dZA1Jo_V4N1Sy9o,1336
10
- pulumi_ise/deviceadmin/_inputs.py,sha256=C8r0kaRvspQDhstEa0uDRk_SltDQStCG7_9e_7H9RGw,106589
9
+ pulumi_ise/deviceadmin/__init__.py,sha256=y8BeQzcDkOOxZ-GIwiIhcf48M98H0YjAavNb_5D1uz0,1591
10
+ pulumi_ise/deviceadmin/_inputs.py,sha256=k44hpV0a1rrpF1Y5hUWZt05wrq_zx69J6OYSCZXPk88,115540
11
11
  pulumi_ise/deviceadmin/allowed_protocols_tacacs.py,sha256=tKlQgDL1zVIlgJ6w7dlY-Qj-aeQZ57uJkdvOO3lZY1Y,14904
12
12
  pulumi_ise/deviceadmin/authentication_rule.py,sha256=TmyaWVCfPjZ1lOeEY_BW9t-y23EDtMzP70YWtgd6taU,53068
13
13
  pulumi_ise/deviceadmin/authentication_rule_update_rank.py,sha256=e4IhfAEtd4UsYQKBMbE2HDWGnSUzzDtm9aH7viagl7Q,11786
14
+ pulumi_ise/deviceadmin/authentication_rule_update_ranks.py,sha256=WRxmLa-VgbKbTB-UJTKB_9iDaBKKXY2IYVz4mlXnvaU,9915
14
15
  pulumi_ise/deviceadmin/authorization_exception_rule.py,sha256=F0n85gTVzY05sqJRdluyywmVP2EbLKZLGlYWdYWtGiQ,47532
15
16
  pulumi_ise/deviceadmin/authorization_exception_rule_update_rank.py,sha256=eDQ-6u5TRskRKI-3hN00GN31Q2P6i8zq7r8R-yoNCXk,12061
17
+ pulumi_ise/deviceadmin/authorization_exception_rule_update_ranks.py,sha256=XddCu2Nf2rcvRLsJHqgYNYvDx8ZeSHRBVRgm0Rjofco,10231
16
18
  pulumi_ise/deviceadmin/authorization_global_exception_rule.py,sha256=_n_tpGryrGPPHEHsBkiEylznGX_y7YlMblAI7A07rcI,43668
17
19
  pulumi_ise/deviceadmin/authorization_global_exception_rule_update_rank.py,sha256=rrpozu2r-lXxa4xHkiTVdS8LTykMAa696urVp6nG5Kc,10146
20
+ pulumi_ise/deviceadmin/authorization_global_exception_rule_update_ranks.py,sha256=w-H4VyKCFxX1rf5o_i67UcDB9UG_cC5aXmNBclWg14k,8314
18
21
  pulumi_ise/deviceadmin/authorization_rule.py,sha256=5TOgmxfi5yehxfw8aPbRbZnXr-Q34G7_ij_BAxpeTRI,47107
19
22
  pulumi_ise/deviceadmin/authorization_rule_update_rank.py,sha256=tEux91K1QMvm8Za60PPO8gXqyK_tKLz9UXHYglDAi_g,11753
23
+ pulumi_ise/deviceadmin/authorization_rule_update_ranks.py,sha256=U6og0-e23EhZBpecXoACS7wBJJmxzKOKZ4bsnBrRo8k,9876
20
24
  pulumi_ise/deviceadmin/condition.py,sha256=xtE__azByyZqDgM0tdH-Ae3r7ZiKDkceBBuHdFiZoKM,30277
21
25
  pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py,sha256=q7L8IZtFPGBX2DphBpq5MHh5uSpfwpGQiDHrgw5sqoc,6579
22
26
  pulumi_ise/deviceadmin/get_authentication_rule.py,sha256=_CvR52I3UBBkg4LI6nh_gdOKrKsxCFLSbVlGmGfCjTM,16199
@@ -28,9 +32,10 @@ pulumi_ise/deviceadmin/get_policy_set.py,sha256=9ZtZcAcxVkQsrIeOrdc_kVymmHfO1xEu
28
32
  pulumi_ise/deviceadmin/get_tacacs_command_set.py,sha256=J9QInnNHgl2tfSKDjjnN4y5wI0e8fJpKvGxw3iYuZzI,5742
29
33
  pulumi_ise/deviceadmin/get_tacacs_profile.py,sha256=ltLJMnHRz-8C9yZSCrODS_I_J-TQAtDNv8FEocMdbP8,5154
30
34
  pulumi_ise/deviceadmin/get_time_and_date_condition.py,sha256=YpFoD6ct0vi3gwKo0NaQaBDFCiIlsfAjB8q9KfkRh-g,11645
31
- pulumi_ise/deviceadmin/outputs.py,sha256=cQGByU1TWxuvswi6NTOUsJ7z9DqlhUy3EKhbyONEMlo,122412
35
+ pulumi_ise/deviceadmin/outputs.py,sha256=uT0REtqUflUWCvYhzaWTE7zgrqqy2iP41p4bjkO4VLg,127291
32
36
  pulumi_ise/deviceadmin/policy_set.py,sha256=ZRjiO1IqyaYNbwHNQgCaqf2nI-8aA9T1NutkiSDn7m4,46633
33
37
  pulumi_ise/deviceadmin/policy_set_update_rank.py,sha256=71bpf4x4vKTqAYFP4FKXtm6foAgQIJSQvaL2UIOowoQ,9584
38
+ pulumi_ise/deviceadmin/policy_set_update_ranks.py,sha256=qkaKdnueV0m4bDPAVKCeTr5yUnLKEJsT1SjW-wGGIHE,7522
34
39
  pulumi_ise/deviceadmin/tacacs_command_set.py,sha256=s5eMtcHSXcJDiqm3yopKgl1qvRLA0dWQw2_Xx1SuQyA,12998
35
40
  pulumi_ise/deviceadmin/tacacs_profile.py,sha256=tuADJL9uPS0qIC9_VshKPINNchr6QeMpiLBlImHELgU,10931
36
41
  pulumi_ise/deviceadmin/time_and_date_condition.py,sha256=QjypHyNZDNt5-qtxl2I2uZ4EhZv5ziP9V0po4tEA040,34159
@@ -56,23 +61,27 @@ pulumi_ise/identitymanagement/outputs.py,sha256=gdS4aEHQpV9zb5X9QpVxX7ooesK7j039
56
61
  pulumi_ise/identitymanagement/user_identity_group.py,sha256=gNvfy0SlqCBnQ5cDYA_9bYNcOqSyUlHvUaEg6OU2cEE,10807
57
62
  pulumi_ise/network/__init__.py,sha256=JoptB6lWdSgNQ9mLjDMBjyyY6-xUu3BGG4V1yWJZu18,438
58
63
  pulumi_ise/network/_inputs.py,sha256=Di8AuyZL4jbgsjGHTY5ebFT1ujarHZQXwRtDnZdNOVI,3044
59
- pulumi_ise/network/device.py,sha256=TiyBaWskdjWTzDPJ4a7G9Nzw4RhyuGgaHM5w45vcSBs,117519
64
+ pulumi_ise/network/device.py,sha256=A0xSbwjQvyjVuBjVNxK4v0e0NKSzKYFpVADtJO1euDg,117555
60
65
  pulumi_ise/network/device_group.py,sha256=xIWFKBOFw0jvFU82yerdEolEH65OeyC_DD6LRgtywgE,10921
61
- pulumi_ise/network/get_device.py,sha256=aTKXyPxR22uzusz_JtjlDbFl5zYhJqTsF_PwPGqYiBM,37525
66
+ pulumi_ise/network/get_device.py,sha256=7f_ASnG0YKS8Yk5iG6bD_xBogK1iLSMmRtj7Up1YyKw,37540
62
67
  pulumi_ise/network/get_device_group.py,sha256=iFL5lRPLsbMtzH4RURT3Z5NOCpGI_iJJzr_2LmI_wpA,5198
63
68
  pulumi_ise/network/outputs.py,sha256=dB4KLeXYI4u9-DBDdqCvgfYvUw7LllI71mFPFzvSmFQ,3805
64
- pulumi_ise/networkaccess/__init__.py,sha256=fjMvTg2YwhqT-4wjDmC9Xg__3IekZc5-3ujQLOZKl40,1388
65
- pulumi_ise/networkaccess/_inputs.py,sha256=7n7VL_w71yZ5LI19G-2NFSIhZimNDF5-os-Vnyrva5A,109019
69
+ pulumi_ise/networkaccess/__init__.py,sha256=pxZAHAlNTpZlGOFogA9r5VpppR7U0uuGnEoYuz3kUH0,1643
70
+ pulumi_ise/networkaccess/_inputs.py,sha256=puPxKeWoaZTwtOjREDzEtlFqqqxtBcqmFHx2DX44Vus,118768
66
71
  pulumi_ise/networkaccess/allowed_protocols.py,sha256=QCDbqVKTwoMUQ2TLjl6WurP5ptY80OyCVNViSfJmdxA,221342
67
72
  pulumi_ise/networkaccess/authentication_rule.py,sha256=hK3B8wkwpB2RhuuB9qYquHQzO_InRgMCUxk8rkh_pXU,53082
68
73
  pulumi_ise/networkaccess/authentication_rule_update_rank.py,sha256=TQV_dbkHnwkvxba7kPXpc-el49ldL8wx47WbOAXW9Qg,11800
74
+ pulumi_ise/networkaccess/authentication_rule_update_ranks.py,sha256=QhvLsFbHifA-XDBYFO1H_KVkJ61o9bu0Mp6oIzN6D6A,9929
69
75
  pulumi_ise/networkaccess/authorization_exception_rule.py,sha256=b2LT-AbTvvij-f0lUjIRRqLsdXH7dNr7GVobPPnexWk,46855
70
76
  pulumi_ise/networkaccess/authorization_exception_rule_update_rank.py,sha256=o-kLGL_J-z4LhRwpiiXEAyP_1OO97rDslDpWIwQ5u5E,12075
77
+ pulumi_ise/networkaccess/authorization_exception_rule_update_ranks.py,sha256=tljycpEk0RCJf45d7aTlz7kzDIXWA5pzZrZsdFayGTk,10245
71
78
  pulumi_ise/networkaccess/authorization_global_exception_rule.py,sha256=2kL2WgiS80If90Fz5smZvUhnwbxueo-ZWgJXe4GI1rk,42991
72
79
  pulumi_ise/networkaccess/authorization_global_exception_rule_update_rank.py,sha256=4ycy0s9WvE6CsXcac3N13-JQqQVX273ivA2i7-GBfNc,10160
80
+ pulumi_ise/networkaccess/authorization_global_exception_rule_update_ranks.py,sha256=xiGjzwQqkQrBpVEVe9A4KWvq4tBmkiw3AZ4vue6zNOU,8298
73
81
  pulumi_ise/networkaccess/authorization_profile.py,sha256=Nv5YoJTaQGQOCXrrq9grIkPcx-XyEmngpX-PDyaqaLk,80310
74
82
  pulumi_ise/networkaccess/authorization_rule.py,sha256=riGfH5ah7sq-YwaZT_yK2Ul885WpCVrT8yVqJJARPjY,46430
75
83
  pulumi_ise/networkaccess/authorization_rule_update_rank.py,sha256=yfXwE_aIHCNeYIUsaaGWpB2pkvbaqNHn3NJtLcz1ZvE,11767
84
+ pulumi_ise/networkaccess/authorization_rule_update_ranks.py,sha256=v78E1LHCTkWavSx4vWcb-ymvuc28zXNMUr3EUBTe3aM,9876
76
85
  pulumi_ise/networkaccess/condition.py,sha256=MX1NOHjzvjeHJgslj3QNlX5quc5J_0AUVMKtGZvXMEM,30337
77
86
  pulumi_ise/networkaccess/dictionary.py,sha256=d_FKMMo9mxl2ak_8ZU2L6BukGES6iLSTy6uMvU01i3E,12928
78
87
  pulumi_ise/networkaccess/downloadable_acl.py,sha256=WTftoEbemp0GdQXiB5Eqh4yqPNn_x9yj_9xClwJfhek,12443
@@ -87,9 +96,10 @@ pulumi_ise/networkaccess/get_dictionary.py,sha256=4LHUj1S4Q_OgfUTvCrdLK0ELMBrC4U
87
96
  pulumi_ise/networkaccess/get_downloadable_acl.py,sha256=wdoAnZloELVitXrudUD8kqBO0yrnsawNwz1bRGqtsCk,5514
88
97
  pulumi_ise/networkaccess/get_policy_set.py,sha256=AK0ZVZRf7V-sWG2Oq1KHAwxLztG-PT7FV1-dZLxO2RY,13994
89
98
  pulumi_ise/networkaccess/get_time_and_date_condition.py,sha256=WoHSY8PGRo2i-dZmeIbxIp5Z5DtWrOXVPLEJS4MFN0s,11657
90
- pulumi_ise/networkaccess/outputs.py,sha256=BGtiZp3oAX3oZsLjy2u1A6KoBuquvcgQ4Po8gKNh4xs,126588
99
+ pulumi_ise/networkaccess/outputs.py,sha256=X-TXnAGCV3zGJc9LiJByZNLL19g-K7n8GUcc87JJM-k,132531
91
100
  pulumi_ise/networkaccess/policy_set.py,sha256=ce0injqznzZT5XbV2Mu1dsLJ7KhYIheairLR_CXG3h0,46651
92
101
  pulumi_ise/networkaccess/policy_set_update_rank.py,sha256=CrlLrfil5QC23SNr7c0ex-6EHXpd0ChlRspN0sBmreE,9598
102
+ pulumi_ise/networkaccess/policy_set_update_ranks.py,sha256=C8Y3Tv8cWNO7_pVVRSEVBxHyiFR4n61qZnHsktM_D-w,7536
93
103
  pulumi_ise/networkaccess/time_and_date_condition.py,sha256=bcuDysfukzkSsnwUZLXv-Dx60a3jro7Bkki7FDRoEkQ,34173
94
104
  pulumi_ise/system/__init__.py,sha256=hgTPiniwNGX4XsTfXHQ7qYWa6YBp4Ccbvz4iOjzLiwE,458
95
105
  pulumi_ise/system/_inputs.py,sha256=Il-Y-cznsLyKDed7TZ_cVYspz2qsLSb_hcsXpZTnwus,2345
@@ -113,7 +123,7 @@ pulumi_ise/trustsec/ip_to_sgt_mapping_group.py,sha256=z35WsQXNYeo5yS2on8IoiaJfiJ
113
123
  pulumi_ise/trustsec/security_group.py,sha256=dTwfHOpSzBwUkOumROt6VYQEiReAozr15NbZiy9askY,14396
114
124
  pulumi_ise/trustsec/security_group_acl.py,sha256=V6zZ60hGLUU9QI4szVK1n17-frWAO6l34MyTqjqU54I,14619
115
125
  pulumi_ise/trustsec/sxp_domain_filter.py,sha256=cT_7lduBbaw-Sa6Pz-OkV4O6P4w9aSc547JnzjzqTq0,16409
116
- pulumi_ise-0.3.0a1745474191.dist-info/METADATA,sha256=agreZ6PMo9_FuBWpHvyZvY13mxLsTTxzPh2u3B5LLd4,1479
117
- pulumi_ise-0.3.0a1745474191.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
118
- pulumi_ise-0.3.0a1745474191.dist-info/top_level.txt,sha256=oFNRT2ED37ACpG9aXKjxzIS6O-f9vaDcEci2KQl7KO0,11
119
- pulumi_ise-0.3.0a1745474191.dist-info/RECORD,,
126
+ pulumi_ise-0.3.0a1745554688.dist-info/METADATA,sha256=dSnBhsJ0V_D_4fbPtCN_j_IJyY0b_LSt29aF-UnMhpk,1479
127
+ pulumi_ise-0.3.0a1745554688.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
128
+ pulumi_ise-0.3.0a1745554688.dist-info/top_level.txt,sha256=oFNRT2ED37ACpG9aXKjxzIS6O-f9vaDcEci2KQl7KO0,11
129
+ pulumi_ise-0.3.0a1745554688.dist-info/RECORD,,