pulumi-ise 0.1.0a1715108131__py3-none-any.whl → 0.1.1__py3-none-any.whl

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