pulumi-ise 0.2.0a1736833585__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. pulumi_ise/__init__.py +458 -0
  2. pulumi_ise/_utilities.py +327 -0
  3. pulumi_ise/config/__init__.py +8 -0
  4. pulumi_ise/config/__init__.pyi +41 -0
  5. pulumi_ise/config/vars.py +57 -0
  6. pulumi_ise/deviceadmin/__init__.py +34 -0
  7. pulumi_ise/deviceadmin/_inputs.py +2517 -0
  8. pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +381 -0
  9. pulumi_ise/deviceadmin/authentication_rule.py +1050 -0
  10. pulumi_ise/deviceadmin/authentication_rule_update_rank.py +271 -0
  11. pulumi_ise/deviceadmin/authorization_exception_rule.py +942 -0
  12. pulumi_ise/deviceadmin/authorization_exception_rule_update_rank.py +271 -0
  13. pulumi_ise/deviceadmin/authorization_global_exception_rule.py +843 -0
  14. pulumi_ise/deviceadmin/authorization_global_exception_rule_update_rank.py +221 -0
  15. pulumi_ise/deviceadmin/authorization_rule.py +942 -0
  16. pulumi_ise/deviceadmin/authorization_rule_update_rank.py +271 -0
  17. pulumi_ise/deviceadmin/condition.py +650 -0
  18. pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +174 -0
  19. pulumi_ise/deviceadmin/get_authentication_rule.py +365 -0
  20. pulumi_ise/deviceadmin/get_authorization_exception_rule.py +337 -0
  21. pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +301 -0
  22. pulumi_ise/deviceadmin/get_authorization_rule.py +337 -0
  23. pulumi_ise/deviceadmin/get_condition.py +245 -0
  24. pulumi_ise/deviceadmin/get_policy_set.py +329 -0
  25. pulumi_ise/deviceadmin/get_tacacs_command_set.py +158 -0
  26. pulumi_ise/deviceadmin/get_tacacs_profile.py +144 -0
  27. pulumi_ise/deviceadmin/get_time_and_date_condition.py +286 -0
  28. pulumi_ise/deviceadmin/outputs.py +3178 -0
  29. pulumi_ise/deviceadmin/policy_set.py +947 -0
  30. pulumi_ise/deviceadmin/policy_set_update_rank.py +221 -0
  31. pulumi_ise/deviceadmin/tacacs_command_set.py +326 -0
  32. pulumi_ise/deviceadmin/tacacs_profile.py +277 -0
  33. pulumi_ise/deviceadmin/time_and_date_condition.py +770 -0
  34. pulumi_ise/identitymanagement/__init__.py +26 -0
  35. pulumi_ise/identitymanagement/_inputs.py +419 -0
  36. pulumi_ise/identitymanagement/active_directory_add_groups.py +483 -0
  37. pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +216 -0
  38. pulumi_ise/identitymanagement/active_directory_join_point.py +1676 -0
  39. pulumi_ise/identitymanagement/certificate_authentication_profile.py +525 -0
  40. pulumi_ise/identitymanagement/endpoint.py +1376 -0
  41. pulumi_ise/identitymanagement/endpoint_identity_group.py +327 -0
  42. pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +215 -0
  43. pulumi_ise/identitymanagement/get_active_directory_join_point.py +558 -0
  44. pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +202 -0
  45. pulumi_ise/identitymanagement/get_endpoint.py +468 -0
  46. pulumi_ise/identitymanagement/get_endpoint_identity_group.py +160 -0
  47. pulumi_ise/identitymanagement/get_identity_source_sequence.py +172 -0
  48. pulumi_ise/identitymanagement/get_internal_user.py +300 -0
  49. pulumi_ise/identitymanagement/get_user_identity_group.py +146 -0
  50. pulumi_ise/identitymanagement/identity_source_sequence.py +376 -0
  51. pulumi_ise/identitymanagement/internal_user.py +830 -0
  52. pulumi_ise/identitymanagement/outputs.py +491 -0
  53. pulumi_ise/identitymanagement/user_identity_group.py +280 -0
  54. pulumi_ise/network/__init__.py +13 -0
  55. pulumi_ise/network/_inputs.py +94 -0
  56. pulumi_ise/network/device.py +2194 -0
  57. pulumi_ise/network/device_group.py +281 -0
  58. pulumi_ise/network/get_device.py +693 -0
  59. pulumi_ise/network/get_device_group.py +146 -0
  60. pulumi_ise/network/outputs.py +120 -0
  61. pulumi_ise/networkaccess/__init__.py +36 -0
  62. pulumi_ise/networkaccess/_inputs.py +2506 -0
  63. pulumi_ise/networkaccess/allowed_protocols.py +3967 -0
  64. pulumi_ise/networkaccess/authentication_rule.py +1050 -0
  65. pulumi_ise/networkaccess/authentication_rule_update_rank.py +271 -0
  66. pulumi_ise/networkaccess/authorization_exception_rule.py +942 -0
  67. pulumi_ise/networkaccess/authorization_exception_rule_update_rank.py +271 -0
  68. pulumi_ise/networkaccess/authorization_global_exception_rule.py +843 -0
  69. pulumi_ise/networkaccess/authorization_global_exception_rule_update_rank.py +221 -0
  70. pulumi_ise/networkaccess/authorization_profile.py +1682 -0
  71. pulumi_ise/networkaccess/authorization_rule.py +942 -0
  72. pulumi_ise/networkaccess/authorization_rule_update_rank.py +271 -0
  73. pulumi_ise/networkaccess/condition.py +650 -0
  74. pulumi_ise/networkaccess/dictionary.py +331 -0
  75. pulumi_ise/networkaccess/downloadable_acl.py +330 -0
  76. pulumi_ise/networkaccess/get_allowed_protocols.py +1182 -0
  77. pulumi_ise/networkaccess/get_authentication_rule.py +365 -0
  78. pulumi_ise/networkaccess/get_authorization_exception_rule.py +337 -0
  79. pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +301 -0
  80. pulumi_ise/networkaccess/get_authorization_profile.py +567 -0
  81. pulumi_ise/networkaccess/get_authorization_rule.py +337 -0
  82. pulumi_ise/networkaccess/get_condition.py +245 -0
  83. pulumi_ise/networkaccess/get_dictionary.py +160 -0
  84. pulumi_ise/networkaccess/get_downloadable_acl.py +160 -0
  85. pulumi_ise/networkaccess/get_policy_set.py +329 -0
  86. pulumi_ise/networkaccess/get_time_and_date_condition.py +286 -0
  87. pulumi_ise/networkaccess/outputs.py +3193 -0
  88. pulumi_ise/networkaccess/policy_set.py +947 -0
  89. pulumi_ise/networkaccess/policy_set_update_rank.py +221 -0
  90. pulumi_ise/networkaccess/time_and_date_condition.py +770 -0
  91. pulumi_ise/provider.py +209 -0
  92. pulumi_ise/pulumi-plugin.json +5 -0
  93. pulumi_ise/py.typed +0 -0
  94. pulumi_ise/system/__init__.py +13 -0
  95. pulumi_ise/system/_inputs.py +79 -0
  96. pulumi_ise/system/get_license_tier_state.py +113 -0
  97. pulumi_ise/system/get_repository.py +202 -0
  98. pulumi_ise/system/license_tier_state.py +189 -0
  99. pulumi_ise/system/outputs.py +83 -0
  100. pulumi_ise/system/repository.py +478 -0
  101. pulumi_ise/trustsec/__init__.py +21 -0
  102. pulumi_ise/trustsec/egress_matrix_cell.py +429 -0
  103. pulumi_ise/trustsec/egress_matrix_cell_default.py +327 -0
  104. pulumi_ise/trustsec/get_egress_matrix_cell.py +182 -0
  105. pulumi_ise/trustsec/get_egress_matrix_cell_default.py +154 -0
  106. pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +216 -0
  107. pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +174 -0
  108. pulumi_ise/trustsec/get_security_group.py +174 -0
  109. pulumi_ise/trustsec/get_security_group_acl.py +174 -0
  110. pulumi_ise/trustsec/get_sxp_domain_filter.py +188 -0
  111. pulumi_ise/trustsec/ip_to_sgt_mapping.py +517 -0
  112. pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +376 -0
  113. pulumi_ise/trustsec/security_group.py +379 -0
  114. pulumi_ise/trustsec/security_group_acl.py +379 -0
  115. pulumi_ise/trustsec/sxp_domain_filter.py +422 -0
  116. pulumi_ise-0.2.0a1736833585.dist-info/METADATA +64 -0
  117. pulumi_ise-0.2.0a1736833585.dist-info/RECORD +119 -0
  118. pulumi_ise-0.2.0a1736833585.dist-info/WHEEL +5 -0
  119. pulumi_ise-0.2.0a1736833585.dist-info/top_level.txt +1 -0
