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