pulumi-ise 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_ise/__init__.py +458 -0
- pulumi_ise/_utilities.py +327 -0
- pulumi_ise/config/__init__.py +8 -0
- pulumi_ise/config/__init__.pyi +41 -0
- pulumi_ise/config/vars.py +57 -0
- pulumi_ise/deviceadmin/__init__.py +34 -0
- pulumi_ise/deviceadmin/_inputs.py +2517 -0
- pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +381 -0
- pulumi_ise/deviceadmin/authentication_rule.py +1050 -0
- pulumi_ise/deviceadmin/authentication_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/authorization_exception_rule.py +942 -0
- pulumi_ise/deviceadmin/authorization_exception_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/authorization_global_exception_rule.py +843 -0
- pulumi_ise/deviceadmin/authorization_global_exception_rule_update_rank.py +221 -0
- pulumi_ise/deviceadmin/authorization_rule.py +942 -0
- pulumi_ise/deviceadmin/authorization_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/condition.py +650 -0
- pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +174 -0
- pulumi_ise/deviceadmin/get_authentication_rule.py +365 -0
- pulumi_ise/deviceadmin/get_authorization_exception_rule.py +337 -0
- pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +301 -0
- pulumi_ise/deviceadmin/get_authorization_rule.py +337 -0
- pulumi_ise/deviceadmin/get_condition.py +245 -0
- pulumi_ise/deviceadmin/get_policy_set.py +329 -0
- pulumi_ise/deviceadmin/get_tacacs_command_set.py +158 -0
- pulumi_ise/deviceadmin/get_tacacs_profile.py +144 -0
- pulumi_ise/deviceadmin/get_time_and_date_condition.py +286 -0
- pulumi_ise/deviceadmin/outputs.py +3178 -0
- pulumi_ise/deviceadmin/policy_set.py +947 -0
- pulumi_ise/deviceadmin/policy_set_update_rank.py +221 -0
- pulumi_ise/deviceadmin/tacacs_command_set.py +326 -0
- pulumi_ise/deviceadmin/tacacs_profile.py +277 -0
- pulumi_ise/deviceadmin/time_and_date_condition.py +770 -0
- pulumi_ise/identitymanagement/__init__.py +26 -0
- pulumi_ise/identitymanagement/_inputs.py +419 -0
- pulumi_ise/identitymanagement/active_directory_add_groups.py +483 -0
- pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +216 -0
- pulumi_ise/identitymanagement/active_directory_join_point.py +1676 -0
- pulumi_ise/identitymanagement/certificate_authentication_profile.py +525 -0
- pulumi_ise/identitymanagement/endpoint.py +1376 -0
- pulumi_ise/identitymanagement/endpoint_identity_group.py +327 -0
- pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +215 -0
- pulumi_ise/identitymanagement/get_active_directory_join_point.py +558 -0
- pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +202 -0
- pulumi_ise/identitymanagement/get_endpoint.py +468 -0
- pulumi_ise/identitymanagement/get_endpoint_identity_group.py +160 -0
- pulumi_ise/identitymanagement/get_identity_source_sequence.py +172 -0
- pulumi_ise/identitymanagement/get_internal_user.py +300 -0
- pulumi_ise/identitymanagement/get_user_identity_group.py +146 -0
- pulumi_ise/identitymanagement/identity_source_sequence.py +376 -0
- pulumi_ise/identitymanagement/internal_user.py +830 -0
- pulumi_ise/identitymanagement/outputs.py +491 -0
- pulumi_ise/identitymanagement/user_identity_group.py +280 -0
- pulumi_ise/network/__init__.py +13 -0
- pulumi_ise/network/_inputs.py +94 -0
- pulumi_ise/network/device.py +2194 -0
- pulumi_ise/network/device_group.py +281 -0
- pulumi_ise/network/get_device.py +693 -0
- pulumi_ise/network/get_device_group.py +146 -0
- pulumi_ise/network/outputs.py +120 -0
- pulumi_ise/networkaccess/__init__.py +36 -0
- pulumi_ise/networkaccess/_inputs.py +2506 -0
- pulumi_ise/networkaccess/allowed_protocols.py +3967 -0
- pulumi_ise/networkaccess/authentication_rule.py +1050 -0
- pulumi_ise/networkaccess/authentication_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/authorization_exception_rule.py +942 -0
- pulumi_ise/networkaccess/authorization_exception_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/authorization_global_exception_rule.py +843 -0
- pulumi_ise/networkaccess/authorization_global_exception_rule_update_rank.py +221 -0
- pulumi_ise/networkaccess/authorization_profile.py +1682 -0
- pulumi_ise/networkaccess/authorization_rule.py +942 -0
- pulumi_ise/networkaccess/authorization_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/condition.py +650 -0
- pulumi_ise/networkaccess/dictionary.py +331 -0
- pulumi_ise/networkaccess/downloadable_acl.py +330 -0
- pulumi_ise/networkaccess/get_allowed_protocols.py +1182 -0
- pulumi_ise/networkaccess/get_authentication_rule.py +365 -0
- pulumi_ise/networkaccess/get_authorization_exception_rule.py +337 -0
- pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +301 -0
- pulumi_ise/networkaccess/get_authorization_profile.py +567 -0
- pulumi_ise/networkaccess/get_authorization_rule.py +337 -0
- pulumi_ise/networkaccess/get_condition.py +245 -0
- pulumi_ise/networkaccess/get_dictionary.py +160 -0
- pulumi_ise/networkaccess/get_downloadable_acl.py +160 -0
- pulumi_ise/networkaccess/get_policy_set.py +329 -0
- pulumi_ise/networkaccess/get_time_and_date_condition.py +286 -0
- pulumi_ise/networkaccess/outputs.py +3193 -0
- pulumi_ise/networkaccess/policy_set.py +947 -0
- pulumi_ise/networkaccess/policy_set_update_rank.py +221 -0
- pulumi_ise/networkaccess/time_and_date_condition.py +770 -0
- pulumi_ise/provider.py +209 -0
- pulumi_ise/pulumi-plugin.json +5 -0
- pulumi_ise/py.typed +0 -0
- pulumi_ise/system/__init__.py +13 -0
- pulumi_ise/system/_inputs.py +79 -0
- pulumi_ise/system/get_license_tier_state.py +113 -0
- pulumi_ise/system/get_repository.py +202 -0
- pulumi_ise/system/license_tier_state.py +189 -0
- pulumi_ise/system/outputs.py +83 -0
- pulumi_ise/system/repository.py +478 -0
- pulumi_ise/trustsec/__init__.py +21 -0
- pulumi_ise/trustsec/egress_matrix_cell.py +429 -0
- pulumi_ise/trustsec/egress_matrix_cell_default.py +327 -0
- pulumi_ise/trustsec/get_egress_matrix_cell.py +182 -0
- pulumi_ise/trustsec/get_egress_matrix_cell_default.py +154 -0
- pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +216 -0
- pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +174 -0
- pulumi_ise/trustsec/get_security_group.py +174 -0
- pulumi_ise/trustsec/get_security_group_acl.py +174 -0
- pulumi_ise/trustsec/get_sxp_domain_filter.py +188 -0
- pulumi_ise/trustsec/ip_to_sgt_mapping.py +517 -0
- pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +376 -0
- pulumi_ise/trustsec/security_group.py +379 -0
- pulumi_ise/trustsec/security_group_acl.py +379 -0
- pulumi_ise/trustsec/sxp_domain_filter.py +422 -0
- pulumi_ise-0.2.0.dist-info/METADATA +64 -0
- pulumi_ise-0.2.0.dist-info/RECORD +119 -0
- pulumi_ise-0.2.0.dist-info/WHEEL +5 -0
- pulumi_ise-0.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,2517 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'AuthenticationRuleChildrenArgs',
|
19
|
+
'AuthenticationRuleChildrenArgsDict',
|
20
|
+
'AuthenticationRuleChildrenChildrenArgs',
|
21
|
+
'AuthenticationRuleChildrenChildrenArgsDict',
|
22
|
+
'AuthorizationExceptionRuleChildrenArgs',
|
23
|
+
'AuthorizationExceptionRuleChildrenArgsDict',
|
24
|
+
'AuthorizationExceptionRuleChildrenChildrenArgs',
|
25
|
+
'AuthorizationExceptionRuleChildrenChildrenArgsDict',
|
26
|
+
'AuthorizationGlobalExceptionRuleChildrenArgs',
|
27
|
+
'AuthorizationGlobalExceptionRuleChildrenArgsDict',
|
28
|
+
'AuthorizationGlobalExceptionRuleChildrenChildrenArgs',
|
29
|
+
'AuthorizationGlobalExceptionRuleChildrenChildrenArgsDict',
|
30
|
+
'AuthorizationRuleChildrenArgs',
|
31
|
+
'AuthorizationRuleChildrenArgsDict',
|
32
|
+
'AuthorizationRuleChildrenChildrenArgs',
|
33
|
+
'AuthorizationRuleChildrenChildrenArgsDict',
|
34
|
+
'ConditionChildrenArgs',
|
35
|
+
'ConditionChildrenArgsDict',
|
36
|
+
'ConditionChildrenChildrenArgs',
|
37
|
+
'ConditionChildrenChildrenArgsDict',
|
38
|
+
'PolicySetChildrenArgs',
|
39
|
+
'PolicySetChildrenArgsDict',
|
40
|
+
'PolicySetChildrenChildrenArgs',
|
41
|
+
'PolicySetChildrenChildrenArgsDict',
|
42
|
+
'TacacsCommandSetCommandArgs',
|
43
|
+
'TacacsCommandSetCommandArgsDict',
|
44
|
+
'TacacsProfileSessionAttributeArgs',
|
45
|
+
'TacacsProfileSessionAttributeArgsDict',
|
46
|
+
]
|
47
|
+
|
48
|
+
MYPY = False
|
49
|
+
|
50
|
+
if not MYPY:
|
51
|
+
class AuthenticationRuleChildrenArgsDict(TypedDict):
|
52
|
+
condition_type: pulumi.Input[str]
|
53
|
+
"""
|
54
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
55
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
56
|
+
"""
|
57
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
58
|
+
"""
|
59
|
+
Dictionary attribute name
|
60
|
+
"""
|
61
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
62
|
+
"""
|
63
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
64
|
+
"""
|
65
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['AuthenticationRuleChildrenChildrenArgsDict']]]]
|
66
|
+
"""
|
67
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
68
|
+
"""
|
69
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
70
|
+
"""
|
71
|
+
Dictionary name
|
72
|
+
"""
|
73
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
74
|
+
"""
|
75
|
+
Dictionary value
|
76
|
+
"""
|
77
|
+
id: NotRequired[pulumi.Input[str]]
|
78
|
+
"""
|
79
|
+
UUID for condition
|
80
|
+
"""
|
81
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
82
|
+
"""
|
83
|
+
Indicates whereas this condition is in negate mode
|
84
|
+
"""
|
85
|
+
operator: NotRequired[pulumi.Input[str]]
|
86
|
+
"""
|
87
|
+
Equality operator
|
88
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
89
|
+
"""
|
90
|
+
elif False:
|
91
|
+
AuthenticationRuleChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
92
|
+
|
93
|
+
@pulumi.input_type
|
94
|
+
class AuthenticationRuleChildrenArgs:
|
95
|
+
def __init__(__self__, *,
|
96
|
+
condition_type: pulumi.Input[str],
|
97
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
98
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
99
|
+
childrens: Optional[pulumi.Input[Sequence[pulumi.Input['AuthenticationRuleChildrenChildrenArgs']]]] = None,
|
100
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
101
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
102
|
+
id: Optional[pulumi.Input[str]] = None,
|
103
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
104
|
+
operator: Optional[pulumi.Input[str]] = None):
|
105
|
+
"""
|
106
|
+
:param pulumi.Input[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.
|
107
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
108
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
109
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
110
|
+
:param pulumi.Input[Sequence[pulumi.Input['AuthenticationRuleChildrenChildrenArgs']]] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
111
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
112
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
113
|
+
:param pulumi.Input[str] id: UUID for condition
|
114
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
115
|
+
:param pulumi.Input[str] operator: Equality operator
|
116
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
117
|
+
"""
|
118
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
119
|
+
if attribute_name is not None:
|
120
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
121
|
+
if attribute_value is not None:
|
122
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
123
|
+
if childrens is not None:
|
124
|
+
pulumi.set(__self__, "childrens", childrens)
|
125
|
+
if dictionary_name is not None:
|
126
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
127
|
+
if dictionary_value is not None:
|
128
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
129
|
+
if id is not None:
|
130
|
+
pulumi.set(__self__, "id", id)
|
131
|
+
if is_negate is not None:
|
132
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
133
|
+
if operator is not None:
|
134
|
+
pulumi.set(__self__, "operator", operator)
|
135
|
+
|
136
|
+
@property
|
137
|
+
@pulumi.getter(name="conditionType")
|
138
|
+
def condition_type(self) -> pulumi.Input[str]:
|
139
|
+
"""
|
140
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
141
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "condition_type")
|
144
|
+
|
145
|
+
@condition_type.setter
|
146
|
+
def condition_type(self, value: pulumi.Input[str]):
|
147
|
+
pulumi.set(self, "condition_type", value)
|
148
|
+
|
149
|
+
@property
|
150
|
+
@pulumi.getter(name="attributeName")
|
151
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
152
|
+
"""
|
153
|
+
Dictionary attribute name
|
154
|
+
"""
|
155
|
+
return pulumi.get(self, "attribute_name")
|
156
|
+
|
157
|
+
@attribute_name.setter
|
158
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
159
|
+
pulumi.set(self, "attribute_name", value)
|
160
|
+
|
161
|
+
@property
|
162
|
+
@pulumi.getter(name="attributeValue")
|
163
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
164
|
+
"""
|
165
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "attribute_value")
|
168
|
+
|
169
|
+
@attribute_value.setter
|
170
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
171
|
+
pulumi.set(self, "attribute_value", value)
|
172
|
+
|
173
|
+
@property
|
174
|
+
@pulumi.getter
|
175
|
+
def childrens(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AuthenticationRuleChildrenChildrenArgs']]]]:
|
176
|
+
"""
|
177
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
178
|
+
"""
|
179
|
+
return pulumi.get(self, "childrens")
|
180
|
+
|
181
|
+
@childrens.setter
|
182
|
+
def childrens(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AuthenticationRuleChildrenChildrenArgs']]]]):
|
183
|
+
pulumi.set(self, "childrens", value)
|
184
|
+
|
185
|
+
@property
|
186
|
+
@pulumi.getter(name="dictionaryName")
|
187
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
188
|
+
"""
|
189
|
+
Dictionary name
|
190
|
+
"""
|
191
|
+
return pulumi.get(self, "dictionary_name")
|
192
|
+
|
193
|
+
@dictionary_name.setter
|
194
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
195
|
+
pulumi.set(self, "dictionary_name", value)
|
196
|
+
|
197
|
+
@property
|
198
|
+
@pulumi.getter(name="dictionaryValue")
|
199
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
200
|
+
"""
|
201
|
+
Dictionary value
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "dictionary_value")
|
204
|
+
|
205
|
+
@dictionary_value.setter
|
206
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
207
|
+
pulumi.set(self, "dictionary_value", value)
|
208
|
+
|
209
|
+
@property
|
210
|
+
@pulumi.getter
|
211
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
212
|
+
"""
|
213
|
+
UUID for condition
|
214
|
+
"""
|
215
|
+
return pulumi.get(self, "id")
|
216
|
+
|
217
|
+
@id.setter
|
218
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
219
|
+
pulumi.set(self, "id", value)
|
220
|
+
|
221
|
+
@property
|
222
|
+
@pulumi.getter(name="isNegate")
|
223
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
224
|
+
"""
|
225
|
+
Indicates whereas this condition is in negate mode
|
226
|
+
"""
|
227
|
+
return pulumi.get(self, "is_negate")
|
228
|
+
|
229
|
+
@is_negate.setter
|
230
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
231
|
+
pulumi.set(self, "is_negate", value)
|
232
|
+
|
233
|
+
@property
|
234
|
+
@pulumi.getter
|
235
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
236
|
+
"""
|
237
|
+
Equality operator
|
238
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
239
|
+
"""
|
240
|
+
return pulumi.get(self, "operator")
|
241
|
+
|
242
|
+
@operator.setter
|
243
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
244
|
+
pulumi.set(self, "operator", value)
|
245
|
+
|
246
|
+
|
247
|
+
if not MYPY:
|
248
|
+
class AuthenticationRuleChildrenChildrenArgsDict(TypedDict):
|
249
|
+
condition_type: pulumi.Input[str]
|
250
|
+
"""
|
251
|
+
Condition type.
|
252
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
253
|
+
"""
|
254
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
255
|
+
"""
|
256
|
+
Dictionary attribute name
|
257
|
+
"""
|
258
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
259
|
+
"""
|
260
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
261
|
+
"""
|
262
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
263
|
+
"""
|
264
|
+
Dictionary name
|
265
|
+
"""
|
266
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
267
|
+
"""
|
268
|
+
Dictionary value
|
269
|
+
"""
|
270
|
+
id: NotRequired[pulumi.Input[str]]
|
271
|
+
"""
|
272
|
+
UUID for condition
|
273
|
+
"""
|
274
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
275
|
+
"""
|
276
|
+
Indicates whereas this condition is in negate mode
|
277
|
+
"""
|
278
|
+
operator: NotRequired[pulumi.Input[str]]
|
279
|
+
"""
|
280
|
+
Equality operator
|
281
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
282
|
+
"""
|
283
|
+
elif False:
|
284
|
+
AuthenticationRuleChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
285
|
+
|
286
|
+
@pulumi.input_type
|
287
|
+
class AuthenticationRuleChildrenChildrenArgs:
|
288
|
+
def __init__(__self__, *,
|
289
|
+
condition_type: pulumi.Input[str],
|
290
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
291
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
292
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
293
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
294
|
+
id: Optional[pulumi.Input[str]] = None,
|
295
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
296
|
+
operator: Optional[pulumi.Input[str]] = None):
|
297
|
+
"""
|
298
|
+
:param pulumi.Input[str] condition_type: Condition type.
|
299
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
300
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
301
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
302
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
303
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
304
|
+
:param pulumi.Input[str] id: UUID for condition
|
305
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
306
|
+
:param pulumi.Input[str] operator: Equality operator
|
307
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
308
|
+
"""
|
309
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
310
|
+
if attribute_name is not None:
|
311
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
312
|
+
if attribute_value is not None:
|
313
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
314
|
+
if dictionary_name is not None:
|
315
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
316
|
+
if dictionary_value is not None:
|
317
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
318
|
+
if id is not None:
|
319
|
+
pulumi.set(__self__, "id", id)
|
320
|
+
if is_negate is not None:
|
321
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
322
|
+
if operator is not None:
|
323
|
+
pulumi.set(__self__, "operator", operator)
|
324
|
+
|
325
|
+
@property
|
326
|
+
@pulumi.getter(name="conditionType")
|
327
|
+
def condition_type(self) -> pulumi.Input[str]:
|
328
|
+
"""
|
329
|
+
Condition type.
|
330
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "condition_type")
|
333
|
+
|
334
|
+
@condition_type.setter
|
335
|
+
def condition_type(self, value: pulumi.Input[str]):
|
336
|
+
pulumi.set(self, "condition_type", value)
|
337
|
+
|
338
|
+
@property
|
339
|
+
@pulumi.getter(name="attributeName")
|
340
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
341
|
+
"""
|
342
|
+
Dictionary attribute name
|
343
|
+
"""
|
344
|
+
return pulumi.get(self, "attribute_name")
|
345
|
+
|
346
|
+
@attribute_name.setter
|
347
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
348
|
+
pulumi.set(self, "attribute_name", value)
|
349
|
+
|
350
|
+
@property
|
351
|
+
@pulumi.getter(name="attributeValue")
|
352
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
353
|
+
"""
|
354
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
355
|
+
"""
|
356
|
+
return pulumi.get(self, "attribute_value")
|
357
|
+
|
358
|
+
@attribute_value.setter
|
359
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
360
|
+
pulumi.set(self, "attribute_value", value)
|
361
|
+
|
362
|
+
@property
|
363
|
+
@pulumi.getter(name="dictionaryName")
|
364
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
365
|
+
"""
|
366
|
+
Dictionary name
|
367
|
+
"""
|
368
|
+
return pulumi.get(self, "dictionary_name")
|
369
|
+
|
370
|
+
@dictionary_name.setter
|
371
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
372
|
+
pulumi.set(self, "dictionary_name", value)
|
373
|
+
|
374
|
+
@property
|
375
|
+
@pulumi.getter(name="dictionaryValue")
|
376
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
377
|
+
"""
|
378
|
+
Dictionary value
|
379
|
+
"""
|
380
|
+
return pulumi.get(self, "dictionary_value")
|
381
|
+
|
382
|
+
@dictionary_value.setter
|
383
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
384
|
+
pulumi.set(self, "dictionary_value", value)
|
385
|
+
|
386
|
+
@property
|
387
|
+
@pulumi.getter
|
388
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
389
|
+
"""
|
390
|
+
UUID for condition
|
391
|
+
"""
|
392
|
+
return pulumi.get(self, "id")
|
393
|
+
|
394
|
+
@id.setter
|
395
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
396
|
+
pulumi.set(self, "id", value)
|
397
|
+
|
398
|
+
@property
|
399
|
+
@pulumi.getter(name="isNegate")
|
400
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
401
|
+
"""
|
402
|
+
Indicates whereas this condition is in negate mode
|
403
|
+
"""
|
404
|
+
return pulumi.get(self, "is_negate")
|
405
|
+
|
406
|
+
@is_negate.setter
|
407
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
408
|
+
pulumi.set(self, "is_negate", value)
|
409
|
+
|
410
|
+
@property
|
411
|
+
@pulumi.getter
|
412
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
413
|
+
"""
|
414
|
+
Equality operator
|
415
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
416
|
+
"""
|
417
|
+
return pulumi.get(self, "operator")
|
418
|
+
|
419
|
+
@operator.setter
|
420
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
421
|
+
pulumi.set(self, "operator", value)
|
422
|
+
|
423
|
+
|
424
|
+
if not MYPY:
|
425
|
+
class AuthorizationExceptionRuleChildrenArgsDict(TypedDict):
|
426
|
+
condition_type: pulumi.Input[str]
|
427
|
+
"""
|
428
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
429
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
430
|
+
"""
|
431
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
432
|
+
"""
|
433
|
+
Dictionary attribute name
|
434
|
+
"""
|
435
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
436
|
+
"""
|
437
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
438
|
+
"""
|
439
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['AuthorizationExceptionRuleChildrenChildrenArgsDict']]]]
|
440
|
+
"""
|
441
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
442
|
+
"""
|
443
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
444
|
+
"""
|
445
|
+
Dictionary name
|
446
|
+
"""
|
447
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
448
|
+
"""
|
449
|
+
Dictionary value
|
450
|
+
"""
|
451
|
+
id: NotRequired[pulumi.Input[str]]
|
452
|
+
"""
|
453
|
+
UUID for condition
|
454
|
+
"""
|
455
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
456
|
+
"""
|
457
|
+
Indicates whereas this condition is in negate mode
|
458
|
+
"""
|
459
|
+
operator: NotRequired[pulumi.Input[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
|
+
elif False:
|
465
|
+
AuthorizationExceptionRuleChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
466
|
+
|
467
|
+
@pulumi.input_type
|
468
|
+
class AuthorizationExceptionRuleChildrenArgs:
|
469
|
+
def __init__(__self__, *,
|
470
|
+
condition_type: pulumi.Input[str],
|
471
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
472
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
473
|
+
childrens: Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizationExceptionRuleChildrenChildrenArgs']]]] = None,
|
474
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
475
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
476
|
+
id: Optional[pulumi.Input[str]] = None,
|
477
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
478
|
+
operator: Optional[pulumi.Input[str]] = None):
|
479
|
+
"""
|
480
|
+
:param pulumi.Input[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.
|
481
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
482
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
483
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
484
|
+
:param pulumi.Input[Sequence[pulumi.Input['AuthorizationExceptionRuleChildrenChildrenArgs']]] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
485
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
486
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
487
|
+
:param pulumi.Input[str] id: UUID for condition
|
488
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
489
|
+
:param pulumi.Input[str] operator: Equality operator
|
490
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
491
|
+
"""
|
492
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
493
|
+
if attribute_name is not None:
|
494
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
495
|
+
if attribute_value is not None:
|
496
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
497
|
+
if childrens is not None:
|
498
|
+
pulumi.set(__self__, "childrens", childrens)
|
499
|
+
if dictionary_name is not None:
|
500
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
501
|
+
if dictionary_value is not None:
|
502
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
503
|
+
if id is not None:
|
504
|
+
pulumi.set(__self__, "id", id)
|
505
|
+
if is_negate is not None:
|
506
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
507
|
+
if operator is not None:
|
508
|
+
pulumi.set(__self__, "operator", operator)
|
509
|
+
|
510
|
+
@property
|
511
|
+
@pulumi.getter(name="conditionType")
|
512
|
+
def condition_type(self) -> pulumi.Input[str]:
|
513
|
+
"""
|
514
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
515
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
516
|
+
"""
|
517
|
+
return pulumi.get(self, "condition_type")
|
518
|
+
|
519
|
+
@condition_type.setter
|
520
|
+
def condition_type(self, value: pulumi.Input[str]):
|
521
|
+
pulumi.set(self, "condition_type", value)
|
522
|
+
|
523
|
+
@property
|
524
|
+
@pulumi.getter(name="attributeName")
|
525
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
526
|
+
"""
|
527
|
+
Dictionary attribute name
|
528
|
+
"""
|
529
|
+
return pulumi.get(self, "attribute_name")
|
530
|
+
|
531
|
+
@attribute_name.setter
|
532
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
533
|
+
pulumi.set(self, "attribute_name", value)
|
534
|
+
|
535
|
+
@property
|
536
|
+
@pulumi.getter(name="attributeValue")
|
537
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
538
|
+
"""
|
539
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
540
|
+
"""
|
541
|
+
return pulumi.get(self, "attribute_value")
|
542
|
+
|
543
|
+
@attribute_value.setter
|
544
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
545
|
+
pulumi.set(self, "attribute_value", value)
|
546
|
+
|
547
|
+
@property
|
548
|
+
@pulumi.getter
|
549
|
+
def childrens(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizationExceptionRuleChildrenChildrenArgs']]]]:
|
550
|
+
"""
|
551
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
552
|
+
"""
|
553
|
+
return pulumi.get(self, "childrens")
|
554
|
+
|
555
|
+
@childrens.setter
|
556
|
+
def childrens(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizationExceptionRuleChildrenChildrenArgs']]]]):
|
557
|
+
pulumi.set(self, "childrens", value)
|
558
|
+
|
559
|
+
@property
|
560
|
+
@pulumi.getter(name="dictionaryName")
|
561
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
562
|
+
"""
|
563
|
+
Dictionary name
|
564
|
+
"""
|
565
|
+
return pulumi.get(self, "dictionary_name")
|
566
|
+
|
567
|
+
@dictionary_name.setter
|
568
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
569
|
+
pulumi.set(self, "dictionary_name", value)
|
570
|
+
|
571
|
+
@property
|
572
|
+
@pulumi.getter(name="dictionaryValue")
|
573
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
574
|
+
"""
|
575
|
+
Dictionary value
|
576
|
+
"""
|
577
|
+
return pulumi.get(self, "dictionary_value")
|
578
|
+
|
579
|
+
@dictionary_value.setter
|
580
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
581
|
+
pulumi.set(self, "dictionary_value", value)
|
582
|
+
|
583
|
+
@property
|
584
|
+
@pulumi.getter
|
585
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
586
|
+
"""
|
587
|
+
UUID for condition
|
588
|
+
"""
|
589
|
+
return pulumi.get(self, "id")
|
590
|
+
|
591
|
+
@id.setter
|
592
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
593
|
+
pulumi.set(self, "id", value)
|
594
|
+
|
595
|
+
@property
|
596
|
+
@pulumi.getter(name="isNegate")
|
597
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
598
|
+
"""
|
599
|
+
Indicates whereas this condition is in negate mode
|
600
|
+
"""
|
601
|
+
return pulumi.get(self, "is_negate")
|
602
|
+
|
603
|
+
@is_negate.setter
|
604
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
605
|
+
pulumi.set(self, "is_negate", value)
|
606
|
+
|
607
|
+
@property
|
608
|
+
@pulumi.getter
|
609
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
610
|
+
"""
|
611
|
+
Equality operator
|
612
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
613
|
+
"""
|
614
|
+
return pulumi.get(self, "operator")
|
615
|
+
|
616
|
+
@operator.setter
|
617
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
618
|
+
pulumi.set(self, "operator", value)
|
619
|
+
|
620
|
+
|
621
|
+
if not MYPY:
|
622
|
+
class AuthorizationExceptionRuleChildrenChildrenArgsDict(TypedDict):
|
623
|
+
condition_type: pulumi.Input[str]
|
624
|
+
"""
|
625
|
+
Condition type.
|
626
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
627
|
+
"""
|
628
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
629
|
+
"""
|
630
|
+
Dictionary attribute name
|
631
|
+
"""
|
632
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
633
|
+
"""
|
634
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
635
|
+
"""
|
636
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
637
|
+
"""
|
638
|
+
Dictionary name
|
639
|
+
"""
|
640
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
641
|
+
"""
|
642
|
+
Dictionary value
|
643
|
+
"""
|
644
|
+
id: NotRequired[pulumi.Input[str]]
|
645
|
+
"""
|
646
|
+
UUID for condition
|
647
|
+
"""
|
648
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
649
|
+
"""
|
650
|
+
Indicates whereas this condition is in negate mode
|
651
|
+
"""
|
652
|
+
operator: NotRequired[pulumi.Input[str]]
|
653
|
+
"""
|
654
|
+
Equality operator
|
655
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
656
|
+
"""
|
657
|
+
elif False:
|
658
|
+
AuthorizationExceptionRuleChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
659
|
+
|
660
|
+
@pulumi.input_type
|
661
|
+
class AuthorizationExceptionRuleChildrenChildrenArgs:
|
662
|
+
def __init__(__self__, *,
|
663
|
+
condition_type: pulumi.Input[str],
|
664
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
665
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
666
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
667
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
668
|
+
id: Optional[pulumi.Input[str]] = None,
|
669
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
670
|
+
operator: Optional[pulumi.Input[str]] = None):
|
671
|
+
"""
|
672
|
+
:param pulumi.Input[str] condition_type: Condition type.
|
673
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
674
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
675
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
676
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
677
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
678
|
+
:param pulumi.Input[str] id: UUID for condition
|
679
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
680
|
+
:param pulumi.Input[str] operator: Equality operator
|
681
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
682
|
+
"""
|
683
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
684
|
+
if attribute_name is not None:
|
685
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
686
|
+
if attribute_value is not None:
|
687
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
688
|
+
if dictionary_name is not None:
|
689
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
690
|
+
if dictionary_value is not None:
|
691
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
692
|
+
if id is not None:
|
693
|
+
pulumi.set(__self__, "id", id)
|
694
|
+
if is_negate is not None:
|
695
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
696
|
+
if operator is not None:
|
697
|
+
pulumi.set(__self__, "operator", operator)
|
698
|
+
|
699
|
+
@property
|
700
|
+
@pulumi.getter(name="conditionType")
|
701
|
+
def condition_type(self) -> pulumi.Input[str]:
|
702
|
+
"""
|
703
|
+
Condition type.
|
704
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
705
|
+
"""
|
706
|
+
return pulumi.get(self, "condition_type")
|
707
|
+
|
708
|
+
@condition_type.setter
|
709
|
+
def condition_type(self, value: pulumi.Input[str]):
|
710
|
+
pulumi.set(self, "condition_type", value)
|
711
|
+
|
712
|
+
@property
|
713
|
+
@pulumi.getter(name="attributeName")
|
714
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
715
|
+
"""
|
716
|
+
Dictionary attribute name
|
717
|
+
"""
|
718
|
+
return pulumi.get(self, "attribute_name")
|
719
|
+
|
720
|
+
@attribute_name.setter
|
721
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
722
|
+
pulumi.set(self, "attribute_name", value)
|
723
|
+
|
724
|
+
@property
|
725
|
+
@pulumi.getter(name="attributeValue")
|
726
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
727
|
+
"""
|
728
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
729
|
+
"""
|
730
|
+
return pulumi.get(self, "attribute_value")
|
731
|
+
|
732
|
+
@attribute_value.setter
|
733
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
734
|
+
pulumi.set(self, "attribute_value", value)
|
735
|
+
|
736
|
+
@property
|
737
|
+
@pulumi.getter(name="dictionaryName")
|
738
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
739
|
+
"""
|
740
|
+
Dictionary name
|
741
|
+
"""
|
742
|
+
return pulumi.get(self, "dictionary_name")
|
743
|
+
|
744
|
+
@dictionary_name.setter
|
745
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
746
|
+
pulumi.set(self, "dictionary_name", value)
|
747
|
+
|
748
|
+
@property
|
749
|
+
@pulumi.getter(name="dictionaryValue")
|
750
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
751
|
+
"""
|
752
|
+
Dictionary value
|
753
|
+
"""
|
754
|
+
return pulumi.get(self, "dictionary_value")
|
755
|
+
|
756
|
+
@dictionary_value.setter
|
757
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
758
|
+
pulumi.set(self, "dictionary_value", value)
|
759
|
+
|
760
|
+
@property
|
761
|
+
@pulumi.getter
|
762
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
763
|
+
"""
|
764
|
+
UUID for condition
|
765
|
+
"""
|
766
|
+
return pulumi.get(self, "id")
|
767
|
+
|
768
|
+
@id.setter
|
769
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
770
|
+
pulumi.set(self, "id", value)
|
771
|
+
|
772
|
+
@property
|
773
|
+
@pulumi.getter(name="isNegate")
|
774
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
775
|
+
"""
|
776
|
+
Indicates whereas this condition is in negate mode
|
777
|
+
"""
|
778
|
+
return pulumi.get(self, "is_negate")
|
779
|
+
|
780
|
+
@is_negate.setter
|
781
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
782
|
+
pulumi.set(self, "is_negate", value)
|
783
|
+
|
784
|
+
@property
|
785
|
+
@pulumi.getter
|
786
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
787
|
+
"""
|
788
|
+
Equality operator
|
789
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
790
|
+
"""
|
791
|
+
return pulumi.get(self, "operator")
|
792
|
+
|
793
|
+
@operator.setter
|
794
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
795
|
+
pulumi.set(self, "operator", value)
|
796
|
+
|
797
|
+
|
798
|
+
if not MYPY:
|
799
|
+
class AuthorizationGlobalExceptionRuleChildrenArgsDict(TypedDict):
|
800
|
+
condition_type: pulumi.Input[str]
|
801
|
+
"""
|
802
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
803
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
804
|
+
"""
|
805
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
806
|
+
"""
|
807
|
+
Dictionary attribute name
|
808
|
+
"""
|
809
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
810
|
+
"""
|
811
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
812
|
+
"""
|
813
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['AuthorizationGlobalExceptionRuleChildrenChildrenArgsDict']]]]
|
814
|
+
"""
|
815
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
816
|
+
"""
|
817
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
818
|
+
"""
|
819
|
+
Dictionary name
|
820
|
+
"""
|
821
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
822
|
+
"""
|
823
|
+
Dictionary value
|
824
|
+
"""
|
825
|
+
id: NotRequired[pulumi.Input[str]]
|
826
|
+
"""
|
827
|
+
UUID for condition
|
828
|
+
"""
|
829
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
830
|
+
"""
|
831
|
+
Indicates whereas this condition is in negate mode
|
832
|
+
"""
|
833
|
+
operator: NotRequired[pulumi.Input[str]]
|
834
|
+
"""
|
835
|
+
Equality operator
|
836
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
837
|
+
"""
|
838
|
+
elif False:
|
839
|
+
AuthorizationGlobalExceptionRuleChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
840
|
+
|
841
|
+
@pulumi.input_type
|
842
|
+
class AuthorizationGlobalExceptionRuleChildrenArgs:
|
843
|
+
def __init__(__self__, *,
|
844
|
+
condition_type: pulumi.Input[str],
|
845
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
846
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
847
|
+
childrens: Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizationGlobalExceptionRuleChildrenChildrenArgs']]]] = None,
|
848
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
849
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
850
|
+
id: Optional[pulumi.Input[str]] = None,
|
851
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
852
|
+
operator: Optional[pulumi.Input[str]] = None):
|
853
|
+
"""
|
854
|
+
:param pulumi.Input[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.
|
855
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
856
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
857
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
858
|
+
:param pulumi.Input[Sequence[pulumi.Input['AuthorizationGlobalExceptionRuleChildrenChildrenArgs']]] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
859
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
860
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
861
|
+
:param pulumi.Input[str] id: UUID for condition
|
862
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
863
|
+
:param pulumi.Input[str] operator: Equality operator
|
864
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
865
|
+
"""
|
866
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
867
|
+
if attribute_name is not None:
|
868
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
869
|
+
if attribute_value is not None:
|
870
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
871
|
+
if childrens is not None:
|
872
|
+
pulumi.set(__self__, "childrens", childrens)
|
873
|
+
if dictionary_name is not None:
|
874
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
875
|
+
if dictionary_value is not None:
|
876
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
877
|
+
if id is not None:
|
878
|
+
pulumi.set(__self__, "id", id)
|
879
|
+
if is_negate is not None:
|
880
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
881
|
+
if operator is not None:
|
882
|
+
pulumi.set(__self__, "operator", operator)
|
883
|
+
|
884
|
+
@property
|
885
|
+
@pulumi.getter(name="conditionType")
|
886
|
+
def condition_type(self) -> pulumi.Input[str]:
|
887
|
+
"""
|
888
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
889
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
890
|
+
"""
|
891
|
+
return pulumi.get(self, "condition_type")
|
892
|
+
|
893
|
+
@condition_type.setter
|
894
|
+
def condition_type(self, value: pulumi.Input[str]):
|
895
|
+
pulumi.set(self, "condition_type", value)
|
896
|
+
|
897
|
+
@property
|
898
|
+
@pulumi.getter(name="attributeName")
|
899
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
900
|
+
"""
|
901
|
+
Dictionary attribute name
|
902
|
+
"""
|
903
|
+
return pulumi.get(self, "attribute_name")
|
904
|
+
|
905
|
+
@attribute_name.setter
|
906
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
907
|
+
pulumi.set(self, "attribute_name", value)
|
908
|
+
|
909
|
+
@property
|
910
|
+
@pulumi.getter(name="attributeValue")
|
911
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
912
|
+
"""
|
913
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
914
|
+
"""
|
915
|
+
return pulumi.get(self, "attribute_value")
|
916
|
+
|
917
|
+
@attribute_value.setter
|
918
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
919
|
+
pulumi.set(self, "attribute_value", value)
|
920
|
+
|
921
|
+
@property
|
922
|
+
@pulumi.getter
|
923
|
+
def childrens(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizationGlobalExceptionRuleChildrenChildrenArgs']]]]:
|
924
|
+
"""
|
925
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
926
|
+
"""
|
927
|
+
return pulumi.get(self, "childrens")
|
928
|
+
|
929
|
+
@childrens.setter
|
930
|
+
def childrens(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizationGlobalExceptionRuleChildrenChildrenArgs']]]]):
|
931
|
+
pulumi.set(self, "childrens", value)
|
932
|
+
|
933
|
+
@property
|
934
|
+
@pulumi.getter(name="dictionaryName")
|
935
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
936
|
+
"""
|
937
|
+
Dictionary name
|
938
|
+
"""
|
939
|
+
return pulumi.get(self, "dictionary_name")
|
940
|
+
|
941
|
+
@dictionary_name.setter
|
942
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
943
|
+
pulumi.set(self, "dictionary_name", value)
|
944
|
+
|
945
|
+
@property
|
946
|
+
@pulumi.getter(name="dictionaryValue")
|
947
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
948
|
+
"""
|
949
|
+
Dictionary value
|
950
|
+
"""
|
951
|
+
return pulumi.get(self, "dictionary_value")
|
952
|
+
|
953
|
+
@dictionary_value.setter
|
954
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
955
|
+
pulumi.set(self, "dictionary_value", value)
|
956
|
+
|
957
|
+
@property
|
958
|
+
@pulumi.getter
|
959
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
960
|
+
"""
|
961
|
+
UUID for condition
|
962
|
+
"""
|
963
|
+
return pulumi.get(self, "id")
|
964
|
+
|
965
|
+
@id.setter
|
966
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
967
|
+
pulumi.set(self, "id", value)
|
968
|
+
|
969
|
+
@property
|
970
|
+
@pulumi.getter(name="isNegate")
|
971
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
972
|
+
"""
|
973
|
+
Indicates whereas this condition is in negate mode
|
974
|
+
"""
|
975
|
+
return pulumi.get(self, "is_negate")
|
976
|
+
|
977
|
+
@is_negate.setter
|
978
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
979
|
+
pulumi.set(self, "is_negate", value)
|
980
|
+
|
981
|
+
@property
|
982
|
+
@pulumi.getter
|
983
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
984
|
+
"""
|
985
|
+
Equality operator
|
986
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
987
|
+
"""
|
988
|
+
return pulumi.get(self, "operator")
|
989
|
+
|
990
|
+
@operator.setter
|
991
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
992
|
+
pulumi.set(self, "operator", value)
|
993
|
+
|
994
|
+
|
995
|
+
if not MYPY:
|
996
|
+
class AuthorizationGlobalExceptionRuleChildrenChildrenArgsDict(TypedDict):
|
997
|
+
condition_type: pulumi.Input[str]
|
998
|
+
"""
|
999
|
+
Condition type.
|
1000
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
1001
|
+
"""
|
1002
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
1003
|
+
"""
|
1004
|
+
Dictionary attribute name
|
1005
|
+
"""
|
1006
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
1007
|
+
"""
|
1008
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1009
|
+
"""
|
1010
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
1011
|
+
"""
|
1012
|
+
Dictionary name
|
1013
|
+
"""
|
1014
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
1015
|
+
"""
|
1016
|
+
Dictionary value
|
1017
|
+
"""
|
1018
|
+
id: NotRequired[pulumi.Input[str]]
|
1019
|
+
"""
|
1020
|
+
UUID for condition
|
1021
|
+
"""
|
1022
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
1023
|
+
"""
|
1024
|
+
Indicates whereas this condition is in negate mode
|
1025
|
+
"""
|
1026
|
+
operator: NotRequired[pulumi.Input[str]]
|
1027
|
+
"""
|
1028
|
+
Equality operator
|
1029
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1030
|
+
"""
|
1031
|
+
elif False:
|
1032
|
+
AuthorizationGlobalExceptionRuleChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
1033
|
+
|
1034
|
+
@pulumi.input_type
|
1035
|
+
class AuthorizationGlobalExceptionRuleChildrenChildrenArgs:
|
1036
|
+
def __init__(__self__, *,
|
1037
|
+
condition_type: pulumi.Input[str],
|
1038
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
1039
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
1040
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
1041
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
1042
|
+
id: Optional[pulumi.Input[str]] = None,
|
1043
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
1044
|
+
operator: Optional[pulumi.Input[str]] = None):
|
1045
|
+
"""
|
1046
|
+
:param pulumi.Input[str] condition_type: Condition type.
|
1047
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
1048
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
1049
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
1050
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
1051
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
1052
|
+
:param pulumi.Input[str] id: UUID for condition
|
1053
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
1054
|
+
:param pulumi.Input[str] operator: Equality operator
|
1055
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1056
|
+
"""
|
1057
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
1058
|
+
if attribute_name is not None:
|
1059
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
1060
|
+
if attribute_value is not None:
|
1061
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
1062
|
+
if dictionary_name is not None:
|
1063
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
1064
|
+
if dictionary_value is not None:
|
1065
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
1066
|
+
if id is not None:
|
1067
|
+
pulumi.set(__self__, "id", id)
|
1068
|
+
if is_negate is not None:
|
1069
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
1070
|
+
if operator is not None:
|
1071
|
+
pulumi.set(__self__, "operator", operator)
|
1072
|
+
|
1073
|
+
@property
|
1074
|
+
@pulumi.getter(name="conditionType")
|
1075
|
+
def condition_type(self) -> pulumi.Input[str]:
|
1076
|
+
"""
|
1077
|
+
Condition type.
|
1078
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
1079
|
+
"""
|
1080
|
+
return pulumi.get(self, "condition_type")
|
1081
|
+
|
1082
|
+
@condition_type.setter
|
1083
|
+
def condition_type(self, value: pulumi.Input[str]):
|
1084
|
+
pulumi.set(self, "condition_type", value)
|
1085
|
+
|
1086
|
+
@property
|
1087
|
+
@pulumi.getter(name="attributeName")
|
1088
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
1089
|
+
"""
|
1090
|
+
Dictionary attribute name
|
1091
|
+
"""
|
1092
|
+
return pulumi.get(self, "attribute_name")
|
1093
|
+
|
1094
|
+
@attribute_name.setter
|
1095
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
1096
|
+
pulumi.set(self, "attribute_name", value)
|
1097
|
+
|
1098
|
+
@property
|
1099
|
+
@pulumi.getter(name="attributeValue")
|
1100
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
1101
|
+
"""
|
1102
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1103
|
+
"""
|
1104
|
+
return pulumi.get(self, "attribute_value")
|
1105
|
+
|
1106
|
+
@attribute_value.setter
|
1107
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
1108
|
+
pulumi.set(self, "attribute_value", value)
|
1109
|
+
|
1110
|
+
@property
|
1111
|
+
@pulumi.getter(name="dictionaryName")
|
1112
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
1113
|
+
"""
|
1114
|
+
Dictionary name
|
1115
|
+
"""
|
1116
|
+
return pulumi.get(self, "dictionary_name")
|
1117
|
+
|
1118
|
+
@dictionary_name.setter
|
1119
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
1120
|
+
pulumi.set(self, "dictionary_name", value)
|
1121
|
+
|
1122
|
+
@property
|
1123
|
+
@pulumi.getter(name="dictionaryValue")
|
1124
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
1125
|
+
"""
|
1126
|
+
Dictionary value
|
1127
|
+
"""
|
1128
|
+
return pulumi.get(self, "dictionary_value")
|
1129
|
+
|
1130
|
+
@dictionary_value.setter
|
1131
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
1132
|
+
pulumi.set(self, "dictionary_value", value)
|
1133
|
+
|
1134
|
+
@property
|
1135
|
+
@pulumi.getter
|
1136
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
1137
|
+
"""
|
1138
|
+
UUID for condition
|
1139
|
+
"""
|
1140
|
+
return pulumi.get(self, "id")
|
1141
|
+
|
1142
|
+
@id.setter
|
1143
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
1144
|
+
pulumi.set(self, "id", value)
|
1145
|
+
|
1146
|
+
@property
|
1147
|
+
@pulumi.getter(name="isNegate")
|
1148
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
1149
|
+
"""
|
1150
|
+
Indicates whereas this condition is in negate mode
|
1151
|
+
"""
|
1152
|
+
return pulumi.get(self, "is_negate")
|
1153
|
+
|
1154
|
+
@is_negate.setter
|
1155
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
1156
|
+
pulumi.set(self, "is_negate", value)
|
1157
|
+
|
1158
|
+
@property
|
1159
|
+
@pulumi.getter
|
1160
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
1161
|
+
"""
|
1162
|
+
Equality operator
|
1163
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1164
|
+
"""
|
1165
|
+
return pulumi.get(self, "operator")
|
1166
|
+
|
1167
|
+
@operator.setter
|
1168
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
1169
|
+
pulumi.set(self, "operator", value)
|
1170
|
+
|
1171
|
+
|
1172
|
+
if not MYPY:
|
1173
|
+
class AuthorizationRuleChildrenArgsDict(TypedDict):
|
1174
|
+
condition_type: pulumi.Input[str]
|
1175
|
+
"""
|
1176
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
1177
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
1178
|
+
"""
|
1179
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
1180
|
+
"""
|
1181
|
+
Dictionary attribute name
|
1182
|
+
"""
|
1183
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
1184
|
+
"""
|
1185
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1186
|
+
"""
|
1187
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['AuthorizationRuleChildrenChildrenArgsDict']]]]
|
1188
|
+
"""
|
1189
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
1190
|
+
"""
|
1191
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
1192
|
+
"""
|
1193
|
+
Dictionary name
|
1194
|
+
"""
|
1195
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
1196
|
+
"""
|
1197
|
+
Dictionary value
|
1198
|
+
"""
|
1199
|
+
id: NotRequired[pulumi.Input[str]]
|
1200
|
+
"""
|
1201
|
+
UUID for condition
|
1202
|
+
"""
|
1203
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
1204
|
+
"""
|
1205
|
+
Indicates whereas this condition is in negate mode
|
1206
|
+
"""
|
1207
|
+
operator: NotRequired[pulumi.Input[str]]
|
1208
|
+
"""
|
1209
|
+
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
|
+
elif False:
|
1213
|
+
AuthorizationRuleChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
1214
|
+
|
1215
|
+
@pulumi.input_type
|
1216
|
+
class AuthorizationRuleChildrenArgs:
|
1217
|
+
def __init__(__self__, *,
|
1218
|
+
condition_type: pulumi.Input[str],
|
1219
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
1220
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
1221
|
+
childrens: Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizationRuleChildrenChildrenArgs']]]] = None,
|
1222
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
1223
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
1224
|
+
id: Optional[pulumi.Input[str]] = None,
|
1225
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
1226
|
+
operator: Optional[pulumi.Input[str]] = None):
|
1227
|
+
"""
|
1228
|
+
:param pulumi.Input[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.
|
1229
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
1230
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
1231
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
1232
|
+
:param pulumi.Input[Sequence[pulumi.Input['AuthorizationRuleChildrenChildrenArgs']]] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
1233
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
1234
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
1235
|
+
:param pulumi.Input[str] id: UUID for condition
|
1236
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
1237
|
+
:param pulumi.Input[str] operator: Equality operator
|
1238
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1239
|
+
"""
|
1240
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
1241
|
+
if attribute_name is not None:
|
1242
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
1243
|
+
if attribute_value is not None:
|
1244
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
1245
|
+
if childrens is not None:
|
1246
|
+
pulumi.set(__self__, "childrens", childrens)
|
1247
|
+
if dictionary_name is not None:
|
1248
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
1249
|
+
if dictionary_value is not None:
|
1250
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
1251
|
+
if id is not None:
|
1252
|
+
pulumi.set(__self__, "id", id)
|
1253
|
+
if is_negate is not None:
|
1254
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
1255
|
+
if operator is not None:
|
1256
|
+
pulumi.set(__self__, "operator", operator)
|
1257
|
+
|
1258
|
+
@property
|
1259
|
+
@pulumi.getter(name="conditionType")
|
1260
|
+
def condition_type(self) -> pulumi.Input[str]:
|
1261
|
+
"""
|
1262
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
1263
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
1264
|
+
"""
|
1265
|
+
return pulumi.get(self, "condition_type")
|
1266
|
+
|
1267
|
+
@condition_type.setter
|
1268
|
+
def condition_type(self, value: pulumi.Input[str]):
|
1269
|
+
pulumi.set(self, "condition_type", value)
|
1270
|
+
|
1271
|
+
@property
|
1272
|
+
@pulumi.getter(name="attributeName")
|
1273
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
1274
|
+
"""
|
1275
|
+
Dictionary attribute name
|
1276
|
+
"""
|
1277
|
+
return pulumi.get(self, "attribute_name")
|
1278
|
+
|
1279
|
+
@attribute_name.setter
|
1280
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
1281
|
+
pulumi.set(self, "attribute_name", value)
|
1282
|
+
|
1283
|
+
@property
|
1284
|
+
@pulumi.getter(name="attributeValue")
|
1285
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
1286
|
+
"""
|
1287
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1288
|
+
"""
|
1289
|
+
return pulumi.get(self, "attribute_value")
|
1290
|
+
|
1291
|
+
@attribute_value.setter
|
1292
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
1293
|
+
pulumi.set(self, "attribute_value", value)
|
1294
|
+
|
1295
|
+
@property
|
1296
|
+
@pulumi.getter
|
1297
|
+
def childrens(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizationRuleChildrenChildrenArgs']]]]:
|
1298
|
+
"""
|
1299
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
1300
|
+
"""
|
1301
|
+
return pulumi.get(self, "childrens")
|
1302
|
+
|
1303
|
+
@childrens.setter
|
1304
|
+
def childrens(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizationRuleChildrenChildrenArgs']]]]):
|
1305
|
+
pulumi.set(self, "childrens", value)
|
1306
|
+
|
1307
|
+
@property
|
1308
|
+
@pulumi.getter(name="dictionaryName")
|
1309
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
1310
|
+
"""
|
1311
|
+
Dictionary name
|
1312
|
+
"""
|
1313
|
+
return pulumi.get(self, "dictionary_name")
|
1314
|
+
|
1315
|
+
@dictionary_name.setter
|
1316
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
1317
|
+
pulumi.set(self, "dictionary_name", value)
|
1318
|
+
|
1319
|
+
@property
|
1320
|
+
@pulumi.getter(name="dictionaryValue")
|
1321
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
1322
|
+
"""
|
1323
|
+
Dictionary value
|
1324
|
+
"""
|
1325
|
+
return pulumi.get(self, "dictionary_value")
|
1326
|
+
|
1327
|
+
@dictionary_value.setter
|
1328
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
1329
|
+
pulumi.set(self, "dictionary_value", value)
|
1330
|
+
|
1331
|
+
@property
|
1332
|
+
@pulumi.getter
|
1333
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
1334
|
+
"""
|
1335
|
+
UUID for condition
|
1336
|
+
"""
|
1337
|
+
return pulumi.get(self, "id")
|
1338
|
+
|
1339
|
+
@id.setter
|
1340
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
1341
|
+
pulumi.set(self, "id", value)
|
1342
|
+
|
1343
|
+
@property
|
1344
|
+
@pulumi.getter(name="isNegate")
|
1345
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
1346
|
+
"""
|
1347
|
+
Indicates whereas this condition is in negate mode
|
1348
|
+
"""
|
1349
|
+
return pulumi.get(self, "is_negate")
|
1350
|
+
|
1351
|
+
@is_negate.setter
|
1352
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
1353
|
+
pulumi.set(self, "is_negate", value)
|
1354
|
+
|
1355
|
+
@property
|
1356
|
+
@pulumi.getter
|
1357
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
1358
|
+
"""
|
1359
|
+
Equality operator
|
1360
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1361
|
+
"""
|
1362
|
+
return pulumi.get(self, "operator")
|
1363
|
+
|
1364
|
+
@operator.setter
|
1365
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
1366
|
+
pulumi.set(self, "operator", value)
|
1367
|
+
|
1368
|
+
|
1369
|
+
if not MYPY:
|
1370
|
+
class AuthorizationRuleChildrenChildrenArgsDict(TypedDict):
|
1371
|
+
condition_type: pulumi.Input[str]
|
1372
|
+
"""
|
1373
|
+
Condition type.
|
1374
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
1375
|
+
"""
|
1376
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
1377
|
+
"""
|
1378
|
+
Dictionary attribute name
|
1379
|
+
"""
|
1380
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
1381
|
+
"""
|
1382
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1383
|
+
"""
|
1384
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
1385
|
+
"""
|
1386
|
+
Dictionary name
|
1387
|
+
"""
|
1388
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
1389
|
+
"""
|
1390
|
+
Dictionary value
|
1391
|
+
"""
|
1392
|
+
id: NotRequired[pulumi.Input[str]]
|
1393
|
+
"""
|
1394
|
+
UUID for condition
|
1395
|
+
"""
|
1396
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
1397
|
+
"""
|
1398
|
+
Indicates whereas this condition is in negate mode
|
1399
|
+
"""
|
1400
|
+
operator: NotRequired[pulumi.Input[str]]
|
1401
|
+
"""
|
1402
|
+
Equality operator
|
1403
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1404
|
+
"""
|
1405
|
+
elif False:
|
1406
|
+
AuthorizationRuleChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
1407
|
+
|
1408
|
+
@pulumi.input_type
|
1409
|
+
class AuthorizationRuleChildrenChildrenArgs:
|
1410
|
+
def __init__(__self__, *,
|
1411
|
+
condition_type: pulumi.Input[str],
|
1412
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
1413
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
1414
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
1415
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
1416
|
+
id: Optional[pulumi.Input[str]] = None,
|
1417
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
1418
|
+
operator: Optional[pulumi.Input[str]] = None):
|
1419
|
+
"""
|
1420
|
+
:param pulumi.Input[str] condition_type: Condition type.
|
1421
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
1422
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
1423
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
1424
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
1425
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
1426
|
+
:param pulumi.Input[str] id: UUID for condition
|
1427
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
1428
|
+
:param pulumi.Input[str] operator: Equality operator
|
1429
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1430
|
+
"""
|
1431
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
1432
|
+
if attribute_name is not None:
|
1433
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
1434
|
+
if attribute_value is not None:
|
1435
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
1436
|
+
if dictionary_name is not None:
|
1437
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
1438
|
+
if dictionary_value is not None:
|
1439
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
1440
|
+
if id is not None:
|
1441
|
+
pulumi.set(__self__, "id", id)
|
1442
|
+
if is_negate is not None:
|
1443
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
1444
|
+
if operator is not None:
|
1445
|
+
pulumi.set(__self__, "operator", operator)
|
1446
|
+
|
1447
|
+
@property
|
1448
|
+
@pulumi.getter(name="conditionType")
|
1449
|
+
def condition_type(self) -> pulumi.Input[str]:
|
1450
|
+
"""
|
1451
|
+
Condition type.
|
1452
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
1453
|
+
"""
|
1454
|
+
return pulumi.get(self, "condition_type")
|
1455
|
+
|
1456
|
+
@condition_type.setter
|
1457
|
+
def condition_type(self, value: pulumi.Input[str]):
|
1458
|
+
pulumi.set(self, "condition_type", value)
|
1459
|
+
|
1460
|
+
@property
|
1461
|
+
@pulumi.getter(name="attributeName")
|
1462
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
1463
|
+
"""
|
1464
|
+
Dictionary attribute name
|
1465
|
+
"""
|
1466
|
+
return pulumi.get(self, "attribute_name")
|
1467
|
+
|
1468
|
+
@attribute_name.setter
|
1469
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
1470
|
+
pulumi.set(self, "attribute_name", value)
|
1471
|
+
|
1472
|
+
@property
|
1473
|
+
@pulumi.getter(name="attributeValue")
|
1474
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
1475
|
+
"""
|
1476
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1477
|
+
"""
|
1478
|
+
return pulumi.get(self, "attribute_value")
|
1479
|
+
|
1480
|
+
@attribute_value.setter
|
1481
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
1482
|
+
pulumi.set(self, "attribute_value", value)
|
1483
|
+
|
1484
|
+
@property
|
1485
|
+
@pulumi.getter(name="dictionaryName")
|
1486
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
1487
|
+
"""
|
1488
|
+
Dictionary name
|
1489
|
+
"""
|
1490
|
+
return pulumi.get(self, "dictionary_name")
|
1491
|
+
|
1492
|
+
@dictionary_name.setter
|
1493
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
1494
|
+
pulumi.set(self, "dictionary_name", value)
|
1495
|
+
|
1496
|
+
@property
|
1497
|
+
@pulumi.getter(name="dictionaryValue")
|
1498
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
1499
|
+
"""
|
1500
|
+
Dictionary value
|
1501
|
+
"""
|
1502
|
+
return pulumi.get(self, "dictionary_value")
|
1503
|
+
|
1504
|
+
@dictionary_value.setter
|
1505
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
1506
|
+
pulumi.set(self, "dictionary_value", value)
|
1507
|
+
|
1508
|
+
@property
|
1509
|
+
@pulumi.getter
|
1510
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
1511
|
+
"""
|
1512
|
+
UUID for condition
|
1513
|
+
"""
|
1514
|
+
return pulumi.get(self, "id")
|
1515
|
+
|
1516
|
+
@id.setter
|
1517
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
1518
|
+
pulumi.set(self, "id", value)
|
1519
|
+
|
1520
|
+
@property
|
1521
|
+
@pulumi.getter(name="isNegate")
|
1522
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
1523
|
+
"""
|
1524
|
+
Indicates whereas this condition is in negate mode
|
1525
|
+
"""
|
1526
|
+
return pulumi.get(self, "is_negate")
|
1527
|
+
|
1528
|
+
@is_negate.setter
|
1529
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
1530
|
+
pulumi.set(self, "is_negate", value)
|
1531
|
+
|
1532
|
+
@property
|
1533
|
+
@pulumi.getter
|
1534
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
1535
|
+
"""
|
1536
|
+
Equality operator
|
1537
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1538
|
+
"""
|
1539
|
+
return pulumi.get(self, "operator")
|
1540
|
+
|
1541
|
+
@operator.setter
|
1542
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
1543
|
+
pulumi.set(self, "operator", value)
|
1544
|
+
|
1545
|
+
|
1546
|
+
if not MYPY:
|
1547
|
+
class ConditionChildrenArgsDict(TypedDict):
|
1548
|
+
condition_type: pulumi.Input[str]
|
1549
|
+
"""
|
1550
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
1551
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
1552
|
+
"""
|
1553
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
1554
|
+
"""
|
1555
|
+
Dictionary attribute name
|
1556
|
+
"""
|
1557
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
1558
|
+
"""
|
1559
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1560
|
+
"""
|
1561
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['ConditionChildrenChildrenArgsDict']]]]
|
1562
|
+
"""
|
1563
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
1564
|
+
"""
|
1565
|
+
description: NotRequired[pulumi.Input[str]]
|
1566
|
+
"""
|
1567
|
+
Condition description
|
1568
|
+
"""
|
1569
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
1570
|
+
"""
|
1571
|
+
Dictionary name
|
1572
|
+
"""
|
1573
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
1574
|
+
"""
|
1575
|
+
Dictionary value
|
1576
|
+
"""
|
1577
|
+
id: NotRequired[pulumi.Input[str]]
|
1578
|
+
"""
|
1579
|
+
UUID for condition
|
1580
|
+
"""
|
1581
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
1582
|
+
"""
|
1583
|
+
Indicates whereas this condition is in negate mode
|
1584
|
+
"""
|
1585
|
+
name: NotRequired[pulumi.Input[str]]
|
1586
|
+
"""
|
1587
|
+
Condition name
|
1588
|
+
"""
|
1589
|
+
operator: NotRequired[pulumi.Input[str]]
|
1590
|
+
"""
|
1591
|
+
Equality operator
|
1592
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1593
|
+
"""
|
1594
|
+
elif False:
|
1595
|
+
ConditionChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
1596
|
+
|
1597
|
+
@pulumi.input_type
|
1598
|
+
class ConditionChildrenArgs:
|
1599
|
+
def __init__(__self__, *,
|
1600
|
+
condition_type: pulumi.Input[str],
|
1601
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
1602
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
1603
|
+
childrens: Optional[pulumi.Input[Sequence[pulumi.Input['ConditionChildrenChildrenArgs']]]] = None,
|
1604
|
+
description: Optional[pulumi.Input[str]] = None,
|
1605
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
1606
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
1607
|
+
id: Optional[pulumi.Input[str]] = None,
|
1608
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
1609
|
+
name: Optional[pulumi.Input[str]] = None,
|
1610
|
+
operator: Optional[pulumi.Input[str]] = None):
|
1611
|
+
"""
|
1612
|
+
:param pulumi.Input[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.
|
1613
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
1614
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
1615
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
1616
|
+
:param pulumi.Input[Sequence[pulumi.Input['ConditionChildrenChildrenArgs']]] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
1617
|
+
:param pulumi.Input[str] description: Condition description
|
1618
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
1619
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
1620
|
+
:param pulumi.Input[str] id: UUID for condition
|
1621
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
1622
|
+
:param pulumi.Input[str] name: Condition name
|
1623
|
+
:param pulumi.Input[str] operator: Equality operator
|
1624
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1625
|
+
"""
|
1626
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
1627
|
+
if attribute_name is not None:
|
1628
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
1629
|
+
if attribute_value is not None:
|
1630
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
1631
|
+
if childrens is not None:
|
1632
|
+
pulumi.set(__self__, "childrens", childrens)
|
1633
|
+
if description is not None:
|
1634
|
+
pulumi.set(__self__, "description", description)
|
1635
|
+
if dictionary_name is not None:
|
1636
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
1637
|
+
if dictionary_value is not None:
|
1638
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
1639
|
+
if id is not None:
|
1640
|
+
pulumi.set(__self__, "id", id)
|
1641
|
+
if is_negate is not None:
|
1642
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
1643
|
+
if name is not None:
|
1644
|
+
pulumi.set(__self__, "name", name)
|
1645
|
+
if operator is not None:
|
1646
|
+
pulumi.set(__self__, "operator", operator)
|
1647
|
+
|
1648
|
+
@property
|
1649
|
+
@pulumi.getter(name="conditionType")
|
1650
|
+
def condition_type(self) -> pulumi.Input[str]:
|
1651
|
+
"""
|
1652
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
1653
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
1654
|
+
"""
|
1655
|
+
return pulumi.get(self, "condition_type")
|
1656
|
+
|
1657
|
+
@condition_type.setter
|
1658
|
+
def condition_type(self, value: pulumi.Input[str]):
|
1659
|
+
pulumi.set(self, "condition_type", value)
|
1660
|
+
|
1661
|
+
@property
|
1662
|
+
@pulumi.getter(name="attributeName")
|
1663
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
1664
|
+
"""
|
1665
|
+
Dictionary attribute name
|
1666
|
+
"""
|
1667
|
+
return pulumi.get(self, "attribute_name")
|
1668
|
+
|
1669
|
+
@attribute_name.setter
|
1670
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
1671
|
+
pulumi.set(self, "attribute_name", value)
|
1672
|
+
|
1673
|
+
@property
|
1674
|
+
@pulumi.getter(name="attributeValue")
|
1675
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
1676
|
+
"""
|
1677
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1678
|
+
"""
|
1679
|
+
return pulumi.get(self, "attribute_value")
|
1680
|
+
|
1681
|
+
@attribute_value.setter
|
1682
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
1683
|
+
pulumi.set(self, "attribute_value", value)
|
1684
|
+
|
1685
|
+
@property
|
1686
|
+
@pulumi.getter
|
1687
|
+
def childrens(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ConditionChildrenChildrenArgs']]]]:
|
1688
|
+
"""
|
1689
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
1690
|
+
"""
|
1691
|
+
return pulumi.get(self, "childrens")
|
1692
|
+
|
1693
|
+
@childrens.setter
|
1694
|
+
def childrens(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConditionChildrenChildrenArgs']]]]):
|
1695
|
+
pulumi.set(self, "childrens", value)
|
1696
|
+
|
1697
|
+
@property
|
1698
|
+
@pulumi.getter
|
1699
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
1700
|
+
"""
|
1701
|
+
Condition description
|
1702
|
+
"""
|
1703
|
+
return pulumi.get(self, "description")
|
1704
|
+
|
1705
|
+
@description.setter
|
1706
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
1707
|
+
pulumi.set(self, "description", value)
|
1708
|
+
|
1709
|
+
@property
|
1710
|
+
@pulumi.getter(name="dictionaryName")
|
1711
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
1712
|
+
"""
|
1713
|
+
Dictionary name
|
1714
|
+
"""
|
1715
|
+
return pulumi.get(self, "dictionary_name")
|
1716
|
+
|
1717
|
+
@dictionary_name.setter
|
1718
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
1719
|
+
pulumi.set(self, "dictionary_name", value)
|
1720
|
+
|
1721
|
+
@property
|
1722
|
+
@pulumi.getter(name="dictionaryValue")
|
1723
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
1724
|
+
"""
|
1725
|
+
Dictionary value
|
1726
|
+
"""
|
1727
|
+
return pulumi.get(self, "dictionary_value")
|
1728
|
+
|
1729
|
+
@dictionary_value.setter
|
1730
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
1731
|
+
pulumi.set(self, "dictionary_value", value)
|
1732
|
+
|
1733
|
+
@property
|
1734
|
+
@pulumi.getter
|
1735
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
1736
|
+
"""
|
1737
|
+
UUID for condition
|
1738
|
+
"""
|
1739
|
+
return pulumi.get(self, "id")
|
1740
|
+
|
1741
|
+
@id.setter
|
1742
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
1743
|
+
pulumi.set(self, "id", value)
|
1744
|
+
|
1745
|
+
@property
|
1746
|
+
@pulumi.getter(name="isNegate")
|
1747
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
1748
|
+
"""
|
1749
|
+
Indicates whereas this condition is in negate mode
|
1750
|
+
"""
|
1751
|
+
return pulumi.get(self, "is_negate")
|
1752
|
+
|
1753
|
+
@is_negate.setter
|
1754
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
1755
|
+
pulumi.set(self, "is_negate", value)
|
1756
|
+
|
1757
|
+
@property
|
1758
|
+
@pulumi.getter
|
1759
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
1760
|
+
"""
|
1761
|
+
Condition name
|
1762
|
+
"""
|
1763
|
+
return pulumi.get(self, "name")
|
1764
|
+
|
1765
|
+
@name.setter
|
1766
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
1767
|
+
pulumi.set(self, "name", value)
|
1768
|
+
|
1769
|
+
@property
|
1770
|
+
@pulumi.getter
|
1771
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
1772
|
+
"""
|
1773
|
+
Equality operator
|
1774
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1775
|
+
"""
|
1776
|
+
return pulumi.get(self, "operator")
|
1777
|
+
|
1778
|
+
@operator.setter
|
1779
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
1780
|
+
pulumi.set(self, "operator", value)
|
1781
|
+
|
1782
|
+
|
1783
|
+
if not MYPY:
|
1784
|
+
class ConditionChildrenChildrenArgsDict(TypedDict):
|
1785
|
+
condition_type: pulumi.Input[str]
|
1786
|
+
"""
|
1787
|
+
Condition type.
|
1788
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
1789
|
+
"""
|
1790
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
1791
|
+
"""
|
1792
|
+
Dictionary attribute name
|
1793
|
+
"""
|
1794
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
1795
|
+
"""
|
1796
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1797
|
+
"""
|
1798
|
+
description: NotRequired[pulumi.Input[str]]
|
1799
|
+
"""
|
1800
|
+
Condition description
|
1801
|
+
"""
|
1802
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
1803
|
+
"""
|
1804
|
+
Dictionary name
|
1805
|
+
"""
|
1806
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
1807
|
+
"""
|
1808
|
+
Dictionary value
|
1809
|
+
"""
|
1810
|
+
id: NotRequired[pulumi.Input[str]]
|
1811
|
+
"""
|
1812
|
+
UUID for condition
|
1813
|
+
"""
|
1814
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
1815
|
+
"""
|
1816
|
+
Indicates whereas this condition is in negate mode
|
1817
|
+
"""
|
1818
|
+
name: NotRequired[pulumi.Input[str]]
|
1819
|
+
"""
|
1820
|
+
Condition name
|
1821
|
+
"""
|
1822
|
+
operator: NotRequired[pulumi.Input[str]]
|
1823
|
+
"""
|
1824
|
+
Equality operator
|
1825
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1826
|
+
"""
|
1827
|
+
elif False:
|
1828
|
+
ConditionChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
1829
|
+
|
1830
|
+
@pulumi.input_type
|
1831
|
+
class ConditionChildrenChildrenArgs:
|
1832
|
+
def __init__(__self__, *,
|
1833
|
+
condition_type: pulumi.Input[str],
|
1834
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
1835
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
1836
|
+
description: Optional[pulumi.Input[str]] = None,
|
1837
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
1838
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
1839
|
+
id: Optional[pulumi.Input[str]] = None,
|
1840
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
1841
|
+
name: Optional[pulumi.Input[str]] = None,
|
1842
|
+
operator: Optional[pulumi.Input[str]] = None):
|
1843
|
+
"""
|
1844
|
+
:param pulumi.Input[str] condition_type: Condition type.
|
1845
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
1846
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
1847
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
1848
|
+
:param pulumi.Input[str] description: Condition description
|
1849
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
1850
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
1851
|
+
:param pulumi.Input[str] id: UUID for condition
|
1852
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
1853
|
+
:param pulumi.Input[str] name: Condition name
|
1854
|
+
:param pulumi.Input[str] operator: Equality operator
|
1855
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1856
|
+
"""
|
1857
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
1858
|
+
if attribute_name is not None:
|
1859
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
1860
|
+
if attribute_value is not None:
|
1861
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
1862
|
+
if description is not None:
|
1863
|
+
pulumi.set(__self__, "description", description)
|
1864
|
+
if dictionary_name is not None:
|
1865
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
1866
|
+
if dictionary_value is not None:
|
1867
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
1868
|
+
if id is not None:
|
1869
|
+
pulumi.set(__self__, "id", id)
|
1870
|
+
if is_negate is not None:
|
1871
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
1872
|
+
if name is not None:
|
1873
|
+
pulumi.set(__self__, "name", name)
|
1874
|
+
if operator is not None:
|
1875
|
+
pulumi.set(__self__, "operator", operator)
|
1876
|
+
|
1877
|
+
@property
|
1878
|
+
@pulumi.getter(name="conditionType")
|
1879
|
+
def condition_type(self) -> pulumi.Input[str]:
|
1880
|
+
"""
|
1881
|
+
Condition type.
|
1882
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
1883
|
+
"""
|
1884
|
+
return pulumi.get(self, "condition_type")
|
1885
|
+
|
1886
|
+
@condition_type.setter
|
1887
|
+
def condition_type(self, value: pulumi.Input[str]):
|
1888
|
+
pulumi.set(self, "condition_type", value)
|
1889
|
+
|
1890
|
+
@property
|
1891
|
+
@pulumi.getter(name="attributeName")
|
1892
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
1893
|
+
"""
|
1894
|
+
Dictionary attribute name
|
1895
|
+
"""
|
1896
|
+
return pulumi.get(self, "attribute_name")
|
1897
|
+
|
1898
|
+
@attribute_name.setter
|
1899
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
1900
|
+
pulumi.set(self, "attribute_name", value)
|
1901
|
+
|
1902
|
+
@property
|
1903
|
+
@pulumi.getter(name="attributeValue")
|
1904
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
1905
|
+
"""
|
1906
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1907
|
+
"""
|
1908
|
+
return pulumi.get(self, "attribute_value")
|
1909
|
+
|
1910
|
+
@attribute_value.setter
|
1911
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
1912
|
+
pulumi.set(self, "attribute_value", value)
|
1913
|
+
|
1914
|
+
@property
|
1915
|
+
@pulumi.getter
|
1916
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
1917
|
+
"""
|
1918
|
+
Condition description
|
1919
|
+
"""
|
1920
|
+
return pulumi.get(self, "description")
|
1921
|
+
|
1922
|
+
@description.setter
|
1923
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
1924
|
+
pulumi.set(self, "description", value)
|
1925
|
+
|
1926
|
+
@property
|
1927
|
+
@pulumi.getter(name="dictionaryName")
|
1928
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
1929
|
+
"""
|
1930
|
+
Dictionary name
|
1931
|
+
"""
|
1932
|
+
return pulumi.get(self, "dictionary_name")
|
1933
|
+
|
1934
|
+
@dictionary_name.setter
|
1935
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
1936
|
+
pulumi.set(self, "dictionary_name", value)
|
1937
|
+
|
1938
|
+
@property
|
1939
|
+
@pulumi.getter(name="dictionaryValue")
|
1940
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
1941
|
+
"""
|
1942
|
+
Dictionary value
|
1943
|
+
"""
|
1944
|
+
return pulumi.get(self, "dictionary_value")
|
1945
|
+
|
1946
|
+
@dictionary_value.setter
|
1947
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
1948
|
+
pulumi.set(self, "dictionary_value", value)
|
1949
|
+
|
1950
|
+
@property
|
1951
|
+
@pulumi.getter
|
1952
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
1953
|
+
"""
|
1954
|
+
UUID for condition
|
1955
|
+
"""
|
1956
|
+
return pulumi.get(self, "id")
|
1957
|
+
|
1958
|
+
@id.setter
|
1959
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
1960
|
+
pulumi.set(self, "id", value)
|
1961
|
+
|
1962
|
+
@property
|
1963
|
+
@pulumi.getter(name="isNegate")
|
1964
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
1965
|
+
"""
|
1966
|
+
Indicates whereas this condition is in negate mode
|
1967
|
+
"""
|
1968
|
+
return pulumi.get(self, "is_negate")
|
1969
|
+
|
1970
|
+
@is_negate.setter
|
1971
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
1972
|
+
pulumi.set(self, "is_negate", value)
|
1973
|
+
|
1974
|
+
@property
|
1975
|
+
@pulumi.getter
|
1976
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
1977
|
+
"""
|
1978
|
+
Condition name
|
1979
|
+
"""
|
1980
|
+
return pulumi.get(self, "name")
|
1981
|
+
|
1982
|
+
@name.setter
|
1983
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
1984
|
+
pulumi.set(self, "name", value)
|
1985
|
+
|
1986
|
+
@property
|
1987
|
+
@pulumi.getter
|
1988
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
1989
|
+
"""
|
1990
|
+
Equality operator
|
1991
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1992
|
+
"""
|
1993
|
+
return pulumi.get(self, "operator")
|
1994
|
+
|
1995
|
+
@operator.setter
|
1996
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
1997
|
+
pulumi.set(self, "operator", value)
|
1998
|
+
|
1999
|
+
|
2000
|
+
if not MYPY:
|
2001
|
+
class PolicySetChildrenArgsDict(TypedDict):
|
2002
|
+
condition_type: pulumi.Input[str]
|
2003
|
+
"""
|
2004
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
2005
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
2006
|
+
"""
|
2007
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
2008
|
+
"""
|
2009
|
+
Dictionary attribute name
|
2010
|
+
"""
|
2011
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
2012
|
+
"""
|
2013
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
2014
|
+
"""
|
2015
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['PolicySetChildrenChildrenArgsDict']]]]
|
2016
|
+
"""
|
2017
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
2018
|
+
"""
|
2019
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
2020
|
+
"""
|
2021
|
+
Dictionary name
|
2022
|
+
"""
|
2023
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
2024
|
+
"""
|
2025
|
+
Dictionary value
|
2026
|
+
"""
|
2027
|
+
id: NotRequired[pulumi.Input[str]]
|
2028
|
+
"""
|
2029
|
+
UUID for condition
|
2030
|
+
"""
|
2031
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
2032
|
+
"""
|
2033
|
+
Indicates whereas this condition is in negate mode
|
2034
|
+
"""
|
2035
|
+
operator: NotRequired[pulumi.Input[str]]
|
2036
|
+
"""
|
2037
|
+
Equality operator
|
2038
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
2039
|
+
"""
|
2040
|
+
elif False:
|
2041
|
+
PolicySetChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
2042
|
+
|
2043
|
+
@pulumi.input_type
|
2044
|
+
class PolicySetChildrenArgs:
|
2045
|
+
def __init__(__self__, *,
|
2046
|
+
condition_type: pulumi.Input[str],
|
2047
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
2048
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
2049
|
+
childrens: Optional[pulumi.Input[Sequence[pulumi.Input['PolicySetChildrenChildrenArgs']]]] = None,
|
2050
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
2051
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
2052
|
+
id: Optional[pulumi.Input[str]] = None,
|
2053
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
2054
|
+
operator: Optional[pulumi.Input[str]] = None):
|
2055
|
+
"""
|
2056
|
+
:param pulumi.Input[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.
|
2057
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
2058
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
2059
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
2060
|
+
:param pulumi.Input[Sequence[pulumi.Input['PolicySetChildrenChildrenArgs']]] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
2061
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
2062
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
2063
|
+
:param pulumi.Input[str] id: UUID for condition
|
2064
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
2065
|
+
:param pulumi.Input[str] operator: Equality operator
|
2066
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
2067
|
+
"""
|
2068
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
2069
|
+
if attribute_name is not None:
|
2070
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
2071
|
+
if attribute_value is not None:
|
2072
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
2073
|
+
if childrens is not None:
|
2074
|
+
pulumi.set(__self__, "childrens", childrens)
|
2075
|
+
if dictionary_name is not None:
|
2076
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
2077
|
+
if dictionary_value is not None:
|
2078
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
2079
|
+
if id is not None:
|
2080
|
+
pulumi.set(__self__, "id", id)
|
2081
|
+
if is_negate is not None:
|
2082
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
2083
|
+
if operator is not None:
|
2084
|
+
pulumi.set(__self__, "operator", operator)
|
2085
|
+
|
2086
|
+
@property
|
2087
|
+
@pulumi.getter(name="conditionType")
|
2088
|
+
def condition_type(self) -> pulumi.Input[str]:
|
2089
|
+
"""
|
2090
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
2091
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
2092
|
+
"""
|
2093
|
+
return pulumi.get(self, "condition_type")
|
2094
|
+
|
2095
|
+
@condition_type.setter
|
2096
|
+
def condition_type(self, value: pulumi.Input[str]):
|
2097
|
+
pulumi.set(self, "condition_type", value)
|
2098
|
+
|
2099
|
+
@property
|
2100
|
+
@pulumi.getter(name="attributeName")
|
2101
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
2102
|
+
"""
|
2103
|
+
Dictionary attribute name
|
2104
|
+
"""
|
2105
|
+
return pulumi.get(self, "attribute_name")
|
2106
|
+
|
2107
|
+
@attribute_name.setter
|
2108
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
2109
|
+
pulumi.set(self, "attribute_name", value)
|
2110
|
+
|
2111
|
+
@property
|
2112
|
+
@pulumi.getter(name="attributeValue")
|
2113
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
2114
|
+
"""
|
2115
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
2116
|
+
"""
|
2117
|
+
return pulumi.get(self, "attribute_value")
|
2118
|
+
|
2119
|
+
@attribute_value.setter
|
2120
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
2121
|
+
pulumi.set(self, "attribute_value", value)
|
2122
|
+
|
2123
|
+
@property
|
2124
|
+
@pulumi.getter
|
2125
|
+
def childrens(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PolicySetChildrenChildrenArgs']]]]:
|
2126
|
+
"""
|
2127
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
2128
|
+
"""
|
2129
|
+
return pulumi.get(self, "childrens")
|
2130
|
+
|
2131
|
+
@childrens.setter
|
2132
|
+
def childrens(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PolicySetChildrenChildrenArgs']]]]):
|
2133
|
+
pulumi.set(self, "childrens", value)
|
2134
|
+
|
2135
|
+
@property
|
2136
|
+
@pulumi.getter(name="dictionaryName")
|
2137
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
2138
|
+
"""
|
2139
|
+
Dictionary name
|
2140
|
+
"""
|
2141
|
+
return pulumi.get(self, "dictionary_name")
|
2142
|
+
|
2143
|
+
@dictionary_name.setter
|
2144
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
2145
|
+
pulumi.set(self, "dictionary_name", value)
|
2146
|
+
|
2147
|
+
@property
|
2148
|
+
@pulumi.getter(name="dictionaryValue")
|
2149
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
2150
|
+
"""
|
2151
|
+
Dictionary value
|
2152
|
+
"""
|
2153
|
+
return pulumi.get(self, "dictionary_value")
|
2154
|
+
|
2155
|
+
@dictionary_value.setter
|
2156
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
2157
|
+
pulumi.set(self, "dictionary_value", value)
|
2158
|
+
|
2159
|
+
@property
|
2160
|
+
@pulumi.getter
|
2161
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
2162
|
+
"""
|
2163
|
+
UUID for condition
|
2164
|
+
"""
|
2165
|
+
return pulumi.get(self, "id")
|
2166
|
+
|
2167
|
+
@id.setter
|
2168
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
2169
|
+
pulumi.set(self, "id", value)
|
2170
|
+
|
2171
|
+
@property
|
2172
|
+
@pulumi.getter(name="isNegate")
|
2173
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
2174
|
+
"""
|
2175
|
+
Indicates whereas this condition is in negate mode
|
2176
|
+
"""
|
2177
|
+
return pulumi.get(self, "is_negate")
|
2178
|
+
|
2179
|
+
@is_negate.setter
|
2180
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
2181
|
+
pulumi.set(self, "is_negate", value)
|
2182
|
+
|
2183
|
+
@property
|
2184
|
+
@pulumi.getter
|
2185
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
2186
|
+
"""
|
2187
|
+
Equality operator
|
2188
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
2189
|
+
"""
|
2190
|
+
return pulumi.get(self, "operator")
|
2191
|
+
|
2192
|
+
@operator.setter
|
2193
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
2194
|
+
pulumi.set(self, "operator", value)
|
2195
|
+
|
2196
|
+
|
2197
|
+
if not MYPY:
|
2198
|
+
class PolicySetChildrenChildrenArgsDict(TypedDict):
|
2199
|
+
condition_type: pulumi.Input[str]
|
2200
|
+
"""
|
2201
|
+
Condition type.
|
2202
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
2203
|
+
"""
|
2204
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
2205
|
+
"""
|
2206
|
+
Dictionary attribute name
|
2207
|
+
"""
|
2208
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
2209
|
+
"""
|
2210
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
2211
|
+
"""
|
2212
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
2213
|
+
"""
|
2214
|
+
Dictionary name
|
2215
|
+
"""
|
2216
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
2217
|
+
"""
|
2218
|
+
Dictionary value
|
2219
|
+
"""
|
2220
|
+
id: NotRequired[pulumi.Input[str]]
|
2221
|
+
"""
|
2222
|
+
UUID for condition
|
2223
|
+
"""
|
2224
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
2225
|
+
"""
|
2226
|
+
Indicates whereas this condition is in negate mode
|
2227
|
+
"""
|
2228
|
+
operator: NotRequired[pulumi.Input[str]]
|
2229
|
+
"""
|
2230
|
+
Equality operator
|
2231
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
2232
|
+
"""
|
2233
|
+
elif False:
|
2234
|
+
PolicySetChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
2235
|
+
|
2236
|
+
@pulumi.input_type
|
2237
|
+
class PolicySetChildrenChildrenArgs:
|
2238
|
+
def __init__(__self__, *,
|
2239
|
+
condition_type: pulumi.Input[str],
|
2240
|
+
attribute_name: Optional[pulumi.Input[str]] = None,
|
2241
|
+
attribute_value: Optional[pulumi.Input[str]] = None,
|
2242
|
+
dictionary_name: Optional[pulumi.Input[str]] = None,
|
2243
|
+
dictionary_value: Optional[pulumi.Input[str]] = None,
|
2244
|
+
id: Optional[pulumi.Input[str]] = None,
|
2245
|
+
is_negate: Optional[pulumi.Input[bool]] = None,
|
2246
|
+
operator: Optional[pulumi.Input[str]] = None):
|
2247
|
+
"""
|
2248
|
+
:param pulumi.Input[str] condition_type: Condition type.
|
2249
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
2250
|
+
:param pulumi.Input[str] attribute_name: Dictionary attribute name
|
2251
|
+
:param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
|
2252
|
+
:param pulumi.Input[str] dictionary_name: Dictionary name
|
2253
|
+
:param pulumi.Input[str] dictionary_value: Dictionary value
|
2254
|
+
:param pulumi.Input[str] id: UUID for condition
|
2255
|
+
:param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
|
2256
|
+
:param pulumi.Input[str] operator: Equality operator
|
2257
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
2258
|
+
"""
|
2259
|
+
pulumi.set(__self__, "condition_type", condition_type)
|
2260
|
+
if attribute_name is not None:
|
2261
|
+
pulumi.set(__self__, "attribute_name", attribute_name)
|
2262
|
+
if attribute_value is not None:
|
2263
|
+
pulumi.set(__self__, "attribute_value", attribute_value)
|
2264
|
+
if dictionary_name is not None:
|
2265
|
+
pulumi.set(__self__, "dictionary_name", dictionary_name)
|
2266
|
+
if dictionary_value is not None:
|
2267
|
+
pulumi.set(__self__, "dictionary_value", dictionary_value)
|
2268
|
+
if id is not None:
|
2269
|
+
pulumi.set(__self__, "id", id)
|
2270
|
+
if is_negate is not None:
|
2271
|
+
pulumi.set(__self__, "is_negate", is_negate)
|
2272
|
+
if operator is not None:
|
2273
|
+
pulumi.set(__self__, "operator", operator)
|
2274
|
+
|
2275
|
+
@property
|
2276
|
+
@pulumi.getter(name="conditionType")
|
2277
|
+
def condition_type(self) -> pulumi.Input[str]:
|
2278
|
+
"""
|
2279
|
+
Condition type.
|
2280
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
2281
|
+
"""
|
2282
|
+
return pulumi.get(self, "condition_type")
|
2283
|
+
|
2284
|
+
@condition_type.setter
|
2285
|
+
def condition_type(self, value: pulumi.Input[str]):
|
2286
|
+
pulumi.set(self, "condition_type", value)
|
2287
|
+
|
2288
|
+
@property
|
2289
|
+
@pulumi.getter(name="attributeName")
|
2290
|
+
def attribute_name(self) -> Optional[pulumi.Input[str]]:
|
2291
|
+
"""
|
2292
|
+
Dictionary attribute name
|
2293
|
+
"""
|
2294
|
+
return pulumi.get(self, "attribute_name")
|
2295
|
+
|
2296
|
+
@attribute_name.setter
|
2297
|
+
def attribute_name(self, value: Optional[pulumi.Input[str]]):
|
2298
|
+
pulumi.set(self, "attribute_name", value)
|
2299
|
+
|
2300
|
+
@property
|
2301
|
+
@pulumi.getter(name="attributeValue")
|
2302
|
+
def attribute_value(self) -> Optional[pulumi.Input[str]]:
|
2303
|
+
"""
|
2304
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
2305
|
+
"""
|
2306
|
+
return pulumi.get(self, "attribute_value")
|
2307
|
+
|
2308
|
+
@attribute_value.setter
|
2309
|
+
def attribute_value(self, value: Optional[pulumi.Input[str]]):
|
2310
|
+
pulumi.set(self, "attribute_value", value)
|
2311
|
+
|
2312
|
+
@property
|
2313
|
+
@pulumi.getter(name="dictionaryName")
|
2314
|
+
def dictionary_name(self) -> Optional[pulumi.Input[str]]:
|
2315
|
+
"""
|
2316
|
+
Dictionary name
|
2317
|
+
"""
|
2318
|
+
return pulumi.get(self, "dictionary_name")
|
2319
|
+
|
2320
|
+
@dictionary_name.setter
|
2321
|
+
def dictionary_name(self, value: Optional[pulumi.Input[str]]):
|
2322
|
+
pulumi.set(self, "dictionary_name", value)
|
2323
|
+
|
2324
|
+
@property
|
2325
|
+
@pulumi.getter(name="dictionaryValue")
|
2326
|
+
def dictionary_value(self) -> Optional[pulumi.Input[str]]:
|
2327
|
+
"""
|
2328
|
+
Dictionary value
|
2329
|
+
"""
|
2330
|
+
return pulumi.get(self, "dictionary_value")
|
2331
|
+
|
2332
|
+
@dictionary_value.setter
|
2333
|
+
def dictionary_value(self, value: Optional[pulumi.Input[str]]):
|
2334
|
+
pulumi.set(self, "dictionary_value", value)
|
2335
|
+
|
2336
|
+
@property
|
2337
|
+
@pulumi.getter
|
2338
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
2339
|
+
"""
|
2340
|
+
UUID for condition
|
2341
|
+
"""
|
2342
|
+
return pulumi.get(self, "id")
|
2343
|
+
|
2344
|
+
@id.setter
|
2345
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
2346
|
+
pulumi.set(self, "id", value)
|
2347
|
+
|
2348
|
+
@property
|
2349
|
+
@pulumi.getter(name="isNegate")
|
2350
|
+
def is_negate(self) -> Optional[pulumi.Input[bool]]:
|
2351
|
+
"""
|
2352
|
+
Indicates whereas this condition is in negate mode
|
2353
|
+
"""
|
2354
|
+
return pulumi.get(self, "is_negate")
|
2355
|
+
|
2356
|
+
@is_negate.setter
|
2357
|
+
def is_negate(self, value: Optional[pulumi.Input[bool]]):
|
2358
|
+
pulumi.set(self, "is_negate", value)
|
2359
|
+
|
2360
|
+
@property
|
2361
|
+
@pulumi.getter
|
2362
|
+
def operator(self) -> Optional[pulumi.Input[str]]:
|
2363
|
+
"""
|
2364
|
+
Equality operator
|
2365
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
2366
|
+
"""
|
2367
|
+
return pulumi.get(self, "operator")
|
2368
|
+
|
2369
|
+
@operator.setter
|
2370
|
+
def operator(self, value: Optional[pulumi.Input[str]]):
|
2371
|
+
pulumi.set(self, "operator", value)
|
2372
|
+
|
2373
|
+
|
2374
|
+
if not MYPY:
|
2375
|
+
class TacacsCommandSetCommandArgsDict(TypedDict):
|
2376
|
+
arguments: pulumi.Input[str]
|
2377
|
+
"""
|
2378
|
+
Command arguments
|
2379
|
+
"""
|
2380
|
+
command: pulumi.Input[str]
|
2381
|
+
"""
|
2382
|
+
Command
|
2383
|
+
"""
|
2384
|
+
grant: pulumi.Input[str]
|
2385
|
+
"""
|
2386
|
+
Grant
|
2387
|
+
- Choices: `PERMIT`, `DENY`, `DENY_ALWAYS`
|
2388
|
+
"""
|
2389
|
+
elif False:
|
2390
|
+
TacacsCommandSetCommandArgsDict: TypeAlias = Mapping[str, Any]
|
2391
|
+
|
2392
|
+
@pulumi.input_type
|
2393
|
+
class TacacsCommandSetCommandArgs:
|
2394
|
+
def __init__(__self__, *,
|
2395
|
+
arguments: pulumi.Input[str],
|
2396
|
+
command: pulumi.Input[str],
|
2397
|
+
grant: pulumi.Input[str]):
|
2398
|
+
"""
|
2399
|
+
:param pulumi.Input[str] arguments: Command arguments
|
2400
|
+
:param pulumi.Input[str] command: Command
|
2401
|
+
:param pulumi.Input[str] grant: Grant
|
2402
|
+
- Choices: `PERMIT`, `DENY`, `DENY_ALWAYS`
|
2403
|
+
"""
|
2404
|
+
pulumi.set(__self__, "arguments", arguments)
|
2405
|
+
pulumi.set(__self__, "command", command)
|
2406
|
+
pulumi.set(__self__, "grant", grant)
|
2407
|
+
|
2408
|
+
@property
|
2409
|
+
@pulumi.getter
|
2410
|
+
def arguments(self) -> pulumi.Input[str]:
|
2411
|
+
"""
|
2412
|
+
Command arguments
|
2413
|
+
"""
|
2414
|
+
return pulumi.get(self, "arguments")
|
2415
|
+
|
2416
|
+
@arguments.setter
|
2417
|
+
def arguments(self, value: pulumi.Input[str]):
|
2418
|
+
pulumi.set(self, "arguments", value)
|
2419
|
+
|
2420
|
+
@property
|
2421
|
+
@pulumi.getter
|
2422
|
+
def command(self) -> pulumi.Input[str]:
|
2423
|
+
"""
|
2424
|
+
Command
|
2425
|
+
"""
|
2426
|
+
return pulumi.get(self, "command")
|
2427
|
+
|
2428
|
+
@command.setter
|
2429
|
+
def command(self, value: pulumi.Input[str]):
|
2430
|
+
pulumi.set(self, "command", value)
|
2431
|
+
|
2432
|
+
@property
|
2433
|
+
@pulumi.getter
|
2434
|
+
def grant(self) -> pulumi.Input[str]:
|
2435
|
+
"""
|
2436
|
+
Grant
|
2437
|
+
- Choices: `PERMIT`, `DENY`, `DENY_ALWAYS`
|
2438
|
+
"""
|
2439
|
+
return pulumi.get(self, "grant")
|
2440
|
+
|
2441
|
+
@grant.setter
|
2442
|
+
def grant(self, value: pulumi.Input[str]):
|
2443
|
+
pulumi.set(self, "grant", value)
|
2444
|
+
|
2445
|
+
|
2446
|
+
if not MYPY:
|
2447
|
+
class TacacsProfileSessionAttributeArgsDict(TypedDict):
|
2448
|
+
name: pulumi.Input[str]
|
2449
|
+
"""
|
2450
|
+
Name
|
2451
|
+
"""
|
2452
|
+
type: pulumi.Input[str]
|
2453
|
+
"""
|
2454
|
+
Type
|
2455
|
+
- Choices: `MANDATORY`, `OPTIONAL`
|
2456
|
+
"""
|
2457
|
+
value: pulumi.Input[str]
|
2458
|
+
"""
|
2459
|
+
Value
|
2460
|
+
"""
|
2461
|
+
elif False:
|
2462
|
+
TacacsProfileSessionAttributeArgsDict: TypeAlias = Mapping[str, Any]
|
2463
|
+
|
2464
|
+
@pulumi.input_type
|
2465
|
+
class TacacsProfileSessionAttributeArgs:
|
2466
|
+
def __init__(__self__, *,
|
2467
|
+
name: pulumi.Input[str],
|
2468
|
+
type: pulumi.Input[str],
|
2469
|
+
value: pulumi.Input[str]):
|
2470
|
+
"""
|
2471
|
+
:param pulumi.Input[str] name: Name
|
2472
|
+
:param pulumi.Input[str] type: Type
|
2473
|
+
- Choices: `MANDATORY`, `OPTIONAL`
|
2474
|
+
:param pulumi.Input[str] value: Value
|
2475
|
+
"""
|
2476
|
+
pulumi.set(__self__, "name", name)
|
2477
|
+
pulumi.set(__self__, "type", type)
|
2478
|
+
pulumi.set(__self__, "value", value)
|
2479
|
+
|
2480
|
+
@property
|
2481
|
+
@pulumi.getter
|
2482
|
+
def name(self) -> pulumi.Input[str]:
|
2483
|
+
"""
|
2484
|
+
Name
|
2485
|
+
"""
|
2486
|
+
return pulumi.get(self, "name")
|
2487
|
+
|
2488
|
+
@name.setter
|
2489
|
+
def name(self, value: pulumi.Input[str]):
|
2490
|
+
pulumi.set(self, "name", value)
|
2491
|
+
|
2492
|
+
@property
|
2493
|
+
@pulumi.getter
|
2494
|
+
def type(self) -> pulumi.Input[str]:
|
2495
|
+
"""
|
2496
|
+
Type
|
2497
|
+
- Choices: `MANDATORY`, `OPTIONAL`
|
2498
|
+
"""
|
2499
|
+
return pulumi.get(self, "type")
|
2500
|
+
|
2501
|
+
@type.setter
|
2502
|
+
def type(self, value: pulumi.Input[str]):
|
2503
|
+
pulumi.set(self, "type", value)
|
2504
|
+
|
2505
|
+
@property
|
2506
|
+
@pulumi.getter
|
2507
|
+
def value(self) -> pulumi.Input[str]:
|
2508
|
+
"""
|
2509
|
+
Value
|
2510
|
+
"""
|
2511
|
+
return pulumi.get(self, "value")
|
2512
|
+
|
2513
|
+
@value.setter
|
2514
|
+
def value(self, value: pulumi.Input[str]):
|
2515
|
+
pulumi.set(self, "value", value)
|
2516
|
+
|
2517
|
+
|