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.
- pulumi_ise/__init__.py +458 -0
- pulumi_ise/_utilities.py +327 -0
- pulumi_ise/config/__init__.py +8 -0
- pulumi_ise/config/__init__.pyi +41 -0
- pulumi_ise/config/vars.py +57 -0
- pulumi_ise/deviceadmin/__init__.py +34 -0
- pulumi_ise/deviceadmin/_inputs.py +2517 -0
- pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +381 -0
- pulumi_ise/deviceadmin/authentication_rule.py +1050 -0
- pulumi_ise/deviceadmin/authentication_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/authorization_exception_rule.py +942 -0
- pulumi_ise/deviceadmin/authorization_exception_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/authorization_global_exception_rule.py +843 -0
- pulumi_ise/deviceadmin/authorization_global_exception_rule_update_rank.py +221 -0
- pulumi_ise/deviceadmin/authorization_rule.py +942 -0
- pulumi_ise/deviceadmin/authorization_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/condition.py +650 -0
- pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +174 -0
- pulumi_ise/deviceadmin/get_authentication_rule.py +365 -0
- pulumi_ise/deviceadmin/get_authorization_exception_rule.py +337 -0
- pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +301 -0
- pulumi_ise/deviceadmin/get_authorization_rule.py +337 -0
- pulumi_ise/deviceadmin/get_condition.py +245 -0
- pulumi_ise/deviceadmin/get_policy_set.py +329 -0
- pulumi_ise/deviceadmin/get_tacacs_command_set.py +158 -0
- pulumi_ise/deviceadmin/get_tacacs_profile.py +144 -0
- pulumi_ise/deviceadmin/get_time_and_date_condition.py +286 -0
- pulumi_ise/deviceadmin/outputs.py +3178 -0
- pulumi_ise/deviceadmin/policy_set.py +947 -0
- pulumi_ise/deviceadmin/policy_set_update_rank.py +221 -0
- pulumi_ise/deviceadmin/tacacs_command_set.py +326 -0
- pulumi_ise/deviceadmin/tacacs_profile.py +277 -0
- pulumi_ise/deviceadmin/time_and_date_condition.py +770 -0
- pulumi_ise/identitymanagement/__init__.py +26 -0
- pulumi_ise/identitymanagement/_inputs.py +419 -0
- pulumi_ise/identitymanagement/active_directory_add_groups.py +483 -0
- pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +216 -0
- pulumi_ise/identitymanagement/active_directory_join_point.py +1676 -0
- pulumi_ise/identitymanagement/certificate_authentication_profile.py +525 -0
- pulumi_ise/identitymanagement/endpoint.py +1376 -0
- pulumi_ise/identitymanagement/endpoint_identity_group.py +327 -0
- pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +215 -0
- pulumi_ise/identitymanagement/get_active_directory_join_point.py +558 -0
- pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +202 -0
- pulumi_ise/identitymanagement/get_endpoint.py +468 -0
- pulumi_ise/identitymanagement/get_endpoint_identity_group.py +160 -0
- pulumi_ise/identitymanagement/get_identity_source_sequence.py +172 -0
- pulumi_ise/identitymanagement/get_internal_user.py +300 -0
- pulumi_ise/identitymanagement/get_user_identity_group.py +146 -0
- pulumi_ise/identitymanagement/identity_source_sequence.py +376 -0
- pulumi_ise/identitymanagement/internal_user.py +830 -0
- pulumi_ise/identitymanagement/outputs.py +491 -0
- pulumi_ise/identitymanagement/user_identity_group.py +280 -0
- pulumi_ise/network/__init__.py +13 -0
- pulumi_ise/network/_inputs.py +94 -0
- pulumi_ise/network/device.py +2194 -0
- pulumi_ise/network/device_group.py +281 -0
- pulumi_ise/network/get_device.py +693 -0
- pulumi_ise/network/get_device_group.py +146 -0
- pulumi_ise/network/outputs.py +120 -0
- pulumi_ise/networkaccess/__init__.py +36 -0
- pulumi_ise/networkaccess/_inputs.py +2506 -0
- pulumi_ise/networkaccess/allowed_protocols.py +3967 -0
- pulumi_ise/networkaccess/authentication_rule.py +1050 -0
- pulumi_ise/networkaccess/authentication_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/authorization_exception_rule.py +942 -0
- pulumi_ise/networkaccess/authorization_exception_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/authorization_global_exception_rule.py +843 -0
- pulumi_ise/networkaccess/authorization_global_exception_rule_update_rank.py +221 -0
- pulumi_ise/networkaccess/authorization_profile.py +1682 -0
- pulumi_ise/networkaccess/authorization_rule.py +942 -0
- pulumi_ise/networkaccess/authorization_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/condition.py +650 -0
- pulumi_ise/networkaccess/dictionary.py +331 -0
- pulumi_ise/networkaccess/downloadable_acl.py +330 -0
- pulumi_ise/networkaccess/get_allowed_protocols.py +1182 -0
- pulumi_ise/networkaccess/get_authentication_rule.py +365 -0
- pulumi_ise/networkaccess/get_authorization_exception_rule.py +337 -0
- pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +301 -0
- pulumi_ise/networkaccess/get_authorization_profile.py +567 -0
- pulumi_ise/networkaccess/get_authorization_rule.py +337 -0
- pulumi_ise/networkaccess/get_condition.py +245 -0
- pulumi_ise/networkaccess/get_dictionary.py +160 -0
- pulumi_ise/networkaccess/get_downloadable_acl.py +160 -0
- pulumi_ise/networkaccess/get_policy_set.py +329 -0
- pulumi_ise/networkaccess/get_time_and_date_condition.py +286 -0
- pulumi_ise/networkaccess/outputs.py +3193 -0
- pulumi_ise/networkaccess/policy_set.py +947 -0
- pulumi_ise/networkaccess/policy_set_update_rank.py +221 -0
- pulumi_ise/networkaccess/time_and_date_condition.py +770 -0
- pulumi_ise/provider.py +209 -0
- pulumi_ise/pulumi-plugin.json +5 -0
- pulumi_ise/py.typed +0 -0
- pulumi_ise/system/__init__.py +13 -0
- pulumi_ise/system/_inputs.py +79 -0
- pulumi_ise/system/get_license_tier_state.py +113 -0
- pulumi_ise/system/get_repository.py +202 -0
- pulumi_ise/system/license_tier_state.py +189 -0
- pulumi_ise/system/outputs.py +83 -0
- pulumi_ise/system/repository.py +478 -0
- pulumi_ise/trustsec/__init__.py +21 -0
- pulumi_ise/trustsec/egress_matrix_cell.py +429 -0
- pulumi_ise/trustsec/egress_matrix_cell_default.py +327 -0
- pulumi_ise/trustsec/get_egress_matrix_cell.py +182 -0
- pulumi_ise/trustsec/get_egress_matrix_cell_default.py +154 -0
- pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +216 -0
- pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +174 -0
- pulumi_ise/trustsec/get_security_group.py +174 -0
- pulumi_ise/trustsec/get_security_group_acl.py +174 -0
- pulumi_ise/trustsec/get_sxp_domain_filter.py +188 -0
- pulumi_ise/trustsec/ip_to_sgt_mapping.py +517 -0
- pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +376 -0
- pulumi_ise/trustsec/security_group.py +379 -0
- pulumi_ise/trustsec/security_group_acl.py +379 -0
- pulumi_ise/trustsec/sxp_domain_filter.py +422 -0
- pulumi_ise-0.2.0.dist-info/METADATA +64 -0
- pulumi_ise-0.2.0.dist-info/RECORD +119 -0
- pulumi_ise-0.2.0.dist-info/WHEEL +5 -0
- pulumi_ise-0.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,491 @@
|
|
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
|
+
'ActiveDirectoryAddGroupsGroup',
|
19
|
+
'ActiveDirectoryJoinDomainWithAllNodesAdditionalData',
|
20
|
+
'ActiveDirectoryJoinPointAttribute',
|
21
|
+
'ActiveDirectoryJoinPointGroup',
|
22
|
+
'ActiveDirectoryJoinPointRewriteRule',
|
23
|
+
'IdentitySourceSequenceIdentitySource',
|
24
|
+
'GetActiveDirectoryGroupsByDomainGroupResult',
|
25
|
+
'GetActiveDirectoryJoinPointAttributeResult',
|
26
|
+
'GetActiveDirectoryJoinPointGroupResult',
|
27
|
+
'GetActiveDirectoryJoinPointRewriteRuleResult',
|
28
|
+
'GetIdentitySourceSequenceIdentitySourceResult',
|
29
|
+
]
|
30
|
+
|
31
|
+
@pulumi.output_type
|
32
|
+
class ActiveDirectoryAddGroupsGroup(dict):
|
33
|
+
def __init__(__self__, *,
|
34
|
+
name: str,
|
35
|
+
sid: str,
|
36
|
+
type: Optional[str] = None):
|
37
|
+
"""
|
38
|
+
:param str name: Required for each group in the group list with no duplication between groups
|
39
|
+
:param str sid: Required for each group in the group list with no duplication between groups
|
40
|
+
"""
|
41
|
+
pulumi.set(__self__, "name", name)
|
42
|
+
pulumi.set(__self__, "sid", sid)
|
43
|
+
if type is not None:
|
44
|
+
pulumi.set(__self__, "type", type)
|
45
|
+
|
46
|
+
@property
|
47
|
+
@pulumi.getter
|
48
|
+
def name(self) -> str:
|
49
|
+
"""
|
50
|
+
Required for each group in the group list with no duplication between groups
|
51
|
+
"""
|
52
|
+
return pulumi.get(self, "name")
|
53
|
+
|
54
|
+
@property
|
55
|
+
@pulumi.getter
|
56
|
+
def sid(self) -> str:
|
57
|
+
"""
|
58
|
+
Required for each group in the group list with no duplication between groups
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "sid")
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter
|
64
|
+
def type(self) -> Optional[str]:
|
65
|
+
return pulumi.get(self, "type")
|
66
|
+
|
67
|
+
|
68
|
+
@pulumi.output_type
|
69
|
+
class ActiveDirectoryJoinDomainWithAllNodesAdditionalData(dict):
|
70
|
+
def __init__(__self__, *,
|
71
|
+
name: str,
|
72
|
+
value: str):
|
73
|
+
"""
|
74
|
+
:param str name: Additional attribute name
|
75
|
+
:param str value: Additional attribute value
|
76
|
+
"""
|
77
|
+
pulumi.set(__self__, "name", name)
|
78
|
+
pulumi.set(__self__, "value", value)
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter
|
82
|
+
def name(self) -> str:
|
83
|
+
"""
|
84
|
+
Additional attribute name
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "name")
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter
|
90
|
+
def value(self) -> str:
|
91
|
+
"""
|
92
|
+
Additional attribute value
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "value")
|
95
|
+
|
96
|
+
|
97
|
+
@pulumi.output_type
|
98
|
+
class ActiveDirectoryJoinPointAttribute(dict):
|
99
|
+
@staticmethod
|
100
|
+
def __key_warning(key: str):
|
101
|
+
suggest = None
|
102
|
+
if key == "defaultValue":
|
103
|
+
suggest = "default_value"
|
104
|
+
elif key == "internalName":
|
105
|
+
suggest = "internal_name"
|
106
|
+
|
107
|
+
if suggest:
|
108
|
+
pulumi.log.warn(f"Key '{key}' not found in ActiveDirectoryJoinPointAttribute. Access the value via the '{suggest}' property getter instead.")
|
109
|
+
|
110
|
+
def __getitem__(self, key: str) -> Any:
|
111
|
+
ActiveDirectoryJoinPointAttribute.__key_warning(key)
|
112
|
+
return super().__getitem__(key)
|
113
|
+
|
114
|
+
def get(self, key: str, default = None) -> Any:
|
115
|
+
ActiveDirectoryJoinPointAttribute.__key_warning(key)
|
116
|
+
return super().get(key, default)
|
117
|
+
|
118
|
+
def __init__(__self__, *,
|
119
|
+
default_value: str,
|
120
|
+
internal_name: str,
|
121
|
+
name: str,
|
122
|
+
type: str):
|
123
|
+
"""
|
124
|
+
:param str default_value: Required for each attribute in the attribute list. Can contain an empty string.
|
125
|
+
:param str internal_name: Required for each attribute in the attribute list
|
126
|
+
:param str name: Required for each attribute in the attribute list with no duplication between attributes
|
127
|
+
:param str type: Required for each group in the group list
|
128
|
+
- Choices: `STRING`, `IP`, `BOOLEAN`, `INT`, `OCTET_STRING`
|
129
|
+
"""
|
130
|
+
pulumi.set(__self__, "default_value", default_value)
|
131
|
+
pulumi.set(__self__, "internal_name", internal_name)
|
132
|
+
pulumi.set(__self__, "name", name)
|
133
|
+
pulumi.set(__self__, "type", type)
|
134
|
+
|
135
|
+
@property
|
136
|
+
@pulumi.getter(name="defaultValue")
|
137
|
+
def default_value(self) -> str:
|
138
|
+
"""
|
139
|
+
Required for each attribute in the attribute list. Can contain an empty string.
|
140
|
+
"""
|
141
|
+
return pulumi.get(self, "default_value")
|
142
|
+
|
143
|
+
@property
|
144
|
+
@pulumi.getter(name="internalName")
|
145
|
+
def internal_name(self) -> str:
|
146
|
+
"""
|
147
|
+
Required for each attribute in the attribute list
|
148
|
+
"""
|
149
|
+
return pulumi.get(self, "internal_name")
|
150
|
+
|
151
|
+
@property
|
152
|
+
@pulumi.getter
|
153
|
+
def name(self) -> str:
|
154
|
+
"""
|
155
|
+
Required for each attribute in the attribute list with no duplication between attributes
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "name")
|
158
|
+
|
159
|
+
@property
|
160
|
+
@pulumi.getter
|
161
|
+
def type(self) -> str:
|
162
|
+
"""
|
163
|
+
Required for each group in the group list
|
164
|
+
- Choices: `STRING`, `IP`, `BOOLEAN`, `INT`, `OCTET_STRING`
|
165
|
+
"""
|
166
|
+
return pulumi.get(self, "type")
|
167
|
+
|
168
|
+
|
169
|
+
@pulumi.output_type
|
170
|
+
class ActiveDirectoryJoinPointGroup(dict):
|
171
|
+
def __init__(__self__, *,
|
172
|
+
name: str,
|
173
|
+
sid: str,
|
174
|
+
type: Optional[str] = None):
|
175
|
+
"""
|
176
|
+
:param str name: Required for each group in the group list with no duplication between groups
|
177
|
+
:param str sid: Required for each group in the group list with no duplication between groups
|
178
|
+
"""
|
179
|
+
pulumi.set(__self__, "name", name)
|
180
|
+
pulumi.set(__self__, "sid", sid)
|
181
|
+
if type is not None:
|
182
|
+
pulumi.set(__self__, "type", type)
|
183
|
+
|
184
|
+
@property
|
185
|
+
@pulumi.getter
|
186
|
+
def name(self) -> str:
|
187
|
+
"""
|
188
|
+
Required for each group in the group list with no duplication between groups
|
189
|
+
"""
|
190
|
+
return pulumi.get(self, "name")
|
191
|
+
|
192
|
+
@property
|
193
|
+
@pulumi.getter
|
194
|
+
def sid(self) -> str:
|
195
|
+
"""
|
196
|
+
Required for each group in the group list with no duplication between groups
|
197
|
+
"""
|
198
|
+
return pulumi.get(self, "sid")
|
199
|
+
|
200
|
+
@property
|
201
|
+
@pulumi.getter
|
202
|
+
def type(self) -> Optional[str]:
|
203
|
+
return pulumi.get(self, "type")
|
204
|
+
|
205
|
+
|
206
|
+
@pulumi.output_type
|
207
|
+
class ActiveDirectoryJoinPointRewriteRule(dict):
|
208
|
+
@staticmethod
|
209
|
+
def __key_warning(key: str):
|
210
|
+
suggest = None
|
211
|
+
if key == "rewriteMatch":
|
212
|
+
suggest = "rewrite_match"
|
213
|
+
elif key == "rewriteResult":
|
214
|
+
suggest = "rewrite_result"
|
215
|
+
elif key == "rowId":
|
216
|
+
suggest = "row_id"
|
217
|
+
|
218
|
+
if suggest:
|
219
|
+
pulumi.log.warn(f"Key '{key}' not found in ActiveDirectoryJoinPointRewriteRule. Access the value via the '{suggest}' property getter instead.")
|
220
|
+
|
221
|
+
def __getitem__(self, key: str) -> Any:
|
222
|
+
ActiveDirectoryJoinPointRewriteRule.__key_warning(key)
|
223
|
+
return super().__getitem__(key)
|
224
|
+
|
225
|
+
def get(self, key: str, default = None) -> Any:
|
226
|
+
ActiveDirectoryJoinPointRewriteRule.__key_warning(key)
|
227
|
+
return super().get(key, default)
|
228
|
+
|
229
|
+
def __init__(__self__, *,
|
230
|
+
rewrite_match: str,
|
231
|
+
rewrite_result: str,
|
232
|
+
row_id: str):
|
233
|
+
"""
|
234
|
+
:param str rewrite_match: Required for each rule in the list with no duplication between rules
|
235
|
+
:param str rewrite_result: Required for each rule in the list
|
236
|
+
:param str row_id: Required for each rule in the list in serial order
|
237
|
+
"""
|
238
|
+
pulumi.set(__self__, "rewrite_match", rewrite_match)
|
239
|
+
pulumi.set(__self__, "rewrite_result", rewrite_result)
|
240
|
+
pulumi.set(__self__, "row_id", row_id)
|
241
|
+
|
242
|
+
@property
|
243
|
+
@pulumi.getter(name="rewriteMatch")
|
244
|
+
def rewrite_match(self) -> str:
|
245
|
+
"""
|
246
|
+
Required for each rule in the list with no duplication between rules
|
247
|
+
"""
|
248
|
+
return pulumi.get(self, "rewrite_match")
|
249
|
+
|
250
|
+
@property
|
251
|
+
@pulumi.getter(name="rewriteResult")
|
252
|
+
def rewrite_result(self) -> str:
|
253
|
+
"""
|
254
|
+
Required for each rule in the list
|
255
|
+
"""
|
256
|
+
return pulumi.get(self, "rewrite_result")
|
257
|
+
|
258
|
+
@property
|
259
|
+
@pulumi.getter(name="rowId")
|
260
|
+
def row_id(self) -> str:
|
261
|
+
"""
|
262
|
+
Required for each rule in the list in serial order
|
263
|
+
"""
|
264
|
+
return pulumi.get(self, "row_id")
|
265
|
+
|
266
|
+
|
267
|
+
@pulumi.output_type
|
268
|
+
class IdentitySourceSequenceIdentitySource(dict):
|
269
|
+
def __init__(__self__, *,
|
270
|
+
name: str,
|
271
|
+
order: int):
|
272
|
+
"""
|
273
|
+
:param str name: Name of the identity source
|
274
|
+
:param int order: Order of the identity source in the sequence
|
275
|
+
"""
|
276
|
+
pulumi.set(__self__, "name", name)
|
277
|
+
pulumi.set(__self__, "order", order)
|
278
|
+
|
279
|
+
@property
|
280
|
+
@pulumi.getter
|
281
|
+
def name(self) -> str:
|
282
|
+
"""
|
283
|
+
Name of the identity source
|
284
|
+
"""
|
285
|
+
return pulumi.get(self, "name")
|
286
|
+
|
287
|
+
@property
|
288
|
+
@pulumi.getter
|
289
|
+
def order(self) -> int:
|
290
|
+
"""
|
291
|
+
Order of the identity source in the sequence
|
292
|
+
"""
|
293
|
+
return pulumi.get(self, "order")
|
294
|
+
|
295
|
+
|
296
|
+
@pulumi.output_type
|
297
|
+
class GetActiveDirectoryGroupsByDomainGroupResult(dict):
|
298
|
+
def __init__(__self__, *,
|
299
|
+
name: str,
|
300
|
+
sid: str,
|
301
|
+
type: str):
|
302
|
+
"""
|
303
|
+
:param str name: Group name
|
304
|
+
:param str sid: Group SID
|
305
|
+
:param str type: Group type
|
306
|
+
"""
|
307
|
+
pulumi.set(__self__, "name", name)
|
308
|
+
pulumi.set(__self__, "sid", sid)
|
309
|
+
pulumi.set(__self__, "type", type)
|
310
|
+
|
311
|
+
@property
|
312
|
+
@pulumi.getter
|
313
|
+
def name(self) -> str:
|
314
|
+
"""
|
315
|
+
Group name
|
316
|
+
"""
|
317
|
+
return pulumi.get(self, "name")
|
318
|
+
|
319
|
+
@property
|
320
|
+
@pulumi.getter
|
321
|
+
def sid(self) -> str:
|
322
|
+
"""
|
323
|
+
Group SID
|
324
|
+
"""
|
325
|
+
return pulumi.get(self, "sid")
|
326
|
+
|
327
|
+
@property
|
328
|
+
@pulumi.getter
|
329
|
+
def type(self) -> str:
|
330
|
+
"""
|
331
|
+
Group type
|
332
|
+
"""
|
333
|
+
return pulumi.get(self, "type")
|
334
|
+
|
335
|
+
|
336
|
+
@pulumi.output_type
|
337
|
+
class GetActiveDirectoryJoinPointAttributeResult(dict):
|
338
|
+
def __init__(__self__, *,
|
339
|
+
default_value: str,
|
340
|
+
internal_name: str,
|
341
|
+
name: str,
|
342
|
+
type: str):
|
343
|
+
"""
|
344
|
+
:param str default_value: Required for each attribute in the attribute list. Can contain an empty string.
|
345
|
+
:param str internal_name: Required for each attribute in the attribute list
|
346
|
+
:param str name: Required for each attribute in the attribute list with no duplication between attributes
|
347
|
+
:param str type: Required for each group in the group list
|
348
|
+
"""
|
349
|
+
pulumi.set(__self__, "default_value", default_value)
|
350
|
+
pulumi.set(__self__, "internal_name", internal_name)
|
351
|
+
pulumi.set(__self__, "name", name)
|
352
|
+
pulumi.set(__self__, "type", type)
|
353
|
+
|
354
|
+
@property
|
355
|
+
@pulumi.getter(name="defaultValue")
|
356
|
+
def default_value(self) -> str:
|
357
|
+
"""
|
358
|
+
Required for each attribute in the attribute list. Can contain an empty string.
|
359
|
+
"""
|
360
|
+
return pulumi.get(self, "default_value")
|
361
|
+
|
362
|
+
@property
|
363
|
+
@pulumi.getter(name="internalName")
|
364
|
+
def internal_name(self) -> str:
|
365
|
+
"""
|
366
|
+
Required for each attribute in the attribute list
|
367
|
+
"""
|
368
|
+
return pulumi.get(self, "internal_name")
|
369
|
+
|
370
|
+
@property
|
371
|
+
@pulumi.getter
|
372
|
+
def name(self) -> str:
|
373
|
+
"""
|
374
|
+
Required for each attribute in the attribute list with no duplication between attributes
|
375
|
+
"""
|
376
|
+
return pulumi.get(self, "name")
|
377
|
+
|
378
|
+
@property
|
379
|
+
@pulumi.getter
|
380
|
+
def type(self) -> str:
|
381
|
+
"""
|
382
|
+
Required for each group in the group list
|
383
|
+
"""
|
384
|
+
return pulumi.get(self, "type")
|
385
|
+
|
386
|
+
|
387
|
+
@pulumi.output_type
|
388
|
+
class GetActiveDirectoryJoinPointGroupResult(dict):
|
389
|
+
def __init__(__self__, *,
|
390
|
+
name: str,
|
391
|
+
sid: str,
|
392
|
+
type: str):
|
393
|
+
"""
|
394
|
+
:param str name: Required for each group in the group list with no duplication between groups
|
395
|
+
:param str sid: Required for each group in the group list with no duplication between groups
|
396
|
+
"""
|
397
|
+
pulumi.set(__self__, "name", name)
|
398
|
+
pulumi.set(__self__, "sid", sid)
|
399
|
+
pulumi.set(__self__, "type", type)
|
400
|
+
|
401
|
+
@property
|
402
|
+
@pulumi.getter
|
403
|
+
def name(self) -> str:
|
404
|
+
"""
|
405
|
+
Required for each group in the group list with no duplication between groups
|
406
|
+
"""
|
407
|
+
return pulumi.get(self, "name")
|
408
|
+
|
409
|
+
@property
|
410
|
+
@pulumi.getter
|
411
|
+
def sid(self) -> str:
|
412
|
+
"""
|
413
|
+
Required for each group in the group list with no duplication between groups
|
414
|
+
"""
|
415
|
+
return pulumi.get(self, "sid")
|
416
|
+
|
417
|
+
@property
|
418
|
+
@pulumi.getter
|
419
|
+
def type(self) -> str:
|
420
|
+
return pulumi.get(self, "type")
|
421
|
+
|
422
|
+
|
423
|
+
@pulumi.output_type
|
424
|
+
class GetActiveDirectoryJoinPointRewriteRuleResult(dict):
|
425
|
+
def __init__(__self__, *,
|
426
|
+
rewrite_match: str,
|
427
|
+
rewrite_result: str,
|
428
|
+
row_id: str):
|
429
|
+
"""
|
430
|
+
:param str rewrite_match: Required for each rule in the list with no duplication between rules
|
431
|
+
:param str rewrite_result: Required for each rule in the list
|
432
|
+
:param str row_id: Required for each rule in the list in serial order
|
433
|
+
"""
|
434
|
+
pulumi.set(__self__, "rewrite_match", rewrite_match)
|
435
|
+
pulumi.set(__self__, "rewrite_result", rewrite_result)
|
436
|
+
pulumi.set(__self__, "row_id", row_id)
|
437
|
+
|
438
|
+
@property
|
439
|
+
@pulumi.getter(name="rewriteMatch")
|
440
|
+
def rewrite_match(self) -> str:
|
441
|
+
"""
|
442
|
+
Required for each rule in the list with no duplication between rules
|
443
|
+
"""
|
444
|
+
return pulumi.get(self, "rewrite_match")
|
445
|
+
|
446
|
+
@property
|
447
|
+
@pulumi.getter(name="rewriteResult")
|
448
|
+
def rewrite_result(self) -> str:
|
449
|
+
"""
|
450
|
+
Required for each rule in the list
|
451
|
+
"""
|
452
|
+
return pulumi.get(self, "rewrite_result")
|
453
|
+
|
454
|
+
@property
|
455
|
+
@pulumi.getter(name="rowId")
|
456
|
+
def row_id(self) -> str:
|
457
|
+
"""
|
458
|
+
Required for each rule in the list in serial order
|
459
|
+
"""
|
460
|
+
return pulumi.get(self, "row_id")
|
461
|
+
|
462
|
+
|
463
|
+
@pulumi.output_type
|
464
|
+
class GetIdentitySourceSequenceIdentitySourceResult(dict):
|
465
|
+
def __init__(__self__, *,
|
466
|
+
name: str,
|
467
|
+
order: int):
|
468
|
+
"""
|
469
|
+
:param str name: Name of the identity source
|
470
|
+
:param int order: Order of the identity source in the sequence
|
471
|
+
"""
|
472
|
+
pulumi.set(__self__, "name", name)
|
473
|
+
pulumi.set(__self__, "order", order)
|
474
|
+
|
475
|
+
@property
|
476
|
+
@pulumi.getter
|
477
|
+
def name(self) -> str:
|
478
|
+
"""
|
479
|
+
Name of the identity source
|
480
|
+
"""
|
481
|
+
return pulumi.get(self, "name")
|
482
|
+
|
483
|
+
@property
|
484
|
+
@pulumi.getter
|
485
|
+
def order(self) -> int:
|
486
|
+
"""
|
487
|
+
Order of the identity source in the sequence
|
488
|
+
"""
|
489
|
+
return pulumi.get(self, "order")
|
490
|
+
|
491
|
+
|