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