pulumi-ise 0.2.1__py3-none-any.whl → 0.2.2__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 +81 -0
- pulumi_ise/config/__init__.py +1 -0
- pulumi_ise/config/__init__.pyi +1 -0
- pulumi_ise/config/vars.py +1 -0
- pulumi_ise/deviceadmin/__init__.py +6 -0
- pulumi_ise/deviceadmin/_inputs.py +807 -537
- pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +71 -70
- pulumi_ise/deviceadmin/authentication_rule.py +239 -238
- pulumi_ise/deviceadmin/authentication_rule_update_rank.py +43 -42
- pulumi_ise/deviceadmin/authentication_rule_update_ranks.py +216 -0
- pulumi_ise/deviceadmin/authorization_exception_rule.py +211 -210
- pulumi_ise/deviceadmin/authorization_exception_rule_update_rank.py +43 -42
- pulumi_ise/deviceadmin/authorization_exception_rule_update_ranks.py +216 -0
- pulumi_ise/deviceadmin/authorization_global_exception_rule.py +183 -182
- pulumi_ise/deviceadmin/authorization_global_exception_rule_update_rank.py +29 -28
- pulumi_ise/deviceadmin/authorization_global_exception_rule_update_ranks.py +164 -0
- pulumi_ise/deviceadmin/authorization_rule.py +211 -210
- pulumi_ise/deviceadmin/authorization_rule_update_rank.py +43 -42
- pulumi_ise/deviceadmin/authorization_rule_update_ranks.py +216 -0
- pulumi_ise/deviceadmin/condition.py +127 -126
- pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +15 -14
- pulumi_ise/deviceadmin/get_authentication_rule.py +31 -30
- pulumi_ise/deviceadmin/get_authorization_exception_rule.py +29 -28
- pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +23 -22
- pulumi_ise/deviceadmin/get_authorization_rule.py +29 -28
- pulumi_ise/deviceadmin/get_condition.py +19 -18
- pulumi_ise/deviceadmin/get_policy_set.py +25 -24
- pulumi_ise/deviceadmin/get_tacacs_command_set.py +13 -12
- pulumi_ise/deviceadmin/get_tacacs_profile.py +12 -11
- pulumi_ise/deviceadmin/get_time_and_date_condition.py +23 -22
- pulumi_ise/deviceadmin/outputs.py +815 -655
- pulumi_ise/deviceadmin/policy_set.py +211 -210
- pulumi_ise/deviceadmin/policy_set_update_rank.py +29 -28
- pulumi_ise/deviceadmin/policy_set_update_ranks.py +164 -0
- pulumi_ise/deviceadmin/tacacs_command_set.py +43 -42
- pulumi_ise/deviceadmin/tacacs_profile.py +29 -28
- pulumi_ise/deviceadmin/time_and_date_condition.py +183 -182
- pulumi_ise/identitymanagement/__init__.py +1 -0
- pulumi_ise/identitymanagement/_inputs.py +85 -84
- pulumi_ise/identitymanagement/active_directory_add_groups.py +85 -84
- pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +15 -14
- pulumi_ise/identitymanagement/active_directory_join_point.py +421 -420
- pulumi_ise/identitymanagement/certificate_authentication_profile.py +99 -98
- pulumi_ise/identitymanagement/endpoint.py +365 -364
- pulumi_ise/identitymanagement/endpoint_identity_group.py +57 -56
- pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +27 -26
- pulumi_ise/identitymanagement/get_active_directory_join_point.py +36 -35
- pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +17 -16
- pulumi_ise/identitymanagement/get_endpoint.py +36 -35
- pulumi_ise/identitymanagement/get_endpoint_identity_group.py +14 -13
- pulumi_ise/identitymanagement/get_identity_source_sequence.py +14 -13
- pulumi_ise/identitymanagement/get_internal_user.py +24 -23
- pulumi_ise/identitymanagement/get_user_identity_group.py +13 -12
- pulumi_ise/identitymanagement/identity_source_sequence.py +57 -56
- pulumi_ise/identitymanagement/internal_user.py +197 -196
- pulumi_ise/identitymanagement/outputs.py +95 -94
- pulumi_ise/identitymanagement/user_identity_group.py +43 -42
- pulumi_ise/network/__init__.py +1 -0
- pulumi_ise/network/_inputs.py +16 -15
- pulumi_ise/network/device.py +593 -592
- pulumi_ise/network/device_group.py +43 -42
- pulumi_ise/network/get_device.py +60 -59
- pulumi_ise/network/get_device_group.py +13 -12
- pulumi_ise/network/outputs.py +19 -18
- pulumi_ise/networkaccess/__init__.py +6 -0
- pulumi_ise/networkaccess/_inputs.py +812 -542
- pulumi_ise/networkaccess/allowed_protocols.py +1079 -1078
- pulumi_ise/networkaccess/authentication_rule.py +239 -238
- pulumi_ise/networkaccess/authentication_rule_update_rank.py +43 -42
- pulumi_ise/networkaccess/authentication_rule_update_ranks.py +216 -0
- pulumi_ise/networkaccess/authorization_exception_rule.py +211 -210
- pulumi_ise/networkaccess/authorization_exception_rule_update_rank.py +43 -42
- pulumi_ise/networkaccess/authorization_exception_rule_update_ranks.py +216 -0
- pulumi_ise/networkaccess/authorization_global_exception_rule.py +183 -182
- pulumi_ise/networkaccess/authorization_global_exception_rule_update_rank.py +29 -28
- pulumi_ise/networkaccess/authorization_global_exception_rule_update_ranks.py +164 -0
- pulumi_ise/networkaccess/authorization_profile.py +449 -448
- pulumi_ise/networkaccess/authorization_rule.py +211 -210
- pulumi_ise/networkaccess/authorization_rule_update_rank.py +43 -42
- pulumi_ise/networkaccess/authorization_rule_update_ranks.py +216 -0
- pulumi_ise/networkaccess/condition.py +127 -126
- pulumi_ise/networkaccess/dictionary.py +57 -56
- pulumi_ise/networkaccess/downloadable_acl.py +57 -56
- pulumi_ise/networkaccess/get_allowed_protocols.py +87 -86
- pulumi_ise/networkaccess/get_authentication_rule.py +31 -30
- pulumi_ise/networkaccess/get_authorization_exception_rule.py +29 -28
- pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +23 -22
- pulumi_ise/networkaccess/get_authorization_profile.py +42 -41
- pulumi_ise/networkaccess/get_authorization_rule.py +29 -28
- pulumi_ise/networkaccess/get_condition.py +19 -18
- pulumi_ise/networkaccess/get_dictionary.py +14 -13
- pulumi_ise/networkaccess/get_downloadable_acl.py +14 -13
- pulumi_ise/networkaccess/get_policy_set.py +25 -24
- pulumi_ise/networkaccess/get_time_and_date_condition.py +23 -22
- pulumi_ise/networkaccess/outputs.py +821 -661
- pulumi_ise/networkaccess/policy_set.py +211 -210
- pulumi_ise/networkaccess/policy_set_update_rank.py +29 -28
- pulumi_ise/networkaccess/policy_set_update_ranks.py +164 -0
- pulumi_ise/networkaccess/time_and_date_condition.py +183 -182
- pulumi_ise/provider.py +39 -38
- pulumi_ise/pulumi-plugin.json +1 -1
- pulumi_ise/system/__init__.py +1 -0
- pulumi_ise/system/_inputs.py +11 -10
- pulumi_ise/system/get_license_tier_state.py +6 -5
- pulumi_ise/system/get_repository.py +17 -16
- pulumi_ise/system/license_tier_state.py +1 -0
- pulumi_ise/system/outputs.py +13 -12
- pulumi_ise/system/repository.py +99 -98
- pulumi_ise/trustsec/__init__.py +1 -0
- pulumi_ise/trustsec/egress_matrix_cell.py +85 -84
- pulumi_ise/trustsec/egress_matrix_cell_default.py +57 -56
- pulumi_ise/trustsec/get_egress_matrix_cell.py +12 -11
- pulumi_ise/trustsec/get_egress_matrix_cell_default.py +10 -9
- pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +18 -17
- pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +15 -14
- pulumi_ise/trustsec/get_security_group.py +15 -14
- pulumi_ise/trustsec/get_security_group_acl.py +15 -14
- pulumi_ise/trustsec/get_sxp_domain_filter.py +16 -15
- pulumi_ise/trustsec/ip_to_sgt_mapping.py +113 -112
- pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +71 -70
- pulumi_ise/trustsec/security_group.py +71 -70
- pulumi_ise/trustsec/security_group_acl.py +71 -70
- pulumi_ise/trustsec/sxp_domain_filter.py +85 -84
- {pulumi_ise-0.2.1.dist-info → pulumi_ise-0.2.2.dist-info}/METADATA +2 -2
- pulumi_ise-0.2.2.dist-info/RECORD +129 -0
- {pulumi_ise-0.2.1.dist-info → pulumi_ise-0.2.2.dist-info}/WHEEL +1 -1
- pulumi_ise-0.2.1.dist-info/RECORD +0 -119
- {pulumi_ise-0.2.1.dist-info → pulumi_ise-0.2.2.dist-info}/top_level.txt +0 -0
pulumi_ise/__init__.py
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
from . import _utilities
|
6
7
|
import typing
|
7
8
|
# Export this package's modules as members:
|
@@ -59,6 +60,14 @@ _utilities.register(
|
|
59
60
|
"ise:deviceadmin/authenticationRuleUpdateRank:AuthenticationRuleUpdateRank": "AuthenticationRuleUpdateRank"
|
60
61
|
}
|
61
62
|
},
|
63
|
+
{
|
64
|
+
"pkg": "ise",
|
65
|
+
"mod": "deviceadmin/authenticationRuleUpdateRanks",
|
66
|
+
"fqn": "pulumi_ise.deviceadmin",
|
67
|
+
"classes": {
|
68
|
+
"ise:deviceadmin/authenticationRuleUpdateRanks:AuthenticationRuleUpdateRanks": "AuthenticationRuleUpdateRanks"
|
69
|
+
}
|
70
|
+
},
|
62
71
|
{
|
63
72
|
"pkg": "ise",
|
64
73
|
"mod": "deviceadmin/authorizationExceptionRule",
|
@@ -75,6 +84,14 @@ _utilities.register(
|
|
75
84
|
"ise:deviceadmin/authorizationExceptionRuleUpdateRank:AuthorizationExceptionRuleUpdateRank": "AuthorizationExceptionRuleUpdateRank"
|
76
85
|
}
|
77
86
|
},
|
87
|
+
{
|
88
|
+
"pkg": "ise",
|
89
|
+
"mod": "deviceadmin/authorizationExceptionRuleUpdateRanks",
|
90
|
+
"fqn": "pulumi_ise.deviceadmin",
|
91
|
+
"classes": {
|
92
|
+
"ise:deviceadmin/authorizationExceptionRuleUpdateRanks:AuthorizationExceptionRuleUpdateRanks": "AuthorizationExceptionRuleUpdateRanks"
|
93
|
+
}
|
94
|
+
},
|
78
95
|
{
|
79
96
|
"pkg": "ise",
|
80
97
|
"mod": "deviceadmin/authorizationGlobalExceptionRule",
|
@@ -91,6 +108,14 @@ _utilities.register(
|
|
91
108
|
"ise:deviceadmin/authorizationGlobalExceptionRuleUpdateRank:AuthorizationGlobalExceptionRuleUpdateRank": "AuthorizationGlobalExceptionRuleUpdateRank"
|
92
109
|
}
|
93
110
|
},
|
111
|
+
{
|
112
|
+
"pkg": "ise",
|
113
|
+
"mod": "deviceadmin/authorizationGlobalExceptionRuleUpdateRanks",
|
114
|
+
"fqn": "pulumi_ise.deviceadmin",
|
115
|
+
"classes": {
|
116
|
+
"ise:deviceadmin/authorizationGlobalExceptionRuleUpdateRanks:AuthorizationGlobalExceptionRuleUpdateRanks": "AuthorizationGlobalExceptionRuleUpdateRanks"
|
117
|
+
}
|
118
|
+
},
|
94
119
|
{
|
95
120
|
"pkg": "ise",
|
96
121
|
"mod": "deviceadmin/authorizationRule",
|
@@ -107,6 +132,14 @@ _utilities.register(
|
|
107
132
|
"ise:deviceadmin/authorizationRuleUpdateRank:AuthorizationRuleUpdateRank": "AuthorizationRuleUpdateRank"
|
108
133
|
}
|
109
134
|
},
|
135
|
+
{
|
136
|
+
"pkg": "ise",
|
137
|
+
"mod": "deviceadmin/authorizationRuleUpdateRanks",
|
138
|
+
"fqn": "pulumi_ise.deviceadmin",
|
139
|
+
"classes": {
|
140
|
+
"ise:deviceadmin/authorizationRuleUpdateRanks:AuthorizationRuleUpdateRanks": "AuthorizationRuleUpdateRanks"
|
141
|
+
}
|
142
|
+
},
|
110
143
|
{
|
111
144
|
"pkg": "ise",
|
112
145
|
"mod": "deviceadmin/condition",
|
@@ -131,6 +164,14 @@ _utilities.register(
|
|
131
164
|
"ise:deviceadmin/policySetUpdateRank:PolicySetUpdateRank": "PolicySetUpdateRank"
|
132
165
|
}
|
133
166
|
},
|
167
|
+
{
|
168
|
+
"pkg": "ise",
|
169
|
+
"mod": "deviceadmin/policySetUpdateRanks",
|
170
|
+
"fqn": "pulumi_ise.deviceadmin",
|
171
|
+
"classes": {
|
172
|
+
"ise:deviceadmin/policySetUpdateRanks:PolicySetUpdateRanks": "PolicySetUpdateRanks"
|
173
|
+
}
|
174
|
+
},
|
134
175
|
{
|
135
176
|
"pkg": "ise",
|
136
177
|
"mod": "deviceadmin/tacacsCommandSet",
|
@@ -267,6 +308,14 @@ _utilities.register(
|
|
267
308
|
"ise:networkaccess/authenticationRuleUpdateRank:AuthenticationRuleUpdateRank": "AuthenticationRuleUpdateRank"
|
268
309
|
}
|
269
310
|
},
|
311
|
+
{
|
312
|
+
"pkg": "ise",
|
313
|
+
"mod": "networkaccess/authenticationRuleUpdateRanks",
|
314
|
+
"fqn": "pulumi_ise.networkaccess",
|
315
|
+
"classes": {
|
316
|
+
"ise:networkaccess/authenticationRuleUpdateRanks:AuthenticationRuleUpdateRanks": "AuthenticationRuleUpdateRanks"
|
317
|
+
}
|
318
|
+
},
|
270
319
|
{
|
271
320
|
"pkg": "ise",
|
272
321
|
"mod": "networkaccess/authorizationExceptionRule",
|
@@ -283,6 +332,14 @@ _utilities.register(
|
|
283
332
|
"ise:networkaccess/authorizationExceptionRuleUpdateRank:AuthorizationExceptionRuleUpdateRank": "AuthorizationExceptionRuleUpdateRank"
|
284
333
|
}
|
285
334
|
},
|
335
|
+
{
|
336
|
+
"pkg": "ise",
|
337
|
+
"mod": "networkaccess/authorizationExceptionRuleUpdateRanks",
|
338
|
+
"fqn": "pulumi_ise.networkaccess",
|
339
|
+
"classes": {
|
340
|
+
"ise:networkaccess/authorizationExceptionRuleUpdateRanks:AuthorizationExceptionRuleUpdateRanks": "AuthorizationExceptionRuleUpdateRanks"
|
341
|
+
}
|
342
|
+
},
|
286
343
|
{
|
287
344
|
"pkg": "ise",
|
288
345
|
"mod": "networkaccess/authorizationGlobalExceptionRule",
|
@@ -299,6 +356,14 @@ _utilities.register(
|
|
299
356
|
"ise:networkaccess/authorizationGlobalExceptionRuleUpdateRank:AuthorizationGlobalExceptionRuleUpdateRank": "AuthorizationGlobalExceptionRuleUpdateRank"
|
300
357
|
}
|
301
358
|
},
|
359
|
+
{
|
360
|
+
"pkg": "ise",
|
361
|
+
"mod": "networkaccess/authorizationGlobalExceptionRuleUpdateRanks",
|
362
|
+
"fqn": "pulumi_ise.networkaccess",
|
363
|
+
"classes": {
|
364
|
+
"ise:networkaccess/authorizationGlobalExceptionRuleUpdateRanks:AuthorizationGlobalExceptionRuleUpdateRanks": "AuthorizationGlobalExceptionRuleUpdateRanks"
|
365
|
+
}
|
366
|
+
},
|
302
367
|
{
|
303
368
|
"pkg": "ise",
|
304
369
|
"mod": "networkaccess/authorizationProfile",
|
@@ -323,6 +388,14 @@ _utilities.register(
|
|
323
388
|
"ise:networkaccess/authorizationRuleUpdateRank:AuthorizationRuleUpdateRank": "AuthorizationRuleUpdateRank"
|
324
389
|
}
|
325
390
|
},
|
391
|
+
{
|
392
|
+
"pkg": "ise",
|
393
|
+
"mod": "networkaccess/authorizationRuleUpdateRanks",
|
394
|
+
"fqn": "pulumi_ise.networkaccess",
|
395
|
+
"classes": {
|
396
|
+
"ise:networkaccess/authorizationRuleUpdateRanks:AuthorizationRuleUpdateRanks": "AuthorizationRuleUpdateRanks"
|
397
|
+
}
|
398
|
+
},
|
326
399
|
{
|
327
400
|
"pkg": "ise",
|
328
401
|
"mod": "networkaccess/condition",
|
@@ -363,6 +436,14 @@ _utilities.register(
|
|
363
436
|
"ise:networkaccess/policySetUpdateRank:PolicySetUpdateRank": "PolicySetUpdateRank"
|
364
437
|
}
|
365
438
|
},
|
439
|
+
{
|
440
|
+
"pkg": "ise",
|
441
|
+
"mod": "networkaccess/policySetUpdateRanks",
|
442
|
+
"fqn": "pulumi_ise.networkaccess",
|
443
|
+
"classes": {
|
444
|
+
"ise:networkaccess/policySetUpdateRanks:PolicySetUpdateRanks": "PolicySetUpdateRanks"
|
445
|
+
}
|
446
|
+
},
|
366
447
|
{
|
367
448
|
"pkg": "ise",
|
368
449
|
"mod": "networkaccess/timeAndDateCondition",
|
pulumi_ise/config/__init__.py
CHANGED
pulumi_ise/config/__init__.pyi
CHANGED
pulumi_ise/config/vars.py
CHANGED
@@ -2,18 +2,23 @@
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
from .. import _utilities
|
6
7
|
import typing
|
7
8
|
# Export this package's modules as members:
|
8
9
|
from .allowed_protocols_tacacs import *
|
9
10
|
from .authentication_rule import *
|
10
11
|
from .authentication_rule_update_rank import *
|
12
|
+
from .authentication_rule_update_ranks import *
|
11
13
|
from .authorization_exception_rule import *
|
12
14
|
from .authorization_exception_rule_update_rank import *
|
15
|
+
from .authorization_exception_rule_update_ranks import *
|
13
16
|
from .authorization_global_exception_rule import *
|
14
17
|
from .authorization_global_exception_rule_update_rank import *
|
18
|
+
from .authorization_global_exception_rule_update_ranks import *
|
15
19
|
from .authorization_rule import *
|
16
20
|
from .authorization_rule_update_rank import *
|
21
|
+
from .authorization_rule_update_ranks import *
|
17
22
|
from .condition import *
|
18
23
|
from .get_allowed_protocols_tacacs import *
|
19
24
|
from .get_authentication_rule import *
|
@@ -27,6 +32,7 @@ from .get_tacacs_profile import *
|
|
27
32
|
from .get_time_and_date_condition import *
|
28
33
|
from .policy_set import *
|
29
34
|
from .policy_set_update_rank import *
|
35
|
+
from .policy_set_update_ranks import *
|
30
36
|
from .tacacs_command_set import *
|
31
37
|
from .tacacs_profile import *
|
32
38
|
from .time_and_date_condition import *
|