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,52 +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
- 'NodesAdditionalDataArgs',
14
- ]
15
-
16
- @pulumi.input_type
17
- class NodesAdditionalDataArgs:
18
- def __init__(__self__, *,
19
- name: pulumi.Input[str],
20
- value: pulumi.Input[str]):
21
- """
22
- :param pulumi.Input[str] name: Additional attribute name
23
- :param pulumi.Input[str] value: Additional attribute value
24
- """
25
- pulumi.set(__self__, "name", name)
26
- pulumi.set(__self__, "value", value)
27
-
28
- @property
29
- @pulumi.getter
30
- def name(self) -> pulumi.Input[str]:
31
- """
32
- Additional attribute name
33
- """
34
- return pulumi.get(self, "name")
35
-
36
- @name.setter
37
- def name(self, value: pulumi.Input[str]):
38
- pulumi.set(self, "name", value)
39
-
40
- @property
41
- @pulumi.getter
42
- def value(self) -> pulumi.Input[str]:
43
- """
44
- Additional attribute value
45
- """
46
- return pulumi.get(self, "value")
47
-
48
- @value.setter
49
- def value(self, value: pulumi.Input[str]):
50
- pulumi.set(self, "value", value)
51
-
52
-
@@ -1,44 +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
- 'NodesAdditionalData',
14
- ]
15
-
16
- @pulumi.output_type
17
- class NodesAdditionalData(dict):
18
- def __init__(__self__, *,
19
- name: str,
20
- value: str):
21
- """
22
- :param str name: Additional attribute name
23
- :param str value: Additional attribute value
24
- """
25
- pulumi.set(__self__, "name", name)
26
- pulumi.set(__self__, "value", value)
27
-
28
- @property
29
- @pulumi.getter
30
- def name(self) -> str:
31
- """
32
- Additional attribute name
33
- """
34
- return pulumi.get(self, "name")
35
-
36
- @property
37
- @pulumi.getter
38
- def value(self) -> str:
39
- """
40
- Additional attribute value
41
- """
42
- return pulumi.get(self, "value")
43
-
44
-
@@ -1,9 +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
- from .. import _utilities
6
- import typing
7
- # Export this package's modules as members:
8
- from .get_protocols import *
9
- from .protocols import *
@@ -1,9 +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
- from .. import _utilities
6
- import typing
7
- # Export this package's modules as members:
8
- from .get_tacacs import *
9
- from .tacacs import *
@@ -1,11 +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
- from .. import _utilities
6
- import typing
7
- # Export this package's modules as members:
8
- from .get_profile import *
9
- from .profile import *
10
- from ._inputs import *
11
- from . import outputs
@@ -1,120 +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
- 'ProfileAdvancedAttributeArgs',
14
- ]
15
-
16
- @pulumi.input_type
17
- class ProfileAdvancedAttributeArgs:
18
- def __init__(__self__, *,
19
- attribute_left_dictionary_name: Optional[pulumi.Input[str]] = None,
20
- attribute_left_name: Optional[pulumi.Input[str]] = None,
21
- attribute_right_dictionary_name: Optional[pulumi.Input[str]] = None,
22
- attribute_right_name: Optional[pulumi.Input[str]] = None,
23
- attribute_right_value: Optional[pulumi.Input[str]] = None,
24
- attribute_right_value_type: Optional[pulumi.Input[str]] = None):
25
- """
26
- :param pulumi.Input[str] attribute_left_dictionary_name: Dictionary name
27
- :param pulumi.Input[str] attribute_left_name: Attribute name
28
- :param pulumi.Input[str] attribute_right_dictionary_name: Dictionary name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
29
- :param pulumi.Input[str] attribute_right_name: Attribute name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
30
- :param pulumi.Input[str] attribute_right_value: Attribute value, only required when `attribute_right_value_type` is `AttributeValue`
31
- :param pulumi.Input[str] attribute_right_value_type: Advanced attribute value type
32
- - Choices: `AdvancedDictionaryAttribute`, `AttributeValue`
33
- """
34
- if attribute_left_dictionary_name is not None:
35
- pulumi.set(__self__, "attribute_left_dictionary_name", attribute_left_dictionary_name)
36
- if attribute_left_name is not None:
37
- pulumi.set(__self__, "attribute_left_name", attribute_left_name)
38
- if attribute_right_dictionary_name is not None:
39
- pulumi.set(__self__, "attribute_right_dictionary_name", attribute_right_dictionary_name)
40
- if attribute_right_name is not None:
41
- pulumi.set(__self__, "attribute_right_name", attribute_right_name)
42
- if attribute_right_value is not None:
43
- pulumi.set(__self__, "attribute_right_value", attribute_right_value)
44
- if attribute_right_value_type is not None:
45
- pulumi.set(__self__, "attribute_right_value_type", attribute_right_value_type)
46
-
47
- @property
48
- @pulumi.getter(name="attributeLeftDictionaryName")
49
- def attribute_left_dictionary_name(self) -> Optional[pulumi.Input[str]]:
50
- """
51
- Dictionary name
52
- """
53
- return pulumi.get(self, "attribute_left_dictionary_name")
54
-
55
- @attribute_left_dictionary_name.setter
56
- def attribute_left_dictionary_name(self, value: Optional[pulumi.Input[str]]):
57
- pulumi.set(self, "attribute_left_dictionary_name", value)
58
-
59
- @property
60
- @pulumi.getter(name="attributeLeftName")
61
- def attribute_left_name(self) -> Optional[pulumi.Input[str]]:
62
- """
63
- Attribute name
64
- """
65
- return pulumi.get(self, "attribute_left_name")
66
-
67
- @attribute_left_name.setter
68
- def attribute_left_name(self, value: Optional[pulumi.Input[str]]):
69
- pulumi.set(self, "attribute_left_name", value)
70
-
71
- @property
72
- @pulumi.getter(name="attributeRightDictionaryName")
73
- def attribute_right_dictionary_name(self) -> Optional[pulumi.Input[str]]:
74
- """
75
- Dictionary name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
76
- """
77
- return pulumi.get(self, "attribute_right_dictionary_name")
78
-
79
- @attribute_right_dictionary_name.setter
80
- def attribute_right_dictionary_name(self, value: Optional[pulumi.Input[str]]):
81
- pulumi.set(self, "attribute_right_dictionary_name", value)
82
-
83
- @property
84
- @pulumi.getter(name="attributeRightName")
85
- def attribute_right_name(self) -> Optional[pulumi.Input[str]]:
86
- """
87
- Attribute name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
88
- """
89
- return pulumi.get(self, "attribute_right_name")
90
-
91
- @attribute_right_name.setter
92
- def attribute_right_name(self, value: Optional[pulumi.Input[str]]):
93
- pulumi.set(self, "attribute_right_name", value)
94
-
95
- @property
96
- @pulumi.getter(name="attributeRightValue")
97
- def attribute_right_value(self) -> Optional[pulumi.Input[str]]:
98
- """
99
- Attribute value, only required when `attribute_right_value_type` is `AttributeValue`
100
- """
101
- return pulumi.get(self, "attribute_right_value")
102
-
103
- @attribute_right_value.setter
104
- def attribute_right_value(self, value: Optional[pulumi.Input[str]]):
105
- pulumi.set(self, "attribute_right_value", value)
106
-
107
- @property
108
- @pulumi.getter(name="attributeRightValueType")
109
- def attribute_right_value_type(self) -> Optional[pulumi.Input[str]]:
110
- """
111
- Advanced attribute value type
112
- - Choices: `AdvancedDictionaryAttribute`, `AttributeValue`
113
- """
114
- return pulumi.get(self, "attribute_right_value_type")
115
-
116
- @attribute_right_value_type.setter
117
- def attribute_right_value_type(self, value: Optional[pulumi.Input[str]]):
118
- pulumi.set(self, "attribute_right_value_type", value)
119
-
120
-
@@ -1,197 +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
- 'ProfileAdvancedAttribute',
14
- 'GetProfileAdvancedAttributeResult',
15
- ]
16
-
17
- @pulumi.output_type
18
- class ProfileAdvancedAttribute(dict):
19
- @staticmethod
20
- def __key_warning(key: str):
21
- suggest = None
22
- if key == "attributeLeftDictionaryName":
23
- suggest = "attribute_left_dictionary_name"
24
- elif key == "attributeLeftName":
25
- suggest = "attribute_left_name"
26
- elif key == "attributeRightDictionaryName":
27
- suggest = "attribute_right_dictionary_name"
28
- elif key == "attributeRightName":
29
- suggest = "attribute_right_name"
30
- elif key == "attributeRightValue":
31
- suggest = "attribute_right_value"
32
- elif key == "attributeRightValueType":
33
- suggest = "attribute_right_value_type"
34
-
35
- if suggest:
36
- pulumi.log.warn(f"Key '{key}' not found in ProfileAdvancedAttribute. Access the value via the '{suggest}' property getter instead.")
37
-
38
- def __getitem__(self, key: str) -> Any:
39
- ProfileAdvancedAttribute.__key_warning(key)
40
- return super().__getitem__(key)
41
-
42
- def get(self, key: str, default = None) -> Any:
43
- ProfileAdvancedAttribute.__key_warning(key)
44
- return super().get(key, default)
45
-
46
- def __init__(__self__, *,
47
- attribute_left_dictionary_name: Optional[str] = None,
48
- attribute_left_name: Optional[str] = None,
49
- attribute_right_dictionary_name: Optional[str] = None,
50
- attribute_right_name: Optional[str] = None,
51
- attribute_right_value: Optional[str] = None,
52
- attribute_right_value_type: Optional[str] = None):
53
- """
54
- :param str attribute_left_dictionary_name: Dictionary name
55
- :param str attribute_left_name: Attribute name
56
- :param str attribute_right_dictionary_name: Dictionary name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
57
- :param str attribute_right_name: Attribute name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
58
- :param str attribute_right_value: Attribute value, only required when `attribute_right_value_type` is `AttributeValue`
59
- :param str attribute_right_value_type: Advanced attribute value type
60
- - Choices: `AdvancedDictionaryAttribute`, `AttributeValue`
61
- """
62
- if attribute_left_dictionary_name is not None:
63
- pulumi.set(__self__, "attribute_left_dictionary_name", attribute_left_dictionary_name)
64
- if attribute_left_name is not None:
65
- pulumi.set(__self__, "attribute_left_name", attribute_left_name)
66
- if attribute_right_dictionary_name is not None:
67
- pulumi.set(__self__, "attribute_right_dictionary_name", attribute_right_dictionary_name)
68
- if attribute_right_name is not None:
69
- pulumi.set(__self__, "attribute_right_name", attribute_right_name)
70
- if attribute_right_value is not None:
71
- pulumi.set(__self__, "attribute_right_value", attribute_right_value)
72
- if attribute_right_value_type is not None:
73
- pulumi.set(__self__, "attribute_right_value_type", attribute_right_value_type)
74
-
75
- @property
76
- @pulumi.getter(name="attributeLeftDictionaryName")
77
- def attribute_left_dictionary_name(self) -> Optional[str]:
78
- """
79
- Dictionary name
80
- """
81
- return pulumi.get(self, "attribute_left_dictionary_name")
82
-
83
- @property
84
- @pulumi.getter(name="attributeLeftName")
85
- def attribute_left_name(self) -> Optional[str]:
86
- """
87
- Attribute name
88
- """
89
- return pulumi.get(self, "attribute_left_name")
90
-
91
- @property
92
- @pulumi.getter(name="attributeRightDictionaryName")
93
- def attribute_right_dictionary_name(self) -> Optional[str]:
94
- """
95
- Dictionary name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
96
- """
97
- return pulumi.get(self, "attribute_right_dictionary_name")
98
-
99
- @property
100
- @pulumi.getter(name="attributeRightName")
101
- def attribute_right_name(self) -> Optional[str]:
102
- """
103
- Attribute name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
104
- """
105
- return pulumi.get(self, "attribute_right_name")
106
-
107
- @property
108
- @pulumi.getter(name="attributeRightValue")
109
- def attribute_right_value(self) -> Optional[str]:
110
- """
111
- Attribute value, only required when `attribute_right_value_type` is `AttributeValue`
112
- """
113
- return pulumi.get(self, "attribute_right_value")
114
-
115
- @property
116
- @pulumi.getter(name="attributeRightValueType")
117
- def attribute_right_value_type(self) -> Optional[str]:
118
- """
119
- Advanced attribute value type
120
- - Choices: `AdvancedDictionaryAttribute`, `AttributeValue`
121
- """
122
- return pulumi.get(self, "attribute_right_value_type")
123
-
124
-
125
- @pulumi.output_type
126
- class GetProfileAdvancedAttributeResult(dict):
127
- def __init__(__self__, *,
128
- attribute_left_dictionary_name: str,
129
- attribute_left_name: str,
130
- attribute_right_dictionary_name: str,
131
- attribute_right_name: str,
132
- attribute_right_value: str,
133
- attribute_right_value_type: str):
134
- """
135
- :param str attribute_left_dictionary_name: Dictionary name
136
- :param str attribute_left_name: Attribute name
137
- :param str attribute_right_dictionary_name: Dictionary name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
138
- :param str attribute_right_name: Attribute name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
139
- :param str attribute_right_value: Attribute value, only required when `attribute_right_value_type` is `AttributeValue`
140
- :param str attribute_right_value_type: Advanced attribute value type
141
- """
142
- pulumi.set(__self__, "attribute_left_dictionary_name", attribute_left_dictionary_name)
143
- pulumi.set(__self__, "attribute_left_name", attribute_left_name)
144
- pulumi.set(__self__, "attribute_right_dictionary_name", attribute_right_dictionary_name)
145
- pulumi.set(__self__, "attribute_right_name", attribute_right_name)
146
- pulumi.set(__self__, "attribute_right_value", attribute_right_value)
147
- pulumi.set(__self__, "attribute_right_value_type", attribute_right_value_type)
148
-
149
- @property
150
- @pulumi.getter(name="attributeLeftDictionaryName")
151
- def attribute_left_dictionary_name(self) -> str:
152
- """
153
- Dictionary name
154
- """
155
- return pulumi.get(self, "attribute_left_dictionary_name")
156
-
157
- @property
158
- @pulumi.getter(name="attributeLeftName")
159
- def attribute_left_name(self) -> str:
160
- """
161
- Attribute name
162
- """
163
- return pulumi.get(self, "attribute_left_name")
164
-
165
- @property
166
- @pulumi.getter(name="attributeRightDictionaryName")
167
- def attribute_right_dictionary_name(self) -> str:
168
- """
169
- Dictionary name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
170
- """
171
- return pulumi.get(self, "attribute_right_dictionary_name")
172
-
173
- @property
174
- @pulumi.getter(name="attributeRightName")
175
- def attribute_right_name(self) -> str:
176
- """
177
- Attribute name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
178
- """
179
- return pulumi.get(self, "attribute_right_name")
180
-
181
- @property
182
- @pulumi.getter(name="attributeRightValue")
183
- def attribute_right_value(self) -> str:
184
- """
185
- Attribute value, only required when `attribute_right_value_type` is `AttributeValue`
186
- """
187
- return pulumi.get(self, "attribute_right_value")
188
-
189
- @property
190
- @pulumi.getter(name="attributeRightValueType")
191
- def attribute_right_value_type(self) -> str:
192
- """
193
- Advanced attribute value type
194
- """
195
- return pulumi.get(self, "attribute_right_value_type")
196
-
197
-
@@ -1,9 +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
- from .. import _utilities
6
- import typing
7
- # Export this package's modules as members:
8
- from .get_profile import *
9
- from .profile import *
@@ -1,11 +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
- from .. import _utilities
6
- import typing
7
- # Export this package's modules as members:
8
- from .get_rule import *
9
- from .rule import *
10
- from ._inputs import *
11
- from . import outputs