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,3178 @@
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
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'AuthenticationRuleChildren',
20
+ 'AuthenticationRuleChildrenChildren',
21
+ 'AuthorizationExceptionRuleChildren',
22
+ 'AuthorizationExceptionRuleChildrenChildren',
23
+ 'AuthorizationGlobalExceptionRuleChildren',
24
+ 'AuthorizationGlobalExceptionRuleChildrenChildren',
25
+ 'AuthorizationRuleChildren',
26
+ 'AuthorizationRuleChildrenChildren',
27
+ 'ConditionChildren',
28
+ 'ConditionChildrenChildren',
29
+ 'PolicySetChildren',
30
+ 'PolicySetChildrenChildren',
31
+ 'TacacsCommandSetCommand',
32
+ 'TacacsProfileSessionAttribute',
33
+ 'GetAuthenticationRuleChildrenResult',
34
+ 'GetAuthenticationRuleChildrenChildrenResult',
35
+ 'GetAuthorizationExceptionRuleChildrenResult',
36
+ 'GetAuthorizationExceptionRuleChildrenChildrenResult',
37
+ 'GetAuthorizationGlobalExceptionRuleChildrenResult',
38
+ 'GetAuthorizationGlobalExceptionRuleChildrenChildrenResult',
39
+ 'GetAuthorizationRuleChildrenResult',
40
+ 'GetAuthorizationRuleChildrenChildrenResult',
41
+ 'GetConditionChildrenResult',
42
+ 'GetConditionChildrenChildrenResult',
43
+ 'GetPolicySetChildrenResult',
44
+ 'GetPolicySetChildrenChildrenResult',
45
+ 'GetTacacsCommandSetCommandResult',
46
+ 'GetTacacsProfileSessionAttributeResult',
47
+ ]
48
+
49
+ @pulumi.output_type
50
+ class AuthenticationRuleChildren(dict):
51
+ @staticmethod
52
+ def __key_warning(key: str):
53
+ suggest = None
54
+ if key == "conditionType":
55
+ suggest = "condition_type"
56
+ elif key == "attributeName":
57
+ suggest = "attribute_name"
58
+ elif key == "attributeValue":
59
+ suggest = "attribute_value"
60
+ elif key == "dictionaryName":
61
+ suggest = "dictionary_name"
62
+ elif key == "dictionaryValue":
63
+ suggest = "dictionary_value"
64
+ elif key == "isNegate":
65
+ suggest = "is_negate"
66
+
67
+ if suggest:
68
+ pulumi.log.warn(f"Key '{key}' not found in AuthenticationRuleChildren. Access the value via the '{suggest}' property getter instead.")
69
+
70
+ def __getitem__(self, key: str) -> Any:
71
+ AuthenticationRuleChildren.__key_warning(key)
72
+ return super().__getitem__(key)
73
+
74
+ def get(self, key: str, default = None) -> Any:
75
+ AuthenticationRuleChildren.__key_warning(key)
76
+ return super().get(key, default)
77
+
78
+ def __init__(__self__, *,
79
+ condition_type: str,
80
+ attribute_name: Optional[str] = None,
81
+ attribute_value: Optional[str] = None,
82
+ childrens: Optional[Sequence['outputs.AuthenticationRuleChildrenChildren']] = None,
83
+ dictionary_name: Optional[str] = None,
84
+ dictionary_value: Optional[str] = None,
85
+ id: Optional[str] = None,
86
+ is_negate: Optional[bool] = None,
87
+ operator: Optional[str] = None):
88
+ """
89
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
90
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
91
+ :param str attribute_name: Dictionary attribute name
92
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
93
+ :param Sequence['AuthenticationRuleChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
94
+ :param str dictionary_name: Dictionary name
95
+ :param str dictionary_value: Dictionary value
96
+ :param str id: UUID for condition
97
+ :param bool is_negate: Indicates whereas this condition is in negate mode
98
+ :param str operator: Equality operator
99
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
100
+ """
101
+ pulumi.set(__self__, "condition_type", condition_type)
102
+ if attribute_name is not None:
103
+ pulumi.set(__self__, "attribute_name", attribute_name)
104
+ if attribute_value is not None:
105
+ pulumi.set(__self__, "attribute_value", attribute_value)
106
+ if childrens is not None:
107
+ pulumi.set(__self__, "childrens", childrens)
108
+ if dictionary_name is not None:
109
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
110
+ if dictionary_value is not None:
111
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
112
+ if id is not None:
113
+ pulumi.set(__self__, "id", id)
114
+ if is_negate is not None:
115
+ pulumi.set(__self__, "is_negate", is_negate)
116
+ if operator is not None:
117
+ pulumi.set(__self__, "operator", operator)
118
+
119
+ @property
120
+ @pulumi.getter(name="conditionType")
121
+ def condition_type(self) -> str:
122
+ """
123
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
124
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
125
+ """
126
+ return pulumi.get(self, "condition_type")
127
+
128
+ @property
129
+ @pulumi.getter(name="attributeName")
130
+ def attribute_name(self) -> Optional[str]:
131
+ """
132
+ Dictionary attribute name
133
+ """
134
+ return pulumi.get(self, "attribute_name")
135
+
136
+ @property
137
+ @pulumi.getter(name="attributeValue")
138
+ def attribute_value(self) -> Optional[str]:
139
+ """
140
+ Attribute value for condition. Value type is specified in dictionary object.
141
+ """
142
+ return pulumi.get(self, "attribute_value")
143
+
144
+ @property
145
+ @pulumi.getter
146
+ def childrens(self) -> Optional[Sequence['outputs.AuthenticationRuleChildrenChildren']]:
147
+ """
148
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
149
+ """
150
+ return pulumi.get(self, "childrens")
151
+
152
+ @property
153
+ @pulumi.getter(name="dictionaryName")
154
+ def dictionary_name(self) -> Optional[str]:
155
+ """
156
+ Dictionary name
157
+ """
158
+ return pulumi.get(self, "dictionary_name")
159
+
160
+ @property
161
+ @pulumi.getter(name="dictionaryValue")
162
+ def dictionary_value(self) -> Optional[str]:
163
+ """
164
+ Dictionary value
165
+ """
166
+ return pulumi.get(self, "dictionary_value")
167
+
168
+ @property
169
+ @pulumi.getter
170
+ def id(self) -> Optional[str]:
171
+ """
172
+ UUID for condition
173
+ """
174
+ return pulumi.get(self, "id")
175
+
176
+ @property
177
+ @pulumi.getter(name="isNegate")
178
+ def is_negate(self) -> Optional[bool]:
179
+ """
180
+ Indicates whereas this condition is in negate mode
181
+ """
182
+ return pulumi.get(self, "is_negate")
183
+
184
+ @property
185
+ @pulumi.getter
186
+ def operator(self) -> Optional[str]:
187
+ """
188
+ Equality operator
189
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
190
+ """
191
+ return pulumi.get(self, "operator")
192
+
193
+
194
+ @pulumi.output_type
195
+ class AuthenticationRuleChildrenChildren(dict):
196
+ @staticmethod
197
+ def __key_warning(key: str):
198
+ suggest = None
199
+ if key == "conditionType":
200
+ suggest = "condition_type"
201
+ elif key == "attributeName":
202
+ suggest = "attribute_name"
203
+ elif key == "attributeValue":
204
+ suggest = "attribute_value"
205
+ elif key == "dictionaryName":
206
+ suggest = "dictionary_name"
207
+ elif key == "dictionaryValue":
208
+ suggest = "dictionary_value"
209
+ elif key == "isNegate":
210
+ suggest = "is_negate"
211
+
212
+ if suggest:
213
+ pulumi.log.warn(f"Key '{key}' not found in AuthenticationRuleChildrenChildren. Access the value via the '{suggest}' property getter instead.")
214
+
215
+ def __getitem__(self, key: str) -> Any:
216
+ AuthenticationRuleChildrenChildren.__key_warning(key)
217
+ return super().__getitem__(key)
218
+
219
+ def get(self, key: str, default = None) -> Any:
220
+ AuthenticationRuleChildrenChildren.__key_warning(key)
221
+ return super().get(key, default)
222
+
223
+ def __init__(__self__, *,
224
+ condition_type: str,
225
+ attribute_name: Optional[str] = None,
226
+ attribute_value: Optional[str] = None,
227
+ dictionary_name: Optional[str] = None,
228
+ dictionary_value: Optional[str] = None,
229
+ id: Optional[str] = None,
230
+ is_negate: Optional[bool] = None,
231
+ operator: Optional[str] = None):
232
+ """
233
+ :param str condition_type: Condition type.
234
+ - Choices: `ConditionAttributes`, `ConditionReference`
235
+ :param str attribute_name: Dictionary attribute name
236
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
237
+ :param str dictionary_name: Dictionary name
238
+ :param str dictionary_value: Dictionary value
239
+ :param str id: UUID for condition
240
+ :param bool is_negate: Indicates whereas this condition is in negate mode
241
+ :param str operator: Equality operator
242
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
243
+ """
244
+ pulumi.set(__self__, "condition_type", condition_type)
245
+ if attribute_name is not None:
246
+ pulumi.set(__self__, "attribute_name", attribute_name)
247
+ if attribute_value is not None:
248
+ pulumi.set(__self__, "attribute_value", attribute_value)
249
+ if dictionary_name is not None:
250
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
251
+ if dictionary_value is not None:
252
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
253
+ if id is not None:
254
+ pulumi.set(__self__, "id", id)
255
+ if is_negate is not None:
256
+ pulumi.set(__self__, "is_negate", is_negate)
257
+ if operator is not None:
258
+ pulumi.set(__self__, "operator", operator)
259
+
260
+ @property
261
+ @pulumi.getter(name="conditionType")
262
+ def condition_type(self) -> str:
263
+ """
264
+ Condition type.
265
+ - Choices: `ConditionAttributes`, `ConditionReference`
266
+ """
267
+ return pulumi.get(self, "condition_type")
268
+
269
+ @property
270
+ @pulumi.getter(name="attributeName")
271
+ def attribute_name(self) -> Optional[str]:
272
+ """
273
+ Dictionary attribute name
274
+ """
275
+ return pulumi.get(self, "attribute_name")
276
+
277
+ @property
278
+ @pulumi.getter(name="attributeValue")
279
+ def attribute_value(self) -> Optional[str]:
280
+ """
281
+ Attribute value for condition. Value type is specified in dictionary object.
282
+ """
283
+ return pulumi.get(self, "attribute_value")
284
+
285
+ @property
286
+ @pulumi.getter(name="dictionaryName")
287
+ def dictionary_name(self) -> Optional[str]:
288
+ """
289
+ Dictionary name
290
+ """
291
+ return pulumi.get(self, "dictionary_name")
292
+
293
+ @property
294
+ @pulumi.getter(name="dictionaryValue")
295
+ def dictionary_value(self) -> Optional[str]:
296
+ """
297
+ Dictionary value
298
+ """
299
+ return pulumi.get(self, "dictionary_value")
300
+
301
+ @property
302
+ @pulumi.getter
303
+ def id(self) -> Optional[str]:
304
+ """
305
+ UUID for condition
306
+ """
307
+ return pulumi.get(self, "id")
308
+
309
+ @property
310
+ @pulumi.getter(name="isNegate")
311
+ def is_negate(self) -> Optional[bool]:
312
+ """
313
+ Indicates whereas this condition is in negate mode
314
+ """
315
+ return pulumi.get(self, "is_negate")
316
+
317
+ @property
318
+ @pulumi.getter
319
+ def operator(self) -> Optional[str]:
320
+ """
321
+ Equality operator
322
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
323
+ """
324
+ return pulumi.get(self, "operator")
325
+
326
+
327
+ @pulumi.output_type
328
+ class AuthorizationExceptionRuleChildren(dict):
329
+ @staticmethod
330
+ def __key_warning(key: str):
331
+ suggest = None
332
+ if key == "conditionType":
333
+ suggest = "condition_type"
334
+ elif key == "attributeName":
335
+ suggest = "attribute_name"
336
+ elif key == "attributeValue":
337
+ suggest = "attribute_value"
338
+ elif key == "dictionaryName":
339
+ suggest = "dictionary_name"
340
+ elif key == "dictionaryValue":
341
+ suggest = "dictionary_value"
342
+ elif key == "isNegate":
343
+ suggest = "is_negate"
344
+
345
+ if suggest:
346
+ pulumi.log.warn(f"Key '{key}' not found in AuthorizationExceptionRuleChildren. Access the value via the '{suggest}' property getter instead.")
347
+
348
+ def __getitem__(self, key: str) -> Any:
349
+ AuthorizationExceptionRuleChildren.__key_warning(key)
350
+ return super().__getitem__(key)
351
+
352
+ def get(self, key: str, default = None) -> Any:
353
+ AuthorizationExceptionRuleChildren.__key_warning(key)
354
+ return super().get(key, default)
355
+
356
+ def __init__(__self__, *,
357
+ condition_type: str,
358
+ attribute_name: Optional[str] = None,
359
+ attribute_value: Optional[str] = None,
360
+ childrens: Optional[Sequence['outputs.AuthorizationExceptionRuleChildrenChildren']] = None,
361
+ dictionary_name: Optional[str] = None,
362
+ dictionary_value: Optional[str] = None,
363
+ id: Optional[str] = None,
364
+ is_negate: Optional[bool] = None,
365
+ operator: Optional[str] = None):
366
+ """
367
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
368
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
369
+ :param str attribute_name: Dictionary attribute name
370
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
371
+ :param Sequence['AuthorizationExceptionRuleChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
372
+ :param str dictionary_name: Dictionary name
373
+ :param str dictionary_value: Dictionary value
374
+ :param str id: UUID for condition
375
+ :param bool is_negate: Indicates whereas this condition is in negate mode
376
+ :param str operator: Equality operator
377
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
378
+ """
379
+ pulumi.set(__self__, "condition_type", condition_type)
380
+ if attribute_name is not None:
381
+ pulumi.set(__self__, "attribute_name", attribute_name)
382
+ if attribute_value is not None:
383
+ pulumi.set(__self__, "attribute_value", attribute_value)
384
+ if childrens is not None:
385
+ pulumi.set(__self__, "childrens", childrens)
386
+ if dictionary_name is not None:
387
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
388
+ if dictionary_value is not None:
389
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
390
+ if id is not None:
391
+ pulumi.set(__self__, "id", id)
392
+ if is_negate is not None:
393
+ pulumi.set(__self__, "is_negate", is_negate)
394
+ if operator is not None:
395
+ pulumi.set(__self__, "operator", operator)
396
+
397
+ @property
398
+ @pulumi.getter(name="conditionType")
399
+ def condition_type(self) -> str:
400
+ """
401
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
402
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
403
+ """
404
+ return pulumi.get(self, "condition_type")
405
+
406
+ @property
407
+ @pulumi.getter(name="attributeName")
408
+ def attribute_name(self) -> Optional[str]:
409
+ """
410
+ Dictionary attribute name
411
+ """
412
+ return pulumi.get(self, "attribute_name")
413
+
414
+ @property
415
+ @pulumi.getter(name="attributeValue")
416
+ def attribute_value(self) -> Optional[str]:
417
+ """
418
+ Attribute value for condition. Value type is specified in dictionary object.
419
+ """
420
+ return pulumi.get(self, "attribute_value")
421
+
422
+ @property
423
+ @pulumi.getter
424
+ def childrens(self) -> Optional[Sequence['outputs.AuthorizationExceptionRuleChildrenChildren']]:
425
+ """
426
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
427
+ """
428
+ return pulumi.get(self, "childrens")
429
+
430
+ @property
431
+ @pulumi.getter(name="dictionaryName")
432
+ def dictionary_name(self) -> Optional[str]:
433
+ """
434
+ Dictionary name
435
+ """
436
+ return pulumi.get(self, "dictionary_name")
437
+
438
+ @property
439
+ @pulumi.getter(name="dictionaryValue")
440
+ def dictionary_value(self) -> Optional[str]:
441
+ """
442
+ Dictionary value
443
+ """
444
+ return pulumi.get(self, "dictionary_value")
445
+
446
+ @property
447
+ @pulumi.getter
448
+ def id(self) -> Optional[str]:
449
+ """
450
+ UUID for condition
451
+ """
452
+ return pulumi.get(self, "id")
453
+
454
+ @property
455
+ @pulumi.getter(name="isNegate")
456
+ def is_negate(self) -> Optional[bool]:
457
+ """
458
+ Indicates whereas this condition is in negate mode
459
+ """
460
+ return pulumi.get(self, "is_negate")
461
+
462
+ @property
463
+ @pulumi.getter
464
+ def operator(self) -> Optional[str]:
465
+ """
466
+ Equality operator
467
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
468
+ """
469
+ return pulumi.get(self, "operator")
470
+
471
+
472
+ @pulumi.output_type
473
+ class AuthorizationExceptionRuleChildrenChildren(dict):
474
+ @staticmethod
475
+ def __key_warning(key: str):
476
+ suggest = None
477
+ if key == "conditionType":
478
+ suggest = "condition_type"
479
+ elif key == "attributeName":
480
+ suggest = "attribute_name"
481
+ elif key == "attributeValue":
482
+ suggest = "attribute_value"
483
+ elif key == "dictionaryName":
484
+ suggest = "dictionary_name"
485
+ elif key == "dictionaryValue":
486
+ suggest = "dictionary_value"
487
+ elif key == "isNegate":
488
+ suggest = "is_negate"
489
+
490
+ if suggest:
491
+ pulumi.log.warn(f"Key '{key}' not found in AuthorizationExceptionRuleChildrenChildren. Access the value via the '{suggest}' property getter instead.")
492
+
493
+ def __getitem__(self, key: str) -> Any:
494
+ AuthorizationExceptionRuleChildrenChildren.__key_warning(key)
495
+ return super().__getitem__(key)
496
+
497
+ def get(self, key: str, default = None) -> Any:
498
+ AuthorizationExceptionRuleChildrenChildren.__key_warning(key)
499
+ return super().get(key, default)
500
+
501
+ def __init__(__self__, *,
502
+ condition_type: str,
503
+ attribute_name: Optional[str] = None,
504
+ attribute_value: Optional[str] = None,
505
+ dictionary_name: Optional[str] = None,
506
+ dictionary_value: Optional[str] = None,
507
+ id: Optional[str] = None,
508
+ is_negate: Optional[bool] = None,
509
+ operator: Optional[str] = None):
510
+ """
511
+ :param str condition_type: Condition type.
512
+ - Choices: `ConditionAttributes`, `ConditionReference`
513
+ :param str attribute_name: Dictionary attribute name
514
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
515
+ :param str dictionary_name: Dictionary name
516
+ :param str dictionary_value: Dictionary value
517
+ :param str id: UUID for condition
518
+ :param bool is_negate: Indicates whereas this condition is in negate mode
519
+ :param str operator: Equality operator
520
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
521
+ """
522
+ pulumi.set(__self__, "condition_type", condition_type)
523
+ if attribute_name is not None:
524
+ pulumi.set(__self__, "attribute_name", attribute_name)
525
+ if attribute_value is not None:
526
+ pulumi.set(__self__, "attribute_value", attribute_value)
527
+ if dictionary_name is not None:
528
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
529
+ if dictionary_value is not None:
530
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
531
+ if id is not None:
532
+ pulumi.set(__self__, "id", id)
533
+ if is_negate is not None:
534
+ pulumi.set(__self__, "is_negate", is_negate)
535
+ if operator is not None:
536
+ pulumi.set(__self__, "operator", operator)
537
+
538
+ @property
539
+ @pulumi.getter(name="conditionType")
540
+ def condition_type(self) -> str:
541
+ """
542
+ Condition type.
543
+ - Choices: `ConditionAttributes`, `ConditionReference`
544
+ """
545
+ return pulumi.get(self, "condition_type")
546
+
547
+ @property
548
+ @pulumi.getter(name="attributeName")
549
+ def attribute_name(self) -> Optional[str]:
550
+ """
551
+ Dictionary attribute name
552
+ """
553
+ return pulumi.get(self, "attribute_name")
554
+
555
+ @property
556
+ @pulumi.getter(name="attributeValue")
557
+ def attribute_value(self) -> Optional[str]:
558
+ """
559
+ Attribute value for condition. Value type is specified in dictionary object.
560
+ """
561
+ return pulumi.get(self, "attribute_value")
562
+
563
+ @property
564
+ @pulumi.getter(name="dictionaryName")
565
+ def dictionary_name(self) -> Optional[str]:
566
+ """
567
+ Dictionary name
568
+ """
569
+ return pulumi.get(self, "dictionary_name")
570
+
571
+ @property
572
+ @pulumi.getter(name="dictionaryValue")
573
+ def dictionary_value(self) -> Optional[str]:
574
+ """
575
+ Dictionary value
576
+ """
577
+ return pulumi.get(self, "dictionary_value")
578
+
579
+ @property
580
+ @pulumi.getter
581
+ def id(self) -> Optional[str]:
582
+ """
583
+ UUID for condition
584
+ """
585
+ return pulumi.get(self, "id")
586
+
587
+ @property
588
+ @pulumi.getter(name="isNegate")
589
+ def is_negate(self) -> Optional[bool]:
590
+ """
591
+ Indicates whereas this condition is in negate mode
592
+ """
593
+ return pulumi.get(self, "is_negate")
594
+
595
+ @property
596
+ @pulumi.getter
597
+ def operator(self) -> Optional[str]:
598
+ """
599
+ Equality operator
600
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
601
+ """
602
+ return pulumi.get(self, "operator")
603
+
604
+
605
+ @pulumi.output_type
606
+ class AuthorizationGlobalExceptionRuleChildren(dict):
607
+ @staticmethod
608
+ def __key_warning(key: str):
609
+ suggest = None
610
+ if key == "conditionType":
611
+ suggest = "condition_type"
612
+ elif key == "attributeName":
613
+ suggest = "attribute_name"
614
+ elif key == "attributeValue":
615
+ suggest = "attribute_value"
616
+ elif key == "dictionaryName":
617
+ suggest = "dictionary_name"
618
+ elif key == "dictionaryValue":
619
+ suggest = "dictionary_value"
620
+ elif key == "isNegate":
621
+ suggest = "is_negate"
622
+
623
+ if suggest:
624
+ pulumi.log.warn(f"Key '{key}' not found in AuthorizationGlobalExceptionRuleChildren. Access the value via the '{suggest}' property getter instead.")
625
+
626
+ def __getitem__(self, key: str) -> Any:
627
+ AuthorizationGlobalExceptionRuleChildren.__key_warning(key)
628
+ return super().__getitem__(key)
629
+
630
+ def get(self, key: str, default = None) -> Any:
631
+ AuthorizationGlobalExceptionRuleChildren.__key_warning(key)
632
+ return super().get(key, default)
633
+
634
+ def __init__(__self__, *,
635
+ condition_type: str,
636
+ attribute_name: Optional[str] = None,
637
+ attribute_value: Optional[str] = None,
638
+ childrens: Optional[Sequence['outputs.AuthorizationGlobalExceptionRuleChildrenChildren']] = None,
639
+ dictionary_name: Optional[str] = None,
640
+ dictionary_value: Optional[str] = None,
641
+ id: Optional[str] = None,
642
+ is_negate: Optional[bool] = None,
643
+ operator: Optional[str] = None):
644
+ """
645
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
646
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
647
+ :param str attribute_name: Dictionary attribute name
648
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
649
+ :param Sequence['AuthorizationGlobalExceptionRuleChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
650
+ :param str dictionary_name: Dictionary name
651
+ :param str dictionary_value: Dictionary value
652
+ :param str id: UUID for condition
653
+ :param bool is_negate: Indicates whereas this condition is in negate mode
654
+ :param str operator: Equality operator
655
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
656
+ """
657
+ pulumi.set(__self__, "condition_type", condition_type)
658
+ if attribute_name is not None:
659
+ pulumi.set(__self__, "attribute_name", attribute_name)
660
+ if attribute_value is not None:
661
+ pulumi.set(__self__, "attribute_value", attribute_value)
662
+ if childrens is not None:
663
+ pulumi.set(__self__, "childrens", childrens)
664
+ if dictionary_name is not None:
665
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
666
+ if dictionary_value is not None:
667
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
668
+ if id is not None:
669
+ pulumi.set(__self__, "id", id)
670
+ if is_negate is not None:
671
+ pulumi.set(__self__, "is_negate", is_negate)
672
+ if operator is not None:
673
+ pulumi.set(__self__, "operator", operator)
674
+
675
+ @property
676
+ @pulumi.getter(name="conditionType")
677
+ def condition_type(self) -> str:
678
+ """
679
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
680
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
681
+ """
682
+ return pulumi.get(self, "condition_type")
683
+
684
+ @property
685
+ @pulumi.getter(name="attributeName")
686
+ def attribute_name(self) -> Optional[str]:
687
+ """
688
+ Dictionary attribute name
689
+ """
690
+ return pulumi.get(self, "attribute_name")
691
+
692
+ @property
693
+ @pulumi.getter(name="attributeValue")
694
+ def attribute_value(self) -> Optional[str]:
695
+ """
696
+ Attribute value for condition. Value type is specified in dictionary object.
697
+ """
698
+ return pulumi.get(self, "attribute_value")
699
+
700
+ @property
701
+ @pulumi.getter
702
+ def childrens(self) -> Optional[Sequence['outputs.AuthorizationGlobalExceptionRuleChildrenChildren']]:
703
+ """
704
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
705
+ """
706
+ return pulumi.get(self, "childrens")
707
+
708
+ @property
709
+ @pulumi.getter(name="dictionaryName")
710
+ def dictionary_name(self) -> Optional[str]:
711
+ """
712
+ Dictionary name
713
+ """
714
+ return pulumi.get(self, "dictionary_name")
715
+
716
+ @property
717
+ @pulumi.getter(name="dictionaryValue")
718
+ def dictionary_value(self) -> Optional[str]:
719
+ """
720
+ Dictionary value
721
+ """
722
+ return pulumi.get(self, "dictionary_value")
723
+
724
+ @property
725
+ @pulumi.getter
726
+ def id(self) -> Optional[str]:
727
+ """
728
+ UUID for condition
729
+ """
730
+ return pulumi.get(self, "id")
731
+
732
+ @property
733
+ @pulumi.getter(name="isNegate")
734
+ def is_negate(self) -> Optional[bool]:
735
+ """
736
+ Indicates whereas this condition is in negate mode
737
+ """
738
+ return pulumi.get(self, "is_negate")
739
+
740
+ @property
741
+ @pulumi.getter
742
+ def operator(self) -> Optional[str]:
743
+ """
744
+ Equality operator
745
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
746
+ """
747
+ return pulumi.get(self, "operator")
748
+
749
+
750
+ @pulumi.output_type
751
+ class AuthorizationGlobalExceptionRuleChildrenChildren(dict):
752
+ @staticmethod
753
+ def __key_warning(key: str):
754
+ suggest = None
755
+ if key == "conditionType":
756
+ suggest = "condition_type"
757
+ elif key == "attributeName":
758
+ suggest = "attribute_name"
759
+ elif key == "attributeValue":
760
+ suggest = "attribute_value"
761
+ elif key == "dictionaryName":
762
+ suggest = "dictionary_name"
763
+ elif key == "dictionaryValue":
764
+ suggest = "dictionary_value"
765
+ elif key == "isNegate":
766
+ suggest = "is_negate"
767
+
768
+ if suggest:
769
+ pulumi.log.warn(f"Key '{key}' not found in AuthorizationGlobalExceptionRuleChildrenChildren. Access the value via the '{suggest}' property getter instead.")
770
+
771
+ def __getitem__(self, key: str) -> Any:
772
+ AuthorizationGlobalExceptionRuleChildrenChildren.__key_warning(key)
773
+ return super().__getitem__(key)
774
+
775
+ def get(self, key: str, default = None) -> Any:
776
+ AuthorizationGlobalExceptionRuleChildrenChildren.__key_warning(key)
777
+ return super().get(key, default)
778
+
779
+ def __init__(__self__, *,
780
+ condition_type: str,
781
+ attribute_name: Optional[str] = None,
782
+ attribute_value: Optional[str] = None,
783
+ dictionary_name: Optional[str] = None,
784
+ dictionary_value: Optional[str] = None,
785
+ id: Optional[str] = None,
786
+ is_negate: Optional[bool] = None,
787
+ operator: Optional[str] = None):
788
+ """
789
+ :param str condition_type: Condition type.
790
+ - Choices: `ConditionAttributes`, `ConditionReference`
791
+ :param str attribute_name: Dictionary attribute name
792
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
793
+ :param str dictionary_name: Dictionary name
794
+ :param str dictionary_value: Dictionary value
795
+ :param str id: UUID for condition
796
+ :param bool is_negate: Indicates whereas this condition is in negate mode
797
+ :param str operator: Equality operator
798
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
799
+ """
800
+ pulumi.set(__self__, "condition_type", condition_type)
801
+ if attribute_name is not None:
802
+ pulumi.set(__self__, "attribute_name", attribute_name)
803
+ if attribute_value is not None:
804
+ pulumi.set(__self__, "attribute_value", attribute_value)
805
+ if dictionary_name is not None:
806
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
807
+ if dictionary_value is not None:
808
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
809
+ if id is not None:
810
+ pulumi.set(__self__, "id", id)
811
+ if is_negate is not None:
812
+ pulumi.set(__self__, "is_negate", is_negate)
813
+ if operator is not None:
814
+ pulumi.set(__self__, "operator", operator)
815
+
816
+ @property
817
+ @pulumi.getter(name="conditionType")
818
+ def condition_type(self) -> str:
819
+ """
820
+ Condition type.
821
+ - Choices: `ConditionAttributes`, `ConditionReference`
822
+ """
823
+ return pulumi.get(self, "condition_type")
824
+
825
+ @property
826
+ @pulumi.getter(name="attributeName")
827
+ def attribute_name(self) -> Optional[str]:
828
+ """
829
+ Dictionary attribute name
830
+ """
831
+ return pulumi.get(self, "attribute_name")
832
+
833
+ @property
834
+ @pulumi.getter(name="attributeValue")
835
+ def attribute_value(self) -> Optional[str]:
836
+ """
837
+ Attribute value for condition. Value type is specified in dictionary object.
838
+ """
839
+ return pulumi.get(self, "attribute_value")
840
+
841
+ @property
842
+ @pulumi.getter(name="dictionaryName")
843
+ def dictionary_name(self) -> Optional[str]:
844
+ """
845
+ Dictionary name
846
+ """
847
+ return pulumi.get(self, "dictionary_name")
848
+
849
+ @property
850
+ @pulumi.getter(name="dictionaryValue")
851
+ def dictionary_value(self) -> Optional[str]:
852
+ """
853
+ Dictionary value
854
+ """
855
+ return pulumi.get(self, "dictionary_value")
856
+
857
+ @property
858
+ @pulumi.getter
859
+ def id(self) -> Optional[str]:
860
+ """
861
+ UUID for condition
862
+ """
863
+ return pulumi.get(self, "id")
864
+
865
+ @property
866
+ @pulumi.getter(name="isNegate")
867
+ def is_negate(self) -> Optional[bool]:
868
+ """
869
+ Indicates whereas this condition is in negate mode
870
+ """
871
+ return pulumi.get(self, "is_negate")
872
+
873
+ @property
874
+ @pulumi.getter
875
+ def operator(self) -> Optional[str]:
876
+ """
877
+ Equality operator
878
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
879
+ """
880
+ return pulumi.get(self, "operator")
881
+
882
+
883
+ @pulumi.output_type
884
+ class AuthorizationRuleChildren(dict):
885
+ @staticmethod
886
+ def __key_warning(key: str):
887
+ suggest = None
888
+ if key == "conditionType":
889
+ suggest = "condition_type"
890
+ elif key == "attributeName":
891
+ suggest = "attribute_name"
892
+ elif key == "attributeValue":
893
+ suggest = "attribute_value"
894
+ elif key == "dictionaryName":
895
+ suggest = "dictionary_name"
896
+ elif key == "dictionaryValue":
897
+ suggest = "dictionary_value"
898
+ elif key == "isNegate":
899
+ suggest = "is_negate"
900
+
901
+ if suggest:
902
+ pulumi.log.warn(f"Key '{key}' not found in AuthorizationRuleChildren. Access the value via the '{suggest}' property getter instead.")
903
+
904
+ def __getitem__(self, key: str) -> Any:
905
+ AuthorizationRuleChildren.__key_warning(key)
906
+ return super().__getitem__(key)
907
+
908
+ def get(self, key: str, default = None) -> Any:
909
+ AuthorizationRuleChildren.__key_warning(key)
910
+ return super().get(key, default)
911
+
912
+ def __init__(__self__, *,
913
+ condition_type: str,
914
+ attribute_name: Optional[str] = None,
915
+ attribute_value: Optional[str] = None,
916
+ childrens: Optional[Sequence['outputs.AuthorizationRuleChildrenChildren']] = None,
917
+ dictionary_name: Optional[str] = None,
918
+ dictionary_value: Optional[str] = None,
919
+ id: Optional[str] = None,
920
+ is_negate: Optional[bool] = None,
921
+ operator: Optional[str] = None):
922
+ """
923
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
924
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
925
+ :param str attribute_name: Dictionary attribute name
926
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
927
+ :param Sequence['AuthorizationRuleChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
928
+ :param str dictionary_name: Dictionary name
929
+ :param str dictionary_value: Dictionary value
930
+ :param str id: UUID for condition
931
+ :param bool is_negate: Indicates whereas this condition is in negate mode
932
+ :param str operator: Equality operator
933
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
934
+ """
935
+ pulumi.set(__self__, "condition_type", condition_type)
936
+ if attribute_name is not None:
937
+ pulumi.set(__self__, "attribute_name", attribute_name)
938
+ if attribute_value is not None:
939
+ pulumi.set(__self__, "attribute_value", attribute_value)
940
+ if childrens is not None:
941
+ pulumi.set(__self__, "childrens", childrens)
942
+ if dictionary_name is not None:
943
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
944
+ if dictionary_value is not None:
945
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
946
+ if id is not None:
947
+ pulumi.set(__self__, "id", id)
948
+ if is_negate is not None:
949
+ pulumi.set(__self__, "is_negate", is_negate)
950
+ if operator is not None:
951
+ pulumi.set(__self__, "operator", operator)
952
+
953
+ @property
954
+ @pulumi.getter(name="conditionType")
955
+ def condition_type(self) -> str:
956
+ """
957
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
958
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
959
+ """
960
+ return pulumi.get(self, "condition_type")
961
+
962
+ @property
963
+ @pulumi.getter(name="attributeName")
964
+ def attribute_name(self) -> Optional[str]:
965
+ """
966
+ Dictionary attribute name
967
+ """
968
+ return pulumi.get(self, "attribute_name")
969
+
970
+ @property
971
+ @pulumi.getter(name="attributeValue")
972
+ def attribute_value(self) -> Optional[str]:
973
+ """
974
+ Attribute value for condition. Value type is specified in dictionary object.
975
+ """
976
+ return pulumi.get(self, "attribute_value")
977
+
978
+ @property
979
+ @pulumi.getter
980
+ def childrens(self) -> Optional[Sequence['outputs.AuthorizationRuleChildrenChildren']]:
981
+ """
982
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
983
+ """
984
+ return pulumi.get(self, "childrens")
985
+
986
+ @property
987
+ @pulumi.getter(name="dictionaryName")
988
+ def dictionary_name(self) -> Optional[str]:
989
+ """
990
+ Dictionary name
991
+ """
992
+ return pulumi.get(self, "dictionary_name")
993
+
994
+ @property
995
+ @pulumi.getter(name="dictionaryValue")
996
+ def dictionary_value(self) -> Optional[str]:
997
+ """
998
+ Dictionary value
999
+ """
1000
+ return pulumi.get(self, "dictionary_value")
1001
+
1002
+ @property
1003
+ @pulumi.getter
1004
+ def id(self) -> Optional[str]:
1005
+ """
1006
+ UUID for condition
1007
+ """
1008
+ return pulumi.get(self, "id")
1009
+
1010
+ @property
1011
+ @pulumi.getter(name="isNegate")
1012
+ def is_negate(self) -> Optional[bool]:
1013
+ """
1014
+ Indicates whereas this condition is in negate mode
1015
+ """
1016
+ return pulumi.get(self, "is_negate")
1017
+
1018
+ @property
1019
+ @pulumi.getter
1020
+ def operator(self) -> Optional[str]:
1021
+ """
1022
+ Equality operator
1023
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1024
+ """
1025
+ return pulumi.get(self, "operator")
1026
+
1027
+
1028
+ @pulumi.output_type
1029
+ class AuthorizationRuleChildrenChildren(dict):
1030
+ @staticmethod
1031
+ def __key_warning(key: str):
1032
+ suggest = None
1033
+ if key == "conditionType":
1034
+ suggest = "condition_type"
1035
+ elif key == "attributeName":
1036
+ suggest = "attribute_name"
1037
+ elif key == "attributeValue":
1038
+ suggest = "attribute_value"
1039
+ elif key == "dictionaryName":
1040
+ suggest = "dictionary_name"
1041
+ elif key == "dictionaryValue":
1042
+ suggest = "dictionary_value"
1043
+ elif key == "isNegate":
1044
+ suggest = "is_negate"
1045
+
1046
+ if suggest:
1047
+ pulumi.log.warn(f"Key '{key}' not found in AuthorizationRuleChildrenChildren. Access the value via the '{suggest}' property getter instead.")
1048
+
1049
+ def __getitem__(self, key: str) -> Any:
1050
+ AuthorizationRuleChildrenChildren.__key_warning(key)
1051
+ return super().__getitem__(key)
1052
+
1053
+ def get(self, key: str, default = None) -> Any:
1054
+ AuthorizationRuleChildrenChildren.__key_warning(key)
1055
+ return super().get(key, default)
1056
+
1057
+ def __init__(__self__, *,
1058
+ condition_type: str,
1059
+ attribute_name: Optional[str] = None,
1060
+ attribute_value: Optional[str] = None,
1061
+ dictionary_name: Optional[str] = None,
1062
+ dictionary_value: Optional[str] = None,
1063
+ id: Optional[str] = None,
1064
+ is_negate: Optional[bool] = None,
1065
+ operator: Optional[str] = None):
1066
+ """
1067
+ :param str condition_type: Condition type.
1068
+ - Choices: `ConditionAttributes`, `ConditionReference`
1069
+ :param str attribute_name: Dictionary attribute name
1070
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
1071
+ :param str dictionary_name: Dictionary name
1072
+ :param str dictionary_value: Dictionary value
1073
+ :param str id: UUID for condition
1074
+ :param bool is_negate: Indicates whereas this condition is in negate mode
1075
+ :param str operator: Equality operator
1076
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1077
+ """
1078
+ pulumi.set(__self__, "condition_type", condition_type)
1079
+ if attribute_name is not None:
1080
+ pulumi.set(__self__, "attribute_name", attribute_name)
1081
+ if attribute_value is not None:
1082
+ pulumi.set(__self__, "attribute_value", attribute_value)
1083
+ if dictionary_name is not None:
1084
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
1085
+ if dictionary_value is not None:
1086
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
1087
+ if id is not None:
1088
+ pulumi.set(__self__, "id", id)
1089
+ if is_negate is not None:
1090
+ pulumi.set(__self__, "is_negate", is_negate)
1091
+ if operator is not None:
1092
+ pulumi.set(__self__, "operator", operator)
1093
+
1094
+ @property
1095
+ @pulumi.getter(name="conditionType")
1096
+ def condition_type(self) -> str:
1097
+ """
1098
+ Condition type.
1099
+ - Choices: `ConditionAttributes`, `ConditionReference`
1100
+ """
1101
+ return pulumi.get(self, "condition_type")
1102
+
1103
+ @property
1104
+ @pulumi.getter(name="attributeName")
1105
+ def attribute_name(self) -> Optional[str]:
1106
+ """
1107
+ Dictionary attribute name
1108
+ """
1109
+ return pulumi.get(self, "attribute_name")
1110
+
1111
+ @property
1112
+ @pulumi.getter(name="attributeValue")
1113
+ def attribute_value(self) -> Optional[str]:
1114
+ """
1115
+ Attribute value for condition. Value type is specified in dictionary object.
1116
+ """
1117
+ return pulumi.get(self, "attribute_value")
1118
+
1119
+ @property
1120
+ @pulumi.getter(name="dictionaryName")
1121
+ def dictionary_name(self) -> Optional[str]:
1122
+ """
1123
+ Dictionary name
1124
+ """
1125
+ return pulumi.get(self, "dictionary_name")
1126
+
1127
+ @property
1128
+ @pulumi.getter(name="dictionaryValue")
1129
+ def dictionary_value(self) -> Optional[str]:
1130
+ """
1131
+ Dictionary value
1132
+ """
1133
+ return pulumi.get(self, "dictionary_value")
1134
+
1135
+ @property
1136
+ @pulumi.getter
1137
+ def id(self) -> Optional[str]:
1138
+ """
1139
+ UUID for condition
1140
+ """
1141
+ return pulumi.get(self, "id")
1142
+
1143
+ @property
1144
+ @pulumi.getter(name="isNegate")
1145
+ def is_negate(self) -> Optional[bool]:
1146
+ """
1147
+ Indicates whereas this condition is in negate mode
1148
+ """
1149
+ return pulumi.get(self, "is_negate")
1150
+
1151
+ @property
1152
+ @pulumi.getter
1153
+ def operator(self) -> Optional[str]:
1154
+ """
1155
+ Equality operator
1156
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1157
+ """
1158
+ return pulumi.get(self, "operator")
1159
+
1160
+
1161
+ @pulumi.output_type
1162
+ class ConditionChildren(dict):
1163
+ @staticmethod
1164
+ def __key_warning(key: str):
1165
+ suggest = None
1166
+ if key == "conditionType":
1167
+ suggest = "condition_type"
1168
+ elif key == "attributeName":
1169
+ suggest = "attribute_name"
1170
+ elif key == "attributeValue":
1171
+ suggest = "attribute_value"
1172
+ elif key == "dictionaryName":
1173
+ suggest = "dictionary_name"
1174
+ elif key == "dictionaryValue":
1175
+ suggest = "dictionary_value"
1176
+ elif key == "isNegate":
1177
+ suggest = "is_negate"
1178
+
1179
+ if suggest:
1180
+ pulumi.log.warn(f"Key '{key}' not found in ConditionChildren. Access the value via the '{suggest}' property getter instead.")
1181
+
1182
+ def __getitem__(self, key: str) -> Any:
1183
+ ConditionChildren.__key_warning(key)
1184
+ return super().__getitem__(key)
1185
+
1186
+ def get(self, key: str, default = None) -> Any:
1187
+ ConditionChildren.__key_warning(key)
1188
+ return super().get(key, default)
1189
+
1190
+ def __init__(__self__, *,
1191
+ condition_type: str,
1192
+ attribute_name: Optional[str] = None,
1193
+ attribute_value: Optional[str] = None,
1194
+ childrens: Optional[Sequence['outputs.ConditionChildrenChildren']] = None,
1195
+ description: Optional[str] = None,
1196
+ dictionary_name: Optional[str] = None,
1197
+ dictionary_value: Optional[str] = None,
1198
+ id: Optional[str] = None,
1199
+ is_negate: Optional[bool] = None,
1200
+ name: Optional[str] = None,
1201
+ operator: Optional[str] = None):
1202
+ """
1203
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
1204
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
1205
+ :param str attribute_name: Dictionary attribute name
1206
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
1207
+ :param Sequence['ConditionChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
1208
+ :param str description: Condition description
1209
+ :param str dictionary_name: Dictionary name
1210
+ :param str dictionary_value: Dictionary value
1211
+ :param str id: UUID for condition
1212
+ :param bool is_negate: Indicates whereas this condition is in negate mode
1213
+ :param str name: Condition name
1214
+ :param str operator: Equality operator
1215
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1216
+ """
1217
+ pulumi.set(__self__, "condition_type", condition_type)
1218
+ if attribute_name is not None:
1219
+ pulumi.set(__self__, "attribute_name", attribute_name)
1220
+ if attribute_value is not None:
1221
+ pulumi.set(__self__, "attribute_value", attribute_value)
1222
+ if childrens is not None:
1223
+ pulumi.set(__self__, "childrens", childrens)
1224
+ if description is not None:
1225
+ pulumi.set(__self__, "description", description)
1226
+ if dictionary_name is not None:
1227
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
1228
+ if dictionary_value is not None:
1229
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
1230
+ if id is not None:
1231
+ pulumi.set(__self__, "id", id)
1232
+ if is_negate is not None:
1233
+ pulumi.set(__self__, "is_negate", is_negate)
1234
+ if name is not None:
1235
+ pulumi.set(__self__, "name", name)
1236
+ if operator is not None:
1237
+ pulumi.set(__self__, "operator", operator)
1238
+
1239
+ @property
1240
+ @pulumi.getter(name="conditionType")
1241
+ def condition_type(self) -> str:
1242
+ """
1243
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
1244
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
1245
+ """
1246
+ return pulumi.get(self, "condition_type")
1247
+
1248
+ @property
1249
+ @pulumi.getter(name="attributeName")
1250
+ def attribute_name(self) -> Optional[str]:
1251
+ """
1252
+ Dictionary attribute name
1253
+ """
1254
+ return pulumi.get(self, "attribute_name")
1255
+
1256
+ @property
1257
+ @pulumi.getter(name="attributeValue")
1258
+ def attribute_value(self) -> Optional[str]:
1259
+ """
1260
+ Attribute value for condition. Value type is specified in dictionary object.
1261
+ """
1262
+ return pulumi.get(self, "attribute_value")
1263
+
1264
+ @property
1265
+ @pulumi.getter
1266
+ def childrens(self) -> Optional[Sequence['outputs.ConditionChildrenChildren']]:
1267
+ """
1268
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
1269
+ """
1270
+ return pulumi.get(self, "childrens")
1271
+
1272
+ @property
1273
+ @pulumi.getter
1274
+ def description(self) -> Optional[str]:
1275
+ """
1276
+ Condition description
1277
+ """
1278
+ return pulumi.get(self, "description")
1279
+
1280
+ @property
1281
+ @pulumi.getter(name="dictionaryName")
1282
+ def dictionary_name(self) -> Optional[str]:
1283
+ """
1284
+ Dictionary name
1285
+ """
1286
+ return pulumi.get(self, "dictionary_name")
1287
+
1288
+ @property
1289
+ @pulumi.getter(name="dictionaryValue")
1290
+ def dictionary_value(self) -> Optional[str]:
1291
+ """
1292
+ Dictionary value
1293
+ """
1294
+ return pulumi.get(self, "dictionary_value")
1295
+
1296
+ @property
1297
+ @pulumi.getter
1298
+ def id(self) -> Optional[str]:
1299
+ """
1300
+ UUID for condition
1301
+ """
1302
+ return pulumi.get(self, "id")
1303
+
1304
+ @property
1305
+ @pulumi.getter(name="isNegate")
1306
+ def is_negate(self) -> Optional[bool]:
1307
+ """
1308
+ Indicates whereas this condition is in negate mode
1309
+ """
1310
+ return pulumi.get(self, "is_negate")
1311
+
1312
+ @property
1313
+ @pulumi.getter
1314
+ def name(self) -> Optional[str]:
1315
+ """
1316
+ Condition name
1317
+ """
1318
+ return pulumi.get(self, "name")
1319
+
1320
+ @property
1321
+ @pulumi.getter
1322
+ def operator(self) -> Optional[str]:
1323
+ """
1324
+ Equality operator
1325
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1326
+ """
1327
+ return pulumi.get(self, "operator")
1328
+
1329
+
1330
+ @pulumi.output_type
1331
+ class ConditionChildrenChildren(dict):
1332
+ @staticmethod
1333
+ def __key_warning(key: str):
1334
+ suggest = None
1335
+ if key == "conditionType":
1336
+ suggest = "condition_type"
1337
+ elif key == "attributeName":
1338
+ suggest = "attribute_name"
1339
+ elif key == "attributeValue":
1340
+ suggest = "attribute_value"
1341
+ elif key == "dictionaryName":
1342
+ suggest = "dictionary_name"
1343
+ elif key == "dictionaryValue":
1344
+ suggest = "dictionary_value"
1345
+ elif key == "isNegate":
1346
+ suggest = "is_negate"
1347
+
1348
+ if suggest:
1349
+ pulumi.log.warn(f"Key '{key}' not found in ConditionChildrenChildren. Access the value via the '{suggest}' property getter instead.")
1350
+
1351
+ def __getitem__(self, key: str) -> Any:
1352
+ ConditionChildrenChildren.__key_warning(key)
1353
+ return super().__getitem__(key)
1354
+
1355
+ def get(self, key: str, default = None) -> Any:
1356
+ ConditionChildrenChildren.__key_warning(key)
1357
+ return super().get(key, default)
1358
+
1359
+ def __init__(__self__, *,
1360
+ condition_type: str,
1361
+ attribute_name: Optional[str] = None,
1362
+ attribute_value: Optional[str] = None,
1363
+ description: Optional[str] = None,
1364
+ dictionary_name: Optional[str] = None,
1365
+ dictionary_value: Optional[str] = None,
1366
+ id: Optional[str] = None,
1367
+ is_negate: Optional[bool] = None,
1368
+ name: Optional[str] = None,
1369
+ operator: Optional[str] = None):
1370
+ """
1371
+ :param str condition_type: Condition type.
1372
+ - Choices: `ConditionAttributes`, `ConditionReference`
1373
+ :param str attribute_name: Dictionary attribute name
1374
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
1375
+ :param str description: Condition description
1376
+ :param str dictionary_name: Dictionary name
1377
+ :param str dictionary_value: Dictionary value
1378
+ :param str id: UUID for condition
1379
+ :param bool is_negate: Indicates whereas this condition is in negate mode
1380
+ :param str name: Condition name
1381
+ :param str operator: Equality operator
1382
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1383
+ """
1384
+ pulumi.set(__self__, "condition_type", condition_type)
1385
+ if attribute_name is not None:
1386
+ pulumi.set(__self__, "attribute_name", attribute_name)
1387
+ if attribute_value is not None:
1388
+ pulumi.set(__self__, "attribute_value", attribute_value)
1389
+ if description is not None:
1390
+ pulumi.set(__self__, "description", description)
1391
+ if dictionary_name is not None:
1392
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
1393
+ if dictionary_value is not None:
1394
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
1395
+ if id is not None:
1396
+ pulumi.set(__self__, "id", id)
1397
+ if is_negate is not None:
1398
+ pulumi.set(__self__, "is_negate", is_negate)
1399
+ if name is not None:
1400
+ pulumi.set(__self__, "name", name)
1401
+ if operator is not None:
1402
+ pulumi.set(__self__, "operator", operator)
1403
+
1404
+ @property
1405
+ @pulumi.getter(name="conditionType")
1406
+ def condition_type(self) -> str:
1407
+ """
1408
+ Condition type.
1409
+ - Choices: `ConditionAttributes`, `ConditionReference`
1410
+ """
1411
+ return pulumi.get(self, "condition_type")
1412
+
1413
+ @property
1414
+ @pulumi.getter(name="attributeName")
1415
+ def attribute_name(self) -> Optional[str]:
1416
+ """
1417
+ Dictionary attribute name
1418
+ """
1419
+ return pulumi.get(self, "attribute_name")
1420
+
1421
+ @property
1422
+ @pulumi.getter(name="attributeValue")
1423
+ def attribute_value(self) -> Optional[str]:
1424
+ """
1425
+ Attribute value for condition. Value type is specified in dictionary object.
1426
+ """
1427
+ return pulumi.get(self, "attribute_value")
1428
+
1429
+ @property
1430
+ @pulumi.getter
1431
+ def description(self) -> Optional[str]:
1432
+ """
1433
+ Condition description
1434
+ """
1435
+ return pulumi.get(self, "description")
1436
+
1437
+ @property
1438
+ @pulumi.getter(name="dictionaryName")
1439
+ def dictionary_name(self) -> Optional[str]:
1440
+ """
1441
+ Dictionary name
1442
+ """
1443
+ return pulumi.get(self, "dictionary_name")
1444
+
1445
+ @property
1446
+ @pulumi.getter(name="dictionaryValue")
1447
+ def dictionary_value(self) -> Optional[str]:
1448
+ """
1449
+ Dictionary value
1450
+ """
1451
+ return pulumi.get(self, "dictionary_value")
1452
+
1453
+ @property
1454
+ @pulumi.getter
1455
+ def id(self) -> Optional[str]:
1456
+ """
1457
+ UUID for condition
1458
+ """
1459
+ return pulumi.get(self, "id")
1460
+
1461
+ @property
1462
+ @pulumi.getter(name="isNegate")
1463
+ def is_negate(self) -> Optional[bool]:
1464
+ """
1465
+ Indicates whereas this condition is in negate mode
1466
+ """
1467
+ return pulumi.get(self, "is_negate")
1468
+
1469
+ @property
1470
+ @pulumi.getter
1471
+ def name(self) -> Optional[str]:
1472
+ """
1473
+ Condition name
1474
+ """
1475
+ return pulumi.get(self, "name")
1476
+
1477
+ @property
1478
+ @pulumi.getter
1479
+ def operator(self) -> Optional[str]:
1480
+ """
1481
+ Equality operator
1482
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1483
+ """
1484
+ return pulumi.get(self, "operator")
1485
+
1486
+
1487
+ @pulumi.output_type
1488
+ class PolicySetChildren(dict):
1489
+ @staticmethod
1490
+ def __key_warning(key: str):
1491
+ suggest = None
1492
+ if key == "conditionType":
1493
+ suggest = "condition_type"
1494
+ elif key == "attributeName":
1495
+ suggest = "attribute_name"
1496
+ elif key == "attributeValue":
1497
+ suggest = "attribute_value"
1498
+ elif key == "dictionaryName":
1499
+ suggest = "dictionary_name"
1500
+ elif key == "dictionaryValue":
1501
+ suggest = "dictionary_value"
1502
+ elif key == "isNegate":
1503
+ suggest = "is_negate"
1504
+
1505
+ if suggest:
1506
+ pulumi.log.warn(f"Key '{key}' not found in PolicySetChildren. Access the value via the '{suggest}' property getter instead.")
1507
+
1508
+ def __getitem__(self, key: str) -> Any:
1509
+ PolicySetChildren.__key_warning(key)
1510
+ return super().__getitem__(key)
1511
+
1512
+ def get(self, key: str, default = None) -> Any:
1513
+ PolicySetChildren.__key_warning(key)
1514
+ return super().get(key, default)
1515
+
1516
+ def __init__(__self__, *,
1517
+ condition_type: str,
1518
+ attribute_name: Optional[str] = None,
1519
+ attribute_value: Optional[str] = None,
1520
+ childrens: Optional[Sequence['outputs.PolicySetChildrenChildren']] = None,
1521
+ dictionary_name: Optional[str] = None,
1522
+ dictionary_value: Optional[str] = None,
1523
+ id: Optional[str] = None,
1524
+ is_negate: Optional[bool] = None,
1525
+ operator: Optional[str] = None):
1526
+ """
1527
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
1528
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
1529
+ :param str attribute_name: Dictionary attribute name
1530
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
1531
+ :param Sequence['PolicySetChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
1532
+ :param str dictionary_name: Dictionary name
1533
+ :param str dictionary_value: Dictionary value
1534
+ :param str id: UUID for condition
1535
+ :param bool is_negate: Indicates whereas this condition is in negate mode
1536
+ :param str operator: Equality operator
1537
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1538
+ """
1539
+ pulumi.set(__self__, "condition_type", condition_type)
1540
+ if attribute_name is not None:
1541
+ pulumi.set(__self__, "attribute_name", attribute_name)
1542
+ if attribute_value is not None:
1543
+ pulumi.set(__self__, "attribute_value", attribute_value)
1544
+ if childrens is not None:
1545
+ pulumi.set(__self__, "childrens", childrens)
1546
+ if dictionary_name is not None:
1547
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
1548
+ if dictionary_value is not None:
1549
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
1550
+ if id is not None:
1551
+ pulumi.set(__self__, "id", id)
1552
+ if is_negate is not None:
1553
+ pulumi.set(__self__, "is_negate", is_negate)
1554
+ if operator is not None:
1555
+ pulumi.set(__self__, "operator", operator)
1556
+
1557
+ @property
1558
+ @pulumi.getter(name="conditionType")
1559
+ def condition_type(self) -> str:
1560
+ """
1561
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
1562
+ - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
1563
+ """
1564
+ return pulumi.get(self, "condition_type")
1565
+
1566
+ @property
1567
+ @pulumi.getter(name="attributeName")
1568
+ def attribute_name(self) -> Optional[str]:
1569
+ """
1570
+ Dictionary attribute name
1571
+ """
1572
+ return pulumi.get(self, "attribute_name")
1573
+
1574
+ @property
1575
+ @pulumi.getter(name="attributeValue")
1576
+ def attribute_value(self) -> Optional[str]:
1577
+ """
1578
+ Attribute value for condition. Value type is specified in dictionary object.
1579
+ """
1580
+ return pulumi.get(self, "attribute_value")
1581
+
1582
+ @property
1583
+ @pulumi.getter
1584
+ def childrens(self) -> Optional[Sequence['outputs.PolicySetChildrenChildren']]:
1585
+ """
1586
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
1587
+ """
1588
+ return pulumi.get(self, "childrens")
1589
+
1590
+ @property
1591
+ @pulumi.getter(name="dictionaryName")
1592
+ def dictionary_name(self) -> Optional[str]:
1593
+ """
1594
+ Dictionary name
1595
+ """
1596
+ return pulumi.get(self, "dictionary_name")
1597
+
1598
+ @property
1599
+ @pulumi.getter(name="dictionaryValue")
1600
+ def dictionary_value(self) -> Optional[str]:
1601
+ """
1602
+ Dictionary value
1603
+ """
1604
+ return pulumi.get(self, "dictionary_value")
1605
+
1606
+ @property
1607
+ @pulumi.getter
1608
+ def id(self) -> Optional[str]:
1609
+ """
1610
+ UUID for condition
1611
+ """
1612
+ return pulumi.get(self, "id")
1613
+
1614
+ @property
1615
+ @pulumi.getter(name="isNegate")
1616
+ def is_negate(self) -> Optional[bool]:
1617
+ """
1618
+ Indicates whereas this condition is in negate mode
1619
+ """
1620
+ return pulumi.get(self, "is_negate")
1621
+
1622
+ @property
1623
+ @pulumi.getter
1624
+ def operator(self) -> Optional[str]:
1625
+ """
1626
+ Equality operator
1627
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1628
+ """
1629
+ return pulumi.get(self, "operator")
1630
+
1631
+
1632
+ @pulumi.output_type
1633
+ class PolicySetChildrenChildren(dict):
1634
+ @staticmethod
1635
+ def __key_warning(key: str):
1636
+ suggest = None
1637
+ if key == "conditionType":
1638
+ suggest = "condition_type"
1639
+ elif key == "attributeName":
1640
+ suggest = "attribute_name"
1641
+ elif key == "attributeValue":
1642
+ suggest = "attribute_value"
1643
+ elif key == "dictionaryName":
1644
+ suggest = "dictionary_name"
1645
+ elif key == "dictionaryValue":
1646
+ suggest = "dictionary_value"
1647
+ elif key == "isNegate":
1648
+ suggest = "is_negate"
1649
+
1650
+ if suggest:
1651
+ pulumi.log.warn(f"Key '{key}' not found in PolicySetChildrenChildren. Access the value via the '{suggest}' property getter instead.")
1652
+
1653
+ def __getitem__(self, key: str) -> Any:
1654
+ PolicySetChildrenChildren.__key_warning(key)
1655
+ return super().__getitem__(key)
1656
+
1657
+ def get(self, key: str, default = None) -> Any:
1658
+ PolicySetChildrenChildren.__key_warning(key)
1659
+ return super().get(key, default)
1660
+
1661
+ def __init__(__self__, *,
1662
+ condition_type: str,
1663
+ attribute_name: Optional[str] = None,
1664
+ attribute_value: Optional[str] = None,
1665
+ dictionary_name: Optional[str] = None,
1666
+ dictionary_value: Optional[str] = None,
1667
+ id: Optional[str] = None,
1668
+ is_negate: Optional[bool] = None,
1669
+ operator: Optional[str] = None):
1670
+ """
1671
+ :param str condition_type: Condition type.
1672
+ - Choices: `ConditionAttributes`, `ConditionReference`
1673
+ :param str attribute_name: Dictionary attribute name
1674
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
1675
+ :param str dictionary_name: Dictionary name
1676
+ :param str dictionary_value: Dictionary value
1677
+ :param str id: UUID for condition
1678
+ :param bool is_negate: Indicates whereas this condition is in negate mode
1679
+ :param str operator: Equality operator
1680
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1681
+ """
1682
+ pulumi.set(__self__, "condition_type", condition_type)
1683
+ if attribute_name is not None:
1684
+ pulumi.set(__self__, "attribute_name", attribute_name)
1685
+ if attribute_value is not None:
1686
+ pulumi.set(__self__, "attribute_value", attribute_value)
1687
+ if dictionary_name is not None:
1688
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
1689
+ if dictionary_value is not None:
1690
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
1691
+ if id is not None:
1692
+ pulumi.set(__self__, "id", id)
1693
+ if is_negate is not None:
1694
+ pulumi.set(__self__, "is_negate", is_negate)
1695
+ if operator is not None:
1696
+ pulumi.set(__self__, "operator", operator)
1697
+
1698
+ @property
1699
+ @pulumi.getter(name="conditionType")
1700
+ def condition_type(self) -> str:
1701
+ """
1702
+ Condition type.
1703
+ - Choices: `ConditionAttributes`, `ConditionReference`
1704
+ """
1705
+ return pulumi.get(self, "condition_type")
1706
+
1707
+ @property
1708
+ @pulumi.getter(name="attributeName")
1709
+ def attribute_name(self) -> Optional[str]:
1710
+ """
1711
+ Dictionary attribute name
1712
+ """
1713
+ return pulumi.get(self, "attribute_name")
1714
+
1715
+ @property
1716
+ @pulumi.getter(name="attributeValue")
1717
+ def attribute_value(self) -> Optional[str]:
1718
+ """
1719
+ Attribute value for condition. Value type is specified in dictionary object.
1720
+ """
1721
+ return pulumi.get(self, "attribute_value")
1722
+
1723
+ @property
1724
+ @pulumi.getter(name="dictionaryName")
1725
+ def dictionary_name(self) -> Optional[str]:
1726
+ """
1727
+ Dictionary name
1728
+ """
1729
+ return pulumi.get(self, "dictionary_name")
1730
+
1731
+ @property
1732
+ @pulumi.getter(name="dictionaryValue")
1733
+ def dictionary_value(self) -> Optional[str]:
1734
+ """
1735
+ Dictionary value
1736
+ """
1737
+ return pulumi.get(self, "dictionary_value")
1738
+
1739
+ @property
1740
+ @pulumi.getter
1741
+ def id(self) -> Optional[str]:
1742
+ """
1743
+ UUID for condition
1744
+ """
1745
+ return pulumi.get(self, "id")
1746
+
1747
+ @property
1748
+ @pulumi.getter(name="isNegate")
1749
+ def is_negate(self) -> Optional[bool]:
1750
+ """
1751
+ Indicates whereas this condition is in negate mode
1752
+ """
1753
+ return pulumi.get(self, "is_negate")
1754
+
1755
+ @property
1756
+ @pulumi.getter
1757
+ def operator(self) -> Optional[str]:
1758
+ """
1759
+ Equality operator
1760
+ - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
1761
+ """
1762
+ return pulumi.get(self, "operator")
1763
+
1764
+
1765
+ @pulumi.output_type
1766
+ class TacacsCommandSetCommand(dict):
1767
+ def __init__(__self__, *,
1768
+ arguments: str,
1769
+ command: str,
1770
+ grant: str):
1771
+ """
1772
+ :param str arguments: Command arguments
1773
+ :param str command: Command
1774
+ :param str grant: Grant
1775
+ - Choices: `PERMIT`, `DENY`, `DENY_ALWAYS`
1776
+ """
1777
+ pulumi.set(__self__, "arguments", arguments)
1778
+ pulumi.set(__self__, "command", command)
1779
+ pulumi.set(__self__, "grant", grant)
1780
+
1781
+ @property
1782
+ @pulumi.getter
1783
+ def arguments(self) -> str:
1784
+ """
1785
+ Command arguments
1786
+ """
1787
+ return pulumi.get(self, "arguments")
1788
+
1789
+ @property
1790
+ @pulumi.getter
1791
+ def command(self) -> str:
1792
+ """
1793
+ Command
1794
+ """
1795
+ return pulumi.get(self, "command")
1796
+
1797
+ @property
1798
+ @pulumi.getter
1799
+ def grant(self) -> str:
1800
+ """
1801
+ Grant
1802
+ - Choices: `PERMIT`, `DENY`, `DENY_ALWAYS`
1803
+ """
1804
+ return pulumi.get(self, "grant")
1805
+
1806
+
1807
+ @pulumi.output_type
1808
+ class TacacsProfileSessionAttribute(dict):
1809
+ def __init__(__self__, *,
1810
+ name: str,
1811
+ type: str,
1812
+ value: str):
1813
+ """
1814
+ :param str name: Name
1815
+ :param str type: Type
1816
+ - Choices: `MANDATORY`, `OPTIONAL`
1817
+ :param str value: Value
1818
+ """
1819
+ pulumi.set(__self__, "name", name)
1820
+ pulumi.set(__self__, "type", type)
1821
+ pulumi.set(__self__, "value", value)
1822
+
1823
+ @property
1824
+ @pulumi.getter
1825
+ def name(self) -> str:
1826
+ """
1827
+ Name
1828
+ """
1829
+ return pulumi.get(self, "name")
1830
+
1831
+ @property
1832
+ @pulumi.getter
1833
+ def type(self) -> str:
1834
+ """
1835
+ Type
1836
+ - Choices: `MANDATORY`, `OPTIONAL`
1837
+ """
1838
+ return pulumi.get(self, "type")
1839
+
1840
+ @property
1841
+ @pulumi.getter
1842
+ def value(self) -> str:
1843
+ """
1844
+ Value
1845
+ """
1846
+ return pulumi.get(self, "value")
1847
+
1848
+
1849
+ @pulumi.output_type
1850
+ class GetAuthenticationRuleChildrenResult(dict):
1851
+ def __init__(__self__, *,
1852
+ attribute_name: str,
1853
+ attribute_value: str,
1854
+ childrens: Sequence['outputs.GetAuthenticationRuleChildrenChildrenResult'],
1855
+ condition_type: str,
1856
+ dictionary_name: str,
1857
+ dictionary_value: str,
1858
+ id: str,
1859
+ is_negate: bool,
1860
+ operator: str):
1861
+ """
1862
+ :param str attribute_name: Dictionary attribute name
1863
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
1864
+ :param Sequence['GetAuthenticationRuleChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
1865
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
1866
+ :param str dictionary_name: Dictionary name
1867
+ :param str dictionary_value: Dictionary value
1868
+ :param str id: UUID for condition
1869
+ :param bool is_negate: Indicates whereas this condition is in negate mode
1870
+ :param str operator: Equality operator
1871
+ """
1872
+ pulumi.set(__self__, "attribute_name", attribute_name)
1873
+ pulumi.set(__self__, "attribute_value", attribute_value)
1874
+ pulumi.set(__self__, "childrens", childrens)
1875
+ pulumi.set(__self__, "condition_type", condition_type)
1876
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
1877
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
1878
+ pulumi.set(__self__, "id", id)
1879
+ pulumi.set(__self__, "is_negate", is_negate)
1880
+ pulumi.set(__self__, "operator", operator)
1881
+
1882
+ @property
1883
+ @pulumi.getter(name="attributeName")
1884
+ def attribute_name(self) -> str:
1885
+ """
1886
+ Dictionary attribute name
1887
+ """
1888
+ return pulumi.get(self, "attribute_name")
1889
+
1890
+ @property
1891
+ @pulumi.getter(name="attributeValue")
1892
+ def attribute_value(self) -> str:
1893
+ """
1894
+ Attribute value for condition. Value type is specified in dictionary object.
1895
+ """
1896
+ return pulumi.get(self, "attribute_value")
1897
+
1898
+ @property
1899
+ @pulumi.getter
1900
+ def childrens(self) -> Sequence['outputs.GetAuthenticationRuleChildrenChildrenResult']:
1901
+ """
1902
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
1903
+ """
1904
+ return pulumi.get(self, "childrens")
1905
+
1906
+ @property
1907
+ @pulumi.getter(name="conditionType")
1908
+ def condition_type(self) -> str:
1909
+ """
1910
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
1911
+ """
1912
+ return pulumi.get(self, "condition_type")
1913
+
1914
+ @property
1915
+ @pulumi.getter(name="dictionaryName")
1916
+ def dictionary_name(self) -> str:
1917
+ """
1918
+ Dictionary name
1919
+ """
1920
+ return pulumi.get(self, "dictionary_name")
1921
+
1922
+ @property
1923
+ @pulumi.getter(name="dictionaryValue")
1924
+ def dictionary_value(self) -> str:
1925
+ """
1926
+ Dictionary value
1927
+ """
1928
+ return pulumi.get(self, "dictionary_value")
1929
+
1930
+ @property
1931
+ @pulumi.getter
1932
+ def id(self) -> str:
1933
+ """
1934
+ UUID for condition
1935
+ """
1936
+ return pulumi.get(self, "id")
1937
+
1938
+ @property
1939
+ @pulumi.getter(name="isNegate")
1940
+ def is_negate(self) -> bool:
1941
+ """
1942
+ Indicates whereas this condition is in negate mode
1943
+ """
1944
+ return pulumi.get(self, "is_negate")
1945
+
1946
+ @property
1947
+ @pulumi.getter
1948
+ def operator(self) -> str:
1949
+ """
1950
+ Equality operator
1951
+ """
1952
+ return pulumi.get(self, "operator")
1953
+
1954
+
1955
+ @pulumi.output_type
1956
+ class GetAuthenticationRuleChildrenChildrenResult(dict):
1957
+ def __init__(__self__, *,
1958
+ attribute_name: str,
1959
+ attribute_value: str,
1960
+ condition_type: str,
1961
+ dictionary_name: str,
1962
+ dictionary_value: str,
1963
+ id: str,
1964
+ is_negate: bool,
1965
+ operator: str):
1966
+ """
1967
+ :param str attribute_name: Dictionary attribute name
1968
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
1969
+ :param str condition_type: Condition type.
1970
+ :param str dictionary_name: Dictionary name
1971
+ :param str dictionary_value: Dictionary value
1972
+ :param str id: UUID for condition
1973
+ :param bool is_negate: Indicates whereas this condition is in negate mode
1974
+ :param str operator: Equality operator
1975
+ """
1976
+ pulumi.set(__self__, "attribute_name", attribute_name)
1977
+ pulumi.set(__self__, "attribute_value", attribute_value)
1978
+ pulumi.set(__self__, "condition_type", condition_type)
1979
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
1980
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
1981
+ pulumi.set(__self__, "id", id)
1982
+ pulumi.set(__self__, "is_negate", is_negate)
1983
+ pulumi.set(__self__, "operator", operator)
1984
+
1985
+ @property
1986
+ @pulumi.getter(name="attributeName")
1987
+ def attribute_name(self) -> str:
1988
+ """
1989
+ Dictionary attribute name
1990
+ """
1991
+ return pulumi.get(self, "attribute_name")
1992
+
1993
+ @property
1994
+ @pulumi.getter(name="attributeValue")
1995
+ def attribute_value(self) -> str:
1996
+ """
1997
+ Attribute value for condition. Value type is specified in dictionary object.
1998
+ """
1999
+ return pulumi.get(self, "attribute_value")
2000
+
2001
+ @property
2002
+ @pulumi.getter(name="conditionType")
2003
+ def condition_type(self) -> str:
2004
+ """
2005
+ Condition type.
2006
+ """
2007
+ return pulumi.get(self, "condition_type")
2008
+
2009
+ @property
2010
+ @pulumi.getter(name="dictionaryName")
2011
+ def dictionary_name(self) -> str:
2012
+ """
2013
+ Dictionary name
2014
+ """
2015
+ return pulumi.get(self, "dictionary_name")
2016
+
2017
+ @property
2018
+ @pulumi.getter(name="dictionaryValue")
2019
+ def dictionary_value(self) -> str:
2020
+ """
2021
+ Dictionary value
2022
+ """
2023
+ return pulumi.get(self, "dictionary_value")
2024
+
2025
+ @property
2026
+ @pulumi.getter
2027
+ def id(self) -> str:
2028
+ """
2029
+ UUID for condition
2030
+ """
2031
+ return pulumi.get(self, "id")
2032
+
2033
+ @property
2034
+ @pulumi.getter(name="isNegate")
2035
+ def is_negate(self) -> bool:
2036
+ """
2037
+ Indicates whereas this condition is in negate mode
2038
+ """
2039
+ return pulumi.get(self, "is_negate")
2040
+
2041
+ @property
2042
+ @pulumi.getter
2043
+ def operator(self) -> str:
2044
+ """
2045
+ Equality operator
2046
+ """
2047
+ return pulumi.get(self, "operator")
2048
+
2049
+
2050
+ @pulumi.output_type
2051
+ class GetAuthorizationExceptionRuleChildrenResult(dict):
2052
+ def __init__(__self__, *,
2053
+ attribute_name: str,
2054
+ attribute_value: str,
2055
+ childrens: Sequence['outputs.GetAuthorizationExceptionRuleChildrenChildrenResult'],
2056
+ condition_type: str,
2057
+ dictionary_name: str,
2058
+ dictionary_value: str,
2059
+ id: str,
2060
+ is_negate: bool,
2061
+ operator: str):
2062
+ """
2063
+ :param str attribute_name: Dictionary attribute name
2064
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
2065
+ :param Sequence['GetAuthorizationExceptionRuleChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
2066
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
2067
+ :param str dictionary_name: Dictionary name
2068
+ :param str dictionary_value: Dictionary value
2069
+ :param str id: UUID for condition
2070
+ :param bool is_negate: Indicates whereas this condition is in negate mode
2071
+ :param str operator: Equality operator
2072
+ """
2073
+ pulumi.set(__self__, "attribute_name", attribute_name)
2074
+ pulumi.set(__self__, "attribute_value", attribute_value)
2075
+ pulumi.set(__self__, "childrens", childrens)
2076
+ pulumi.set(__self__, "condition_type", condition_type)
2077
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
2078
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
2079
+ pulumi.set(__self__, "id", id)
2080
+ pulumi.set(__self__, "is_negate", is_negate)
2081
+ pulumi.set(__self__, "operator", operator)
2082
+
2083
+ @property
2084
+ @pulumi.getter(name="attributeName")
2085
+ def attribute_name(self) -> str:
2086
+ """
2087
+ Dictionary attribute name
2088
+ """
2089
+ return pulumi.get(self, "attribute_name")
2090
+
2091
+ @property
2092
+ @pulumi.getter(name="attributeValue")
2093
+ def attribute_value(self) -> str:
2094
+ """
2095
+ Attribute value for condition. Value type is specified in dictionary object.
2096
+ """
2097
+ return pulumi.get(self, "attribute_value")
2098
+
2099
+ @property
2100
+ @pulumi.getter
2101
+ def childrens(self) -> Sequence['outputs.GetAuthorizationExceptionRuleChildrenChildrenResult']:
2102
+ """
2103
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
2104
+ """
2105
+ return pulumi.get(self, "childrens")
2106
+
2107
+ @property
2108
+ @pulumi.getter(name="conditionType")
2109
+ def condition_type(self) -> str:
2110
+ """
2111
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
2112
+ """
2113
+ return pulumi.get(self, "condition_type")
2114
+
2115
+ @property
2116
+ @pulumi.getter(name="dictionaryName")
2117
+ def dictionary_name(self) -> str:
2118
+ """
2119
+ Dictionary name
2120
+ """
2121
+ return pulumi.get(self, "dictionary_name")
2122
+
2123
+ @property
2124
+ @pulumi.getter(name="dictionaryValue")
2125
+ def dictionary_value(self) -> str:
2126
+ """
2127
+ Dictionary value
2128
+ """
2129
+ return pulumi.get(self, "dictionary_value")
2130
+
2131
+ @property
2132
+ @pulumi.getter
2133
+ def id(self) -> str:
2134
+ """
2135
+ UUID for condition
2136
+ """
2137
+ return pulumi.get(self, "id")
2138
+
2139
+ @property
2140
+ @pulumi.getter(name="isNegate")
2141
+ def is_negate(self) -> bool:
2142
+ """
2143
+ Indicates whereas this condition is in negate mode
2144
+ """
2145
+ return pulumi.get(self, "is_negate")
2146
+
2147
+ @property
2148
+ @pulumi.getter
2149
+ def operator(self) -> str:
2150
+ """
2151
+ Equality operator
2152
+ """
2153
+ return pulumi.get(self, "operator")
2154
+
2155
+
2156
+ @pulumi.output_type
2157
+ class GetAuthorizationExceptionRuleChildrenChildrenResult(dict):
2158
+ def __init__(__self__, *,
2159
+ attribute_name: str,
2160
+ attribute_value: str,
2161
+ condition_type: str,
2162
+ dictionary_name: str,
2163
+ dictionary_value: str,
2164
+ id: str,
2165
+ is_negate: bool,
2166
+ operator: str):
2167
+ """
2168
+ :param str attribute_name: Dictionary attribute name
2169
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
2170
+ :param str condition_type: Condition type.
2171
+ :param str dictionary_name: Dictionary name
2172
+ :param str dictionary_value: Dictionary value
2173
+ :param str id: UUID for condition
2174
+ :param bool is_negate: Indicates whereas this condition is in negate mode
2175
+ :param str operator: Equality operator
2176
+ """
2177
+ pulumi.set(__self__, "attribute_name", attribute_name)
2178
+ pulumi.set(__self__, "attribute_value", attribute_value)
2179
+ pulumi.set(__self__, "condition_type", condition_type)
2180
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
2181
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
2182
+ pulumi.set(__self__, "id", id)
2183
+ pulumi.set(__self__, "is_negate", is_negate)
2184
+ pulumi.set(__self__, "operator", operator)
2185
+
2186
+ @property
2187
+ @pulumi.getter(name="attributeName")
2188
+ def attribute_name(self) -> str:
2189
+ """
2190
+ Dictionary attribute name
2191
+ """
2192
+ return pulumi.get(self, "attribute_name")
2193
+
2194
+ @property
2195
+ @pulumi.getter(name="attributeValue")
2196
+ def attribute_value(self) -> str:
2197
+ """
2198
+ Attribute value for condition. Value type is specified in dictionary object.
2199
+ """
2200
+ return pulumi.get(self, "attribute_value")
2201
+
2202
+ @property
2203
+ @pulumi.getter(name="conditionType")
2204
+ def condition_type(self) -> str:
2205
+ """
2206
+ Condition type.
2207
+ """
2208
+ return pulumi.get(self, "condition_type")
2209
+
2210
+ @property
2211
+ @pulumi.getter(name="dictionaryName")
2212
+ def dictionary_name(self) -> str:
2213
+ """
2214
+ Dictionary name
2215
+ """
2216
+ return pulumi.get(self, "dictionary_name")
2217
+
2218
+ @property
2219
+ @pulumi.getter(name="dictionaryValue")
2220
+ def dictionary_value(self) -> str:
2221
+ """
2222
+ Dictionary value
2223
+ """
2224
+ return pulumi.get(self, "dictionary_value")
2225
+
2226
+ @property
2227
+ @pulumi.getter
2228
+ def id(self) -> str:
2229
+ """
2230
+ UUID for condition
2231
+ """
2232
+ return pulumi.get(self, "id")
2233
+
2234
+ @property
2235
+ @pulumi.getter(name="isNegate")
2236
+ def is_negate(self) -> bool:
2237
+ """
2238
+ Indicates whereas this condition is in negate mode
2239
+ """
2240
+ return pulumi.get(self, "is_negate")
2241
+
2242
+ @property
2243
+ @pulumi.getter
2244
+ def operator(self) -> str:
2245
+ """
2246
+ Equality operator
2247
+ """
2248
+ return pulumi.get(self, "operator")
2249
+
2250
+
2251
+ @pulumi.output_type
2252
+ class GetAuthorizationGlobalExceptionRuleChildrenResult(dict):
2253
+ def __init__(__self__, *,
2254
+ attribute_name: str,
2255
+ attribute_value: str,
2256
+ childrens: Sequence['outputs.GetAuthorizationGlobalExceptionRuleChildrenChildrenResult'],
2257
+ condition_type: str,
2258
+ dictionary_name: str,
2259
+ dictionary_value: str,
2260
+ id: str,
2261
+ is_negate: bool,
2262
+ operator: str):
2263
+ """
2264
+ :param str attribute_name: Dictionary attribute name
2265
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
2266
+ :param Sequence['GetAuthorizationGlobalExceptionRuleChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
2267
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
2268
+ :param str dictionary_name: Dictionary name
2269
+ :param str dictionary_value: Dictionary value
2270
+ :param str id: UUID for condition
2271
+ :param bool is_negate: Indicates whereas this condition is in negate mode
2272
+ :param str operator: Equality operator
2273
+ """
2274
+ pulumi.set(__self__, "attribute_name", attribute_name)
2275
+ pulumi.set(__self__, "attribute_value", attribute_value)
2276
+ pulumi.set(__self__, "childrens", childrens)
2277
+ pulumi.set(__self__, "condition_type", condition_type)
2278
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
2279
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
2280
+ pulumi.set(__self__, "id", id)
2281
+ pulumi.set(__self__, "is_negate", is_negate)
2282
+ pulumi.set(__self__, "operator", operator)
2283
+
2284
+ @property
2285
+ @pulumi.getter(name="attributeName")
2286
+ def attribute_name(self) -> str:
2287
+ """
2288
+ Dictionary attribute name
2289
+ """
2290
+ return pulumi.get(self, "attribute_name")
2291
+
2292
+ @property
2293
+ @pulumi.getter(name="attributeValue")
2294
+ def attribute_value(self) -> str:
2295
+ """
2296
+ Attribute value for condition. Value type is specified in dictionary object.
2297
+ """
2298
+ return pulumi.get(self, "attribute_value")
2299
+
2300
+ @property
2301
+ @pulumi.getter
2302
+ def childrens(self) -> Sequence['outputs.GetAuthorizationGlobalExceptionRuleChildrenChildrenResult']:
2303
+ """
2304
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
2305
+ """
2306
+ return pulumi.get(self, "childrens")
2307
+
2308
+ @property
2309
+ @pulumi.getter(name="conditionType")
2310
+ def condition_type(self) -> str:
2311
+ """
2312
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
2313
+ """
2314
+ return pulumi.get(self, "condition_type")
2315
+
2316
+ @property
2317
+ @pulumi.getter(name="dictionaryName")
2318
+ def dictionary_name(self) -> str:
2319
+ """
2320
+ Dictionary name
2321
+ """
2322
+ return pulumi.get(self, "dictionary_name")
2323
+
2324
+ @property
2325
+ @pulumi.getter(name="dictionaryValue")
2326
+ def dictionary_value(self) -> str:
2327
+ """
2328
+ Dictionary value
2329
+ """
2330
+ return pulumi.get(self, "dictionary_value")
2331
+
2332
+ @property
2333
+ @pulumi.getter
2334
+ def id(self) -> str:
2335
+ """
2336
+ UUID for condition
2337
+ """
2338
+ return pulumi.get(self, "id")
2339
+
2340
+ @property
2341
+ @pulumi.getter(name="isNegate")
2342
+ def is_negate(self) -> bool:
2343
+ """
2344
+ Indicates whereas this condition is in negate mode
2345
+ """
2346
+ return pulumi.get(self, "is_negate")
2347
+
2348
+ @property
2349
+ @pulumi.getter
2350
+ def operator(self) -> str:
2351
+ """
2352
+ Equality operator
2353
+ """
2354
+ return pulumi.get(self, "operator")
2355
+
2356
+
2357
+ @pulumi.output_type
2358
+ class GetAuthorizationGlobalExceptionRuleChildrenChildrenResult(dict):
2359
+ def __init__(__self__, *,
2360
+ attribute_name: str,
2361
+ attribute_value: str,
2362
+ condition_type: str,
2363
+ dictionary_name: str,
2364
+ dictionary_value: str,
2365
+ id: str,
2366
+ is_negate: bool,
2367
+ operator: str):
2368
+ """
2369
+ :param str attribute_name: Dictionary attribute name
2370
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
2371
+ :param str condition_type: Condition type.
2372
+ :param str dictionary_name: Dictionary name
2373
+ :param str dictionary_value: Dictionary value
2374
+ :param str id: UUID for condition
2375
+ :param bool is_negate: Indicates whereas this condition is in negate mode
2376
+ :param str operator: Equality operator
2377
+ """
2378
+ pulumi.set(__self__, "attribute_name", attribute_name)
2379
+ pulumi.set(__self__, "attribute_value", attribute_value)
2380
+ pulumi.set(__self__, "condition_type", condition_type)
2381
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
2382
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
2383
+ pulumi.set(__self__, "id", id)
2384
+ pulumi.set(__self__, "is_negate", is_negate)
2385
+ pulumi.set(__self__, "operator", operator)
2386
+
2387
+ @property
2388
+ @pulumi.getter(name="attributeName")
2389
+ def attribute_name(self) -> str:
2390
+ """
2391
+ Dictionary attribute name
2392
+ """
2393
+ return pulumi.get(self, "attribute_name")
2394
+
2395
+ @property
2396
+ @pulumi.getter(name="attributeValue")
2397
+ def attribute_value(self) -> str:
2398
+ """
2399
+ Attribute value for condition. Value type is specified in dictionary object.
2400
+ """
2401
+ return pulumi.get(self, "attribute_value")
2402
+
2403
+ @property
2404
+ @pulumi.getter(name="conditionType")
2405
+ def condition_type(self) -> str:
2406
+ """
2407
+ Condition type.
2408
+ """
2409
+ return pulumi.get(self, "condition_type")
2410
+
2411
+ @property
2412
+ @pulumi.getter(name="dictionaryName")
2413
+ def dictionary_name(self) -> str:
2414
+ """
2415
+ Dictionary name
2416
+ """
2417
+ return pulumi.get(self, "dictionary_name")
2418
+
2419
+ @property
2420
+ @pulumi.getter(name="dictionaryValue")
2421
+ def dictionary_value(self) -> str:
2422
+ """
2423
+ Dictionary value
2424
+ """
2425
+ return pulumi.get(self, "dictionary_value")
2426
+
2427
+ @property
2428
+ @pulumi.getter
2429
+ def id(self) -> str:
2430
+ """
2431
+ UUID for condition
2432
+ """
2433
+ return pulumi.get(self, "id")
2434
+
2435
+ @property
2436
+ @pulumi.getter(name="isNegate")
2437
+ def is_negate(self) -> bool:
2438
+ """
2439
+ Indicates whereas this condition is in negate mode
2440
+ """
2441
+ return pulumi.get(self, "is_negate")
2442
+
2443
+ @property
2444
+ @pulumi.getter
2445
+ def operator(self) -> str:
2446
+ """
2447
+ Equality operator
2448
+ """
2449
+ return pulumi.get(self, "operator")
2450
+
2451
+
2452
+ @pulumi.output_type
2453
+ class GetAuthorizationRuleChildrenResult(dict):
2454
+ def __init__(__self__, *,
2455
+ attribute_name: str,
2456
+ attribute_value: str,
2457
+ childrens: Sequence['outputs.GetAuthorizationRuleChildrenChildrenResult'],
2458
+ condition_type: str,
2459
+ dictionary_name: str,
2460
+ dictionary_value: str,
2461
+ id: str,
2462
+ is_negate: bool,
2463
+ operator: str):
2464
+ """
2465
+ :param str attribute_name: Dictionary attribute name
2466
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
2467
+ :param Sequence['GetAuthorizationRuleChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
2468
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
2469
+ :param str dictionary_name: Dictionary name
2470
+ :param str dictionary_value: Dictionary value
2471
+ :param str id: UUID for condition
2472
+ :param bool is_negate: Indicates whereas this condition is in negate mode
2473
+ :param str operator: Equality operator
2474
+ """
2475
+ pulumi.set(__self__, "attribute_name", attribute_name)
2476
+ pulumi.set(__self__, "attribute_value", attribute_value)
2477
+ pulumi.set(__self__, "childrens", childrens)
2478
+ pulumi.set(__self__, "condition_type", condition_type)
2479
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
2480
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
2481
+ pulumi.set(__self__, "id", id)
2482
+ pulumi.set(__self__, "is_negate", is_negate)
2483
+ pulumi.set(__self__, "operator", operator)
2484
+
2485
+ @property
2486
+ @pulumi.getter(name="attributeName")
2487
+ def attribute_name(self) -> str:
2488
+ """
2489
+ Dictionary attribute name
2490
+ """
2491
+ return pulumi.get(self, "attribute_name")
2492
+
2493
+ @property
2494
+ @pulumi.getter(name="attributeValue")
2495
+ def attribute_value(self) -> str:
2496
+ """
2497
+ Attribute value for condition. Value type is specified in dictionary object.
2498
+ """
2499
+ return pulumi.get(self, "attribute_value")
2500
+
2501
+ @property
2502
+ @pulumi.getter
2503
+ def childrens(self) -> Sequence['outputs.GetAuthorizationRuleChildrenChildrenResult']:
2504
+ """
2505
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
2506
+ """
2507
+ return pulumi.get(self, "childrens")
2508
+
2509
+ @property
2510
+ @pulumi.getter(name="conditionType")
2511
+ def condition_type(self) -> str:
2512
+ """
2513
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
2514
+ """
2515
+ return pulumi.get(self, "condition_type")
2516
+
2517
+ @property
2518
+ @pulumi.getter(name="dictionaryName")
2519
+ def dictionary_name(self) -> str:
2520
+ """
2521
+ Dictionary name
2522
+ """
2523
+ return pulumi.get(self, "dictionary_name")
2524
+
2525
+ @property
2526
+ @pulumi.getter(name="dictionaryValue")
2527
+ def dictionary_value(self) -> str:
2528
+ """
2529
+ Dictionary value
2530
+ """
2531
+ return pulumi.get(self, "dictionary_value")
2532
+
2533
+ @property
2534
+ @pulumi.getter
2535
+ def id(self) -> str:
2536
+ """
2537
+ UUID for condition
2538
+ """
2539
+ return pulumi.get(self, "id")
2540
+
2541
+ @property
2542
+ @pulumi.getter(name="isNegate")
2543
+ def is_negate(self) -> bool:
2544
+ """
2545
+ Indicates whereas this condition is in negate mode
2546
+ """
2547
+ return pulumi.get(self, "is_negate")
2548
+
2549
+ @property
2550
+ @pulumi.getter
2551
+ def operator(self) -> str:
2552
+ """
2553
+ Equality operator
2554
+ """
2555
+ return pulumi.get(self, "operator")
2556
+
2557
+
2558
+ @pulumi.output_type
2559
+ class GetAuthorizationRuleChildrenChildrenResult(dict):
2560
+ def __init__(__self__, *,
2561
+ attribute_name: str,
2562
+ attribute_value: str,
2563
+ condition_type: str,
2564
+ dictionary_name: str,
2565
+ dictionary_value: str,
2566
+ id: str,
2567
+ is_negate: bool,
2568
+ operator: str):
2569
+ """
2570
+ :param str attribute_name: Dictionary attribute name
2571
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
2572
+ :param str condition_type: Condition type.
2573
+ :param str dictionary_name: Dictionary name
2574
+ :param str dictionary_value: Dictionary value
2575
+ :param str id: UUID for condition
2576
+ :param bool is_negate: Indicates whereas this condition is in negate mode
2577
+ :param str operator: Equality operator
2578
+ """
2579
+ pulumi.set(__self__, "attribute_name", attribute_name)
2580
+ pulumi.set(__self__, "attribute_value", attribute_value)
2581
+ pulumi.set(__self__, "condition_type", condition_type)
2582
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
2583
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
2584
+ pulumi.set(__self__, "id", id)
2585
+ pulumi.set(__self__, "is_negate", is_negate)
2586
+ pulumi.set(__self__, "operator", operator)
2587
+
2588
+ @property
2589
+ @pulumi.getter(name="attributeName")
2590
+ def attribute_name(self) -> str:
2591
+ """
2592
+ Dictionary attribute name
2593
+ """
2594
+ return pulumi.get(self, "attribute_name")
2595
+
2596
+ @property
2597
+ @pulumi.getter(name="attributeValue")
2598
+ def attribute_value(self) -> str:
2599
+ """
2600
+ Attribute value for condition. Value type is specified in dictionary object.
2601
+ """
2602
+ return pulumi.get(self, "attribute_value")
2603
+
2604
+ @property
2605
+ @pulumi.getter(name="conditionType")
2606
+ def condition_type(self) -> str:
2607
+ """
2608
+ Condition type.
2609
+ """
2610
+ return pulumi.get(self, "condition_type")
2611
+
2612
+ @property
2613
+ @pulumi.getter(name="dictionaryName")
2614
+ def dictionary_name(self) -> str:
2615
+ """
2616
+ Dictionary name
2617
+ """
2618
+ return pulumi.get(self, "dictionary_name")
2619
+
2620
+ @property
2621
+ @pulumi.getter(name="dictionaryValue")
2622
+ def dictionary_value(self) -> str:
2623
+ """
2624
+ Dictionary value
2625
+ """
2626
+ return pulumi.get(self, "dictionary_value")
2627
+
2628
+ @property
2629
+ @pulumi.getter
2630
+ def id(self) -> str:
2631
+ """
2632
+ UUID for condition
2633
+ """
2634
+ return pulumi.get(self, "id")
2635
+
2636
+ @property
2637
+ @pulumi.getter(name="isNegate")
2638
+ def is_negate(self) -> bool:
2639
+ """
2640
+ Indicates whereas this condition is in negate mode
2641
+ """
2642
+ return pulumi.get(self, "is_negate")
2643
+
2644
+ @property
2645
+ @pulumi.getter
2646
+ def operator(self) -> str:
2647
+ """
2648
+ Equality operator
2649
+ """
2650
+ return pulumi.get(self, "operator")
2651
+
2652
+
2653
+ @pulumi.output_type
2654
+ class GetConditionChildrenResult(dict):
2655
+ def __init__(__self__, *,
2656
+ attribute_name: str,
2657
+ attribute_value: str,
2658
+ childrens: Sequence['outputs.GetConditionChildrenChildrenResult'],
2659
+ condition_type: str,
2660
+ description: str,
2661
+ dictionary_name: str,
2662
+ dictionary_value: str,
2663
+ id: str,
2664
+ is_negate: bool,
2665
+ name: str,
2666
+ operator: str):
2667
+ """
2668
+ :param str attribute_name: Dictionary attribute name
2669
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
2670
+ :param Sequence['GetConditionChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
2671
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
2672
+ :param str description: Condition description
2673
+ :param str dictionary_name: Dictionary name
2674
+ :param str dictionary_value: Dictionary value
2675
+ :param str id: UUID for condition
2676
+ :param bool is_negate: Indicates whereas this condition is in negate mode
2677
+ :param str name: Condition name
2678
+ :param str operator: Equality operator
2679
+ """
2680
+ pulumi.set(__self__, "attribute_name", attribute_name)
2681
+ pulumi.set(__self__, "attribute_value", attribute_value)
2682
+ pulumi.set(__self__, "childrens", childrens)
2683
+ pulumi.set(__self__, "condition_type", condition_type)
2684
+ pulumi.set(__self__, "description", description)
2685
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
2686
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
2687
+ pulumi.set(__self__, "id", id)
2688
+ pulumi.set(__self__, "is_negate", is_negate)
2689
+ pulumi.set(__self__, "name", name)
2690
+ pulumi.set(__self__, "operator", operator)
2691
+
2692
+ @property
2693
+ @pulumi.getter(name="attributeName")
2694
+ def attribute_name(self) -> str:
2695
+ """
2696
+ Dictionary attribute name
2697
+ """
2698
+ return pulumi.get(self, "attribute_name")
2699
+
2700
+ @property
2701
+ @pulumi.getter(name="attributeValue")
2702
+ def attribute_value(self) -> str:
2703
+ """
2704
+ Attribute value for condition. Value type is specified in dictionary object.
2705
+ """
2706
+ return pulumi.get(self, "attribute_value")
2707
+
2708
+ @property
2709
+ @pulumi.getter
2710
+ def childrens(self) -> Sequence['outputs.GetConditionChildrenChildrenResult']:
2711
+ """
2712
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
2713
+ """
2714
+ return pulumi.get(self, "childrens")
2715
+
2716
+ @property
2717
+ @pulumi.getter(name="conditionType")
2718
+ def condition_type(self) -> str:
2719
+ """
2720
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
2721
+ """
2722
+ return pulumi.get(self, "condition_type")
2723
+
2724
+ @property
2725
+ @pulumi.getter
2726
+ def description(self) -> str:
2727
+ """
2728
+ Condition description
2729
+ """
2730
+ return pulumi.get(self, "description")
2731
+
2732
+ @property
2733
+ @pulumi.getter(name="dictionaryName")
2734
+ def dictionary_name(self) -> str:
2735
+ """
2736
+ Dictionary name
2737
+ """
2738
+ return pulumi.get(self, "dictionary_name")
2739
+
2740
+ @property
2741
+ @pulumi.getter(name="dictionaryValue")
2742
+ def dictionary_value(self) -> str:
2743
+ """
2744
+ Dictionary value
2745
+ """
2746
+ return pulumi.get(self, "dictionary_value")
2747
+
2748
+ @property
2749
+ @pulumi.getter
2750
+ def id(self) -> str:
2751
+ """
2752
+ UUID for condition
2753
+ """
2754
+ return pulumi.get(self, "id")
2755
+
2756
+ @property
2757
+ @pulumi.getter(name="isNegate")
2758
+ def is_negate(self) -> bool:
2759
+ """
2760
+ Indicates whereas this condition is in negate mode
2761
+ """
2762
+ return pulumi.get(self, "is_negate")
2763
+
2764
+ @property
2765
+ @pulumi.getter
2766
+ def name(self) -> str:
2767
+ """
2768
+ Condition name
2769
+ """
2770
+ return pulumi.get(self, "name")
2771
+
2772
+ @property
2773
+ @pulumi.getter
2774
+ def operator(self) -> str:
2775
+ """
2776
+ Equality operator
2777
+ """
2778
+ return pulumi.get(self, "operator")
2779
+
2780
+
2781
+ @pulumi.output_type
2782
+ class GetConditionChildrenChildrenResult(dict):
2783
+ def __init__(__self__, *,
2784
+ attribute_name: str,
2785
+ attribute_value: str,
2786
+ condition_type: str,
2787
+ description: str,
2788
+ dictionary_name: str,
2789
+ dictionary_value: str,
2790
+ id: str,
2791
+ is_negate: bool,
2792
+ name: str,
2793
+ operator: str):
2794
+ """
2795
+ :param str attribute_name: Dictionary attribute name
2796
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
2797
+ :param str condition_type: Condition type.
2798
+ :param str description: Condition description
2799
+ :param str dictionary_name: Dictionary name
2800
+ :param str dictionary_value: Dictionary value
2801
+ :param str id: UUID for condition
2802
+ :param bool is_negate: Indicates whereas this condition is in negate mode
2803
+ :param str name: Condition name
2804
+ :param str operator: Equality operator
2805
+ """
2806
+ pulumi.set(__self__, "attribute_name", attribute_name)
2807
+ pulumi.set(__self__, "attribute_value", attribute_value)
2808
+ pulumi.set(__self__, "condition_type", condition_type)
2809
+ pulumi.set(__self__, "description", description)
2810
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
2811
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
2812
+ pulumi.set(__self__, "id", id)
2813
+ pulumi.set(__self__, "is_negate", is_negate)
2814
+ pulumi.set(__self__, "name", name)
2815
+ pulumi.set(__self__, "operator", operator)
2816
+
2817
+ @property
2818
+ @pulumi.getter(name="attributeName")
2819
+ def attribute_name(self) -> str:
2820
+ """
2821
+ Dictionary attribute name
2822
+ """
2823
+ return pulumi.get(self, "attribute_name")
2824
+
2825
+ @property
2826
+ @pulumi.getter(name="attributeValue")
2827
+ def attribute_value(self) -> str:
2828
+ """
2829
+ Attribute value for condition. Value type is specified in dictionary object.
2830
+ """
2831
+ return pulumi.get(self, "attribute_value")
2832
+
2833
+ @property
2834
+ @pulumi.getter(name="conditionType")
2835
+ def condition_type(self) -> str:
2836
+ """
2837
+ Condition type.
2838
+ """
2839
+ return pulumi.get(self, "condition_type")
2840
+
2841
+ @property
2842
+ @pulumi.getter
2843
+ def description(self) -> str:
2844
+ """
2845
+ Condition description
2846
+ """
2847
+ return pulumi.get(self, "description")
2848
+
2849
+ @property
2850
+ @pulumi.getter(name="dictionaryName")
2851
+ def dictionary_name(self) -> str:
2852
+ """
2853
+ Dictionary name
2854
+ """
2855
+ return pulumi.get(self, "dictionary_name")
2856
+
2857
+ @property
2858
+ @pulumi.getter(name="dictionaryValue")
2859
+ def dictionary_value(self) -> str:
2860
+ """
2861
+ Dictionary value
2862
+ """
2863
+ return pulumi.get(self, "dictionary_value")
2864
+
2865
+ @property
2866
+ @pulumi.getter
2867
+ def id(self) -> str:
2868
+ """
2869
+ UUID for condition
2870
+ """
2871
+ return pulumi.get(self, "id")
2872
+
2873
+ @property
2874
+ @pulumi.getter(name="isNegate")
2875
+ def is_negate(self) -> bool:
2876
+ """
2877
+ Indicates whereas this condition is in negate mode
2878
+ """
2879
+ return pulumi.get(self, "is_negate")
2880
+
2881
+ @property
2882
+ @pulumi.getter
2883
+ def name(self) -> str:
2884
+ """
2885
+ Condition name
2886
+ """
2887
+ return pulumi.get(self, "name")
2888
+
2889
+ @property
2890
+ @pulumi.getter
2891
+ def operator(self) -> str:
2892
+ """
2893
+ Equality operator
2894
+ """
2895
+ return pulumi.get(self, "operator")
2896
+
2897
+
2898
+ @pulumi.output_type
2899
+ class GetPolicySetChildrenResult(dict):
2900
+ def __init__(__self__, *,
2901
+ attribute_name: str,
2902
+ attribute_value: str,
2903
+ childrens: Sequence['outputs.GetPolicySetChildrenChildrenResult'],
2904
+ condition_type: str,
2905
+ dictionary_name: str,
2906
+ dictionary_value: str,
2907
+ id: str,
2908
+ is_negate: bool,
2909
+ operator: str):
2910
+ """
2911
+ :param str attribute_name: Dictionary attribute name
2912
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
2913
+ :param Sequence['GetPolicySetChildrenChildrenArgs'] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
2914
+ :param str condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
2915
+ :param str dictionary_name: Dictionary name
2916
+ :param str dictionary_value: Dictionary value
2917
+ :param str id: UUID for condition
2918
+ :param bool is_negate: Indicates whereas this condition is in negate mode
2919
+ :param str operator: Equality operator
2920
+ """
2921
+ pulumi.set(__self__, "attribute_name", attribute_name)
2922
+ pulumi.set(__self__, "attribute_value", attribute_value)
2923
+ pulumi.set(__self__, "childrens", childrens)
2924
+ pulumi.set(__self__, "condition_type", condition_type)
2925
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
2926
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
2927
+ pulumi.set(__self__, "id", id)
2928
+ pulumi.set(__self__, "is_negate", is_negate)
2929
+ pulumi.set(__self__, "operator", operator)
2930
+
2931
+ @property
2932
+ @pulumi.getter(name="attributeName")
2933
+ def attribute_name(self) -> str:
2934
+ """
2935
+ Dictionary attribute name
2936
+ """
2937
+ return pulumi.get(self, "attribute_name")
2938
+
2939
+ @property
2940
+ @pulumi.getter(name="attributeValue")
2941
+ def attribute_value(self) -> str:
2942
+ """
2943
+ Attribute value for condition. Value type is specified in dictionary object.
2944
+ """
2945
+ return pulumi.get(self, "attribute_value")
2946
+
2947
+ @property
2948
+ @pulumi.getter
2949
+ def childrens(self) -> Sequence['outputs.GetPolicySetChildrenChildrenResult']:
2950
+ """
2951
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
2952
+ """
2953
+ return pulumi.get(self, "childrens")
2954
+
2955
+ @property
2956
+ @pulumi.getter(name="conditionType")
2957
+ def condition_type(self) -> str:
2958
+ """
2959
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
2960
+ """
2961
+ return pulumi.get(self, "condition_type")
2962
+
2963
+ @property
2964
+ @pulumi.getter(name="dictionaryName")
2965
+ def dictionary_name(self) -> str:
2966
+ """
2967
+ Dictionary name
2968
+ """
2969
+ return pulumi.get(self, "dictionary_name")
2970
+
2971
+ @property
2972
+ @pulumi.getter(name="dictionaryValue")
2973
+ def dictionary_value(self) -> str:
2974
+ """
2975
+ Dictionary value
2976
+ """
2977
+ return pulumi.get(self, "dictionary_value")
2978
+
2979
+ @property
2980
+ @pulumi.getter
2981
+ def id(self) -> str:
2982
+ """
2983
+ UUID for condition
2984
+ """
2985
+ return pulumi.get(self, "id")
2986
+
2987
+ @property
2988
+ @pulumi.getter(name="isNegate")
2989
+ def is_negate(self) -> bool:
2990
+ """
2991
+ Indicates whereas this condition is in negate mode
2992
+ """
2993
+ return pulumi.get(self, "is_negate")
2994
+
2995
+ @property
2996
+ @pulumi.getter
2997
+ def operator(self) -> str:
2998
+ """
2999
+ Equality operator
3000
+ """
3001
+ return pulumi.get(self, "operator")
3002
+
3003
+
3004
+ @pulumi.output_type
3005
+ class GetPolicySetChildrenChildrenResult(dict):
3006
+ def __init__(__self__, *,
3007
+ attribute_name: str,
3008
+ attribute_value: str,
3009
+ condition_type: str,
3010
+ dictionary_name: str,
3011
+ dictionary_value: str,
3012
+ id: str,
3013
+ is_negate: bool,
3014
+ operator: str):
3015
+ """
3016
+ :param str attribute_name: Dictionary attribute name
3017
+ :param str attribute_value: Attribute value for condition. Value type is specified in dictionary object.
3018
+ :param str condition_type: Condition type.
3019
+ :param str dictionary_name: Dictionary name
3020
+ :param str dictionary_value: Dictionary value
3021
+ :param str id: UUID for condition
3022
+ :param bool is_negate: Indicates whereas this condition is in negate mode
3023
+ :param str operator: Equality operator
3024
+ """
3025
+ pulumi.set(__self__, "attribute_name", attribute_name)
3026
+ pulumi.set(__self__, "attribute_value", attribute_value)
3027
+ pulumi.set(__self__, "condition_type", condition_type)
3028
+ pulumi.set(__self__, "dictionary_name", dictionary_name)
3029
+ pulumi.set(__self__, "dictionary_value", dictionary_value)
3030
+ pulumi.set(__self__, "id", id)
3031
+ pulumi.set(__self__, "is_negate", is_negate)
3032
+ pulumi.set(__self__, "operator", operator)
3033
+
3034
+ @property
3035
+ @pulumi.getter(name="attributeName")
3036
+ def attribute_name(self) -> str:
3037
+ """
3038
+ Dictionary attribute name
3039
+ """
3040
+ return pulumi.get(self, "attribute_name")
3041
+
3042
+ @property
3043
+ @pulumi.getter(name="attributeValue")
3044
+ def attribute_value(self) -> str:
3045
+ """
3046
+ Attribute value for condition. Value type is specified in dictionary object.
3047
+ """
3048
+ return pulumi.get(self, "attribute_value")
3049
+
3050
+ @property
3051
+ @pulumi.getter(name="conditionType")
3052
+ def condition_type(self) -> str:
3053
+ """
3054
+ Condition type.
3055
+ """
3056
+ return pulumi.get(self, "condition_type")
3057
+
3058
+ @property
3059
+ @pulumi.getter(name="dictionaryName")
3060
+ def dictionary_name(self) -> str:
3061
+ """
3062
+ Dictionary name
3063
+ """
3064
+ return pulumi.get(self, "dictionary_name")
3065
+
3066
+ @property
3067
+ @pulumi.getter(name="dictionaryValue")
3068
+ def dictionary_value(self) -> str:
3069
+ """
3070
+ Dictionary value
3071
+ """
3072
+ return pulumi.get(self, "dictionary_value")
3073
+
3074
+ @property
3075
+ @pulumi.getter
3076
+ def id(self) -> str:
3077
+ """
3078
+ UUID for condition
3079
+ """
3080
+ return pulumi.get(self, "id")
3081
+
3082
+ @property
3083
+ @pulumi.getter(name="isNegate")
3084
+ def is_negate(self) -> bool:
3085
+ """
3086
+ Indicates whereas this condition is in negate mode
3087
+ """
3088
+ return pulumi.get(self, "is_negate")
3089
+
3090
+ @property
3091
+ @pulumi.getter
3092
+ def operator(self) -> str:
3093
+ """
3094
+ Equality operator
3095
+ """
3096
+ return pulumi.get(self, "operator")
3097
+
3098
+
3099
+ @pulumi.output_type
3100
+ class GetTacacsCommandSetCommandResult(dict):
3101
+ def __init__(__self__, *,
3102
+ arguments: str,
3103
+ command: str,
3104
+ grant: str):
3105
+ """
3106
+ :param str arguments: Command arguments
3107
+ :param str command: Command
3108
+ :param str grant: Grant
3109
+ """
3110
+ pulumi.set(__self__, "arguments", arguments)
3111
+ pulumi.set(__self__, "command", command)
3112
+ pulumi.set(__self__, "grant", grant)
3113
+
3114
+ @property
3115
+ @pulumi.getter
3116
+ def arguments(self) -> str:
3117
+ """
3118
+ Command arguments
3119
+ """
3120
+ return pulumi.get(self, "arguments")
3121
+
3122
+ @property
3123
+ @pulumi.getter
3124
+ def command(self) -> str:
3125
+ """
3126
+ Command
3127
+ """
3128
+ return pulumi.get(self, "command")
3129
+
3130
+ @property
3131
+ @pulumi.getter
3132
+ def grant(self) -> str:
3133
+ """
3134
+ Grant
3135
+ """
3136
+ return pulumi.get(self, "grant")
3137
+
3138
+
3139
+ @pulumi.output_type
3140
+ class GetTacacsProfileSessionAttributeResult(dict):
3141
+ def __init__(__self__, *,
3142
+ name: str,
3143
+ type: str,
3144
+ value: str):
3145
+ """
3146
+ :param str name: Name
3147
+ :param str type: Type
3148
+ :param str value: Value
3149
+ """
3150
+ pulumi.set(__self__, "name", name)
3151
+ pulumi.set(__self__, "type", type)
3152
+ pulumi.set(__self__, "value", value)
3153
+
3154
+ @property
3155
+ @pulumi.getter
3156
+ def name(self) -> str:
3157
+ """
3158
+ Name
3159
+ """
3160
+ return pulumi.get(self, "name")
3161
+
3162
+ @property
3163
+ @pulumi.getter
3164
+ def type(self) -> str:
3165
+ """
3166
+ Type
3167
+ """
3168
+ return pulumi.get(self, "type")
3169
+
3170
+ @property
3171
+ @pulumi.getter
3172
+ def value(self) -> str:
3173
+ """
3174
+ Value
3175
+ """
3176
+ return pulumi.get(self, "value")
3177
+
3178
+