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,643 @@
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
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetDeviceResult',
15
+ 'AwaitableGetDeviceResult',
16
+ 'get_device',
17
+ 'get_device_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetDeviceResult:
22
+ """
23
+ A collection of values returned by getDevice.
24
+ """
25
+ def __init__(__self__, authentication_dtls_required=None, authentication_enable_key_wrap=None, authentication_enable_multi_secret=None, authentication_encryption_key=None, authentication_encryption_key_format=None, authentication_message_authenticator_code_key=None, authentication_network_protocol=None, authentication_radius_shared_secret=None, authentication_second_radius_shared_secret=None, coa_port=None, description=None, dtls_dns_name=None, id=None, ips=None, model_name=None, name=None, network_device_groups=None, profile_name=None, snmp_link_trap_query=None, snmp_mac_trap_query=None, snmp_originating_policy_service_node=None, snmp_polling_interval=None, snmp_ro_community=None, snmp_version=None, software_version=None, tacacs_connect_mode_options=None, tacacs_shared_secret=None, trustsec_coa_source_host=None, trustsec_device_id=None, trustsec_device_password=None, trustsec_download_enviroment_data_every_x_seconds=None, trustsec_download_peer_authorization_policy_every_x_seconds=None, trustsec_download_sgacl_lists_every_x_seconds=None, trustsec_enable_mode_password=None, trustsec_exec_mode_password=None, trustsec_exec_mode_username=None, trustsec_include_when_deploying_sgt_updates=None, trustsec_other_sga_devices_to_trust_this_device=None, trustsec_re_authentication_every_x_seconds=None, trustsec_rest_api_password=None, trustsec_rest_api_username=None, trustsec_send_configuration_to_device=None, trustsec_send_configuration_to_device_using=None):
26
+ if authentication_dtls_required and not isinstance(authentication_dtls_required, bool):
27
+ raise TypeError("Expected argument 'authentication_dtls_required' to be a bool")
28
+ pulumi.set(__self__, "authentication_dtls_required", authentication_dtls_required)
29
+ if authentication_enable_key_wrap and not isinstance(authentication_enable_key_wrap, bool):
30
+ raise TypeError("Expected argument 'authentication_enable_key_wrap' to be a bool")
31
+ pulumi.set(__self__, "authentication_enable_key_wrap", authentication_enable_key_wrap)
32
+ if authentication_enable_multi_secret and not isinstance(authentication_enable_multi_secret, bool):
33
+ raise TypeError("Expected argument 'authentication_enable_multi_secret' to be a bool")
34
+ pulumi.set(__self__, "authentication_enable_multi_secret", authentication_enable_multi_secret)
35
+ if authentication_encryption_key and not isinstance(authentication_encryption_key, str):
36
+ raise TypeError("Expected argument 'authentication_encryption_key' to be a str")
37
+ pulumi.set(__self__, "authentication_encryption_key", authentication_encryption_key)
38
+ if authentication_encryption_key_format and not isinstance(authentication_encryption_key_format, str):
39
+ raise TypeError("Expected argument 'authentication_encryption_key_format' to be a str")
40
+ pulumi.set(__self__, "authentication_encryption_key_format", authentication_encryption_key_format)
41
+ if authentication_message_authenticator_code_key and not isinstance(authentication_message_authenticator_code_key, str):
42
+ raise TypeError("Expected argument 'authentication_message_authenticator_code_key' to be a str")
43
+ pulumi.set(__self__, "authentication_message_authenticator_code_key", authentication_message_authenticator_code_key)
44
+ if authentication_network_protocol and not isinstance(authentication_network_protocol, str):
45
+ raise TypeError("Expected argument 'authentication_network_protocol' to be a str")
46
+ pulumi.set(__self__, "authentication_network_protocol", authentication_network_protocol)
47
+ if authentication_radius_shared_secret and not isinstance(authentication_radius_shared_secret, str):
48
+ raise TypeError("Expected argument 'authentication_radius_shared_secret' to be a str")
49
+ pulumi.set(__self__, "authentication_radius_shared_secret", authentication_radius_shared_secret)
50
+ if authentication_second_radius_shared_secret and not isinstance(authentication_second_radius_shared_secret, str):
51
+ raise TypeError("Expected argument 'authentication_second_radius_shared_secret' to be a str")
52
+ pulumi.set(__self__, "authentication_second_radius_shared_secret", authentication_second_radius_shared_secret)
53
+ if coa_port and not isinstance(coa_port, int):
54
+ raise TypeError("Expected argument 'coa_port' to be a int")
55
+ pulumi.set(__self__, "coa_port", coa_port)
56
+ if description and not isinstance(description, str):
57
+ raise TypeError("Expected argument 'description' to be a str")
58
+ pulumi.set(__self__, "description", description)
59
+ if dtls_dns_name and not isinstance(dtls_dns_name, str):
60
+ raise TypeError("Expected argument 'dtls_dns_name' to be a str")
61
+ pulumi.set(__self__, "dtls_dns_name", dtls_dns_name)
62
+ if id and not isinstance(id, str):
63
+ raise TypeError("Expected argument 'id' to be a str")
64
+ pulumi.set(__self__, "id", id)
65
+ if ips and not isinstance(ips, list):
66
+ raise TypeError("Expected argument 'ips' to be a list")
67
+ pulumi.set(__self__, "ips", ips)
68
+ if model_name and not isinstance(model_name, str):
69
+ raise TypeError("Expected argument 'model_name' to be a str")
70
+ pulumi.set(__self__, "model_name", model_name)
71
+ if name and not isinstance(name, str):
72
+ raise TypeError("Expected argument 'name' to be a str")
73
+ pulumi.set(__self__, "name", name)
74
+ if network_device_groups and not isinstance(network_device_groups, list):
75
+ raise TypeError("Expected argument 'network_device_groups' to be a list")
76
+ pulumi.set(__self__, "network_device_groups", network_device_groups)
77
+ if profile_name and not isinstance(profile_name, str):
78
+ raise TypeError("Expected argument 'profile_name' to be a str")
79
+ pulumi.set(__self__, "profile_name", profile_name)
80
+ if snmp_link_trap_query and not isinstance(snmp_link_trap_query, bool):
81
+ raise TypeError("Expected argument 'snmp_link_trap_query' to be a bool")
82
+ pulumi.set(__self__, "snmp_link_trap_query", snmp_link_trap_query)
83
+ if snmp_mac_trap_query and not isinstance(snmp_mac_trap_query, bool):
84
+ raise TypeError("Expected argument 'snmp_mac_trap_query' to be a bool")
85
+ pulumi.set(__self__, "snmp_mac_trap_query", snmp_mac_trap_query)
86
+ if snmp_originating_policy_service_node and not isinstance(snmp_originating_policy_service_node, str):
87
+ raise TypeError("Expected argument 'snmp_originating_policy_service_node' to be a str")
88
+ pulumi.set(__self__, "snmp_originating_policy_service_node", snmp_originating_policy_service_node)
89
+ if snmp_polling_interval and not isinstance(snmp_polling_interval, int):
90
+ raise TypeError("Expected argument 'snmp_polling_interval' to be a int")
91
+ pulumi.set(__self__, "snmp_polling_interval", snmp_polling_interval)
92
+ if snmp_ro_community and not isinstance(snmp_ro_community, str):
93
+ raise TypeError("Expected argument 'snmp_ro_community' to be a str")
94
+ pulumi.set(__self__, "snmp_ro_community", snmp_ro_community)
95
+ if snmp_version and not isinstance(snmp_version, str):
96
+ raise TypeError("Expected argument 'snmp_version' to be a str")
97
+ pulumi.set(__self__, "snmp_version", snmp_version)
98
+ if software_version and not isinstance(software_version, str):
99
+ raise TypeError("Expected argument 'software_version' to be a str")
100
+ pulumi.set(__self__, "software_version", software_version)
101
+ if tacacs_connect_mode_options and not isinstance(tacacs_connect_mode_options, str):
102
+ raise TypeError("Expected argument 'tacacs_connect_mode_options' to be a str")
103
+ pulumi.set(__self__, "tacacs_connect_mode_options", tacacs_connect_mode_options)
104
+ if tacacs_shared_secret and not isinstance(tacacs_shared_secret, str):
105
+ raise TypeError("Expected argument 'tacacs_shared_secret' to be a str")
106
+ pulumi.set(__self__, "tacacs_shared_secret", tacacs_shared_secret)
107
+ if trustsec_coa_source_host and not isinstance(trustsec_coa_source_host, str):
108
+ raise TypeError("Expected argument 'trustsec_coa_source_host' to be a str")
109
+ pulumi.set(__self__, "trustsec_coa_source_host", trustsec_coa_source_host)
110
+ if trustsec_device_id and not isinstance(trustsec_device_id, str):
111
+ raise TypeError("Expected argument 'trustsec_device_id' to be a str")
112
+ pulumi.set(__self__, "trustsec_device_id", trustsec_device_id)
113
+ if trustsec_device_password and not isinstance(trustsec_device_password, str):
114
+ raise TypeError("Expected argument 'trustsec_device_password' to be a str")
115
+ pulumi.set(__self__, "trustsec_device_password", trustsec_device_password)
116
+ if trustsec_download_enviroment_data_every_x_seconds and not isinstance(trustsec_download_enviroment_data_every_x_seconds, int):
117
+ raise TypeError("Expected argument 'trustsec_download_enviroment_data_every_x_seconds' to be a int")
118
+ pulumi.set(__self__, "trustsec_download_enviroment_data_every_x_seconds", trustsec_download_enviroment_data_every_x_seconds)
119
+ if trustsec_download_peer_authorization_policy_every_x_seconds and not isinstance(trustsec_download_peer_authorization_policy_every_x_seconds, int):
120
+ raise TypeError("Expected argument 'trustsec_download_peer_authorization_policy_every_x_seconds' to be a int")
121
+ pulumi.set(__self__, "trustsec_download_peer_authorization_policy_every_x_seconds", trustsec_download_peer_authorization_policy_every_x_seconds)
122
+ if trustsec_download_sgacl_lists_every_x_seconds and not isinstance(trustsec_download_sgacl_lists_every_x_seconds, int):
123
+ raise TypeError("Expected argument 'trustsec_download_sgacl_lists_every_x_seconds' to be a int")
124
+ pulumi.set(__self__, "trustsec_download_sgacl_lists_every_x_seconds", trustsec_download_sgacl_lists_every_x_seconds)
125
+ if trustsec_enable_mode_password and not isinstance(trustsec_enable_mode_password, str):
126
+ raise TypeError("Expected argument 'trustsec_enable_mode_password' to be a str")
127
+ pulumi.set(__self__, "trustsec_enable_mode_password", trustsec_enable_mode_password)
128
+ if trustsec_exec_mode_password and not isinstance(trustsec_exec_mode_password, str):
129
+ raise TypeError("Expected argument 'trustsec_exec_mode_password' to be a str")
130
+ pulumi.set(__self__, "trustsec_exec_mode_password", trustsec_exec_mode_password)
131
+ if trustsec_exec_mode_username and not isinstance(trustsec_exec_mode_username, str):
132
+ raise TypeError("Expected argument 'trustsec_exec_mode_username' to be a str")
133
+ pulumi.set(__self__, "trustsec_exec_mode_username", trustsec_exec_mode_username)
134
+ if trustsec_include_when_deploying_sgt_updates and not isinstance(trustsec_include_when_deploying_sgt_updates, bool):
135
+ raise TypeError("Expected argument 'trustsec_include_when_deploying_sgt_updates' to be a bool")
136
+ pulumi.set(__self__, "trustsec_include_when_deploying_sgt_updates", trustsec_include_when_deploying_sgt_updates)
137
+ if trustsec_other_sga_devices_to_trust_this_device and not isinstance(trustsec_other_sga_devices_to_trust_this_device, bool):
138
+ raise TypeError("Expected argument 'trustsec_other_sga_devices_to_trust_this_device' to be a bool")
139
+ pulumi.set(__self__, "trustsec_other_sga_devices_to_trust_this_device", trustsec_other_sga_devices_to_trust_this_device)
140
+ if trustsec_re_authentication_every_x_seconds and not isinstance(trustsec_re_authentication_every_x_seconds, int):
141
+ raise TypeError("Expected argument 'trustsec_re_authentication_every_x_seconds' to be a int")
142
+ pulumi.set(__self__, "trustsec_re_authentication_every_x_seconds", trustsec_re_authentication_every_x_seconds)
143
+ if trustsec_rest_api_password and not isinstance(trustsec_rest_api_password, str):
144
+ raise TypeError("Expected argument 'trustsec_rest_api_password' to be a str")
145
+ pulumi.set(__self__, "trustsec_rest_api_password", trustsec_rest_api_password)
146
+ if trustsec_rest_api_username and not isinstance(trustsec_rest_api_username, str):
147
+ raise TypeError("Expected argument 'trustsec_rest_api_username' to be a str")
148
+ pulumi.set(__self__, "trustsec_rest_api_username", trustsec_rest_api_username)
149
+ if trustsec_send_configuration_to_device and not isinstance(trustsec_send_configuration_to_device, bool):
150
+ raise TypeError("Expected argument 'trustsec_send_configuration_to_device' to be a bool")
151
+ pulumi.set(__self__, "trustsec_send_configuration_to_device", trustsec_send_configuration_to_device)
152
+ if trustsec_send_configuration_to_device_using and not isinstance(trustsec_send_configuration_to_device_using, str):
153
+ raise TypeError("Expected argument 'trustsec_send_configuration_to_device_using' to be a str")
154
+ pulumi.set(__self__, "trustsec_send_configuration_to_device_using", trustsec_send_configuration_to_device_using)
155
+
156
+ @property
157
+ @pulumi.getter(name="authenticationDtlsRequired")
158
+ def authentication_dtls_required(self) -> bool:
159
+ """
160
+ Enforce use of DTLS
161
+ """
162
+ return pulumi.get(self, "authentication_dtls_required")
163
+
164
+ @property
165
+ @pulumi.getter(name="authenticationEnableKeyWrap")
166
+ def authentication_enable_key_wrap(self) -> bool:
167
+ """
168
+ Enable key wrap
169
+ """
170
+ return pulumi.get(self, "authentication_enable_key_wrap")
171
+
172
+ @property
173
+ @pulumi.getter(name="authenticationEnableMultiSecret")
174
+ def authentication_enable_multi_secret(self) -> bool:
175
+ """
176
+ Enable multiple RADIUS shared secrets
177
+ """
178
+ return pulumi.get(self, "authentication_enable_multi_secret")
179
+
180
+ @property
181
+ @pulumi.getter(name="authenticationEncryptionKey")
182
+ def authentication_encryption_key(self) -> str:
183
+ """
184
+ Encryption key
185
+ """
186
+ return pulumi.get(self, "authentication_encryption_key")
187
+
188
+ @property
189
+ @pulumi.getter(name="authenticationEncryptionKeyFormat")
190
+ def authentication_encryption_key_format(self) -> str:
191
+ """
192
+ Key input format
193
+ """
194
+ return pulumi.get(self, "authentication_encryption_key_format")
195
+
196
+ @property
197
+ @pulumi.getter(name="authenticationMessageAuthenticatorCodeKey")
198
+ def authentication_message_authenticator_code_key(self) -> str:
199
+ """
200
+ Message authenticator code key
201
+ """
202
+ return pulumi.get(self, "authentication_message_authenticator_code_key")
203
+
204
+ @property
205
+ @pulumi.getter(name="authenticationNetworkProtocol")
206
+ def authentication_network_protocol(self) -> str:
207
+ """
208
+ Network protocol
209
+ """
210
+ return pulumi.get(self, "authentication_network_protocol")
211
+
212
+ @property
213
+ @pulumi.getter(name="authenticationRadiusSharedSecret")
214
+ def authentication_radius_shared_secret(self) -> str:
215
+ """
216
+ RADIUS shared secret
217
+ """
218
+ return pulumi.get(self, "authentication_radius_shared_secret")
219
+
220
+ @property
221
+ @pulumi.getter(name="authenticationSecondRadiusSharedSecret")
222
+ def authentication_second_radius_shared_secret(self) -> str:
223
+ """
224
+ Second RADIUS shared secret
225
+ """
226
+ return pulumi.get(self, "authentication_second_radius_shared_secret")
227
+
228
+ @property
229
+ @pulumi.getter(name="coaPort")
230
+ def coa_port(self) -> int:
231
+ """
232
+ CoA port
233
+ """
234
+ return pulumi.get(self, "coa_port")
235
+
236
+ @property
237
+ @pulumi.getter
238
+ def description(self) -> str:
239
+ """
240
+ Description
241
+ """
242
+ return pulumi.get(self, "description")
243
+
244
+ @property
245
+ @pulumi.getter(name="dtlsDnsName")
246
+ def dtls_dns_name(self) -> str:
247
+ """
248
+ This value is used to verify the client identity contained in the X.509 RADIUS/DTLS client certificate
249
+ """
250
+ return pulumi.get(self, "dtls_dns_name")
251
+
252
+ @property
253
+ @pulumi.getter
254
+ def id(self) -> str:
255
+ """
256
+ The id of the object
257
+ """
258
+ return pulumi.get(self, "id")
259
+
260
+ @property
261
+ @pulumi.getter
262
+ def ips(self) -> Sequence['outputs.GetDeviceIpResult']:
263
+ """
264
+ List of IP subnets
265
+ """
266
+ return pulumi.get(self, "ips")
267
+
268
+ @property
269
+ @pulumi.getter(name="modelName")
270
+ def model_name(self) -> str:
271
+ """
272
+ Model name
273
+ """
274
+ return pulumi.get(self, "model_name")
275
+
276
+ @property
277
+ @pulumi.getter
278
+ def name(self) -> str:
279
+ """
280
+ The name of the network device
281
+ """
282
+ return pulumi.get(self, "name")
283
+
284
+ @property
285
+ @pulumi.getter(name="networkDeviceGroups")
286
+ def network_device_groups(self) -> Sequence[str]:
287
+ """
288
+ List of network device groups, e.g. `Device Type#All Device Types#ACCESS`
289
+ """
290
+ return pulumi.get(self, "network_device_groups")
291
+
292
+ @property
293
+ @pulumi.getter(name="profileName")
294
+ def profile_name(self) -> str:
295
+ """
296
+ Profile name
297
+ """
298
+ return pulumi.get(self, "profile_name")
299
+
300
+ @property
301
+ @pulumi.getter(name="snmpLinkTrapQuery")
302
+ def snmp_link_trap_query(self) -> bool:
303
+ """
304
+ SNMP link Trap Query
305
+ """
306
+ return pulumi.get(self, "snmp_link_trap_query")
307
+
308
+ @property
309
+ @pulumi.getter(name="snmpMacTrapQuery")
310
+ def snmp_mac_trap_query(self) -> bool:
311
+ """
312
+ SNMP MAC Trap Query
313
+ """
314
+ return pulumi.get(self, "snmp_mac_trap_query")
315
+
316
+ @property
317
+ @pulumi.getter(name="snmpOriginatingPolicyServiceNode")
318
+ def snmp_originating_policy_service_node(self) -> str:
319
+ """
320
+ Originating Policy Services Node
321
+ """
322
+ return pulumi.get(self, "snmp_originating_policy_service_node")
323
+
324
+ @property
325
+ @pulumi.getter(name="snmpPollingInterval")
326
+ def snmp_polling_interval(self) -> int:
327
+ """
328
+ SNMP Polling Interval in seconds
329
+ """
330
+ return pulumi.get(self, "snmp_polling_interval")
331
+
332
+ @property
333
+ @pulumi.getter(name="snmpRoCommunity")
334
+ def snmp_ro_community(self) -> str:
335
+ """
336
+ SNMP RO Community
337
+ """
338
+ return pulumi.get(self, "snmp_ro_community")
339
+
340
+ @property
341
+ @pulumi.getter(name="snmpVersion")
342
+ def snmp_version(self) -> str:
343
+ """
344
+ SNMP version
345
+ """
346
+ return pulumi.get(self, "snmp_version")
347
+
348
+ @property
349
+ @pulumi.getter(name="softwareVersion")
350
+ def software_version(self) -> str:
351
+ """
352
+ Software version
353
+ """
354
+ return pulumi.get(self, "software_version")
355
+
356
+ @property
357
+ @pulumi.getter(name="tacacsConnectModeOptions")
358
+ def tacacs_connect_mode_options(self) -> str:
359
+ """
360
+ Connect mode options
361
+ """
362
+ return pulumi.get(self, "tacacs_connect_mode_options")
363
+
364
+ @property
365
+ @pulumi.getter(name="tacacsSharedSecret")
366
+ def tacacs_shared_secret(self) -> str:
367
+ """
368
+ Shared secret
369
+ """
370
+ return pulumi.get(self, "tacacs_shared_secret")
371
+
372
+ @property
373
+ @pulumi.getter(name="trustsecCoaSourceHost")
374
+ def trustsec_coa_source_host(self) -> str:
375
+ """
376
+ CoA source host
377
+ """
378
+ return pulumi.get(self, "trustsec_coa_source_host")
379
+
380
+ @property
381
+ @pulumi.getter(name="trustsecDeviceId")
382
+ def trustsec_device_id(self) -> str:
383
+ """
384
+ TrustSec device ID
385
+ """
386
+ return pulumi.get(self, "trustsec_device_id")
387
+
388
+ @property
389
+ @pulumi.getter(name="trustsecDevicePassword")
390
+ def trustsec_device_password(self) -> str:
391
+ """
392
+ TrustSec device password
393
+ """
394
+ return pulumi.get(self, "trustsec_device_password")
395
+
396
+ @property
397
+ @pulumi.getter(name="trustsecDownloadEnviromentDataEveryXSeconds")
398
+ def trustsec_download_enviroment_data_every_x_seconds(self) -> int:
399
+ """
400
+ Download environment data every X seconds
401
+ """
402
+ return pulumi.get(self, "trustsec_download_enviroment_data_every_x_seconds")
403
+
404
+ @property
405
+ @pulumi.getter(name="trustsecDownloadPeerAuthorizationPolicyEveryXSeconds")
406
+ def trustsec_download_peer_authorization_policy_every_x_seconds(self) -> int:
407
+ """
408
+ Download peer authorization policy every X seconds
409
+ """
410
+ return pulumi.get(self, "trustsec_download_peer_authorization_policy_every_x_seconds")
411
+
412
+ @property
413
+ @pulumi.getter(name="trustsecDownloadSgaclListsEveryXSeconds")
414
+ def trustsec_download_sgacl_lists_every_x_seconds(self) -> int:
415
+ """
416
+ Download SGACL lists every X seconds
417
+ """
418
+ return pulumi.get(self, "trustsec_download_sgacl_lists_every_x_seconds")
419
+
420
+ @property
421
+ @pulumi.getter(name="trustsecEnableModePassword")
422
+ def trustsec_enable_mode_password(self) -> str:
423
+ """
424
+ Enable mode password
425
+ """
426
+ return pulumi.get(self, "trustsec_enable_mode_password")
427
+
428
+ @property
429
+ @pulumi.getter(name="trustsecExecModePassword")
430
+ def trustsec_exec_mode_password(self) -> str:
431
+ """
432
+ EXEC mode password
433
+ """
434
+ return pulumi.get(self, "trustsec_exec_mode_password")
435
+
436
+ @property
437
+ @pulumi.getter(name="trustsecExecModeUsername")
438
+ def trustsec_exec_mode_username(self) -> str:
439
+ """
440
+ EXEC mode username
441
+ """
442
+ return pulumi.get(self, "trustsec_exec_mode_username")
443
+
444
+ @property
445
+ @pulumi.getter(name="trustsecIncludeWhenDeployingSgtUpdates")
446
+ def trustsec_include_when_deploying_sgt_updates(self) -> bool:
447
+ """
448
+ Include this device when deploying Security Group Tag Mapping Updates
449
+ """
450
+ return pulumi.get(self, "trustsec_include_when_deploying_sgt_updates")
451
+
452
+ @property
453
+ @pulumi.getter(name="trustsecOtherSgaDevicesToTrustThisDevice")
454
+ def trustsec_other_sga_devices_to_trust_this_device(self) -> bool:
455
+ """
456
+ Other TrustSec devices to trust this device
457
+ """
458
+ return pulumi.get(self, "trustsec_other_sga_devices_to_trust_this_device")
459
+
460
+ @property
461
+ @pulumi.getter(name="trustsecReAuthenticationEveryXSeconds")
462
+ def trustsec_re_authentication_every_x_seconds(self) -> int:
463
+ """
464
+ Re-authenticate every X seconds
465
+ """
466
+ return pulumi.get(self, "trustsec_re_authentication_every_x_seconds")
467
+
468
+ @property
469
+ @pulumi.getter(name="trustsecRestApiPassword")
470
+ def trustsec_rest_api_password(self) -> str:
471
+ """
472
+ REST API password
473
+ """
474
+ return pulumi.get(self, "trustsec_rest_api_password")
475
+
476
+ @property
477
+ @pulumi.getter(name="trustsecRestApiUsername")
478
+ def trustsec_rest_api_username(self) -> str:
479
+ """
480
+ REST API username
481
+ """
482
+ return pulumi.get(self, "trustsec_rest_api_username")
483
+
484
+ @property
485
+ @pulumi.getter(name="trustsecSendConfigurationToDevice")
486
+ def trustsec_send_configuration_to_device(self) -> bool:
487
+ """
488
+ Send configuration to device
489
+ """
490
+ return pulumi.get(self, "trustsec_send_configuration_to_device")
491
+
492
+ @property
493
+ @pulumi.getter(name="trustsecSendConfigurationToDeviceUsing")
494
+ def trustsec_send_configuration_to_device_using(self) -> str:
495
+ """
496
+ Send configuration to device using
497
+ """
498
+ return pulumi.get(self, "trustsec_send_configuration_to_device_using")
499
+
500
+
501
+ class AwaitableGetDeviceResult(GetDeviceResult):
502
+ # pylint: disable=using-constant-test
503
+ def __await__(self):
504
+ if False:
505
+ yield self
506
+ return GetDeviceResult(
507
+ authentication_dtls_required=self.authentication_dtls_required,
508
+ authentication_enable_key_wrap=self.authentication_enable_key_wrap,
509
+ authentication_enable_multi_secret=self.authentication_enable_multi_secret,
510
+ authentication_encryption_key=self.authentication_encryption_key,
511
+ authentication_encryption_key_format=self.authentication_encryption_key_format,
512
+ authentication_message_authenticator_code_key=self.authentication_message_authenticator_code_key,
513
+ authentication_network_protocol=self.authentication_network_protocol,
514
+ authentication_radius_shared_secret=self.authentication_radius_shared_secret,
515
+ authentication_second_radius_shared_secret=self.authentication_second_radius_shared_secret,
516
+ coa_port=self.coa_port,
517
+ description=self.description,
518
+ dtls_dns_name=self.dtls_dns_name,
519
+ id=self.id,
520
+ ips=self.ips,
521
+ model_name=self.model_name,
522
+ name=self.name,
523
+ network_device_groups=self.network_device_groups,
524
+ profile_name=self.profile_name,
525
+ snmp_link_trap_query=self.snmp_link_trap_query,
526
+ snmp_mac_trap_query=self.snmp_mac_trap_query,
527
+ snmp_originating_policy_service_node=self.snmp_originating_policy_service_node,
528
+ snmp_polling_interval=self.snmp_polling_interval,
529
+ snmp_ro_community=self.snmp_ro_community,
530
+ snmp_version=self.snmp_version,
531
+ software_version=self.software_version,
532
+ tacacs_connect_mode_options=self.tacacs_connect_mode_options,
533
+ tacacs_shared_secret=self.tacacs_shared_secret,
534
+ trustsec_coa_source_host=self.trustsec_coa_source_host,
535
+ trustsec_device_id=self.trustsec_device_id,
536
+ trustsec_device_password=self.trustsec_device_password,
537
+ trustsec_download_enviroment_data_every_x_seconds=self.trustsec_download_enviroment_data_every_x_seconds,
538
+ trustsec_download_peer_authorization_policy_every_x_seconds=self.trustsec_download_peer_authorization_policy_every_x_seconds,
539
+ trustsec_download_sgacl_lists_every_x_seconds=self.trustsec_download_sgacl_lists_every_x_seconds,
540
+ trustsec_enable_mode_password=self.trustsec_enable_mode_password,
541
+ trustsec_exec_mode_password=self.trustsec_exec_mode_password,
542
+ trustsec_exec_mode_username=self.trustsec_exec_mode_username,
543
+ trustsec_include_when_deploying_sgt_updates=self.trustsec_include_when_deploying_sgt_updates,
544
+ trustsec_other_sga_devices_to_trust_this_device=self.trustsec_other_sga_devices_to_trust_this_device,
545
+ trustsec_re_authentication_every_x_seconds=self.trustsec_re_authentication_every_x_seconds,
546
+ trustsec_rest_api_password=self.trustsec_rest_api_password,
547
+ trustsec_rest_api_username=self.trustsec_rest_api_username,
548
+ trustsec_send_configuration_to_device=self.trustsec_send_configuration_to_device,
549
+ trustsec_send_configuration_to_device_using=self.trustsec_send_configuration_to_device_using)
550
+
551
+
552
+ def get_device(id: Optional[str] = None,
553
+ name: Optional[str] = None,
554
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDeviceResult:
555
+ """
556
+ This data source can read the Network Device.
557
+
558
+ ## Example Usage
559
+
560
+ ```python
561
+ import pulumi
562
+ import pulumi_ise as ise
563
+
564
+ example = ise.network.get_device(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
565
+ ```
566
+
567
+
568
+ :param str id: The id of the object
569
+ :param str name: The name of the network device
570
+ """
571
+ __args__ = dict()
572
+ __args__['id'] = id
573
+ __args__['name'] = name
574
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
575
+ __ret__ = pulumi.runtime.invoke('ise:network/getDevice:getDevice', __args__, opts=opts, typ=GetDeviceResult).value
576
+
577
+ return AwaitableGetDeviceResult(
578
+ authentication_dtls_required=pulumi.get(__ret__, 'authentication_dtls_required'),
579
+ authentication_enable_key_wrap=pulumi.get(__ret__, 'authentication_enable_key_wrap'),
580
+ authentication_enable_multi_secret=pulumi.get(__ret__, 'authentication_enable_multi_secret'),
581
+ authentication_encryption_key=pulumi.get(__ret__, 'authentication_encryption_key'),
582
+ authentication_encryption_key_format=pulumi.get(__ret__, 'authentication_encryption_key_format'),
583
+ authentication_message_authenticator_code_key=pulumi.get(__ret__, 'authentication_message_authenticator_code_key'),
584
+ authentication_network_protocol=pulumi.get(__ret__, 'authentication_network_protocol'),
585
+ authentication_radius_shared_secret=pulumi.get(__ret__, 'authentication_radius_shared_secret'),
586
+ authentication_second_radius_shared_secret=pulumi.get(__ret__, 'authentication_second_radius_shared_secret'),
587
+ coa_port=pulumi.get(__ret__, 'coa_port'),
588
+ description=pulumi.get(__ret__, 'description'),
589
+ dtls_dns_name=pulumi.get(__ret__, 'dtls_dns_name'),
590
+ id=pulumi.get(__ret__, 'id'),
591
+ ips=pulumi.get(__ret__, 'ips'),
592
+ model_name=pulumi.get(__ret__, 'model_name'),
593
+ name=pulumi.get(__ret__, 'name'),
594
+ network_device_groups=pulumi.get(__ret__, 'network_device_groups'),
595
+ profile_name=pulumi.get(__ret__, 'profile_name'),
596
+ snmp_link_trap_query=pulumi.get(__ret__, 'snmp_link_trap_query'),
597
+ snmp_mac_trap_query=pulumi.get(__ret__, 'snmp_mac_trap_query'),
598
+ snmp_originating_policy_service_node=pulumi.get(__ret__, 'snmp_originating_policy_service_node'),
599
+ snmp_polling_interval=pulumi.get(__ret__, 'snmp_polling_interval'),
600
+ snmp_ro_community=pulumi.get(__ret__, 'snmp_ro_community'),
601
+ snmp_version=pulumi.get(__ret__, 'snmp_version'),
602
+ software_version=pulumi.get(__ret__, 'software_version'),
603
+ tacacs_connect_mode_options=pulumi.get(__ret__, 'tacacs_connect_mode_options'),
604
+ tacacs_shared_secret=pulumi.get(__ret__, 'tacacs_shared_secret'),
605
+ trustsec_coa_source_host=pulumi.get(__ret__, 'trustsec_coa_source_host'),
606
+ trustsec_device_id=pulumi.get(__ret__, 'trustsec_device_id'),
607
+ trustsec_device_password=pulumi.get(__ret__, 'trustsec_device_password'),
608
+ trustsec_download_enviroment_data_every_x_seconds=pulumi.get(__ret__, 'trustsec_download_enviroment_data_every_x_seconds'),
609
+ trustsec_download_peer_authorization_policy_every_x_seconds=pulumi.get(__ret__, 'trustsec_download_peer_authorization_policy_every_x_seconds'),
610
+ trustsec_download_sgacl_lists_every_x_seconds=pulumi.get(__ret__, 'trustsec_download_sgacl_lists_every_x_seconds'),
611
+ trustsec_enable_mode_password=pulumi.get(__ret__, 'trustsec_enable_mode_password'),
612
+ trustsec_exec_mode_password=pulumi.get(__ret__, 'trustsec_exec_mode_password'),
613
+ trustsec_exec_mode_username=pulumi.get(__ret__, 'trustsec_exec_mode_username'),
614
+ trustsec_include_when_deploying_sgt_updates=pulumi.get(__ret__, 'trustsec_include_when_deploying_sgt_updates'),
615
+ trustsec_other_sga_devices_to_trust_this_device=pulumi.get(__ret__, 'trustsec_other_sga_devices_to_trust_this_device'),
616
+ trustsec_re_authentication_every_x_seconds=pulumi.get(__ret__, 'trustsec_re_authentication_every_x_seconds'),
617
+ trustsec_rest_api_password=pulumi.get(__ret__, 'trustsec_rest_api_password'),
618
+ trustsec_rest_api_username=pulumi.get(__ret__, 'trustsec_rest_api_username'),
619
+ trustsec_send_configuration_to_device=pulumi.get(__ret__, 'trustsec_send_configuration_to_device'),
620
+ trustsec_send_configuration_to_device_using=pulumi.get(__ret__, 'trustsec_send_configuration_to_device_using'))
621
+
622
+
623
+ @_utilities.lift_output_func(get_device)
624
+ def get_device_output(id: Optional[pulumi.Input[Optional[str]]] = None,
625
+ name: Optional[pulumi.Input[Optional[str]]] = None,
626
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDeviceResult]:
627
+ """
628
+ This data source can read the Network Device.
629
+
630
+ ## Example Usage
631
+
632
+ ```python
633
+ import pulumi
634
+ import pulumi_ise as ise
635
+
636
+ example = ise.network.get_device(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
637
+ ```
638
+
639
+
640
+ :param str id: The id of the object
641
+ :param str name: The name of the network device
642
+ """
643
+ ...