pulumi-ise 0.2.0a1736833585__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. pulumi_ise/__init__.py +458 -0
  2. pulumi_ise/_utilities.py +327 -0
  3. pulumi_ise/config/__init__.py +8 -0
  4. pulumi_ise/config/__init__.pyi +41 -0
  5. pulumi_ise/config/vars.py +57 -0
  6. pulumi_ise/deviceadmin/__init__.py +34 -0
  7. pulumi_ise/deviceadmin/_inputs.py +2517 -0
  8. pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +381 -0
  9. pulumi_ise/deviceadmin/authentication_rule.py +1050 -0
  10. pulumi_ise/deviceadmin/authentication_rule_update_rank.py +271 -0
  11. pulumi_ise/deviceadmin/authorization_exception_rule.py +942 -0
  12. pulumi_ise/deviceadmin/authorization_exception_rule_update_rank.py +271 -0
  13. pulumi_ise/deviceadmin/authorization_global_exception_rule.py +843 -0
  14. pulumi_ise/deviceadmin/authorization_global_exception_rule_update_rank.py +221 -0
  15. pulumi_ise/deviceadmin/authorization_rule.py +942 -0
  16. pulumi_ise/deviceadmin/authorization_rule_update_rank.py +271 -0
  17. pulumi_ise/deviceadmin/condition.py +650 -0
  18. pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +174 -0
  19. pulumi_ise/deviceadmin/get_authentication_rule.py +365 -0
  20. pulumi_ise/deviceadmin/get_authorization_exception_rule.py +337 -0
  21. pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +301 -0
  22. pulumi_ise/deviceadmin/get_authorization_rule.py +337 -0
  23. pulumi_ise/deviceadmin/get_condition.py +245 -0
  24. pulumi_ise/deviceadmin/get_policy_set.py +329 -0
  25. pulumi_ise/deviceadmin/get_tacacs_command_set.py +158 -0
  26. pulumi_ise/deviceadmin/get_tacacs_profile.py +144 -0
  27. pulumi_ise/deviceadmin/get_time_and_date_condition.py +286 -0
  28. pulumi_ise/deviceadmin/outputs.py +3178 -0
  29. pulumi_ise/deviceadmin/policy_set.py +947 -0
  30. pulumi_ise/deviceadmin/policy_set_update_rank.py +221 -0
  31. pulumi_ise/deviceadmin/tacacs_command_set.py +326 -0
  32. pulumi_ise/deviceadmin/tacacs_profile.py +277 -0
  33. pulumi_ise/deviceadmin/time_and_date_condition.py +770 -0
  34. pulumi_ise/identitymanagement/__init__.py +26 -0
  35. pulumi_ise/identitymanagement/_inputs.py +419 -0
  36. pulumi_ise/identitymanagement/active_directory_add_groups.py +483 -0
  37. pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +216 -0
  38. pulumi_ise/identitymanagement/active_directory_join_point.py +1676 -0
  39. pulumi_ise/identitymanagement/certificate_authentication_profile.py +525 -0
  40. pulumi_ise/identitymanagement/endpoint.py +1376 -0
  41. pulumi_ise/identitymanagement/endpoint_identity_group.py +327 -0
  42. pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +215 -0
  43. pulumi_ise/identitymanagement/get_active_directory_join_point.py +558 -0
  44. pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +202 -0
  45. pulumi_ise/identitymanagement/get_endpoint.py +468 -0
  46. pulumi_ise/identitymanagement/get_endpoint_identity_group.py +160 -0
  47. pulumi_ise/identitymanagement/get_identity_source_sequence.py +172 -0
  48. pulumi_ise/identitymanagement/get_internal_user.py +300 -0
  49. pulumi_ise/identitymanagement/get_user_identity_group.py +146 -0
  50. pulumi_ise/identitymanagement/identity_source_sequence.py +376 -0
  51. pulumi_ise/identitymanagement/internal_user.py +830 -0
  52. pulumi_ise/identitymanagement/outputs.py +491 -0
  53. pulumi_ise/identitymanagement/user_identity_group.py +280 -0
  54. pulumi_ise/network/__init__.py +13 -0
  55. pulumi_ise/network/_inputs.py +94 -0
  56. pulumi_ise/network/device.py +2194 -0
  57. pulumi_ise/network/device_group.py +281 -0
  58. pulumi_ise/network/get_device.py +693 -0
  59. pulumi_ise/network/get_device_group.py +146 -0
  60. pulumi_ise/network/outputs.py +120 -0
  61. pulumi_ise/networkaccess/__init__.py +36 -0
  62. pulumi_ise/networkaccess/_inputs.py +2506 -0
  63. pulumi_ise/networkaccess/allowed_protocols.py +3967 -0
  64. pulumi_ise/networkaccess/authentication_rule.py +1050 -0
  65. pulumi_ise/networkaccess/authentication_rule_update_rank.py +271 -0
  66. pulumi_ise/networkaccess/authorization_exception_rule.py +942 -0
  67. pulumi_ise/networkaccess/authorization_exception_rule_update_rank.py +271 -0
  68. pulumi_ise/networkaccess/authorization_global_exception_rule.py +843 -0
  69. pulumi_ise/networkaccess/authorization_global_exception_rule_update_rank.py +221 -0
  70. pulumi_ise/networkaccess/authorization_profile.py +1682 -0
  71. pulumi_ise/networkaccess/authorization_rule.py +942 -0
  72. pulumi_ise/networkaccess/authorization_rule_update_rank.py +271 -0
  73. pulumi_ise/networkaccess/condition.py +650 -0
  74. pulumi_ise/networkaccess/dictionary.py +331 -0
  75. pulumi_ise/networkaccess/downloadable_acl.py +330 -0
  76. pulumi_ise/networkaccess/get_allowed_protocols.py +1182 -0
  77. pulumi_ise/networkaccess/get_authentication_rule.py +365 -0
  78. pulumi_ise/networkaccess/get_authorization_exception_rule.py +337 -0
  79. pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +301 -0
  80. pulumi_ise/networkaccess/get_authorization_profile.py +567 -0
  81. pulumi_ise/networkaccess/get_authorization_rule.py +337 -0
  82. pulumi_ise/networkaccess/get_condition.py +245 -0
  83. pulumi_ise/networkaccess/get_dictionary.py +160 -0
  84. pulumi_ise/networkaccess/get_downloadable_acl.py +160 -0
  85. pulumi_ise/networkaccess/get_policy_set.py +329 -0
  86. pulumi_ise/networkaccess/get_time_and_date_condition.py +286 -0
  87. pulumi_ise/networkaccess/outputs.py +3193 -0
  88. pulumi_ise/networkaccess/policy_set.py +947 -0
  89. pulumi_ise/networkaccess/policy_set_update_rank.py +221 -0
  90. pulumi_ise/networkaccess/time_and_date_condition.py +770 -0
  91. pulumi_ise/provider.py +209 -0
  92. pulumi_ise/pulumi-plugin.json +5 -0
  93. pulumi_ise/py.typed +0 -0
  94. pulumi_ise/system/__init__.py +13 -0
  95. pulumi_ise/system/_inputs.py +79 -0
  96. pulumi_ise/system/get_license_tier_state.py +113 -0
  97. pulumi_ise/system/get_repository.py +202 -0
  98. pulumi_ise/system/license_tier_state.py +189 -0
  99. pulumi_ise/system/outputs.py +83 -0
  100. pulumi_ise/system/repository.py +478 -0
  101. pulumi_ise/trustsec/__init__.py +21 -0
  102. pulumi_ise/trustsec/egress_matrix_cell.py +429 -0
  103. pulumi_ise/trustsec/egress_matrix_cell_default.py +327 -0
  104. pulumi_ise/trustsec/get_egress_matrix_cell.py +182 -0
  105. pulumi_ise/trustsec/get_egress_matrix_cell_default.py +154 -0
  106. pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +216 -0
  107. pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +174 -0
  108. pulumi_ise/trustsec/get_security_group.py +174 -0
  109. pulumi_ise/trustsec/get_security_group_acl.py +174 -0
  110. pulumi_ise/trustsec/get_sxp_domain_filter.py +188 -0
  111. pulumi_ise/trustsec/ip_to_sgt_mapping.py +517 -0
  112. pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +376 -0
  113. pulumi_ise/trustsec/security_group.py +379 -0
  114. pulumi_ise/trustsec/security_group_acl.py +379 -0
  115. pulumi_ise/trustsec/sxp_domain_filter.py +422 -0
  116. pulumi_ise-0.2.0a1736833585.dist-info/METADATA +64 -0
  117. pulumi_ise-0.2.0a1736833585.dist-info/RECORD +119 -0
  118. pulumi_ise-0.2.0a1736833585.dist-info/WHEEL +5 -0
  119. pulumi_ise-0.2.0a1736833585.dist-info/top_level.txt +1 -0
