pulumi-ise 0.1.0__py3-none-any.whl

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