pulumi-ise 0.2.0a1736833585__py3-none-any.whl

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