@@ -0,0 +1,202 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = [
18
+ 'GetCertificateAuthenticationProfileResult',
19
+ 'AwaitableGetCertificateAuthenticationProfileResult',
20
+ 'get_certificate_authentication_profile',
21
+ 'get_certificate_authentication_profile_output',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class GetCertificateAuthenticationProfileResult:
26
+ """
27
+ A collection of values returned by getCertificateAuthenticationProfile.
28
+ """
29
+ def __init__(__self__, allowed_as_user_name=None, certificate_attribute_name=None, description=None, external_identity_store_name=None, id=None, match_mode=None, name=None, username_from=None):
30
+ if allowed_as_user_name and not isinstance(allowed_as_user_name, bool):
31
+ raise TypeError("Expected argument 'allowed_as_user_name' to be a bool")
32
+ pulumi.set(__self__, "allowed_as_user_name", allowed_as_user_name)
33
+ if certificate_attribute_name and not isinstance(certificate_attribute_name, str):
34
+ raise TypeError("Expected argument 'certificate_attribute_name' to be a str")
35
+ pulumi.set(__self__, "certificate_attribute_name", certificate_attribute_name)
36
+ if description and not isinstance(description, str):
37
+ raise TypeError("Expected argument 'description' to be a str")
38
+ pulumi.set(__self__, "description", description)
39
+ if external_identity_store_name and not isinstance(external_identity_store_name, str):
40
+ raise TypeError("Expected argument 'external_identity_store_name' to be a str")
41
+ pulumi.set(__self__, "external_identity_store_name", external_identity_store_name)
42
+ if id and not isinstance(id, str):
43
+ raise TypeError("Expected argument 'id' to be a str")
44
+ pulumi.set(__self__, "id", id)
45
+ if match_mode and not isinstance(match_mode, str):
46
+ raise TypeError("Expected argument 'match_mode' to be a str")
47
+ pulumi.set(__self__, "match_mode", match_mode)
48
+ if name and not isinstance(name, str):
49
+ raise TypeError("Expected argument 'name' to be a str")
50
+ pulumi.set(__self__, "name", name)
51
+ if username_from and not isinstance(username_from, str):
52
+ raise TypeError("Expected argument 'username_from' to be a str")
53
+ pulumi.set(__self__, "username_from", username_from)
54
+
55
+ @property
56
+ @pulumi.getter(name="allowedAsUserName")
57
+ def allowed_as_user_name(self) -> bool:
58
+ """
59
+ Allow as username
60
+ """
61
+ return pulumi.get(self, "allowed_as_user_name")
62
+
63
+ @property
64
+ @pulumi.getter(name="certificateAttributeName")
65
+ def certificate_attribute_name(self) -> str:
66
+ """
67
+ Attribute name of the Certificate Profile - used only when CERTIFICATE is chosen in `username_from`.
68
+ """
69
+ return pulumi.get(self, "certificate_attribute_name")
70
+
71
+ @property
72
+ @pulumi.getter
73
+ def description(self) -> str:
74
+ """
75
+ Description
76
+ """
77
+ return pulumi.get(self, "description")
78
+
79
+ @property
80
+ @pulumi.getter(name="externalIdentityStoreName")
81
+ def external_identity_store_name(self) -> str:
82
+ """
83
+ Referred IDStore name for the Certificate Profile or `[not applicable]` in case no identity store is chosen
84
+ """
85
+ return pulumi.get(self, "external_identity_store_name")
86
+
87
+ @property
88
+ @pulumi.getter
89
+ def id(self) -> str:
90
+ """
91
+ The id of the object
92
+ """
93
+ return pulumi.get(self, "id")
94
+
95
+ @property
96
+ @pulumi.getter(name="matchMode")
97
+ def match_mode(self) -> str:
98
+ """
99
+ Match mode of the Certificate Profile. Allowed values: NEVER, RESOLVE*IDENTITY*AMBIGUITY, BINARY_COMPARISON
100
+ """
101
+ return pulumi.get(self, "match_mode")
102
+
103
+ @property
104
+ @pulumi.getter
105
+ def name(self) -> str:
106
+ """
107
+ The name of the certificate profile
108
+ """
109
+ return pulumi.get(self, "name")
110
+
111
+ @property
112
+ @pulumi.getter(name="usernameFrom")
113
+ def username_from(self) -> str:
114
+ """
115
+ The attribute in the certificate where the user name should be taken from. Allowed values: `CERTIFICATE` (for a specific attribute as defined in certificateAttributeName), `UPN` (for using any Subject or Alternative Name Attributes in the Certificate - an option only in AD)
116
+ """
117
+ return pulumi.get(self, "username_from")
118
+
119
+
120
+ class AwaitableGetCertificateAuthenticationProfileResult(GetCertificateAuthenticationProfileResult):
121
+ # pylint: disable=using-constant-test
122
+ def __await__(self):
123
+ if False:
124
+ yield self
125
+ return GetCertificateAuthenticationProfileResult(
126
+ allowed_as_user_name=self.allowed_as_user_name,
127
+ certificate_attribute_name=self.certificate_attribute_name,
128
+ description=self.description,
129
+ external_identity_store_name=self.external_identity_store_name,
130
+ id=self.id,
131
+ match_mode=self.match_mode,
132
+ name=self.name,
133
+ username_from=self.username_from)
134
+
135
+
136
+ def get_certificate_authentication_profile(id: Optional[str] = None,
137
+ name: Optional[str] = None,
138
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCertificateAuthenticationProfileResult:
139
+ """
140
+ This data source can read the Certificate Authentication Profile.
141
+
142
+ ## Example Usage
143
+
144
+ ```python
145
+ import pulumi
146
+ import pulumi_ise as ise
147
+
148
+ example = ise.identitymanagement.get_certificate_authentication_profile(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
149
+ ```
150
+
151
+
152
+ :param str id: The id of the object
153
+ :param str name: The name of the certificate profile
154
+ """
155
+ __args__ = dict()
156
+ __args__['id'] = id
157
+ __args__['name'] = name
158
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
159
+ __ret__ = pulumi.runtime.invoke('ise:identitymanagement/getCertificateAuthenticationProfile:getCertificateAuthenticationProfile', __args__, opts=opts, typ=GetCertificateAuthenticationProfileResult).value
160
+
161
+ return AwaitableGetCertificateAuthenticationProfileResult(
162
+ allowed_as_user_name=pulumi.get(__ret__, 'allowed_as_user_name'),
163
+ certificate_attribute_name=pulumi.get(__ret__, 'certificate_attribute_name'),
164
+ description=pulumi.get(__ret__, 'description'),
165
+ external_identity_store_name=pulumi.get(__ret__, 'external_identity_store_name'),
166
+ id=pulumi.get(__ret__, 'id'),
167
+ match_mode=pulumi.get(__ret__, 'match_mode'),
168
+ name=pulumi.get(__ret__, 'name'),
169
+ username_from=pulumi.get(__ret__, 'username_from'))
170
+ def get_certificate_authentication_profile_output(id: Optional[pulumi.Input[Optional[str]]] = None,
171
+ name: Optional[pulumi.Input[Optional[str]]] = None,
172
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCertificateAuthenticationProfileResult]:
173
+ """
174
+ This data source can read the Certificate Authentication Profile.
175
+
176
+ ## Example Usage
177
+
178
+ ```python
179
+ import pulumi
180
+ import pulumi_ise as ise
181
+
182
+ example = ise.identitymanagement.get_certificate_authentication_profile(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
183
+ ```
184
+
185
+
186
+ :param str id: The id of the object
187
+ :param str name: The name of the certificate profile
188
+ """
189
+ __args__ = dict()
190
+ __args__['id'] = id
191
+ __args__['name'] = name
192
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
193
+ __ret__ = pulumi.runtime.invoke_output('ise:identitymanagement/getCertificateAuthenticationProfile:getCertificateAuthenticationProfile', __args__, opts=opts, typ=GetCertificateAuthenticationProfileResult)
194
+ return __ret__.apply(lambda __response__: GetCertificateAuthenticationProfileResult(
195
+ allowed_as_user_name=pulumi.get(__response__, 'allowed_as_user_name'),
196
+ certificate_attribute_name=pulumi.get(__response__, 'certificate_attribute_name'),
197
+ description=pulumi.get(__response__, 'description'),
198
+ external_identity_store_name=pulumi.get(__response__, 'external_identity_store_name'),
199
+ id=pulumi.get(__response__, 'id'),
200
+ match_mode=pulumi.get(__response__, 'match_mode'),
201
+ name=pulumi.get(__response__, 'name'),
202
+ username_from=pulumi.get(__response__, 'username_from')))
@@ -0,0 +1,468 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = [
18
+ 'GetEndpointResult',
19
+ 'AwaitableGetEndpointResult',
20
+ 'get_endpoint',
21
+ 'get_endpoint_output',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class GetEndpointResult:
26
+ """
27
+ A collection of values returned by getEndpoint.
28
+ """
29
+ def __init__(__self__, custom_attributes=None, description=None, group_id=None, id=None, identity_store=None, identity_store_id=None, mac=None, mdm_compliance_status=None, mdm_encrypted=None, mdm_enrolled=None, mdm_imei=None, mdm_jail_broken=None, mdm_manufacturer=None, mdm_model=None, mdm_os=None, mdm_phone_number=None, mdm_pinlock=None, mdm_reachable=None, mdm_serial=None, mdm_server_name=None, name=None, portal_user=None, profile_id=None, static_group_assignment=None, static_group_assignment_defined=None, static_profile_assignment=None, static_profile_assignment_defined=None):
30
+ if custom_attributes and not isinstance(custom_attributes, dict):
31
+ raise TypeError("Expected argument 'custom_attributes' to be a dict")
32
+ pulumi.set(__self__, "custom_attributes", custom_attributes)
33
+ if description and not isinstance(description, str):
34
+ raise TypeError("Expected argument 'description' to be a str")
35
+ pulumi.set(__self__, "description", description)
36
+ if group_id and not isinstance(group_id, str):
37
+ raise TypeError("Expected argument 'group_id' to be a str")
38
+ pulumi.set(__self__, "group_id", group_id)
39
+ if id and not isinstance(id, str):
40
+ raise TypeError("Expected argument 'id' to be a str")
41
+ pulumi.set(__self__, "id", id)
42
+ if identity_store and not isinstance(identity_store, str):
43
+ raise TypeError("Expected argument 'identity_store' to be a str")
44
+ pulumi.set(__self__, "identity_store", identity_store)
45
+ if identity_store_id and not isinstance(identity_store_id, str):
46
+ raise TypeError("Expected argument 'identity_store_id' to be a str")
47
+ pulumi.set(__self__, "identity_store_id", identity_store_id)
48
+ if mac and not isinstance(mac, str):
49
+ raise TypeError("Expected argument 'mac' to be a str")
50
+ pulumi.set(__self__, "mac", mac)
51
+ if mdm_compliance_status and not isinstance(mdm_compliance_status, bool):
52
+ raise TypeError("Expected argument 'mdm_compliance_status' to be a bool")
53
+ pulumi.set(__self__, "mdm_compliance_status", mdm_compliance_status)
54
+ if mdm_encrypted and not isinstance(mdm_encrypted, bool):
55
+ raise TypeError("Expected argument 'mdm_encrypted' to be a bool")
56
+ pulumi.set(__self__, "mdm_encrypted", mdm_encrypted)
57
+ if mdm_enrolled and not isinstance(mdm_enrolled, bool):
58
+ raise TypeError("Expected argument 'mdm_enrolled' to be a bool")
59
+ pulumi.set(__self__, "mdm_enrolled", mdm_enrolled)
60
+ if mdm_imei and not isinstance(mdm_imei, str):
61
+ raise TypeError("Expected argument 'mdm_imei' to be a str")
62
+ pulumi.set(__self__, "mdm_imei", mdm_imei)
63
+ if mdm_jail_broken and not isinstance(mdm_jail_broken, bool):
64
+ raise TypeError("Expected argument 'mdm_jail_broken' to be a bool")
65
+ pulumi.set(__self__, "mdm_jail_broken", mdm_jail_broken)
66
+ if mdm_manufacturer and not isinstance(mdm_manufacturer, str):
67
+ raise TypeError("Expected argument 'mdm_manufacturer' to be a str")
68
+ pulumi.set(__self__, "mdm_manufacturer", mdm_manufacturer)
69
+ if mdm_model and not isinstance(mdm_model, str):
70
+ raise TypeError("Expected argument 'mdm_model' to be a str")
71
+ pulumi.set(__self__, "mdm_model", mdm_model)
72
+ if mdm_os and not isinstance(mdm_os, str):
73
+ raise TypeError("Expected argument 'mdm_os' to be a str")
74
+ pulumi.set(__self__, "mdm_os", mdm_os)
75
+ if mdm_phone_number and not isinstance(mdm_phone_number, str):
76
+ raise TypeError("Expected argument 'mdm_phone_number' to be a str")
77
+ pulumi.set(__self__, "mdm_phone_number", mdm_phone_number)
78
+ if mdm_pinlock and not isinstance(mdm_pinlock, bool):
79
+ raise TypeError("Expected argument 'mdm_pinlock' to be a bool")
80
+ pulumi.set(__self__, "mdm_pinlock", mdm_pinlock)
81
+ if mdm_reachable and not isinstance(mdm_reachable, bool):
82
+ raise TypeError("Expected argument 'mdm_reachable' to be a bool")
83
+ pulumi.set(__self__, "mdm_reachable", mdm_reachable)
84
+ if mdm_serial and not isinstance(mdm_serial, str):
85
+ raise TypeError("Expected argument 'mdm_serial' to be a str")
86
+ pulumi.set(__self__, "mdm_serial", mdm_serial)
87
+ if mdm_server_name and not isinstance(mdm_server_name, str):
88
+ raise TypeError("Expected argument 'mdm_server_name' to be a str")
89
+ pulumi.set(__self__, "mdm_server_name", mdm_server_name)
90
+ if name and not isinstance(name, str):
91
+ raise TypeError("Expected argument 'name' to be a str")
92
+ pulumi.set(__self__, "name", name)
93
+ if portal_user and not isinstance(portal_user, str):
94
+ raise TypeError("Expected argument 'portal_user' to be a str")
95
+ pulumi.set(__self__, "portal_user", portal_user)
96
+ if profile_id and not isinstance(profile_id, str):
97
+ raise TypeError("Expected argument 'profile_id' to be a str")
98
+ pulumi.set(__self__, "profile_id", profile_id)
99
+ if static_group_assignment and not isinstance(static_group_assignment, bool):
100
+ raise TypeError("Expected argument 'static_group_assignment' to be a bool")
101
+ pulumi.set(__self__, "static_group_assignment", static_group_assignment)
102
+ if static_group_assignment_defined and not isinstance(static_group_assignment_defined, bool):
103
+ raise TypeError("Expected argument 'static_group_assignment_defined' to be a bool")
104
+ pulumi.set(__self__, "static_group_assignment_defined", static_group_assignment_defined)
105
+ if static_profile_assignment and not isinstance(static_profile_assignment, bool):
106
+ raise TypeError("Expected argument 'static_profile_assignment' to be a bool")
107
+ pulumi.set(__self__, "static_profile_assignment", static_profile_assignment)
108
+ if static_profile_assignment_defined and not isinstance(static_profile_assignment_defined, bool):
109
+ raise TypeError("Expected argument 'static_profile_assignment_defined' to be a bool")
110
+ pulumi.set(__self__, "static_profile_assignment_defined", static_profile_assignment_defined)
111
+
112
+ @property
113
+ @pulumi.getter(name="customAttributes")
114
+ def custom_attributes(self) -> Mapping[str, str]:
115
+ """
116
+ Custom Attributes
117
+ """
118
+ return pulumi.get(self, "custom_attributes")
119
+
120
+ @property
121
+ @pulumi.getter
122
+ def description(self) -> str:
123
+ """
124
+ Description
125
+ """
126
+ return pulumi.get(self, "description")
127
+
128
+ @property
129
+ @pulumi.getter(name="groupId")
130
+ def group_id(self) -> str:
131
+ """
132
+ Identity Group ID
133
+ """
134
+ return pulumi.get(self, "group_id")
135
+
136
+ @property
137
+ @pulumi.getter
138
+ def id(self) -> str:
139
+ """
140
+ The id of the object
141
+ """
142
+ return pulumi.get(self, "id")
143
+
144
+ @property
145
+ @pulumi.getter(name="identityStore")
146
+ def identity_store(self) -> str:
147
+ """
148
+ Identity Store
149
+ """
150
+ return pulumi.get(self, "identity_store")
151
+
152
+ @property
153
+ @pulumi.getter(name="identityStoreId")
154
+ def identity_store_id(self) -> str:
155
+ """
156
+ Identity Store Id
157
+ """
158
+ return pulumi.get(self, "identity_store_id")
159
+
160
+ @property
161
+ @pulumi.getter
162
+ def mac(self) -> str:
163
+ """
164
+ MAC address of the endpoint
165
+ """
166
+ return pulumi.get(self, "mac")
167
+
168
+ @property
169
+ @pulumi.getter(name="mdmComplianceStatus")
170
+ def mdm_compliance_status(self) -> bool:
171
+ """
172
+ Mdm Compliance Status
173
+ """
174
+ return pulumi.get(self, "mdm_compliance_status")
175
+
176
+ @property
177
+ @pulumi.getter(name="mdmEncrypted")
178
+ def mdm_encrypted(self) -> bool:
179
+ """
180
+ Mdm Encrypted
181
+ """
182
+ return pulumi.get(self, "mdm_encrypted")
183
+
184
+ @property
185
+ @pulumi.getter(name="mdmEnrolled")
186
+ def mdm_enrolled(self) -> bool:
187
+ """
188
+ Mdm Enrolled
189
+ """
190
+ return pulumi.get(self, "mdm_enrolled")
191
+
192
+ @property
193
+ @pulumi.getter(name="mdmImei")
194
+ def mdm_imei(self) -> str:
195
+ """
196
+ Mdm IMEI
197
+ """
198
+ return pulumi.get(self, "mdm_imei")
199
+
200
+ @property
201
+ @pulumi.getter(name="mdmJailBroken")
202
+ def mdm_jail_broken(self) -> bool:
203
+ """
204
+ Mdm JailBroken
205
+ """
206
+ return pulumi.get(self, "mdm_jail_broken")
207
+
208
+ @property
209
+ @pulumi.getter(name="mdmManufacturer")
210
+ def mdm_manufacturer(self) -> str:
211
+ """
212
+ Mdm Manufacturer
213
+ """
214
+ return pulumi.get(self, "mdm_manufacturer")
215
+
216
+ @property
217
+ @pulumi.getter(name="mdmModel")
218
+ def mdm_model(self) -> str:
219
+ """
220
+ Mdm Model
221
+ """
222
+ return pulumi.get(self, "mdm_model")
223
+
224
+ @property
225
+ @pulumi.getter(name="mdmOs")
226
+ def mdm_os(self) -> str:
227
+ """
228
+ Mdm OS
229
+ """
230
+ return pulumi.get(self, "mdm_os")
231
+
232
+ @property
233
+ @pulumi.getter(name="mdmPhoneNumber")
234
+ def mdm_phone_number(self) -> str:
235
+ """
236
+ Mdm PhoneNumber
237
+ """
238
+ return pulumi.get(self, "mdm_phone_number")
239
+
240
+ @property
241
+ @pulumi.getter(name="mdmPinlock")
242
+ def mdm_pinlock(self) -> bool:
243
+ """
244
+ Mdm Pinlock
245
+ """
246
+ return pulumi.get(self, "mdm_pinlock")
247
+
248
+ @property
249
+ @pulumi.getter(name="mdmReachable")
250
+ def mdm_reachable(self) -> bool:
251
+ """
252
+ Mdm Reachable
253
+ """
254
+ return pulumi.get(self, "mdm_reachable")
255
+
256
+ @property
257
+ @pulumi.getter(name="mdmSerial")
258
+ def mdm_serial(self) -> str:
259
+ """
260
+ Mdm Serial
261
+ """
262
+ return pulumi.get(self, "mdm_serial")
263
+
264
+ @property
265
+ @pulumi.getter(name="mdmServerName")
266
+ def mdm_server_name(self) -> str:
267
+ """
268
+ Mdm Server Name
269
+ """
270
+ return pulumi.get(self, "mdm_server_name")
271
+
272
+ @property
273
+ @pulumi.getter
274
+ def name(self) -> str:
275
+ """
276
+ The name of the endpoint
277
+ """
278
+ return pulumi.get(self, "name")
279
+
280
+ @property
281
+ @pulumi.getter(name="portalUser")
282
+ def portal_user(self) -> str:
283
+ """
284
+ Portal User
285
+ """
286
+ return pulumi.get(self, "portal_user")
287
+
288
+ @property
289
+ @pulumi.getter(name="profileId")
290
+ def profile_id(self) -> str:
291
+ """
292
+ Profile ID
293
+ """
294
+ return pulumi.get(self, "profile_id")
295
+
296
+ @property
297
+ @pulumi.getter(name="staticGroupAssignment")
298
+ def static_group_assignment(self) -> bool:
299
+ """
300
+ Static Group Assignment
301
+ """
302
+ return pulumi.get(self, "static_group_assignment")
303
+
304
+ @property
305
+ @pulumi.getter(name="staticGroupAssignmentDefined")
306
+ def static_group_assignment_defined(self) -> bool:
307
+ """
308
+ staticGroupAssignmentDefined
309
+ """
310
+ return pulumi.get(self, "static_group_assignment_defined")
311
+
312
+ @property
313
+ @pulumi.getter(name="staticProfileAssignment")
314
+ def static_profile_assignment(self) -> bool:
315
+ """
316
+ Static Profile Assignment
317
+ """
318
+ return pulumi.get(self, "static_profile_assignment")
319
+
320
+ @property
321
+ @pulumi.getter(name="staticProfileAssignmentDefined")
322
+ def static_profile_assignment_defined(self) -> bool:
323
+ """
324
+ Static Profile Assignment Defined
325
+ """
326
+ return pulumi.get(self, "static_profile_assignment_defined")
327
+
328
+
329
+ class AwaitableGetEndpointResult(GetEndpointResult):
330
+ # pylint: disable=using-constant-test
331
+ def __await__(self):
332
+ if False:
333
+ yield self
334
+ return GetEndpointResult(
335
+ custom_attributes=self.custom_attributes,
336
+ description=self.description,
337
+ group_id=self.group_id,
338
+ id=self.id,
339
+ identity_store=self.identity_store,
340
+ identity_store_id=self.identity_store_id,
341
+ mac=self.mac,
342
+ mdm_compliance_status=self.mdm_compliance_status,
343
+ mdm_encrypted=self.mdm_encrypted,
344
+ mdm_enrolled=self.mdm_enrolled,
345
+ mdm_imei=self.mdm_imei,
346
+ mdm_jail_broken=self.mdm_jail_broken,
347
+ mdm_manufacturer=self.mdm_manufacturer,
348
+ mdm_model=self.mdm_model,
349
+ mdm_os=self.mdm_os,
350
+ mdm_phone_number=self.mdm_phone_number,
351
+ mdm_pinlock=self.mdm_pinlock,
352
+ mdm_reachable=self.mdm_reachable,
353
+ mdm_serial=self.mdm_serial,
354
+ mdm_server_name=self.mdm_server_name,
355
+ name=self.name,
356
+ portal_user=self.portal_user,
357
+ profile_id=self.profile_id,
358
+ static_group_assignment=self.static_group_assignment,
359
+ static_group_assignment_defined=self.static_group_assignment_defined,
360
+ static_profile_assignment=self.static_profile_assignment,
361
+ static_profile_assignment_defined=self.static_profile_assignment_defined)
362
+
363
+
364
+ def get_endpoint(id: Optional[str] = None,
365
+ name: Optional[str] = None,
366
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEndpointResult:
367
+ """
368
+ This data source can read the Endpoint.
369
+
370
+ ## Example Usage
371
+
372
+ ```python
373
+ import pulumi
374
+ import pulumi_ise as ise
375
+
376
+ example = ise.identitymanagement.get_endpoint(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
377
+ ```
378
+
379
+
380
+ :param str id: The id of the object
381
+ :param str name: The name of the endpoint
382
+ """
383
+ __args__ = dict()
384
+ __args__['id'] = id
385
+ __args__['name'] = name
386
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
387
+ __ret__ = pulumi.runtime.invoke('ise:identitymanagement/getEndpoint:getEndpoint', __args__, opts=opts, typ=GetEndpointResult).value
388
+
389
+ return AwaitableGetEndpointResult(
390
+ custom_attributes=pulumi.get(__ret__, 'custom_attributes'),
391
+ description=pulumi.get(__ret__, 'description'),
392
+ group_id=pulumi.get(__ret__, 'group_id'),
393
+ id=pulumi.get(__ret__, 'id'),
394
+ identity_store=pulumi.get(__ret__, 'identity_store'),
395
+ identity_store_id=pulumi.get(__ret__, 'identity_store_id'),
396
+ mac=pulumi.get(__ret__, 'mac'),
397
+ mdm_compliance_status=pulumi.get(__ret__, 'mdm_compliance_status'),
398
+ mdm_encrypted=pulumi.get(__ret__, 'mdm_encrypted'),
399
+ mdm_enrolled=pulumi.get(__ret__, 'mdm_enrolled'),
400
+ mdm_imei=pulumi.get(__ret__, 'mdm_imei'),
401
+ mdm_jail_broken=pulumi.get(__ret__, 'mdm_jail_broken'),
402
+ mdm_manufacturer=pulumi.get(__ret__, 'mdm_manufacturer'),
403
+ mdm_model=pulumi.get(__ret__, 'mdm_model'),
404
+ mdm_os=pulumi.get(__ret__, 'mdm_os'),
405
+ mdm_phone_number=pulumi.get(__ret__, 'mdm_phone_number'),
406
+ mdm_pinlock=pulumi.get(__ret__, 'mdm_pinlock'),
407
+ mdm_reachable=pulumi.get(__ret__, 'mdm_reachable'),
408
+ mdm_serial=pulumi.get(__ret__, 'mdm_serial'),
409
+ mdm_server_name=pulumi.get(__ret__, 'mdm_server_name'),
410
+ name=pulumi.get(__ret__, 'name'),
411
+ portal_user=pulumi.get(__ret__, 'portal_user'),
412
+ profile_id=pulumi.get(__ret__, 'profile_id'),
413
+ static_group_assignment=pulumi.get(__ret__, 'static_group_assignment'),
414
+ static_group_assignment_defined=pulumi.get(__ret__, 'static_group_assignment_defined'),
415
+ static_profile_assignment=pulumi.get(__ret__, 'static_profile_assignment'),
416
+ static_profile_assignment_defined=pulumi.get(__ret__, 'static_profile_assignment_defined'))
417
+ def get_endpoint_output(id: Optional[pulumi.Input[Optional[str]]] = None,
418
+ name: Optional[pulumi.Input[Optional[str]]] = None,
419
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetEndpointResult]:
420
+ """
421
+ This data source can read the Endpoint.
422
+
423
+ ## Example Usage
424
+
425
+ ```python
426
+ import pulumi
427
+ import pulumi_ise as ise
428
+
429
+ example = ise.identitymanagement.get_endpoint(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
430
+ ```
431
+
432
+
433
+ :param str id: The id of the object
434
+ :param str name: The name of the endpoint
435
+ """
436
+ __args__ = dict()
437
+ __args__['id'] = id
438
+ __args__['name'] = name
439
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
440
+ __ret__ = pulumi.runtime.invoke_output('ise:identitymanagement/getEndpoint:getEndpoint', __args__, opts=opts, typ=GetEndpointResult)
441
+ return __ret__.apply(lambda __response__: GetEndpointResult(
442
+ custom_attributes=pulumi.get(__response__, 'custom_attributes'),
443
+ description=pulumi.get(__response__, 'description'),
444
+ group_id=pulumi.get(__response__, 'group_id'),
445
+ id=pulumi.get(__response__, 'id'),
446
+ identity_store=pulumi.get(__response__, 'identity_store'),
447
+ identity_store_id=pulumi.get(__response__, 'identity_store_id'),
448
+ mac=pulumi.get(__response__, 'mac'),
449
+ mdm_compliance_status=pulumi.get(__response__, 'mdm_compliance_status'),
450
+ mdm_encrypted=pulumi.get(__response__, 'mdm_encrypted'),
451
+ mdm_enrolled=pulumi.get(__response__, 'mdm_enrolled'),
452
+ mdm_imei=pulumi.get(__response__, 'mdm_imei'),
453
+ mdm_jail_broken=pulumi.get(__response__, 'mdm_jail_broken'),
454
+ mdm_manufacturer=pulumi.get(__response__, 'mdm_manufacturer'),
455
+ mdm_model=pulumi.get(__response__, 'mdm_model'),
456
+ mdm_os=pulumi.get(__response__, 'mdm_os'),
457
+ mdm_phone_number=pulumi.get(__response__, 'mdm_phone_number'),
458
+ mdm_pinlock=pulumi.get(__response__, 'mdm_pinlock'),
459
+ mdm_reachable=pulumi.get(__response__, 'mdm_reachable'),
460
+ mdm_serial=pulumi.get(__response__, 'mdm_serial'),
461
+ mdm_server_name=pulumi.get(__response__, 'mdm_server_name'),
462
+ name=pulumi.get(__response__, 'name'),
463
+ portal_user=pulumi.get(__response__, 'portal_user'),
464
+ profile_id=pulumi.get(__response__, 'profile_id'),
465
+ static_group_assignment=pulumi.get(__response__, 'static_group_assignment'),
466
+ static_group_assignment_defined=pulumi.get(__response__, 'static_group_assignment_defined'),
467
+ static_profile_assignment=pulumi.get(__response__, 'static_profile_assignment'),
468
+ static_profile_assignment_defined=pulumi.get(__response__, 'static_profile_assignment_defined')))