@@ -0,0 +1,26 @@
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
+ from .. import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from .active_directory_add_groups import *
9
+ from .active_directory_join_domain_with_all_nodes import *
10
+ from .active_directory_join_point import *
11
+ from .certificate_authentication_profile import *
12
+ from .endpoint import *
13
+ from .endpoint_identity_group import *
14
+ from .get_active_directory_groups_by_domain import *
15
+ from .get_active_directory_join_point import *
16
+ from .get_certificate_authentication_profile import *
17
+ from .get_endpoint import *
18
+ from .get_endpoint_identity_group import *
19
+ from .get_identity_source_sequence import *
20
+ from .get_internal_user import *
21
+ from .get_user_identity_group import *
22
+ from .identity_source_sequence import *
23
+ from .internal_user import *
24
+ from .user_identity_group import *
25
+ from ._inputs import *
26
+ from . import outputs
@@ -0,0 +1,419 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = [
18
+ 'ActiveDirectoryAddGroupsGroupArgs',
19
+ 'ActiveDirectoryAddGroupsGroupArgsDict',
20
+ 'ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs',
21
+ 'ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgsDict',
22
+ 'ActiveDirectoryJoinPointAttributeArgs',
23
+ 'ActiveDirectoryJoinPointAttributeArgsDict',
24
+ 'ActiveDirectoryJoinPointGroupArgs',
25
+ 'ActiveDirectoryJoinPointGroupArgsDict',
26
+ 'ActiveDirectoryJoinPointRewriteRuleArgs',
27
+ 'ActiveDirectoryJoinPointRewriteRuleArgsDict',
28
+ 'IdentitySourceSequenceIdentitySourceArgs',
29
+ 'IdentitySourceSequenceIdentitySourceArgsDict',
30
+ ]
31
+
32
+ MYPY = False
33
+
34
+ if not MYPY:
35
+ class ActiveDirectoryAddGroupsGroupArgsDict(TypedDict):
36
+ name: pulumi.Input[str]
37
+ """
38
+ Required for each group in the group list with no duplication between groups
39
+ """
40
+ sid: pulumi.Input[str]
41
+ """
42
+ Required for each group in the group list with no duplication between groups
43
+ """
44
+ type: NotRequired[pulumi.Input[str]]
45
+ elif False:
46
+ ActiveDirectoryAddGroupsGroupArgsDict: TypeAlias = Mapping[str, Any]
47
+
48
+ @pulumi.input_type
49
+ class ActiveDirectoryAddGroupsGroupArgs:
50
+ def __init__(__self__, *,
51
+ name: pulumi.Input[str],
52
+ sid: pulumi.Input[str],
53
+ type: Optional[pulumi.Input[str]] = None):
54
+ """
55
+ :param pulumi.Input[str] name: Required for each group in the group list with no duplication between groups
56
+ :param pulumi.Input[str] sid: Required for each group in the group list with no duplication between groups
57
+ """
58
+ pulumi.set(__self__, "name", name)
59
+ pulumi.set(__self__, "sid", sid)
60
+ if type is not None:
61
+ pulumi.set(__self__, "type", type)
62
+
63
+ @property
64
+ @pulumi.getter
65
+ def name(self) -> pulumi.Input[str]:
66
+ """
67
+ Required for each group in the group list with no duplication between groups
68
+ """
69
+ return pulumi.get(self, "name")
70
+
71
+ @name.setter
72
+ def name(self, value: pulumi.Input[str]):
73
+ pulumi.set(self, "name", value)
74
+
75
+ @property
76
+ @pulumi.getter
77
+ def sid(self) -> pulumi.Input[str]:
78
+ """
79
+ Required for each group in the group list with no duplication between groups
80
+ """
81
+ return pulumi.get(self, "sid")
82
+
83
+ @sid.setter
84
+ def sid(self, value: pulumi.Input[str]):
85
+ pulumi.set(self, "sid", value)
86
+
87
+ @property
88
+ @pulumi.getter
89
+ def type(self) -> Optional[pulumi.Input[str]]:
90
+ return pulumi.get(self, "type")
91
+
92
+ @type.setter
93
+ def type(self, value: Optional[pulumi.Input[str]]):
94
+ pulumi.set(self, "type", value)
95
+
96
+
97
+ if not MYPY:
98
+ class ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgsDict(TypedDict):
99
+ name: pulumi.Input[str]
100
+ """
101
+ Additional attribute name
102
+ """
103
+ value: pulumi.Input[str]
104
+ """
105
+ Additional attribute value
106
+ """
107
+ elif False:
108
+ ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgsDict: TypeAlias = Mapping[str, Any]
109
+
110
+ @pulumi.input_type
111
+ class ActiveDirectoryJoinDomainWithAllNodesAdditionalDataArgs:
112
+ def __init__(__self__, *,
113
+ name: pulumi.Input[str],
114
+ value: pulumi.Input[str]):
115
+ """
116
+ :param pulumi.Input[str] name: Additional attribute name
117
+ :param pulumi.Input[str] value: Additional attribute value
118
+ """
119
+ pulumi.set(__self__, "name", name)
120
+ pulumi.set(__self__, "value", value)
121
+
122
+ @property
123
+ @pulumi.getter
124
+ def name(self) -> pulumi.Input[str]:
125
+ """
126
+ Additional attribute name
127
+ """
128
+ return pulumi.get(self, "name")
129
+
130
+ @name.setter
131
+ def name(self, value: pulumi.Input[str]):
132
+ pulumi.set(self, "name", value)
133
+
134
+ @property
135
+ @pulumi.getter
136
+ def value(self) -> pulumi.Input[str]:
137
+ """
138
+ Additional attribute value
139
+ """
140
+ return pulumi.get(self, "value")
141
+
142
+ @value.setter
143
+ def value(self, value: pulumi.Input[str]):
144
+ pulumi.set(self, "value", value)
145
+
146
+
147
+ if not MYPY:
148
+ class ActiveDirectoryJoinPointAttributeArgsDict(TypedDict):
149
+ default_value: pulumi.Input[str]
150
+ """
151
+ Required for each attribute in the attribute list. Can contain an empty string.
152
+ """
153
+ internal_name: pulumi.Input[str]
154
+ """
155
+ Required for each attribute in the attribute list
156
+ """
157
+ name: pulumi.Input[str]
158
+ """
159
+ Required for each attribute in the attribute list with no duplication between attributes
160
+ """
161
+ type: pulumi.Input[str]
162
+ """
163
+ Required for each group in the group list
164
+ - Choices: `STRING`, `IP`, `BOOLEAN`, `INT`, `OCTET_STRING`
165
+ """
166
+ elif False:
167
+ ActiveDirectoryJoinPointAttributeArgsDict: TypeAlias = Mapping[str, Any]
168
+
169
+ @pulumi.input_type
170
+ class ActiveDirectoryJoinPointAttributeArgs:
171
+ def __init__(__self__, *,
172
+ default_value: pulumi.Input[str],
173
+ internal_name: pulumi.Input[str],
174
+ name: pulumi.Input[str],
175
+ type: pulumi.Input[str]):
176
+ """
177
+ :param pulumi.Input[str] default_value: Required for each attribute in the attribute list. Can contain an empty string.
178
+ :param pulumi.Input[str] internal_name: Required for each attribute in the attribute list
179
+ :param pulumi.Input[str] name: Required for each attribute in the attribute list with no duplication between attributes
180
+ :param pulumi.Input[str] type: Required for each group in the group list
181
+ - Choices: `STRING`, `IP`, `BOOLEAN`, `INT`, `OCTET_STRING`
182
+ """
183
+ pulumi.set(__self__, "default_value", default_value)
184
+ pulumi.set(__self__, "internal_name", internal_name)
185
+ pulumi.set(__self__, "name", name)
186
+ pulumi.set(__self__, "type", type)
187
+
188
+ @property
189
+ @pulumi.getter(name="defaultValue")
190
+ def default_value(self) -> pulumi.Input[str]:
191
+ """
192
+ Required for each attribute in the attribute list. Can contain an empty string.
193
+ """
194
+ return pulumi.get(self, "default_value")
195
+
196
+ @default_value.setter
197
+ def default_value(self, value: pulumi.Input[str]):
198
+ pulumi.set(self, "default_value", value)
199
+
200
+ @property
201
+ @pulumi.getter(name="internalName")
202
+ def internal_name(self) -> pulumi.Input[str]:
203
+ """
204
+ Required for each attribute in the attribute list
205
+ """
206
+ return pulumi.get(self, "internal_name")
207
+
208
+ @internal_name.setter
209
+ def internal_name(self, value: pulumi.Input[str]):
210
+ pulumi.set(self, "internal_name", value)
211
+
212
+ @property
213
+ @pulumi.getter
214
+ def name(self) -> pulumi.Input[str]:
215
+ """
216
+ Required for each attribute in the attribute list with no duplication between attributes
217
+ """
218
+ return pulumi.get(self, "name")
219
+
220
+ @name.setter
221
+ def name(self, value: pulumi.Input[str]):
222
+ pulumi.set(self, "name", value)
223
+
224
+ @property
225
+ @pulumi.getter
226
+ def type(self) -> pulumi.Input[str]:
227
+ """
228
+ Required for each group in the group list
229
+ - Choices: `STRING`, `IP`, `BOOLEAN`, `INT`, `OCTET_STRING`
230
+ """
231
+ return pulumi.get(self, "type")
232
+
233
+ @type.setter
234
+ def type(self, value: pulumi.Input[str]):
235
+ pulumi.set(self, "type", value)
236
+
237
+
238
+ if not MYPY:
239
+ class ActiveDirectoryJoinPointGroupArgsDict(TypedDict):
240
+ name: pulumi.Input[str]
241
+ """
242
+ Required for each group in the group list with no duplication between groups
243
+ """
244
+ sid: pulumi.Input[str]
245
+ """
246
+ Required for each group in the group list with no duplication between groups
247
+ """
248
+ type: NotRequired[pulumi.Input[str]]
249
+ elif False:
250
+ ActiveDirectoryJoinPointGroupArgsDict: TypeAlias = Mapping[str, Any]
251
+
252
+ @pulumi.input_type
253
+ class ActiveDirectoryJoinPointGroupArgs:
254
+ def __init__(__self__, *,
255
+ name: pulumi.Input[str],
256
+ sid: pulumi.Input[str],
257
+ type: Optional[pulumi.Input[str]] = None):
258
+ """
259
+ :param pulumi.Input[str] name: Required for each group in the group list with no duplication between groups
260
+ :param pulumi.Input[str] sid: Required for each group in the group list with no duplication between groups
261
+ """
262
+ pulumi.set(__self__, "name", name)
263
+ pulumi.set(__self__, "sid", sid)
264
+ if type is not None:
265
+ pulumi.set(__self__, "type", type)
266
+
267
+ @property
268
+ @pulumi.getter
269
+ def name(self) -> pulumi.Input[str]:
270
+ """
271
+ Required for each group in the group list with no duplication between groups
272
+ """
273
+ return pulumi.get(self, "name")
274
+
275
+ @name.setter
276
+ def name(self, value: pulumi.Input[str]):
277
+ pulumi.set(self, "name", value)
278
+
279
+ @property
280
+ @pulumi.getter
281
+ def sid(self) -> pulumi.Input[str]:
282
+ """
283
+ Required for each group in the group list with no duplication between groups
284
+ """
285
+ return pulumi.get(self, "sid")
286
+
287
+ @sid.setter
288
+ def sid(self, value: pulumi.Input[str]):
289
+ pulumi.set(self, "sid", value)
290
+
291
+ @property
292
+ @pulumi.getter
293
+ def type(self) -> Optional[pulumi.Input[str]]:
294
+ return pulumi.get(self, "type")
295
+
296
+ @type.setter
297
+ def type(self, value: Optional[pulumi.Input[str]]):
298
+ pulumi.set(self, "type", value)
299
+
300
+
301
+ if not MYPY:
302
+ class ActiveDirectoryJoinPointRewriteRuleArgsDict(TypedDict):
303
+ rewrite_match: pulumi.Input[str]
304
+ """
305
+ Required for each rule in the list with no duplication between rules
306
+ """
307
+ rewrite_result: pulumi.Input[str]
308
+ """
309
+ Required for each rule in the list
310
+ """
311
+ row_id: pulumi.Input[str]
312
+ """
313
+ Required for each rule in the list in serial order
314
+ """
315
+ elif False:
316
+ ActiveDirectoryJoinPointRewriteRuleArgsDict: TypeAlias = Mapping[str, Any]
317
+
318
+ @pulumi.input_type
319
+ class ActiveDirectoryJoinPointRewriteRuleArgs:
320
+ def __init__(__self__, *,
321
+ rewrite_match: pulumi.Input[str],
322
+ rewrite_result: pulumi.Input[str],
323
+ row_id: pulumi.Input[str]):
324
+ """
325
+ :param pulumi.Input[str] rewrite_match: Required for each rule in the list with no duplication between rules
326
+ :param pulumi.Input[str] rewrite_result: Required for each rule in the list
327
+ :param pulumi.Input[str] row_id: Required for each rule in the list in serial order
328
+ """
329
+ pulumi.set(__self__, "rewrite_match", rewrite_match)
330
+ pulumi.set(__self__, "rewrite_result", rewrite_result)
331
+ pulumi.set(__self__, "row_id", row_id)
332
+
333
+ @property
334
+ @pulumi.getter(name="rewriteMatch")
335
+ def rewrite_match(self) -> pulumi.Input[str]:
336
+ """
337
+ Required for each rule in the list with no duplication between rules
338
+ """
339
+ return pulumi.get(self, "rewrite_match")
340
+
341
+ @rewrite_match.setter
342
+ def rewrite_match(self, value: pulumi.Input[str]):
343
+ pulumi.set(self, "rewrite_match", value)
344
+
345
+ @property
346
+ @pulumi.getter(name="rewriteResult")
347
+ def rewrite_result(self) -> pulumi.Input[str]:
348
+ """
349
+ Required for each rule in the list
350
+ """
351
+ return pulumi.get(self, "rewrite_result")
352
+
353
+ @rewrite_result.setter
354
+ def rewrite_result(self, value: pulumi.Input[str]):
355
+ pulumi.set(self, "rewrite_result", value)
356
+
357
+ @property
358
+ @pulumi.getter(name="rowId")
359
+ def row_id(self) -> pulumi.Input[str]:
360
+ """
361
+ Required for each rule in the list in serial order
362
+ """
363
+ return pulumi.get(self, "row_id")
364
+
365
+ @row_id.setter
366
+ def row_id(self, value: pulumi.Input[str]):
367
+ pulumi.set(self, "row_id", value)
368
+
369
+
370
+ if not MYPY:
371
+ class IdentitySourceSequenceIdentitySourceArgsDict(TypedDict):
372
+ name: pulumi.Input[str]
373
+ """
374
+ Name of the identity source
375
+ """
376
+ order: pulumi.Input[int]
377
+ """
378
+ Order of the identity source in the sequence
379
+ """
380
+ elif False:
381
+ IdentitySourceSequenceIdentitySourceArgsDict: TypeAlias = Mapping[str, Any]
382
+
383
+ @pulumi.input_type
384
+ class IdentitySourceSequenceIdentitySourceArgs:
385
+ def __init__(__self__, *,
386
+ name: pulumi.Input[str],
387
+ order: pulumi.Input[int]):
388
+ """
389
+ :param pulumi.Input[str] name: Name of the identity source
390
+ :param pulumi.Input[int] order: Order of the identity source in the sequence
391
+ """
392
+ pulumi.set(__self__, "name", name)
393
+ pulumi.set(__self__, "order", order)
394
+
395
+ @property
396
+ @pulumi.getter
397
+ def name(self) -> pulumi.Input[str]:
398
+ """
399
+ Name of the identity source
400
+ """
401
+ return pulumi.get(self, "name")
402
+
403
+ @name.setter
404
+ def name(self, value: pulumi.Input[str]):
405
+ pulumi.set(self, "name", value)
406
+
407
+ @property
408
+ @pulumi.getter
409
+ def order(self) -> pulumi.Input[int]:
410
+ """
411
+ Order of the identity source in the sequence
412
+ """
413
+ return pulumi.get(self, "order")
414
+
415
+ @order.setter
416
+ def order(self, value: pulumi.Input[int]):
417
+ pulumi.set(self, "order", value)
418
+
419
+