pulumi-ise 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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.0.dist-info/METADATA +64 -0
  117. pulumi_ise-0.2.0.dist-info/RECORD +119 -0
  118. pulumi_ise-0.2.0.dist-info/WHEEL +5 -0
  119. pulumi_ise-0.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,422 @@
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__ = ['SxpDomainFilterArgs', 'SxpDomainFilter']
18
+
19
+ @pulumi.input_type
20
+ class SxpDomainFilterArgs:
21
+ def __init__(__self__, *,
22
+ domains: pulumi.Input[str],
23
+ description: Optional[pulumi.Input[str]] = None,
24
+ name: Optional[pulumi.Input[str]] = None,
25
+ sgt: Optional[pulumi.Input[str]] = None,
26
+ subnet: Optional[pulumi.Input[str]] = None,
27
+ vn: Optional[pulumi.Input[str]] = None):
28
+ """
29
+ The set of arguments for constructing a SxpDomainFilter resource.
30
+ :param pulumi.Input[str] domains: List of SXP Domains, separated with comma
31
+ :param pulumi.Input[str] description: Description
32
+ :param pulumi.Input[str] name: Resource name
33
+ :param pulumi.Input[str] sgt: SGT name or ID. At least one of subnet or sgt or vn should be defined
34
+ :param pulumi.Input[str] subnet: Subnet for filter policy (hostname is not supported). At least one of subnet or sgt or vn should be defined
35
+ :param pulumi.Input[str] vn: Virtual Network. At least one of subnet or sgt or vn should be defined
36
+ """
37
+ pulumi.set(__self__, "domains", domains)
38
+ if description is not None:
39
+ pulumi.set(__self__, "description", description)
40
+ if name is not None:
41
+ pulumi.set(__self__, "name", name)
42
+ if sgt is not None:
43
+ pulumi.set(__self__, "sgt", sgt)
44
+ if subnet is not None:
45
+ pulumi.set(__self__, "subnet", subnet)
46
+ if vn is not None:
47
+ pulumi.set(__self__, "vn", vn)
48
+
49
+ @property
50
+ @pulumi.getter
51
+ def domains(self) -> pulumi.Input[str]:
52
+ """
53
+ List of SXP Domains, separated with comma
54
+ """
55
+ return pulumi.get(self, "domains")
56
+
57
+ @domains.setter
58
+ def domains(self, value: pulumi.Input[str]):
59
+ pulumi.set(self, "domains", value)
60
+
61
+ @property
62
+ @pulumi.getter
63
+ def description(self) -> Optional[pulumi.Input[str]]:
64
+ """
65
+ Description
66
+ """
67
+ return pulumi.get(self, "description")
68
+
69
+ @description.setter
70
+ def description(self, value: Optional[pulumi.Input[str]]):
71
+ pulumi.set(self, "description", value)
72
+
73
+ @property
74
+ @pulumi.getter
75
+ def name(self) -> Optional[pulumi.Input[str]]:
76
+ """
77
+ Resource name
78
+ """
79
+ return pulumi.get(self, "name")
80
+
81
+ @name.setter
82
+ def name(self, value: Optional[pulumi.Input[str]]):
83
+ pulumi.set(self, "name", value)
84
+
85
+ @property
86
+ @pulumi.getter
87
+ def sgt(self) -> Optional[pulumi.Input[str]]:
88
+ """
89
+ SGT name or ID. At least one of subnet or sgt or vn should be defined
90
+ """
91
+ return pulumi.get(self, "sgt")
92
+
93
+ @sgt.setter
94
+ def sgt(self, value: Optional[pulumi.Input[str]]):
95
+ pulumi.set(self, "sgt", value)
96
+
97
+ @property
98
+ @pulumi.getter
99
+ def subnet(self) -> Optional[pulumi.Input[str]]:
100
+ """
101
+ Subnet for filter policy (hostname is not supported). At least one of subnet or sgt or vn should be defined
102
+ """
103
+ return pulumi.get(self, "subnet")
104
+
105
+ @subnet.setter
106
+ def subnet(self, value: Optional[pulumi.Input[str]]):
107
+ pulumi.set(self, "subnet", value)
108
+
109
+ @property
110
+ @pulumi.getter
111
+ def vn(self) -> Optional[pulumi.Input[str]]:
112
+ """
113
+ Virtual Network. At least one of subnet or sgt or vn should be defined
114
+ """
115
+ return pulumi.get(self, "vn")
116
+
117
+ @vn.setter
118
+ def vn(self, value: Optional[pulumi.Input[str]]):
119
+ pulumi.set(self, "vn", value)
120
+
121
+
122
+ @pulumi.input_type
123
+ class _SxpDomainFilterState:
124
+ def __init__(__self__, *,
125
+ description: Optional[pulumi.Input[str]] = None,
126
+ domains: Optional[pulumi.Input[str]] = None,
127
+ name: Optional[pulumi.Input[str]] = None,
128
+ sgt: Optional[pulumi.Input[str]] = None,
129
+ subnet: Optional[pulumi.Input[str]] = None,
130
+ vn: Optional[pulumi.Input[str]] = None):
131
+ """
132
+ Input properties used for looking up and filtering SxpDomainFilter resources.
133
+ :param pulumi.Input[str] description: Description
134
+ :param pulumi.Input[str] domains: List of SXP Domains, separated with comma
135
+ :param pulumi.Input[str] name: Resource name
136
+ :param pulumi.Input[str] sgt: SGT name or ID. At least one of subnet or sgt or vn should be defined
137
+ :param pulumi.Input[str] subnet: Subnet for filter policy (hostname is not supported). At least one of subnet or sgt or vn should be defined
138
+ :param pulumi.Input[str] vn: Virtual Network. At least one of subnet or sgt or vn should be defined
139
+ """
140
+ if description is not None:
141
+ pulumi.set(__self__, "description", description)
142
+ if domains is not None:
143
+ pulumi.set(__self__, "domains", domains)
144
+ if name is not None:
145
+ pulumi.set(__self__, "name", name)
146
+ if sgt is not None:
147
+ pulumi.set(__self__, "sgt", sgt)
148
+ if subnet is not None:
149
+ pulumi.set(__self__, "subnet", subnet)
150
+ if vn is not None:
151
+ pulumi.set(__self__, "vn", vn)
152
+
153
+ @property
154
+ @pulumi.getter
155
+ def description(self) -> Optional[pulumi.Input[str]]:
156
+ """
157
+ Description
158
+ """
159
+ return pulumi.get(self, "description")
160
+
161
+ @description.setter
162
+ def description(self, value: Optional[pulumi.Input[str]]):
163
+ pulumi.set(self, "description", value)
164
+
165
+ @property
166
+ @pulumi.getter
167
+ def domains(self) -> Optional[pulumi.Input[str]]:
168
+ """
169
+ List of SXP Domains, separated with comma
170
+ """
171
+ return pulumi.get(self, "domains")
172
+
173
+ @domains.setter
174
+ def domains(self, value: Optional[pulumi.Input[str]]):
175
+ pulumi.set(self, "domains", value)
176
+
177
+ @property
178
+ @pulumi.getter
179
+ def name(self) -> Optional[pulumi.Input[str]]:
180
+ """
181
+ Resource name
182
+ """
183
+ return pulumi.get(self, "name")
184
+
185
+ @name.setter
186
+ def name(self, value: Optional[pulumi.Input[str]]):
187
+ pulumi.set(self, "name", value)
188
+
189
+ @property
190
+ @pulumi.getter
191
+ def sgt(self) -> Optional[pulumi.Input[str]]:
192
+ """
193
+ SGT name or ID. At least one of subnet or sgt or vn should be defined
194
+ """
195
+ return pulumi.get(self, "sgt")
196
+
197
+ @sgt.setter
198
+ def sgt(self, value: Optional[pulumi.Input[str]]):
199
+ pulumi.set(self, "sgt", value)
200
+
201
+ @property
202
+ @pulumi.getter
203
+ def subnet(self) -> Optional[pulumi.Input[str]]:
204
+ """
205
+ Subnet for filter policy (hostname is not supported). At least one of subnet or sgt or vn should be defined
206
+ """
207
+ return pulumi.get(self, "subnet")
208
+
209
+ @subnet.setter
210
+ def subnet(self, value: Optional[pulumi.Input[str]]):
211
+ pulumi.set(self, "subnet", value)
212
+
213
+ @property
214
+ @pulumi.getter
215
+ def vn(self) -> Optional[pulumi.Input[str]]:
216
+ """
217
+ Virtual Network. At least one of subnet or sgt or vn should be defined
218
+ """
219
+ return pulumi.get(self, "vn")
220
+
221
+ @vn.setter
222
+ def vn(self, value: Optional[pulumi.Input[str]]):
223
+ pulumi.set(self, "vn", value)
224
+
225
+
226
+ class SxpDomainFilter(pulumi.CustomResource):
227
+ @overload
228
+ def __init__(__self__,
229
+ resource_name: str,
230
+ opts: Optional[pulumi.ResourceOptions] = None,
231
+ description: Optional[pulumi.Input[str]] = None,
232
+ domains: Optional[pulumi.Input[str]] = None,
233
+ name: Optional[pulumi.Input[str]] = None,
234
+ sgt: Optional[pulumi.Input[str]] = None,
235
+ subnet: Optional[pulumi.Input[str]] = None,
236
+ vn: Optional[pulumi.Input[str]] = None,
237
+ __props__=None):
238
+ """
239
+ This resource can manage a SXP Domain Filter.
240
+
241
+ ## Example Usage
242
+
243
+ ```python
244
+ import pulumi
245
+ import pulumi_ise as ise
246
+
247
+ example = ise.trustsec.SxpDomainFilter("example",
248
+ subnet="1.0.0.0/24",
249
+ vn="VN1",
250
+ domains="default")
251
+ ```
252
+
253
+ ## Import
254
+
255
+ ```sh
256
+ $ pulumi import ise:trustsec/sxpDomainFilter:SxpDomainFilter example "76d24097-41c4-4558-a4d0-a8c07ac08470"
257
+ ```
258
+
259
+ :param str resource_name: The name of the resource.
260
+ :param pulumi.ResourceOptions opts: Options for the resource.
261
+ :param pulumi.Input[str] description: Description
262
+ :param pulumi.Input[str] domains: List of SXP Domains, separated with comma
263
+ :param pulumi.Input[str] name: Resource name
264
+ :param pulumi.Input[str] sgt: SGT name or ID. At least one of subnet or sgt or vn should be defined
265
+ :param pulumi.Input[str] subnet: Subnet for filter policy (hostname is not supported). At least one of subnet or sgt or vn should be defined
266
+ :param pulumi.Input[str] vn: Virtual Network. At least one of subnet or sgt or vn should be defined
267
+ """
268
+ ...
269
+ @overload
270
+ def __init__(__self__,
271
+ resource_name: str,
272
+ args: SxpDomainFilterArgs,
273
+ opts: Optional[pulumi.ResourceOptions] = None):
274
+ """
275
+ This resource can manage a SXP Domain Filter.
276
+
277
+ ## Example Usage
278
+
279
+ ```python
280
+ import pulumi
281
+ import pulumi_ise as ise
282
+
283
+ example = ise.trustsec.SxpDomainFilter("example",
284
+ subnet="1.0.0.0/24",
285
+ vn="VN1",
286
+ domains="default")
287
+ ```
288
+
289
+ ## Import
290
+
291
+ ```sh
292
+ $ pulumi import ise:trustsec/sxpDomainFilter:SxpDomainFilter example "76d24097-41c4-4558-a4d0-a8c07ac08470"
293
+ ```
294
+
295
+ :param str resource_name: The name of the resource.
296
+ :param SxpDomainFilterArgs args: The arguments to use to populate this resource's properties.
297
+ :param pulumi.ResourceOptions opts: Options for the resource.
298
+ """
299
+ ...
300
+ def __init__(__self__, resource_name: str, *args, **kwargs):
301
+ resource_args, opts = _utilities.get_resource_args_opts(SxpDomainFilterArgs, pulumi.ResourceOptions, *args, **kwargs)
302
+ if resource_args is not None:
303
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
304
+ else:
305
+ __self__._internal_init(resource_name, *args, **kwargs)
306
+
307
+ def _internal_init(__self__,
308
+ resource_name: str,
309
+ opts: Optional[pulumi.ResourceOptions] = None,
310
+ description: Optional[pulumi.Input[str]] = None,
311
+ domains: Optional[pulumi.Input[str]] = None,
312
+ name: Optional[pulumi.Input[str]] = None,
313
+ sgt: Optional[pulumi.Input[str]] = None,
314
+ subnet: Optional[pulumi.Input[str]] = None,
315
+ vn: Optional[pulumi.Input[str]] = None,
316
+ __props__=None):
317
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
318
+ if not isinstance(opts, pulumi.ResourceOptions):
319
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
320
+ if opts.id is None:
321
+ if __props__ is not None:
322
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
323
+ __props__ = SxpDomainFilterArgs.__new__(SxpDomainFilterArgs)
324
+
325
+ __props__.__dict__["description"] = description
326
+ if domains is None and not opts.urn:
327
+ raise TypeError("Missing required property 'domains'")
328
+ __props__.__dict__["domains"] = domains
329
+ __props__.__dict__["name"] = name
330
+ __props__.__dict__["sgt"] = sgt
331
+ __props__.__dict__["subnet"] = subnet
332
+ __props__.__dict__["vn"] = vn
333
+ super(SxpDomainFilter, __self__).__init__(
334
+ 'ise:trustsec/sxpDomainFilter:SxpDomainFilter',
335
+ resource_name,
336
+ __props__,
337
+ opts)
338
+
339
+ @staticmethod
340
+ def get(resource_name: str,
341
+ id: pulumi.Input[str],
342
+ opts: Optional[pulumi.ResourceOptions] = None,
343
+ description: Optional[pulumi.Input[str]] = None,
344
+ domains: Optional[pulumi.Input[str]] = None,
345
+ name: Optional[pulumi.Input[str]] = None,
346
+ sgt: Optional[pulumi.Input[str]] = None,
347
+ subnet: Optional[pulumi.Input[str]] = None,
348
+ vn: Optional[pulumi.Input[str]] = None) -> 'SxpDomainFilter':
349
+ """
350
+ Get an existing SxpDomainFilter resource's state with the given name, id, and optional extra
351
+ properties used to qualify the lookup.
352
+
353
+ :param str resource_name: The unique name of the resulting resource.
354
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
355
+ :param pulumi.ResourceOptions opts: Options for the resource.
356
+ :param pulumi.Input[str] description: Description
357
+ :param pulumi.Input[str] domains: List of SXP Domains, separated with comma
358
+ :param pulumi.Input[str] name: Resource name
359
+ :param pulumi.Input[str] sgt: SGT name or ID. At least one of subnet or sgt or vn should be defined
360
+ :param pulumi.Input[str] subnet: Subnet for filter policy (hostname is not supported). At least one of subnet or sgt or vn should be defined
361
+ :param pulumi.Input[str] vn: Virtual Network. At least one of subnet or sgt or vn should be defined
362
+ """
363
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
364
+
365
+ __props__ = _SxpDomainFilterState.__new__(_SxpDomainFilterState)
366
+
367
+ __props__.__dict__["description"] = description
368
+ __props__.__dict__["domains"] = domains
369
+ __props__.__dict__["name"] = name
370
+ __props__.__dict__["sgt"] = sgt
371
+ __props__.__dict__["subnet"] = subnet
372
+ __props__.__dict__["vn"] = vn
373
+ return SxpDomainFilter(resource_name, opts=opts, __props__=__props__)
374
+
375
+ @property
376
+ @pulumi.getter
377
+ def description(self) -> pulumi.Output[Optional[str]]:
378
+ """
379
+ Description
380
+ """
381
+ return pulumi.get(self, "description")
382
+
383
+ @property
384
+ @pulumi.getter
385
+ def domains(self) -> pulumi.Output[str]:
386
+ """
387
+ List of SXP Domains, separated with comma
388
+ """
389
+ return pulumi.get(self, "domains")
390
+
391
+ @property
392
+ @pulumi.getter
393
+ def name(self) -> pulumi.Output[str]:
394
+ """
395
+ Resource name
396
+ """
397
+ return pulumi.get(self, "name")
398
+
399
+ @property
400
+ @pulumi.getter
401
+ def sgt(self) -> pulumi.Output[Optional[str]]:
402
+ """
403
+ SGT name or ID. At least one of subnet or sgt or vn should be defined
404
+ """
405
+ return pulumi.get(self, "sgt")
406
+
407
+ @property
408
+ @pulumi.getter
409
+ def subnet(self) -> pulumi.Output[Optional[str]]:
410
+ """
411
+ Subnet for filter policy (hostname is not supported). At least one of subnet or sgt or vn should be defined
412
+ """
413
+ return pulumi.get(self, "subnet")
414
+
415
+ @property
416
+ @pulumi.getter
417
+ def vn(self) -> pulumi.Output[Optional[str]]:
418
+ """
419
+ Virtual Network. At least one of subnet or sgt or vn should be defined
420
+ """
421
+ return pulumi.get(self, "vn")
422
+
@@ -0,0 +1,64 @@
1
+ Metadata-Version: 2.2
2
+ Name: pulumi_ise
3
+ Version: 0.2.0
4
+ Summary: A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.
5
+ License: Apache-2.0
6
+ Project-URL: Homepage, https://pulumi.com
7
+ Project-URL: Repository, https://github.com/pulumi/pulumi-ise
8
+ Keywords: pulumi,ise,category/network
9
+ Requires-Python: >=3.9
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: parver>=0.2.1
12
+ Requires-Dist: pulumi<4.0.0,>=3.142.0
13
+ Requires-Dist: semver>=2.8.1
14
+ Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
15
+
16
+ # Cisco ISE Resource Provider
17
+
18
+ A Pulumi package for managing resources on a [Cisco ISE](https://www.pulumi.com/registry/packages/ise/) (Identity Service Engine) instance.
19
+
20
+ ## Installing
21
+
22
+ This package is available for several languages/platforms:
23
+
24
+ ### Node.js (JavaScript/TypeScript)
25
+
26
+ To use from JavaScript or TypeScript in Node.js, install using either `npm`:
27
+
28
+ ```bash
29
+ npm install @pulumi/ise
30
+ ```
31
+
32
+ or `yarn`:
33
+
34
+ ```bash
35
+ yarn add @pulumi/ise
36
+ ```
37
+
38
+ ### Python
39
+
40
+ To use from Python, install using `pip`:
41
+
42
+ ```bash
43
+ pip install pulumi_ise
44
+ ```
45
+
46
+ ### Go
47
+
48
+ To use from Go, use `go get` to grab the latest version of the library:
49
+
50
+ ```bash
51
+ go get github.com/pulumi/pulumi-ise/sdk/go/...
52
+ ```
53
+
54
+ ### .NET
55
+
56
+ To use from .NET, install using `dotnet add package`:
57
+
58
+ ```bash
59
+ dotnet add package Pulumi.Ise
60
+ ```
61
+
62
+ ## Reference
63
+
64
+ For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/ise/api-docs/).
@@ -0,0 +1,119 @@
1
+ pulumi_ise/__init__.py,sha256=lIoniHeysJsYu8DofXuCLfAYE9wlO26HcaCZ8XkLNT8,12432
2
+ pulumi_ise/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
3
+ pulumi_ise/provider.py,sha256=Hsk3JqeyK1R8ScoD6jPWleYLmms4jKrPBUCUAV82Be8,9694
4
+ pulumi_ise/pulumi-plugin.json,sha256=uLafaSx3fX28iRolR60o0amGkgcO2zPk9JBTRTRrlE4,62
5
+ pulumi_ise/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ pulumi_ise/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
7
+ pulumi_ise/config/__init__.pyi,sha256=tlOr3dPKX4Au2ZhgAqiaBcjddI-d2hp_39yEvDzLnec,1185
8
+ pulumi_ise/config/vars.py,sha256=k0PQxZ55OqN9DsC4bwofISXFxbAglWqDv1Q1gNW25LQ,1766
9
+ pulumi_ise/deviceadmin/__init__.py,sha256=AIsRP3gFOPld6A5CSrJqDfwbrxnaflVkPjS7slyk-lw,1320
10
+ pulumi_ise/deviceadmin/_inputs.py,sha256=zQ3k6OccKjh4Z1yGiZ2ErDyertNtejLLtKvFxSsqWFg,101803
11
+ pulumi_ise/deviceadmin/allowed_protocols_tacacs.py,sha256=hh0zjzVFKSF0mPKFijuaUQ861vgcFuNqgXGm0YUXhDM,14258
12
+ pulumi_ise/deviceadmin/authentication_rule.py,sha256=fZpzizGay16T-mM1bXRcZhVdFu9XgEH8-tcLhlLRbt4,50910
13
+ pulumi_ise/deviceadmin/authentication_rule_update_rank.py,sha256=lBJ0HK1u6DVJs7wqy8VnYko5amtUz7__ZYaPk77PaWk,11392
14
+ pulumi_ise/deviceadmin/authorization_exception_rule.py,sha256=7raqbrFtp5nXQaVLI2XeeiUw9mFo7eglTPyy_AjlLBs,45626
15
+ pulumi_ise/deviceadmin/authorization_exception_rule_update_rank.py,sha256=1wTXQ-CEgzpPtczQobjjes-IjncUIORg33ZBD8-di5k,11667
16
+ pulumi_ise/deviceadmin/authorization_global_exception_rule.py,sha256=i9lav8E6KerqEnJxnnIC859dJl0C8SeHzYdF1wyqPN0,42014
17
+ pulumi_ise/deviceadmin/authorization_global_exception_rule_update_rank.py,sha256=goE1l18cSkWzLYhlCp4dqgldN17mrU-gq6AQhpzUtcA,9878
18
+ pulumi_ise/deviceadmin/authorization_rule.py,sha256=MKbmXuFTtBryFMdp9quxoE7RhEDBu4r5OjnA27tnDLY,45201
19
+ pulumi_ise/deviceadmin/authorization_rule_update_rank.py,sha256=UFNRaKLslOVgfqkcNU3GBTkD--ryvBdC4rBnO-XTRBQ,11359
20
+ pulumi_ise/deviceadmin/condition.py,sha256=aUDxr6hGOwo1i3ipSLJwbGtD7vTH6dTKzScQLBVLPSE,29127
21
+ pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py,sha256=5_Xdow4WF1z3NAZpaZe67PXyP4q2DvytIpke4Qgi6IU,6437
22
+ pulumi_ise/deviceadmin/get_authentication_rule.py,sha256=QdiqT41UuzQvM8JoPnhEYs_psUt50r0gMXRlJIC7_VE,15913
23
+ pulumi_ise/deviceadmin/get_authorization_exception_rule.py,sha256=PNljzWRkbA0AZyv0jU6YRHPguP8OFqdWEV72FQCzONM,14676
24
+ pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py,sha256=IsuG8L3NdIPhs_U8oM2m0GnElkyS2p9vi1hcjAHyw18,13314
25
+ pulumi_ise/deviceadmin/get_authorization_rule.py,sha256=S25Oys-mYGYE8DWRMUJC1dfRBJYd6-E-lDo6VzD3MP4,14374
26
+ pulumi_ise/deviceadmin/get_condition.py,sha256=p9qUtuXeqO40qj8LGmDYiiggeczjs0eO1ULVsfbLy9M,9213
27
+ pulumi_ise/deviceadmin/get_policy_set.py,sha256=aDHKGib5P8phYP2hOxoDCo-e9uzR2K_k21MKPpY6qJg,13750
28
+ pulumi_ise/deviceadmin/get_tacacs_command_set.py,sha256=6T0gg4h2eac0-qDa3pWzcdd2hJAO8FCLBL-9lZa_HcU,5618
29
+ pulumi_ise/deviceadmin/get_tacacs_profile.py,sha256=eJfv4R9hkjZ6tmB6ZvZNnXBos7xAgrXvpOw6kUAubp0,5039
30
+ pulumi_ise/deviceadmin/get_time_and_date_condition.py,sha256=g70m4_VCiNoNhlfgVlYucOb_u33WVkFe_On8jdepgow,11431
31
+ pulumi_ise/deviceadmin/outputs.py,sha256=dUmB1noKzN7Nax3rl4EQGgXtFWlYkYK50dRoUV_8OmI,116672
32
+ pulumi_ise/deviceadmin/policy_set.py,sha256=FxIKYEZV4H9_k7UgZv6g8VARO5gKPDuWbG3CPQjxFxE,44727
33
+ pulumi_ise/deviceadmin/policy_set_update_rank.py,sha256=5d09A4cL_z9WwUWkcJ9YcAuOFqvQhZkoY2DHssXQU5E,9316
34
+ pulumi_ise/deviceadmin/tacacs_command_set.py,sha256=VY-kSLuXEegxuTG6uLg6fKmbIFlbBv9lSPVu0aX0SCk,12604
35
+ pulumi_ise/deviceadmin/tacacs_profile.py,sha256=YZY3y8uDV9Bl_FCw1uLEOhdAGBcJK4_hCuHr6MOpKQo,10663
36
+ pulumi_ise/deviceadmin/time_and_date_condition.py,sha256=3ApIoYg-IL87QsQc0UgKGfPUYMXkqxW85FXUYtsCz-I,32505
37
+ pulumi_ise/identitymanagement/__init__.py,sha256=436wbxcpm3xYxczwGqpE7kKHdE-ytKMS2rkvEwCgsMY,1017
38
+ pulumi_ise/identitymanagement/_inputs.py,sha256=x-1eRBgvY2w3rttfQO-Ud4e-0_vaBcfxpc3naFWiMSE,13594
39
+ pulumi_ise/identitymanagement/active_directory_add_groups.py,sha256=c-5sCctjYzQ9BUWvenQ0yueM5zOkCrcflyR_Jv6hf9o,20450
40
+ pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py,sha256=7p6MQoe3vY9bV2yILljen3xXdZMmGywl99eaCC3jC5g,9838
41
+ pulumi_ise/identitymanagement/active_directory_join_point.py,sha256=Eh7XGDEC2yDAWV9e_Ez3EQrpmyzpmbfFtvmvKFCx0sc,76561
42
+ pulumi_ise/identitymanagement/certificate_authentication_profile.py,sha256=BAjtnYutwn9CSPjcAr13Q2WnCHuEjhaUsw3PlKTL5cI,26855
43
+ pulumi_ise/identitymanagement/endpoint.py,sha256=Xj7OmkOllKzlriRnnJMw2IF3W-o6twtMRUNxrDozS2M,55340
44
+ pulumi_ise/identitymanagement/endpoint_identity_group.py,sha256=XCSdI8bUiS1M_KU81yOWPeWCHrMT-m5pyAmxaX9Iv2I,13120
45
+ pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py,sha256=dWJ6WyI6zVxywy30t8yF7EoR7QiwuG9XVTBy8byiz-0,9133
46
+ pulumi_ise/identitymanagement/get_active_directory_join_point.py,sha256=Zfn4hTlJpD8RaISeUIAMY1JKhIpLcaCRezuDXAXdQ7g,24106
47
+ pulumi_ise/identitymanagement/get_certificate_authentication_profile.py,sha256=WWG_HF8zflhH2F3X5h50gr2iXU7Huy7nQ9y60pdhXCg,8875
48
+ pulumi_ise/identitymanagement/get_endpoint.py,sha256=HGmMwjW19hWi6dTBTeKyaYLNegVxhBbs-OaZ-pAbhLs,18896
49
+ pulumi_ise/identitymanagement/get_endpoint_identity_group.py,sha256=fwpaeLtQ5wRg7E95QXWxYPOuhpeQ8oqSa9YtVdOJV0k,6170
50
+ pulumi_ise/identitymanagement/get_identity_source_sequence.py,sha256=Ecn06n_BMTSGRXjdiorqmY_pO_ncufJGVKP16_NAw-A,7053
51
+ pulumi_ise/identitymanagement/get_internal_user.py,sha256=RI2myAHy-J2L3_gYtpW3aftOTWIgI0Wt5qMhtM5cyYI,11774
52
+ pulumi_ise/identitymanagement/get_user_identity_group.py,sha256=bVvin-trdH1c2YST6dGSdmjMnL9mbFTH9zQXuPkpK48,5054
53
+ pulumi_ise/identitymanagement/identity_source_sequence.py,sha256=A1Ha-AnxOayqAFEs-PoAWN2n6U-RmG6EB1eckj7KZ0c,16945
54
+ pulumi_ise/identitymanagement/internal_user.py,sha256=mAHK7w0nUpanZJtNyEi5BMef9sPs87e0vsRT6gJJrJY,34700
55
+ pulumi_ise/identitymanagement/outputs.py,sha256=r3K9pFPh_hYrGqjqcXMukW_sshky4b9_F-C2nyBFIS8,15069
56
+ pulumi_ise/identitymanagement/user_identity_group.py,sha256=WND5e6KhTJiwcaqJWWoDYDLmDJmlJJOp-fYZ9typq2o,10413
57
+ pulumi_ise/network/__init__.py,sha256=A7om1U6WdiytfTl8KjOtx-2kNSHbuMSSQ48UM0Cycqs,422
58
+ pulumi_ise/network/_inputs.py,sha256=stbpWLL2l6wKCdl2Qi6336mV18pMgYiVgfueJAaDh7Q,2893
59
+ pulumi_ise/network/device.py,sha256=HPnNGs-iMGBsYQpWda1ekL1V7N7_mbbay3kilXxvmbE,112337
60
+ pulumi_ise/network/device_group.py,sha256=2FeJ7z-lPswsRC48Q0y0-eu933Q8ylL3BmoScJx0stY,10527
61
+ pulumi_ise/network/get_device.py,sha256=N1G_HYfeKV2UpFGd693XjHIf7wxRHhRwV4n7RHcXwiI,37059
62
+ pulumi_ise/network/get_device_group.py,sha256=7oQIpkSPFw7_GRPm3jsq6obecWDBCiSS6YHoExUbMSQ,5074
63
+ pulumi_ise/network/outputs.py,sha256=wWpLkgWUE6l_jLvubhGQCJpgg07kxG0ZtqcuWWVhfAM,3627
64
+ pulumi_ise/networkaccess/__init__.py,sha256=wwd4_nnORJBl1thnTma8Q485YbTJYzG7Sf2CyRmgb-I,1372
65
+ pulumi_ise/networkaccess/_inputs.py,sha256=leNNWqiRilxdFUQ7t-zuMw6HoDvf4SQxYEMD7TrD_DQ,104233
66
+ pulumi_ise/networkaccess/allowed_protocols.py,sha256=USbS8I1wP3ovHXY6HylfBH-IHjmyhm8lE1Qzp4UyfeQ,211624
67
+ pulumi_ise/networkaccess/authentication_rule.py,sha256=jB6xGbOM045UHaNOSSm9bg-ZoieWHBliPLAXnuCokv0,50924
68
+ pulumi_ise/networkaccess/authentication_rule_update_rank.py,sha256=nStVZlogn_pqT4fvWyKqqEu-npOjn1q-MKLKUCaQZzE,11406
69
+ pulumi_ise/networkaccess/authorization_exception_rule.py,sha256=WuAjJWZqxYuAG0fw50ACtSLGdTI6otYWrZHUy5yyljg,44949
70
+ pulumi_ise/networkaccess/authorization_exception_rule_update_rank.py,sha256=zDT0c9Sv6Li3FMTpnNPuQ1nVsKavVNNaTEugHxE_AqI,11681
71
+ pulumi_ise/networkaccess/authorization_global_exception_rule.py,sha256=FhyBo6r0R4arnSSd58Wk5iBB63ivG8rbYXp2ofbyvxc,41337
72
+ pulumi_ise/networkaccess/authorization_global_exception_rule_update_rank.py,sha256=_BB7DFfwNXfdJbsUEon7QOZnIAqnEM4abH2PFOztqQA,9892
73
+ pulumi_ise/networkaccess/authorization_profile.py,sha256=1JWVnTW_chGPgNrOQY-GGif6_BiR0TQwXmHEfC0SXnA,76262
74
+ pulumi_ise/networkaccess/authorization_rule.py,sha256=mjGjQS2qCoDv8If23BcjlQCI_mVhtsH-fW4asN6eJfQ,44524
75
+ pulumi_ise/networkaccess/authorization_rule_update_rank.py,sha256=v-xfAy_uMVMKtwF47X0oF64zU1tAmX1Q33vro2MdUZ8,11373
76
+ pulumi_ise/networkaccess/condition.py,sha256=24uY3GpWCQXgV-R5dQY-WLnXKGnlxarb7vpzxph1agk,29187
77
+ pulumi_ise/networkaccess/dictionary.py,sha256=69_XO0ItU__Y7YQd0sCgztnCk5F1cwTnyQP1ZwynHoU,12408
78
+ pulumi_ise/networkaccess/downloadable_acl.py,sha256=y-5itkUJjR6Ra4pasZReEb6oltzHYCkAkg3KjOAyQ8s,11923
79
+ pulumi_ise/networkaccess/get_allowed_protocols.py,sha256=fLvyUVo_2wFaQxiZYu1DbNE0PDE1b7AMib_FSdKAbYc,66198
80
+ pulumi_ise/networkaccess/get_authentication_rule.py,sha256=GAM_Yya2VPWyFObUJOVAh7KGxqpo3-MOXAR8AAKbDBs,15925
81
+ pulumi_ise/networkaccess/get_authorization_exception_rule.py,sha256=IhEYFWtfqRlRrMDz-nnH5sKOeUSZM_Y6lM6ct6jXW_Y,14624
82
+ pulumi_ise/networkaccess/get_authorization_global_exception_rule.py,sha256=8Rfd8h1MaPK7nSpC4-WF9oy9HZ-SXb935a3DvECXod8,13262
83
+ pulumi_ise/networkaccess/get_authorization_profile.py,sha256=D_OBbRKQI7x6cOqe1qiVbJbCx0Vy3JhnmJWXGvFpmEU,25052
84
+ pulumi_ise/networkaccess/get_authorization_rule.py,sha256=Oaa6TXAAVnZmQW_jXrk_IapLbvfQLRby1BRZQGWN8hY,14322
85
+ pulumi_ise/networkaccess/get_condition.py,sha256=hNwQiigG5ZLph4_pASvlulga4M0FWdA-eEoznEMTFUA,9225
86
+ pulumi_ise/networkaccess/get_dictionary.py,sha256=E4BNk7C0RUexGk9kKJ579X35nKlF4cNI2GRAOyUZzgg,5408
87
+ pulumi_ise/networkaccess/get_downloadable_acl.py,sha256=8mHRpIxwympV1Lla2gPVCJ2pp4sFEtnJv9uY8HT__Mk,5381
88
+ pulumi_ise/networkaccess/get_policy_set.py,sha256=b50J05fVtbv0PkLAUDbLmYO0wiSppf83kPlQYJSG8Jg,13762
89
+ pulumi_ise/networkaccess/get_time_and_date_condition.py,sha256=LKp6zdvRsiUeGI2XgCKmYRi4t2xogLpp6l6u6jLsYBQ,11443
90
+ pulumi_ise/networkaccess/outputs.py,sha256=z9TJQEGETg0XNDiAfGWpBw4idUH32OC4g73cQjwwrxM,120848
91
+ pulumi_ise/networkaccess/policy_set.py,sha256=eE1hILyEVGYBBWIYYOE83TrQ8D_caN-6-fuHnrKtgl4,44745
92
+ pulumi_ise/networkaccess/policy_set_update_rank.py,sha256=98rfZGqYun1TesmqnN8I5BlMLN1RwLrAFWJUiplQS_A,9330
93
+ pulumi_ise/networkaccess/time_and_date_condition.py,sha256=tiEXlCV3HtPjsoABxeRn2YlMhnQfRLI4R7y5MnBgH2Y,32519
94
+ pulumi_ise/system/__init__.py,sha256=VpaGfOYvIxEEeP7GsVSL5A6Jaq3gUEHAeUfznUeeKhI,442
95
+ pulumi_ise/system/_inputs.py,sha256=cpr3KkhQ12SkHF7KPULFjaw2zgpJBdjttoi1S9A3bIs,2239
96
+ pulumi_ise/system/get_license_tier_state.py,sha256=9WYlbqRpYmtr7BUDPZvlyvOs6I_HhAoYI4RXUxwsh3E,3705
97
+ pulumi_ise/system/get_repository.py,sha256=kSJSBZD3QvXkW0ZyM9Spms4P8Q55yfHld6jGOOgHUPc,7053
98
+ pulumi_ise/system/license_tier_state.py,sha256=bQ4aAPrpnBBBnUsAA1JOlv1c0IQCwh9EYKBxOqt7fJU,7434
99
+ pulumi_ise/system/outputs.py,sha256=XLT-73u0q2Y-c1B4hM7YbAi1Rl_nFNjiXMNvWNWz5A8,2150
100
+ pulumi_ise/system/repository.py,sha256=E6XfWuMdKEQdKz-z7j1X17Mbb1_vzdRBS3FS2m4gcv4,18414
101
+ pulumi_ise/trustsec/__init__.py,sha256=c2uhgyufWy3Xb3yOLs0iON4jXxAvcZl2a6sSWqDzAAg,787
102
+ pulumi_ise/trustsec/egress_matrix_cell.py,sha256=w4gfnPWyG9XV9FxqvxyhpJtEx9mSmIeZ0IogtR-xME8,18311
103
+ pulumi_ise/trustsec/egress_matrix_cell_default.py,sha256=B5t5Nj6d241AbFglzL7VENvgRPorp_ht9kKzsiEVaX4,13809
104
+ pulumi_ise/trustsec/get_egress_matrix_cell.py,sha256=wRz68tU2jD7pwAj6r2LJgZ69ARsdxHEWusHNG22sTEg,6722
105
+ pulumi_ise/trustsec/get_egress_matrix_cell_default.py,sha256=cefj1QwNkSA6E427VWx7jtAaApscXpQ15SAK36WH4Tw,5664
106
+ pulumi_ise/trustsec/get_ip_to_sgt_mapping.py,sha256=2TEqQCtBrosML3Ju20wYQ61cDu9QvoSG75MwQNFFVbE,7726
107
+ pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py,sha256=TqBp2y2OQfilqFd-r6la95C1EPMNtdmEYDJ-YliQni0,6120
108
+ pulumi_ise/trustsec/get_security_group.py,sha256=mK6WvmHKAUwvxoUxXhGPJBj55lO648Fk408iVpw6hAQ,6027
109
+ pulumi_ise/trustsec/get_security_group_acl.py,sha256=9HwbwJ9_uvjR7BltI5oI_462f4a35VNsfJwZ_OPxuMk,6070
110
+ pulumi_ise/trustsec/get_sxp_domain_filter.py,sha256=YPEinDh_nUTWO8deBVn7xstYuBJHnwlJ-wqQyR0Tsac,6353
111
+ pulumi_ise/trustsec/ip_to_sgt_mapping.py,sha256=jq2z_xCp_Ko9KaIvzCqB932gsEUB1hNIfBNfCukIJiQ,20087
112
+ pulumi_ise/trustsec/ip_to_sgt_mapping_group.py,sha256=4w_mKxTcV-B-VdinBSoO9moks7bVNSQC3ZbZwIVe1bs,13773
113
+ pulumi_ise/trustsec/security_group.py,sha256=kX6QbVtESGrlTptkdSM_aWvHO7UN_34miMFd2NR3XZQ,13750
114
+ pulumi_ise/trustsec/security_group_acl.py,sha256=AQSlzS4v_ejN61iUmBj7YFfGllF9t0N4DVTm0Z6Ampo,13973
115
+ pulumi_ise/trustsec/sxp_domain_filter.py,sha256=KtUA-jgvLJBj9VbeSIQDKkBTDMB1ymocQd9MtQYcXzc,15637
116
+ pulumi_ise-0.2.0.dist-info/METADATA,sha256=_Wix_PS3aXFVlrXpAgYMNnkL6GkT4HOwEaNnZqTtnRQ,1468
117
+ pulumi_ise-0.2.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
118
+ pulumi_ise-0.2.0.dist-info/top_level.txt,sha256=oFNRT2ED37ACpG9aXKjxzIS6O-f9vaDcEci2KQl7KO0,11
119
+ pulumi_ise-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.8.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ pulumi_ise