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
@@ -1,308 +0,0 @@
1
- # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
- # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
-
5
- import copy
6
- import warnings
7
- import pulumi
8
- import pulumi.runtime
9
- from typing import Any, Mapping, Optional, Sequence, Union, overload
10
- from .. import _utilities
11
-
12
- __all__ = [
13
- 'RuleChildrenArgs',
14
- 'RuleChildrenChildrenArgs',
15
- ]
16
-
17
- @pulumi.input_type
18
- class RuleChildrenArgs:
19
- def __init__(__self__, *,
20
- condition_type: pulumi.Input[str],
21
- attribute_name: Optional[pulumi.Input[str]] = None,
22
- attribute_value: Optional[pulumi.Input[str]] = None,
23
- childrens: Optional[pulumi.Input[Sequence[pulumi.Input['RuleChildrenChildrenArgs']]]] = None,
24
- dictionary_name: Optional[pulumi.Input[str]] = None,
25
- dictionary_value: Optional[pulumi.Input[str]] = None,
26
- id: Optional[pulumi.Input[str]] = None,
27
- is_negate: Optional[pulumi.Input[bool]] = None,
28
- operator: Optional[pulumi.Input[str]] = None):
29
- """
30
- :param pulumi.Input[str] condition_type: Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
31
- - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
32
- :param pulumi.Input[str] attribute_name: Dictionary attribute name
33
- :param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
34
- :param pulumi.Input[Sequence[pulumi.Input['RuleChildrenChildrenArgs']]] childrens: List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
35
- :param pulumi.Input[str] dictionary_name: Dictionary name
36
- :param pulumi.Input[str] dictionary_value: Dictionary value
37
- :param pulumi.Input[str] id: UUID for condition
38
- :param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
39
- :param pulumi.Input[str] operator: Equality operator
40
- - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
41
- """
42
- pulumi.set(__self__, "condition_type", condition_type)
43
- if attribute_name is not None:
44
- pulumi.set(__self__, "attribute_name", attribute_name)
45
- if attribute_value is not None:
46
- pulumi.set(__self__, "attribute_value", attribute_value)
47
- if childrens is not None:
48
- pulumi.set(__self__, "childrens", childrens)
49
- if dictionary_name is not None:
50
- pulumi.set(__self__, "dictionary_name", dictionary_name)
51
- if dictionary_value is not None:
52
- pulumi.set(__self__, "dictionary_value", dictionary_value)
53
- if id is not None:
54
- pulumi.set(__self__, "id", id)
55
- if is_negate is not None:
56
- pulumi.set(__self__, "is_negate", is_negate)
57
- if operator is not None:
58
- pulumi.set(__self__, "operator", operator)
59
-
60
- @property
61
- @pulumi.getter(name="conditionType")
62
- def condition_type(self) -> pulumi.Input[str]:
63
- """
64
- Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
65
- - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
66
- """
67
- return pulumi.get(self, "condition_type")
68
-
69
- @condition_type.setter
70
- def condition_type(self, value: pulumi.Input[str]):
71
- pulumi.set(self, "condition_type", value)
72
-
73
- @property
74
- @pulumi.getter(name="attributeName")
75
- def attribute_name(self) -> Optional[pulumi.Input[str]]:
76
- """
77
- Dictionary attribute name
78
- """
79
- return pulumi.get(self, "attribute_name")
80
-
81
- @attribute_name.setter
82
- def attribute_name(self, value: Optional[pulumi.Input[str]]):
83
- pulumi.set(self, "attribute_name", value)
84
-
85
- @property
86
- @pulumi.getter(name="attributeValue")
87
- def attribute_value(self) -> Optional[pulumi.Input[str]]:
88
- """
89
- Attribute value for condition. Value type is specified in dictionary object.
90
- """
91
- return pulumi.get(self, "attribute_value")
92
-
93
- @attribute_value.setter
94
- def attribute_value(self, value: Optional[pulumi.Input[str]]):
95
- pulumi.set(self, "attribute_value", value)
96
-
97
- @property
98
- @pulumi.getter
99
- def childrens(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RuleChildrenChildrenArgs']]]]:
100
- """
101
- List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
102
- """
103
- return pulumi.get(self, "childrens")
104
-
105
- @childrens.setter
106
- def childrens(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RuleChildrenChildrenArgs']]]]):
107
- pulumi.set(self, "childrens", value)
108
-
109
- @property
110
- @pulumi.getter(name="dictionaryName")
111
- def dictionary_name(self) -> Optional[pulumi.Input[str]]:
112
- """
113
- Dictionary name
114
- """
115
- return pulumi.get(self, "dictionary_name")
116
-
117
- @dictionary_name.setter
118
- def dictionary_name(self, value: Optional[pulumi.Input[str]]):
119
- pulumi.set(self, "dictionary_name", value)
120
-
121
- @property
122
- @pulumi.getter(name="dictionaryValue")
123
- def dictionary_value(self) -> Optional[pulumi.Input[str]]:
124
- """
125
- Dictionary value
126
- """
127
- return pulumi.get(self, "dictionary_value")
128
-
129
- @dictionary_value.setter
130
- def dictionary_value(self, value: Optional[pulumi.Input[str]]):
131
- pulumi.set(self, "dictionary_value", value)
132
-
133
- @property
134
- @pulumi.getter
135
- def id(self) -> Optional[pulumi.Input[str]]:
136
- """
137
- UUID for condition
138
- """
139
- return pulumi.get(self, "id")
140
-
141
- @id.setter
142
- def id(self, value: Optional[pulumi.Input[str]]):
143
- pulumi.set(self, "id", value)
144
-
145
- @property
146
- @pulumi.getter(name="isNegate")
147
- def is_negate(self) -> Optional[pulumi.Input[bool]]:
148
- """
149
- Indicates whereas this condition is in negate mode
150
- """
151
- return pulumi.get(self, "is_negate")
152
-
153
- @is_negate.setter
154
- def is_negate(self, value: Optional[pulumi.Input[bool]]):
155
- pulumi.set(self, "is_negate", value)
156
-
157
- @property
158
- @pulumi.getter
159
- def operator(self) -> Optional[pulumi.Input[str]]:
160
- """
161
- Equality operator
162
- - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
163
- """
164
- return pulumi.get(self, "operator")
165
-
166
- @operator.setter
167
- def operator(self, value: Optional[pulumi.Input[str]]):
168
- pulumi.set(self, "operator", value)
169
-
170
-
171
- @pulumi.input_type
172
- class RuleChildrenChildrenArgs:
173
- def __init__(__self__, *,
174
- condition_type: pulumi.Input[str],
175
- attribute_name: Optional[pulumi.Input[str]] = None,
176
- attribute_value: Optional[pulumi.Input[str]] = None,
177
- dictionary_name: Optional[pulumi.Input[str]] = None,
178
- dictionary_value: Optional[pulumi.Input[str]] = None,
179
- id: Optional[pulumi.Input[str]] = None,
180
- is_negate: Optional[pulumi.Input[bool]] = None,
181
- operator: Optional[pulumi.Input[str]] = None):
182
- """
183
- :param pulumi.Input[str] condition_type: Condition type.
184
- - Choices: `ConditionAttributes`, `ConditionReference`
185
- :param pulumi.Input[str] attribute_name: Dictionary attribute name
186
- :param pulumi.Input[str] attribute_value: Attribute value for condition. Value type is specified in dictionary object.
187
- :param pulumi.Input[str] dictionary_name: Dictionary name
188
- :param pulumi.Input[str] dictionary_value: Dictionary value
189
- :param pulumi.Input[str] id: UUID for condition
190
- :param pulumi.Input[bool] is_negate: Indicates whereas this condition is in negate mode
191
- :param pulumi.Input[str] operator: Equality operator
192
- - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
193
- """
194
- pulumi.set(__self__, "condition_type", condition_type)
195
- if attribute_name is not None:
196
- pulumi.set(__self__, "attribute_name", attribute_name)
197
- if attribute_value is not None:
198
- pulumi.set(__self__, "attribute_value", attribute_value)
199
- if dictionary_name is not None:
200
- pulumi.set(__self__, "dictionary_name", dictionary_name)
201
- if dictionary_value is not None:
202
- pulumi.set(__self__, "dictionary_value", dictionary_value)
203
- if id is not None:
204
- pulumi.set(__self__, "id", id)
205
- if is_negate is not None:
206
- pulumi.set(__self__, "is_negate", is_negate)
207
- if operator is not None:
208
- pulumi.set(__self__, "operator", operator)
209
-
210
- @property
211
- @pulumi.getter(name="conditionType")
212
- def condition_type(self) -> pulumi.Input[str]:
213
- """
214
- Condition type.
215
- - Choices: `ConditionAttributes`, `ConditionReference`
216
- """
217
- return pulumi.get(self, "condition_type")
218
-
219
- @condition_type.setter
220
- def condition_type(self, value: pulumi.Input[str]):
221
- pulumi.set(self, "condition_type", value)
222
-
223
- @property
224
- @pulumi.getter(name="attributeName")
225
- def attribute_name(self) -> Optional[pulumi.Input[str]]:
226
- """
227
- Dictionary attribute name
228
- """
229
- return pulumi.get(self, "attribute_name")
230
-
231
- @attribute_name.setter
232
- def attribute_name(self, value: Optional[pulumi.Input[str]]):
233
- pulumi.set(self, "attribute_name", value)
234
-
235
- @property
236
- @pulumi.getter(name="attributeValue")
237
- def attribute_value(self) -> Optional[pulumi.Input[str]]:
238
- """
239
- Attribute value for condition. Value type is specified in dictionary object.
240
- """
241
- return pulumi.get(self, "attribute_value")
242
-
243
- @attribute_value.setter
244
- def attribute_value(self, value: Optional[pulumi.Input[str]]):
245
- pulumi.set(self, "attribute_value", value)
246
-
247
- @property
248
- @pulumi.getter(name="dictionaryName")
249
- def dictionary_name(self) -> Optional[pulumi.Input[str]]:
250
- """
251
- Dictionary name
252
- """
253
- return pulumi.get(self, "dictionary_name")
254
-
255
- @dictionary_name.setter
256
- def dictionary_name(self, value: Optional[pulumi.Input[str]]):
257
- pulumi.set(self, "dictionary_name", value)
258
-
259
- @property
260
- @pulumi.getter(name="dictionaryValue")
261
- def dictionary_value(self) -> Optional[pulumi.Input[str]]:
262
- """
263
- Dictionary value
264
- """
265
- return pulumi.get(self, "dictionary_value")
266
-
267
- @dictionary_value.setter
268
- def dictionary_value(self, value: Optional[pulumi.Input[str]]):
269
- pulumi.set(self, "dictionary_value", value)
270
-
271
- @property
272
- @pulumi.getter
273
- def id(self) -> Optional[pulumi.Input[str]]:
274
- """
275
- UUID for condition
276
- """
277
- return pulumi.get(self, "id")
278
-
279
- @id.setter
280
- def id(self, value: Optional[pulumi.Input[str]]):
281
- pulumi.set(self, "id", value)
282
-
283
- @property
284
- @pulumi.getter(name="isNegate")
285
- def is_negate(self) -> Optional[pulumi.Input[bool]]:
286
- """
287
- Indicates whereas this condition is in negate mode
288
- """
289
- return pulumi.get(self, "is_negate")
290
-
291
- @is_negate.setter
292
- def is_negate(self, value: Optional[pulumi.Input[bool]]):
293
- pulumi.set(self, "is_negate", value)
294
-
295
- @property
296
- @pulumi.getter
297
- def operator(self) -> Optional[pulumi.Input[str]]:
298
- """
299
- Equality operator
300
- - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
301
- """
302
- return pulumi.get(self, "operator")
303
-
304
- @operator.setter
305
- def operator(self, value: Optional[pulumi.Input[str]]):
306
- pulumi.set(self, "operator", value)
307
-
308
-