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,2194 @@
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
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = ['DeviceArgs', 'Device']
20
+
21
+ @pulumi.input_type
22
+ class DeviceArgs:
23
+ def __init__(__self__, *,
24
+ ips: pulumi.Input[Sequence[pulumi.Input['DeviceIpArgs']]],
25
+ authentication_dtls_required: Optional[pulumi.Input[bool]] = None,
26
+ authentication_enable_key_wrap: Optional[pulumi.Input[bool]] = None,
27
+ authentication_enable_multi_secret: Optional[pulumi.Input[bool]] = None,
28
+ authentication_encryption_key: Optional[pulumi.Input[str]] = None,
29
+ authentication_encryption_key_format: Optional[pulumi.Input[str]] = None,
30
+ authentication_message_authenticator_code_key: Optional[pulumi.Input[str]] = None,
31
+ authentication_network_protocol: Optional[pulumi.Input[str]] = None,
32
+ authentication_radius_shared_secret: Optional[pulumi.Input[str]] = None,
33
+ authentication_second_radius_shared_secret: Optional[pulumi.Input[str]] = None,
34
+ coa_port: Optional[pulumi.Input[int]] = None,
35
+ description: Optional[pulumi.Input[str]] = None,
36
+ dtls_dns_name: Optional[pulumi.Input[str]] = None,
37
+ model_name: Optional[pulumi.Input[str]] = None,
38
+ name: Optional[pulumi.Input[str]] = None,
39
+ network_device_groups: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
40
+ profile_name: Optional[pulumi.Input[str]] = None,
41
+ snmp_link_trap_query: Optional[pulumi.Input[bool]] = None,
42
+ snmp_mac_trap_query: Optional[pulumi.Input[bool]] = None,
43
+ snmp_originating_policy_service_node: Optional[pulumi.Input[str]] = None,
44
+ snmp_polling_interval: Optional[pulumi.Input[int]] = None,
45
+ snmp_ro_community: Optional[pulumi.Input[str]] = None,
46
+ snmp_version: Optional[pulumi.Input[str]] = None,
47
+ software_version: Optional[pulumi.Input[str]] = None,
48
+ tacacs_connect_mode_options: Optional[pulumi.Input[str]] = None,
49
+ tacacs_shared_secret: Optional[pulumi.Input[str]] = None,
50
+ trustsec_coa_source_host: Optional[pulumi.Input[str]] = None,
51
+ trustsec_device_id: Optional[pulumi.Input[str]] = None,
52
+ trustsec_device_password: Optional[pulumi.Input[str]] = None,
53
+ trustsec_download_enviroment_data_every_x_seconds: Optional[pulumi.Input[int]] = None,
54
+ trustsec_download_peer_authorization_policy_every_x_seconds: Optional[pulumi.Input[int]] = None,
55
+ trustsec_download_sgacl_lists_every_x_seconds: Optional[pulumi.Input[int]] = None,
56
+ trustsec_enable_mode_password: Optional[pulumi.Input[str]] = None,
57
+ trustsec_exec_mode_password: Optional[pulumi.Input[str]] = None,
58
+ trustsec_exec_mode_username: Optional[pulumi.Input[str]] = None,
59
+ trustsec_include_when_deploying_sgt_updates: Optional[pulumi.Input[bool]] = None,
60
+ trustsec_other_sga_devices_to_trust_this_device: Optional[pulumi.Input[bool]] = None,
61
+ trustsec_re_authentication_every_x_seconds: Optional[pulumi.Input[int]] = None,
62
+ trustsec_rest_api_password: Optional[pulumi.Input[str]] = None,
63
+ trustsec_rest_api_username: Optional[pulumi.Input[str]] = None,
64
+ trustsec_send_configuration_to_device: Optional[pulumi.Input[bool]] = None,
65
+ trustsec_send_configuration_to_device_using: Optional[pulumi.Input[str]] = None):
66
+ """
67
+ The set of arguments for constructing a Device resource.
68
+ :param pulumi.Input[Sequence[pulumi.Input['DeviceIpArgs']]] ips: List of IP subnets
69
+ :param pulumi.Input[bool] authentication_dtls_required: Enforce use of DTLS
70
+ :param pulumi.Input[bool] authentication_enable_key_wrap: Enable key wrap
71
+ :param pulumi.Input[bool] authentication_enable_multi_secret: Enable multiple RADIUS shared secrets
72
+ :param pulumi.Input[str] authentication_encryption_key: Encryption key
73
+ :param pulumi.Input[str] authentication_encryption_key_format: Key input format - Choices: `ASCII`, `HEXADECIMAL`
74
+ :param pulumi.Input[str] authentication_message_authenticator_code_key: Message authenticator code key
75
+ :param pulumi.Input[str] authentication_network_protocol: Network protocol - Choices: `RADIUS`, `TACACS_PLUS`
76
+ :param pulumi.Input[str] authentication_radius_shared_secret: RADIUS shared secret
77
+ :param pulumi.Input[str] authentication_second_radius_shared_secret: Second RADIUS shared secret
78
+ :param pulumi.Input[int] coa_port: CoA port - Default value: `1700`
79
+ :param pulumi.Input[str] description: Description
80
+ :param pulumi.Input[str] dtls_dns_name: This value is used to verify the client identity contained in the X.509 RADIUS/DTLS client certificate
81
+ :param pulumi.Input[str] model_name: Model name
82
+ :param pulumi.Input[str] name: The name of the network device
83
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] network_device_groups: List of network device groups, e.g. `Device Type#All Device Types#ACCESS`
84
+ :param pulumi.Input[str] profile_name: Profile name - Default value: `Cisco`
85
+ :param pulumi.Input[bool] snmp_link_trap_query: SNMP link Trap Query
86
+ :param pulumi.Input[bool] snmp_mac_trap_query: SNMP MAC Trap Query
87
+ :param pulumi.Input[str] snmp_originating_policy_service_node: Originating Policy Services Node
88
+ :param pulumi.Input[int] snmp_polling_interval: SNMP Polling Interval in seconds - Range: `600`-`86400`
89
+ :param pulumi.Input[str] snmp_ro_community: SNMP RO Community
90
+ :param pulumi.Input[str] snmp_version: SNMP version - Choices: `ONE`, `TWO_C`, `THREE`
91
+ :param pulumi.Input[str] software_version: Software version
92
+ :param pulumi.Input[str] tacacs_connect_mode_options: Connect mode options - Choices: `OFF`, `ON_LEGACY`, `ON_DRAFT_COMPLIANT`
93
+ :param pulumi.Input[str] tacacs_shared_secret: Shared secret
94
+ :param pulumi.Input[str] trustsec_coa_source_host: CoA source host
95
+ :param pulumi.Input[str] trustsec_device_id: TrustSec device ID
96
+ :param pulumi.Input[str] trustsec_device_password: TrustSec device password
97
+ :param pulumi.Input[int] trustsec_download_enviroment_data_every_x_seconds: Download environment data every X seconds
98
+ :param pulumi.Input[int] trustsec_download_peer_authorization_policy_every_x_seconds: Download peer authorization policy every X seconds
99
+ :param pulumi.Input[int] trustsec_download_sgacl_lists_every_x_seconds: Download SGACL lists every X seconds
100
+ :param pulumi.Input[str] trustsec_enable_mode_password: Enable mode password
101
+ :param pulumi.Input[str] trustsec_exec_mode_password: EXEC mode password
102
+ :param pulumi.Input[str] trustsec_exec_mode_username: EXEC mode username
103
+ :param pulumi.Input[bool] trustsec_include_when_deploying_sgt_updates: Include this device when deploying Security Group Tag Mapping Updates
104
+ :param pulumi.Input[bool] trustsec_other_sga_devices_to_trust_this_device: Other TrustSec devices to trust this device
105
+ :param pulumi.Input[int] trustsec_re_authentication_every_x_seconds: Re-authenticate every X seconds
106
+ :param pulumi.Input[str] trustsec_rest_api_password: REST API password
107
+ :param pulumi.Input[str] trustsec_rest_api_username: REST API username
108
+ :param pulumi.Input[bool] trustsec_send_configuration_to_device: Send configuration to device
109
+ :param pulumi.Input[str] trustsec_send_configuration_to_device_using: Send configuration to device using - Choices: `DISABLE_ALL`, `ENABLE_USING_CLI`, `ENABLE_USING_COA`
110
+ """
111
+ pulumi.set(__self__, "ips", ips)
112
+ if authentication_dtls_required is not None:
113
+ pulumi.set(__self__, "authentication_dtls_required", authentication_dtls_required)
114
+ if authentication_enable_key_wrap is not None:
115
+ pulumi.set(__self__, "authentication_enable_key_wrap", authentication_enable_key_wrap)
116
+ if authentication_enable_multi_secret is not None:
117
+ pulumi.set(__self__, "authentication_enable_multi_secret", authentication_enable_multi_secret)
118
+ if authentication_encryption_key is not None:
119
+ pulumi.set(__self__, "authentication_encryption_key", authentication_encryption_key)
120
+ if authentication_encryption_key_format is not None:
121
+ pulumi.set(__self__, "authentication_encryption_key_format", authentication_encryption_key_format)
122
+ if authentication_message_authenticator_code_key is not None:
123
+ pulumi.set(__self__, "authentication_message_authenticator_code_key", authentication_message_authenticator_code_key)
124
+ if authentication_network_protocol is not None:
125
+ pulumi.set(__self__, "authentication_network_protocol", authentication_network_protocol)
126
+ if authentication_radius_shared_secret is not None:
127
+ pulumi.set(__self__, "authentication_radius_shared_secret", authentication_radius_shared_secret)
128
+ if authentication_second_radius_shared_secret is not None:
129
+ pulumi.set(__self__, "authentication_second_radius_shared_secret", authentication_second_radius_shared_secret)
130
+ if coa_port is not None:
131
+ pulumi.set(__self__, "coa_port", coa_port)
132
+ if description is not None:
133
+ pulumi.set(__self__, "description", description)
134
+ if dtls_dns_name is not None:
135
+ pulumi.set(__self__, "dtls_dns_name", dtls_dns_name)
136
+ if model_name is not None:
137
+ pulumi.set(__self__, "model_name", model_name)
138
+ if name is not None:
139
+ pulumi.set(__self__, "name", name)
140
+ if network_device_groups is not None:
141
+ pulumi.set(__self__, "network_device_groups", network_device_groups)
142
+ if profile_name is not None:
143
+ pulumi.set(__self__, "profile_name", profile_name)
144
+ if snmp_link_trap_query is not None:
145
+ pulumi.set(__self__, "snmp_link_trap_query", snmp_link_trap_query)
146
+ if snmp_mac_trap_query is not None:
147
+ pulumi.set(__self__, "snmp_mac_trap_query", snmp_mac_trap_query)
148
+ if snmp_originating_policy_service_node is not None:
149
+ pulumi.set(__self__, "snmp_originating_policy_service_node", snmp_originating_policy_service_node)
150
+ if snmp_polling_interval is not None:
151
+ pulumi.set(__self__, "snmp_polling_interval", snmp_polling_interval)
152
+ if snmp_ro_community is not None:
153
+ pulumi.set(__self__, "snmp_ro_community", snmp_ro_community)
154
+ if snmp_version is not None:
155
+ pulumi.set(__self__, "snmp_version", snmp_version)
156
+ if software_version is not None:
157
+ pulumi.set(__self__, "software_version", software_version)
158
+ if tacacs_connect_mode_options is not None:
159
+ pulumi.set(__self__, "tacacs_connect_mode_options", tacacs_connect_mode_options)
160
+ if tacacs_shared_secret is not None:
161
+ pulumi.set(__self__, "tacacs_shared_secret", tacacs_shared_secret)
162
+ if trustsec_coa_source_host is not None:
163
+ pulumi.set(__self__, "trustsec_coa_source_host", trustsec_coa_source_host)
164
+ if trustsec_device_id is not None:
165
+ pulumi.set(__self__, "trustsec_device_id", trustsec_device_id)
166
+ if trustsec_device_password is not None:
167
+ pulumi.set(__self__, "trustsec_device_password", trustsec_device_password)
168
+ if trustsec_download_enviroment_data_every_x_seconds is not None:
169
+ pulumi.set(__self__, "trustsec_download_enviroment_data_every_x_seconds", trustsec_download_enviroment_data_every_x_seconds)
170
+ if trustsec_download_peer_authorization_policy_every_x_seconds is not None:
171
+ pulumi.set(__self__, "trustsec_download_peer_authorization_policy_every_x_seconds", trustsec_download_peer_authorization_policy_every_x_seconds)
172
+ if trustsec_download_sgacl_lists_every_x_seconds is not None:
173
+ pulumi.set(__self__, "trustsec_download_sgacl_lists_every_x_seconds", trustsec_download_sgacl_lists_every_x_seconds)
174
+ if trustsec_enable_mode_password is not None:
175
+ pulumi.set(__self__, "trustsec_enable_mode_password", trustsec_enable_mode_password)
176
+ if trustsec_exec_mode_password is not None:
177
+ pulumi.set(__self__, "trustsec_exec_mode_password", trustsec_exec_mode_password)
178
+ if trustsec_exec_mode_username is not None:
179
+ pulumi.set(__self__, "trustsec_exec_mode_username", trustsec_exec_mode_username)
180
+ if trustsec_include_when_deploying_sgt_updates is not None:
181
+ pulumi.set(__self__, "trustsec_include_when_deploying_sgt_updates", trustsec_include_when_deploying_sgt_updates)
182
+ if trustsec_other_sga_devices_to_trust_this_device is not None:
183
+ pulumi.set(__self__, "trustsec_other_sga_devices_to_trust_this_device", trustsec_other_sga_devices_to_trust_this_device)
184
+ if trustsec_re_authentication_every_x_seconds is not None:
185
+ pulumi.set(__self__, "trustsec_re_authentication_every_x_seconds", trustsec_re_authentication_every_x_seconds)
186
+ if trustsec_rest_api_password is not None:
187
+ pulumi.set(__self__, "trustsec_rest_api_password", trustsec_rest_api_password)
188
+ if trustsec_rest_api_username is not None:
189
+ pulumi.set(__self__, "trustsec_rest_api_username", trustsec_rest_api_username)
190
+ if trustsec_send_configuration_to_device is not None:
191
+ pulumi.set(__self__, "trustsec_send_configuration_to_device", trustsec_send_configuration_to_device)
192
+ if trustsec_send_configuration_to_device_using is not None:
193
+ pulumi.set(__self__, "trustsec_send_configuration_to_device_using", trustsec_send_configuration_to_device_using)
194
+
195
+ @property
196
+ @pulumi.getter
197
+ def ips(self) -> pulumi.Input[Sequence[pulumi.Input['DeviceIpArgs']]]:
198
+ """
199
+ List of IP subnets
200
+ """
201
+ return pulumi.get(self, "ips")
202
+
203
+ @ips.setter
204
+ def ips(self, value: pulumi.Input[Sequence[pulumi.Input['DeviceIpArgs']]]):
205
+ pulumi.set(self, "ips", value)
206
+
207
+ @property
208
+ @pulumi.getter(name="authenticationDtlsRequired")
209
+ def authentication_dtls_required(self) -> Optional[pulumi.Input[bool]]:
210
+ """
211
+ Enforce use of DTLS
212
+ """
213
+ return pulumi.get(self, "authentication_dtls_required")
214
+
215
+ @authentication_dtls_required.setter
216
+ def authentication_dtls_required(self, value: Optional[pulumi.Input[bool]]):
217
+ pulumi.set(self, "authentication_dtls_required", value)
218
+
219
+ @property
220
+ @pulumi.getter(name="authenticationEnableKeyWrap")
221
+ def authentication_enable_key_wrap(self) -> Optional[pulumi.Input[bool]]:
222
+ """
223
+ Enable key wrap
224
+ """
225
+ return pulumi.get(self, "authentication_enable_key_wrap")
226
+
227
+ @authentication_enable_key_wrap.setter
228
+ def authentication_enable_key_wrap(self, value: Optional[pulumi.Input[bool]]):
229
+ pulumi.set(self, "authentication_enable_key_wrap", value)
230
+
231
+ @property
232
+ @pulumi.getter(name="authenticationEnableMultiSecret")
233
+ def authentication_enable_multi_secret(self) -> Optional[pulumi.Input[bool]]:
234
+ """
235
+ Enable multiple RADIUS shared secrets
236
+ """
237
+ return pulumi.get(self, "authentication_enable_multi_secret")
238
+
239
+ @authentication_enable_multi_secret.setter
240
+ def authentication_enable_multi_secret(self, value: Optional[pulumi.Input[bool]]):
241
+ pulumi.set(self, "authentication_enable_multi_secret", value)
242
+
243
+ @property
244
+ @pulumi.getter(name="authenticationEncryptionKey")
245
+ def authentication_encryption_key(self) -> Optional[pulumi.Input[str]]:
246
+ """
247
+ Encryption key
248
+ """
249
+ return pulumi.get(self, "authentication_encryption_key")
250
+
251
+ @authentication_encryption_key.setter
252
+ def authentication_encryption_key(self, value: Optional[pulumi.Input[str]]):
253
+ pulumi.set(self, "authentication_encryption_key", value)
254
+
255
+ @property
256
+ @pulumi.getter(name="authenticationEncryptionKeyFormat")
257
+ def authentication_encryption_key_format(self) -> Optional[pulumi.Input[str]]:
258
+ """
259
+ Key input format - Choices: `ASCII`, `HEXADECIMAL`
260
+ """
261
+ return pulumi.get(self, "authentication_encryption_key_format")
262
+
263
+ @authentication_encryption_key_format.setter
264
+ def authentication_encryption_key_format(self, value: Optional[pulumi.Input[str]]):
265
+ pulumi.set(self, "authentication_encryption_key_format", value)
266
+
267
+ @property
268
+ @pulumi.getter(name="authenticationMessageAuthenticatorCodeKey")
269
+ def authentication_message_authenticator_code_key(self) -> Optional[pulumi.Input[str]]:
270
+ """
271
+ Message authenticator code key
272
+ """
273
+ return pulumi.get(self, "authentication_message_authenticator_code_key")
274
+
275
+ @authentication_message_authenticator_code_key.setter
276
+ def authentication_message_authenticator_code_key(self, value: Optional[pulumi.Input[str]]):
277
+ pulumi.set(self, "authentication_message_authenticator_code_key", value)
278
+
279
+ @property
280
+ @pulumi.getter(name="authenticationNetworkProtocol")
281
+ def authentication_network_protocol(self) -> Optional[pulumi.Input[str]]:
282
+ """
283
+ Network protocol - Choices: `RADIUS`, `TACACS_PLUS`
284
+ """
285
+ return pulumi.get(self, "authentication_network_protocol")
286
+
287
+ @authentication_network_protocol.setter
288
+ def authentication_network_protocol(self, value: Optional[pulumi.Input[str]]):
289
+ pulumi.set(self, "authentication_network_protocol", value)
290
+
291
+ @property
292
+ @pulumi.getter(name="authenticationRadiusSharedSecret")
293
+ def authentication_radius_shared_secret(self) -> Optional[pulumi.Input[str]]:
294
+ """
295
+ RADIUS shared secret
296
+ """
297
+ return pulumi.get(self, "authentication_radius_shared_secret")
298
+
299
+ @authentication_radius_shared_secret.setter
300
+ def authentication_radius_shared_secret(self, value: Optional[pulumi.Input[str]]):
301
+ pulumi.set(self, "authentication_radius_shared_secret", value)
302
+
303
+ @property
304
+ @pulumi.getter(name="authenticationSecondRadiusSharedSecret")
305
+ def authentication_second_radius_shared_secret(self) -> Optional[pulumi.Input[str]]:
306
+ """
307
+ Second RADIUS shared secret
308
+ """
309
+ return pulumi.get(self, "authentication_second_radius_shared_secret")
310
+
311
+ @authentication_second_radius_shared_secret.setter
312
+ def authentication_second_radius_shared_secret(self, value: Optional[pulumi.Input[str]]):
313
+ pulumi.set(self, "authentication_second_radius_shared_secret", value)
314
+
315
+ @property
316
+ @pulumi.getter(name="coaPort")
317
+ def coa_port(self) -> Optional[pulumi.Input[int]]:
318
+ """
319
+ CoA port - Default value: `1700`
320
+ """
321
+ return pulumi.get(self, "coa_port")
322
+
323
+ @coa_port.setter
324
+ def coa_port(self, value: Optional[pulumi.Input[int]]):
325
+ pulumi.set(self, "coa_port", value)
326
+
327
+ @property
328
+ @pulumi.getter
329
+ def description(self) -> Optional[pulumi.Input[str]]:
330
+ """
331
+ Description
332
+ """
333
+ return pulumi.get(self, "description")
334
+
335
+ @description.setter
336
+ def description(self, value: Optional[pulumi.Input[str]]):
337
+ pulumi.set(self, "description", value)
338
+
339
+ @property
340
+ @pulumi.getter(name="dtlsDnsName")
341
+ def dtls_dns_name(self) -> Optional[pulumi.Input[str]]:
342
+ """
343
+ This value is used to verify the client identity contained in the X.509 RADIUS/DTLS client certificate
344
+ """
345
+ return pulumi.get(self, "dtls_dns_name")
346
+
347
+ @dtls_dns_name.setter
348
+ def dtls_dns_name(self, value: Optional[pulumi.Input[str]]):
349
+ pulumi.set(self, "dtls_dns_name", value)
350
+
351
+ @property
352
+ @pulumi.getter(name="modelName")
353
+ def model_name(self) -> Optional[pulumi.Input[str]]:
354
+ """
355
+ Model name
356
+ """
357
+ return pulumi.get(self, "model_name")
358
+
359
+ @model_name.setter
360
+ def model_name(self, value: Optional[pulumi.Input[str]]):
361
+ pulumi.set(self, "model_name", value)
362
+
363
+ @property
364
+ @pulumi.getter
365
+ def name(self) -> Optional[pulumi.Input[str]]:
366
+ """
367
+ The name of the network device
368
+ """
369
+ return pulumi.get(self, "name")
370
+
371
+ @name.setter
372
+ def name(self, value: Optional[pulumi.Input[str]]):
373
+ pulumi.set(self, "name", value)
374
+
375
+ @property
376
+ @pulumi.getter(name="networkDeviceGroups")
377
+ def network_device_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
378
+ """
379
+ List of network device groups, e.g. `Device Type#All Device Types#ACCESS`
380
+ """
381
+ return pulumi.get(self, "network_device_groups")
382
+
383
+ @network_device_groups.setter
384
+ def network_device_groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
385
+ pulumi.set(self, "network_device_groups", value)
386
+
387
+ @property
388
+ @pulumi.getter(name="profileName")
389
+ def profile_name(self) -> Optional[pulumi.Input[str]]:
390
+ """
391
+ Profile name - Default value: `Cisco`
392
+ """
393
+ return pulumi.get(self, "profile_name")
394
+
395
+ @profile_name.setter
396
+ def profile_name(self, value: Optional[pulumi.Input[str]]):
397
+ pulumi.set(self, "profile_name", value)
398
+
399
+ @property
400
+ @pulumi.getter(name="snmpLinkTrapQuery")
401
+ def snmp_link_trap_query(self) -> Optional[pulumi.Input[bool]]:
402
+ """
403
+ SNMP link Trap Query
404
+ """
405
+ return pulumi.get(self, "snmp_link_trap_query")
406
+
407
+ @snmp_link_trap_query.setter
408
+ def snmp_link_trap_query(self, value: Optional[pulumi.Input[bool]]):
409
+ pulumi.set(self, "snmp_link_trap_query", value)
410
+
411
+ @property
412
+ @pulumi.getter(name="snmpMacTrapQuery")
413
+ def snmp_mac_trap_query(self) -> Optional[pulumi.Input[bool]]:
414
+ """
415
+ SNMP MAC Trap Query
416
+ """
417
+ return pulumi.get(self, "snmp_mac_trap_query")
418
+
419
+ @snmp_mac_trap_query.setter
420
+ def snmp_mac_trap_query(self, value: Optional[pulumi.Input[bool]]):
421
+ pulumi.set(self, "snmp_mac_trap_query", value)
422
+
423
+ @property
424
+ @pulumi.getter(name="snmpOriginatingPolicyServiceNode")
425
+ def snmp_originating_policy_service_node(self) -> Optional[pulumi.Input[str]]:
426
+ """
427
+ Originating Policy Services Node
428
+ """
429
+ return pulumi.get(self, "snmp_originating_policy_service_node")
430
+
431
+ @snmp_originating_policy_service_node.setter
432
+ def snmp_originating_policy_service_node(self, value: Optional[pulumi.Input[str]]):
433
+ pulumi.set(self, "snmp_originating_policy_service_node", value)
434
+
435
+ @property
436
+ @pulumi.getter(name="snmpPollingInterval")
437
+ def snmp_polling_interval(self) -> Optional[pulumi.Input[int]]:
438
+ """
439
+ SNMP Polling Interval in seconds - Range: `600`-`86400`
440
+ """
441
+ return pulumi.get(self, "snmp_polling_interval")
442
+
443
+ @snmp_polling_interval.setter
444
+ def snmp_polling_interval(self, value: Optional[pulumi.Input[int]]):
445
+ pulumi.set(self, "snmp_polling_interval", value)
446
+
447
+ @property
448
+ @pulumi.getter(name="snmpRoCommunity")
449
+ def snmp_ro_community(self) -> Optional[pulumi.Input[str]]:
450
+ """
451
+ SNMP RO Community
452
+ """
453
+ return pulumi.get(self, "snmp_ro_community")
454
+
455
+ @snmp_ro_community.setter
456
+ def snmp_ro_community(self, value: Optional[pulumi.Input[str]]):
457
+ pulumi.set(self, "snmp_ro_community", value)
458
+
459
+ @property
460
+ @pulumi.getter(name="snmpVersion")
461
+ def snmp_version(self) -> Optional[pulumi.Input[str]]:
462
+ """
463
+ SNMP version - Choices: `ONE`, `TWO_C`, `THREE`
464
+ """
465
+ return pulumi.get(self, "snmp_version")
466
+
467
+ @snmp_version.setter
468
+ def snmp_version(self, value: Optional[pulumi.Input[str]]):
469
+ pulumi.set(self, "snmp_version", value)
470
+
471
+ @property
472
+ @pulumi.getter(name="softwareVersion")
473
+ def software_version(self) -> Optional[pulumi.Input[str]]:
474
+ """
475
+ Software version
476
+ """
477
+ return pulumi.get(self, "software_version")
478
+
479
+ @software_version.setter
480
+ def software_version(self, value: Optional[pulumi.Input[str]]):
481
+ pulumi.set(self, "software_version", value)
482
+
483
+ @property
484
+ @pulumi.getter(name="tacacsConnectModeOptions")
485
+ def tacacs_connect_mode_options(self) -> Optional[pulumi.Input[str]]:
486
+ """
487
+ Connect mode options - Choices: `OFF`, `ON_LEGACY`, `ON_DRAFT_COMPLIANT`
488
+ """
489
+ return pulumi.get(self, "tacacs_connect_mode_options")
490
+
491
+ @tacacs_connect_mode_options.setter
492
+ def tacacs_connect_mode_options(self, value: Optional[pulumi.Input[str]]):
493
+ pulumi.set(self, "tacacs_connect_mode_options", value)
494
+
495
+ @property
496
+ @pulumi.getter(name="tacacsSharedSecret")
497
+ def tacacs_shared_secret(self) -> Optional[pulumi.Input[str]]:
498
+ """
499
+ Shared secret
500
+ """
501
+ return pulumi.get(self, "tacacs_shared_secret")
502
+
503
+ @tacacs_shared_secret.setter
504
+ def tacacs_shared_secret(self, value: Optional[pulumi.Input[str]]):
505
+ pulumi.set(self, "tacacs_shared_secret", value)
506
+
507
+ @property
508
+ @pulumi.getter(name="trustsecCoaSourceHost")
509
+ def trustsec_coa_source_host(self) -> Optional[pulumi.Input[str]]:
510
+ """
511
+ CoA source host
512
+ """
513
+ return pulumi.get(self, "trustsec_coa_source_host")
514
+
515
+ @trustsec_coa_source_host.setter
516
+ def trustsec_coa_source_host(self, value: Optional[pulumi.Input[str]]):
517
+ pulumi.set(self, "trustsec_coa_source_host", value)
518
+
519
+ @property
520
+ @pulumi.getter(name="trustsecDeviceId")
521
+ def trustsec_device_id(self) -> Optional[pulumi.Input[str]]:
522
+ """
523
+ TrustSec device ID
524
+ """
525
+ return pulumi.get(self, "trustsec_device_id")
526
+
527
+ @trustsec_device_id.setter
528
+ def trustsec_device_id(self, value: Optional[pulumi.Input[str]]):
529
+ pulumi.set(self, "trustsec_device_id", value)
530
+
531
+ @property
532
+ @pulumi.getter(name="trustsecDevicePassword")
533
+ def trustsec_device_password(self) -> Optional[pulumi.Input[str]]:
534
+ """
535
+ TrustSec device password
536
+ """
537
+ return pulumi.get(self, "trustsec_device_password")
538
+
539
+ @trustsec_device_password.setter
540
+ def trustsec_device_password(self, value: Optional[pulumi.Input[str]]):
541
+ pulumi.set(self, "trustsec_device_password", value)
542
+
543
+ @property
544
+ @pulumi.getter(name="trustsecDownloadEnviromentDataEveryXSeconds")
545
+ def trustsec_download_enviroment_data_every_x_seconds(self) -> Optional[pulumi.Input[int]]:
546
+ """
547
+ Download environment data every X seconds
548
+ """
549
+ return pulumi.get(self, "trustsec_download_enviroment_data_every_x_seconds")
550
+
551
+ @trustsec_download_enviroment_data_every_x_seconds.setter
552
+ def trustsec_download_enviroment_data_every_x_seconds(self, value: Optional[pulumi.Input[int]]):
553
+ pulumi.set(self, "trustsec_download_enviroment_data_every_x_seconds", value)
554
+
555
+ @property
556
+ @pulumi.getter(name="trustsecDownloadPeerAuthorizationPolicyEveryXSeconds")
557
+ def trustsec_download_peer_authorization_policy_every_x_seconds(self) -> Optional[pulumi.Input[int]]:
558
+ """
559
+ Download peer authorization policy every X seconds
560
+ """
561
+ return pulumi.get(self, "trustsec_download_peer_authorization_policy_every_x_seconds")
562
+
563
+ @trustsec_download_peer_authorization_policy_every_x_seconds.setter
564
+ def trustsec_download_peer_authorization_policy_every_x_seconds(self, value: Optional[pulumi.Input[int]]):
565
+ pulumi.set(self, "trustsec_download_peer_authorization_policy_every_x_seconds", value)
566
+
567
+ @property
568
+ @pulumi.getter(name="trustsecDownloadSgaclListsEveryXSeconds")
569
+ def trustsec_download_sgacl_lists_every_x_seconds(self) -> Optional[pulumi.Input[int]]:
570
+ """
571
+ Download SGACL lists every X seconds
572
+ """
573
+ return pulumi.get(self, "trustsec_download_sgacl_lists_every_x_seconds")
574
+
575
+ @trustsec_download_sgacl_lists_every_x_seconds.setter
576
+ def trustsec_download_sgacl_lists_every_x_seconds(self, value: Optional[pulumi.Input[int]]):
577
+ pulumi.set(self, "trustsec_download_sgacl_lists_every_x_seconds", value)
578
+
579
+ @property
580
+ @pulumi.getter(name="trustsecEnableModePassword")
581
+ def trustsec_enable_mode_password(self) -> Optional[pulumi.Input[str]]:
582
+ """
583
+ Enable mode password
584
+ """
585
+ return pulumi.get(self, "trustsec_enable_mode_password")
586
+
587
+ @trustsec_enable_mode_password.setter
588
+ def trustsec_enable_mode_password(self, value: Optional[pulumi.Input[str]]):
589
+ pulumi.set(self, "trustsec_enable_mode_password", value)
590
+
591
+ @property
592
+ @pulumi.getter(name="trustsecExecModePassword")
593
+ def trustsec_exec_mode_password(self) -> Optional[pulumi.Input[str]]:
594
+ """
595
+ EXEC mode password
596
+ """
597
+ return pulumi.get(self, "trustsec_exec_mode_password")
598
+
599
+ @trustsec_exec_mode_password.setter
600
+ def trustsec_exec_mode_password(self, value: Optional[pulumi.Input[str]]):
601
+ pulumi.set(self, "trustsec_exec_mode_password", value)
602
+
603
+ @property
604
+ @pulumi.getter(name="trustsecExecModeUsername")
605
+ def trustsec_exec_mode_username(self) -> Optional[pulumi.Input[str]]:
606
+ """
607
+ EXEC mode username
608
+ """
609
+ return pulumi.get(self, "trustsec_exec_mode_username")
610
+
611
+ @trustsec_exec_mode_username.setter
612
+ def trustsec_exec_mode_username(self, value: Optional[pulumi.Input[str]]):
613
+ pulumi.set(self, "trustsec_exec_mode_username", value)
614
+
615
+ @property
616
+ @pulumi.getter(name="trustsecIncludeWhenDeployingSgtUpdates")
617
+ def trustsec_include_when_deploying_sgt_updates(self) -> Optional[pulumi.Input[bool]]:
618
+ """
619
+ Include this device when deploying Security Group Tag Mapping Updates
620
+ """
621
+ return pulumi.get(self, "trustsec_include_when_deploying_sgt_updates")
622
+
623
+ @trustsec_include_when_deploying_sgt_updates.setter
624
+ def trustsec_include_when_deploying_sgt_updates(self, value: Optional[pulumi.Input[bool]]):
625
+ pulumi.set(self, "trustsec_include_when_deploying_sgt_updates", value)
626
+
627
+ @property
628
+ @pulumi.getter(name="trustsecOtherSgaDevicesToTrustThisDevice")
629
+ def trustsec_other_sga_devices_to_trust_this_device(self) -> Optional[pulumi.Input[bool]]:
630
+ """
631
+ Other TrustSec devices to trust this device
632
+ """
633
+ return pulumi.get(self, "trustsec_other_sga_devices_to_trust_this_device")
634
+
635
+ @trustsec_other_sga_devices_to_trust_this_device.setter
636
+ def trustsec_other_sga_devices_to_trust_this_device(self, value: Optional[pulumi.Input[bool]]):
637
+ pulumi.set(self, "trustsec_other_sga_devices_to_trust_this_device", value)
638
+
639
+ @property
640
+ @pulumi.getter(name="trustsecReAuthenticationEveryXSeconds")
641
+ def trustsec_re_authentication_every_x_seconds(self) -> Optional[pulumi.Input[int]]:
642
+ """
643
+ Re-authenticate every X seconds
644
+ """
645
+ return pulumi.get(self, "trustsec_re_authentication_every_x_seconds")
646
+
647
+ @trustsec_re_authentication_every_x_seconds.setter
648
+ def trustsec_re_authentication_every_x_seconds(self, value: Optional[pulumi.Input[int]]):
649
+ pulumi.set(self, "trustsec_re_authentication_every_x_seconds", value)
650
+
651
+ @property
652
+ @pulumi.getter(name="trustsecRestApiPassword")
653
+ def trustsec_rest_api_password(self) -> Optional[pulumi.Input[str]]:
654
+ """
655
+ REST API password
656
+ """
657
+ return pulumi.get(self, "trustsec_rest_api_password")
658
+
659
+ @trustsec_rest_api_password.setter
660
+ def trustsec_rest_api_password(self, value: Optional[pulumi.Input[str]]):
661
+ pulumi.set(self, "trustsec_rest_api_password", value)
662
+
663
+ @property
664
+ @pulumi.getter(name="trustsecRestApiUsername")
665
+ def trustsec_rest_api_username(self) -> Optional[pulumi.Input[str]]:
666
+ """
667
+ REST API username
668
+ """
669
+ return pulumi.get(self, "trustsec_rest_api_username")
670
+
671
+ @trustsec_rest_api_username.setter
672
+ def trustsec_rest_api_username(self, value: Optional[pulumi.Input[str]]):
673
+ pulumi.set(self, "trustsec_rest_api_username", value)
674
+
675
+ @property
676
+ @pulumi.getter(name="trustsecSendConfigurationToDevice")
677
+ def trustsec_send_configuration_to_device(self) -> Optional[pulumi.Input[bool]]:
678
+ """
679
+ Send configuration to device
680
+ """
681
+ return pulumi.get(self, "trustsec_send_configuration_to_device")
682
+
683
+ @trustsec_send_configuration_to_device.setter
684
+ def trustsec_send_configuration_to_device(self, value: Optional[pulumi.Input[bool]]):
685
+ pulumi.set(self, "trustsec_send_configuration_to_device", value)
686
+
687
+ @property
688
+ @pulumi.getter(name="trustsecSendConfigurationToDeviceUsing")
689
+ def trustsec_send_configuration_to_device_using(self) -> Optional[pulumi.Input[str]]:
690
+ """
691
+ Send configuration to device using - Choices: `DISABLE_ALL`, `ENABLE_USING_CLI`, `ENABLE_USING_COA`
692
+ """
693
+ return pulumi.get(self, "trustsec_send_configuration_to_device_using")
694
+
695
+ @trustsec_send_configuration_to_device_using.setter
696
+ def trustsec_send_configuration_to_device_using(self, value: Optional[pulumi.Input[str]]):
697
+ pulumi.set(self, "trustsec_send_configuration_to_device_using", value)
698
+
699
+
700
+ @pulumi.input_type
701
+ class _DeviceState:
702
+ def __init__(__self__, *,
703
+ authentication_dtls_required: Optional[pulumi.Input[bool]] = None,
704
+ authentication_enable_key_wrap: Optional[pulumi.Input[bool]] = None,
705
+ authentication_enable_multi_secret: Optional[pulumi.Input[bool]] = None,
706
+ authentication_encryption_key: Optional[pulumi.Input[str]] = None,
707
+ authentication_encryption_key_format: Optional[pulumi.Input[str]] = None,
708
+ authentication_message_authenticator_code_key: Optional[pulumi.Input[str]] = None,
709
+ authentication_network_protocol: Optional[pulumi.Input[str]] = None,
710
+ authentication_radius_shared_secret: Optional[pulumi.Input[str]] = None,
711
+ authentication_second_radius_shared_secret: Optional[pulumi.Input[str]] = None,
712
+ coa_port: Optional[pulumi.Input[int]] = None,
713
+ description: Optional[pulumi.Input[str]] = None,
714
+ dtls_dns_name: Optional[pulumi.Input[str]] = None,
715
+ ips: Optional[pulumi.Input[Sequence[pulumi.Input['DeviceIpArgs']]]] = None,
716
+ model_name: Optional[pulumi.Input[str]] = None,
717
+ name: Optional[pulumi.Input[str]] = None,
718
+ network_device_groups: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
719
+ profile_name: Optional[pulumi.Input[str]] = None,
720
+ snmp_link_trap_query: Optional[pulumi.Input[bool]] = None,
721
+ snmp_mac_trap_query: Optional[pulumi.Input[bool]] = None,
722
+ snmp_originating_policy_service_node: Optional[pulumi.Input[str]] = None,
723
+ snmp_polling_interval: Optional[pulumi.Input[int]] = None,
724
+ snmp_ro_community: Optional[pulumi.Input[str]] = None,
725
+ snmp_version: Optional[pulumi.Input[str]] = None,
726
+ software_version: Optional[pulumi.Input[str]] = None,
727
+ tacacs_connect_mode_options: Optional[pulumi.Input[str]] = None,
728
+ tacacs_shared_secret: Optional[pulumi.Input[str]] = None,
729
+ trustsec_coa_source_host: Optional[pulumi.Input[str]] = None,
730
+ trustsec_device_id: Optional[pulumi.Input[str]] = None,
731
+ trustsec_device_password: Optional[pulumi.Input[str]] = None,
732
+ trustsec_download_enviroment_data_every_x_seconds: Optional[pulumi.Input[int]] = None,
733
+ trustsec_download_peer_authorization_policy_every_x_seconds: Optional[pulumi.Input[int]] = None,
734
+ trustsec_download_sgacl_lists_every_x_seconds: Optional[pulumi.Input[int]] = None,
735
+ trustsec_enable_mode_password: Optional[pulumi.Input[str]] = None,
736
+ trustsec_exec_mode_password: Optional[pulumi.Input[str]] = None,
737
+ trustsec_exec_mode_username: Optional[pulumi.Input[str]] = None,
738
+ trustsec_include_when_deploying_sgt_updates: Optional[pulumi.Input[bool]] = None,
739
+ trustsec_other_sga_devices_to_trust_this_device: Optional[pulumi.Input[bool]] = None,
740
+ trustsec_re_authentication_every_x_seconds: Optional[pulumi.Input[int]] = None,
741
+ trustsec_rest_api_password: Optional[pulumi.Input[str]] = None,
742
+ trustsec_rest_api_username: Optional[pulumi.Input[str]] = None,
743
+ trustsec_send_configuration_to_device: Optional[pulumi.Input[bool]] = None,
744
+ trustsec_send_configuration_to_device_using: Optional[pulumi.Input[str]] = None):
745
+ """
746
+ Input properties used for looking up and filtering Device resources.
747
+ :param pulumi.Input[bool] authentication_dtls_required: Enforce use of DTLS
748
+ :param pulumi.Input[bool] authentication_enable_key_wrap: Enable key wrap
749
+ :param pulumi.Input[bool] authentication_enable_multi_secret: Enable multiple RADIUS shared secrets
750
+ :param pulumi.Input[str] authentication_encryption_key: Encryption key
751
+ :param pulumi.Input[str] authentication_encryption_key_format: Key input format - Choices: `ASCII`, `HEXADECIMAL`
752
+ :param pulumi.Input[str] authentication_message_authenticator_code_key: Message authenticator code key
753
+ :param pulumi.Input[str] authentication_network_protocol: Network protocol - Choices: `RADIUS`, `TACACS_PLUS`
754
+ :param pulumi.Input[str] authentication_radius_shared_secret: RADIUS shared secret
755
+ :param pulumi.Input[str] authentication_second_radius_shared_secret: Second RADIUS shared secret
756
+ :param pulumi.Input[int] coa_port: CoA port - Default value: `1700`
757
+ :param pulumi.Input[str] description: Description
758
+ :param pulumi.Input[str] dtls_dns_name: This value is used to verify the client identity contained in the X.509 RADIUS/DTLS client certificate
759
+ :param pulumi.Input[Sequence[pulumi.Input['DeviceIpArgs']]] ips: List of IP subnets
760
+ :param pulumi.Input[str] model_name: Model name
761
+ :param pulumi.Input[str] name: The name of the network device
762
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] network_device_groups: List of network device groups, e.g. `Device Type#All Device Types#ACCESS`
763
+ :param pulumi.Input[str] profile_name: Profile name - Default value: `Cisco`
764
+ :param pulumi.Input[bool] snmp_link_trap_query: SNMP link Trap Query
765
+ :param pulumi.Input[bool] snmp_mac_trap_query: SNMP MAC Trap Query
766
+ :param pulumi.Input[str] snmp_originating_policy_service_node: Originating Policy Services Node
767
+ :param pulumi.Input[int] snmp_polling_interval: SNMP Polling Interval in seconds - Range: `600`-`86400`
768
+ :param pulumi.Input[str] snmp_ro_community: SNMP RO Community
769
+ :param pulumi.Input[str] snmp_version: SNMP version - Choices: `ONE`, `TWO_C`, `THREE`
770
+ :param pulumi.Input[str] software_version: Software version
771
+ :param pulumi.Input[str] tacacs_connect_mode_options: Connect mode options - Choices: `OFF`, `ON_LEGACY`, `ON_DRAFT_COMPLIANT`
772
+ :param pulumi.Input[str] tacacs_shared_secret: Shared secret
773
+ :param pulumi.Input[str] trustsec_coa_source_host: CoA source host
774
+ :param pulumi.Input[str] trustsec_device_id: TrustSec device ID
775
+ :param pulumi.Input[str] trustsec_device_password: TrustSec device password
776
+ :param pulumi.Input[int] trustsec_download_enviroment_data_every_x_seconds: Download environment data every X seconds
777
+ :param pulumi.Input[int] trustsec_download_peer_authorization_policy_every_x_seconds: Download peer authorization policy every X seconds
778
+ :param pulumi.Input[int] trustsec_download_sgacl_lists_every_x_seconds: Download SGACL lists every X seconds
779
+ :param pulumi.Input[str] trustsec_enable_mode_password: Enable mode password
780
+ :param pulumi.Input[str] trustsec_exec_mode_password: EXEC mode password
781
+ :param pulumi.Input[str] trustsec_exec_mode_username: EXEC mode username
782
+ :param pulumi.Input[bool] trustsec_include_when_deploying_sgt_updates: Include this device when deploying Security Group Tag Mapping Updates
783
+ :param pulumi.Input[bool] trustsec_other_sga_devices_to_trust_this_device: Other TrustSec devices to trust this device
784
+ :param pulumi.Input[int] trustsec_re_authentication_every_x_seconds: Re-authenticate every X seconds
785
+ :param pulumi.Input[str] trustsec_rest_api_password: REST API password
786
+ :param pulumi.Input[str] trustsec_rest_api_username: REST API username
787
+ :param pulumi.Input[bool] trustsec_send_configuration_to_device: Send configuration to device
788
+ :param pulumi.Input[str] trustsec_send_configuration_to_device_using: Send configuration to device using - Choices: `DISABLE_ALL`, `ENABLE_USING_CLI`, `ENABLE_USING_COA`
789
+ """
790
+ if authentication_dtls_required is not None:
791
+ pulumi.set(__self__, "authentication_dtls_required", authentication_dtls_required)
792
+ if authentication_enable_key_wrap is not None:
793
+ pulumi.set(__self__, "authentication_enable_key_wrap", authentication_enable_key_wrap)
794
+ if authentication_enable_multi_secret is not None:
795
+ pulumi.set(__self__, "authentication_enable_multi_secret", authentication_enable_multi_secret)
796
+ if authentication_encryption_key is not None:
797
+ pulumi.set(__self__, "authentication_encryption_key", authentication_encryption_key)
798
+ if authentication_encryption_key_format is not None:
799
+ pulumi.set(__self__, "authentication_encryption_key_format", authentication_encryption_key_format)
800
+ if authentication_message_authenticator_code_key is not None:
801
+ pulumi.set(__self__, "authentication_message_authenticator_code_key", authentication_message_authenticator_code_key)
802
+ if authentication_network_protocol is not None:
803
+ pulumi.set(__self__, "authentication_network_protocol", authentication_network_protocol)
804
+ if authentication_radius_shared_secret is not None:
805
+ pulumi.set(__self__, "authentication_radius_shared_secret", authentication_radius_shared_secret)
806
+ if authentication_second_radius_shared_secret is not None:
807
+ pulumi.set(__self__, "authentication_second_radius_shared_secret", authentication_second_radius_shared_secret)
808
+ if coa_port is not None:
809
+ pulumi.set(__self__, "coa_port", coa_port)
810
+ if description is not None:
811
+ pulumi.set(__self__, "description", description)
812
+ if dtls_dns_name is not None:
813
+ pulumi.set(__self__, "dtls_dns_name", dtls_dns_name)
814
+ if ips is not None:
815
+ pulumi.set(__self__, "ips", ips)
816
+ if model_name is not None:
817
+ pulumi.set(__self__, "model_name", model_name)
818
+ if name is not None:
819
+ pulumi.set(__self__, "name", name)
820
+ if network_device_groups is not None:
821
+ pulumi.set(__self__, "network_device_groups", network_device_groups)
822
+ if profile_name is not None:
823
+ pulumi.set(__self__, "profile_name", profile_name)
824
+ if snmp_link_trap_query is not None:
825
+ pulumi.set(__self__, "snmp_link_trap_query", snmp_link_trap_query)
826
+ if snmp_mac_trap_query is not None:
827
+ pulumi.set(__self__, "snmp_mac_trap_query", snmp_mac_trap_query)
828
+ if snmp_originating_policy_service_node is not None:
829
+ pulumi.set(__self__, "snmp_originating_policy_service_node", snmp_originating_policy_service_node)
830
+ if snmp_polling_interval is not None:
831
+ pulumi.set(__self__, "snmp_polling_interval", snmp_polling_interval)
832
+ if snmp_ro_community is not None:
833
+ pulumi.set(__self__, "snmp_ro_community", snmp_ro_community)
834
+ if snmp_version is not None:
835
+ pulumi.set(__self__, "snmp_version", snmp_version)
836
+ if software_version is not None:
837
+ pulumi.set(__self__, "software_version", software_version)
838
+ if tacacs_connect_mode_options is not None:
839
+ pulumi.set(__self__, "tacacs_connect_mode_options", tacacs_connect_mode_options)
840
+ if tacacs_shared_secret is not None:
841
+ pulumi.set(__self__, "tacacs_shared_secret", tacacs_shared_secret)
842
+ if trustsec_coa_source_host is not None:
843
+ pulumi.set(__self__, "trustsec_coa_source_host", trustsec_coa_source_host)
844
+ if trustsec_device_id is not None:
845
+ pulumi.set(__self__, "trustsec_device_id", trustsec_device_id)
846
+ if trustsec_device_password is not None:
847
+ pulumi.set(__self__, "trustsec_device_password", trustsec_device_password)
848
+ if trustsec_download_enviroment_data_every_x_seconds is not None:
849
+ pulumi.set(__self__, "trustsec_download_enviroment_data_every_x_seconds", trustsec_download_enviroment_data_every_x_seconds)
850
+ if trustsec_download_peer_authorization_policy_every_x_seconds is not None:
851
+ pulumi.set(__self__, "trustsec_download_peer_authorization_policy_every_x_seconds", trustsec_download_peer_authorization_policy_every_x_seconds)
852
+ if trustsec_download_sgacl_lists_every_x_seconds is not None:
853
+ pulumi.set(__self__, "trustsec_download_sgacl_lists_every_x_seconds", trustsec_download_sgacl_lists_every_x_seconds)
854
+ if trustsec_enable_mode_password is not None:
855
+ pulumi.set(__self__, "trustsec_enable_mode_password", trustsec_enable_mode_password)
856
+ if trustsec_exec_mode_password is not None:
857
+ pulumi.set(__self__, "trustsec_exec_mode_password", trustsec_exec_mode_password)
858
+ if trustsec_exec_mode_username is not None:
859
+ pulumi.set(__self__, "trustsec_exec_mode_username", trustsec_exec_mode_username)
860
+ if trustsec_include_when_deploying_sgt_updates is not None:
861
+ pulumi.set(__self__, "trustsec_include_when_deploying_sgt_updates", trustsec_include_when_deploying_sgt_updates)
862
+ if trustsec_other_sga_devices_to_trust_this_device is not None:
863
+ pulumi.set(__self__, "trustsec_other_sga_devices_to_trust_this_device", trustsec_other_sga_devices_to_trust_this_device)
864
+ if trustsec_re_authentication_every_x_seconds is not None:
865
+ pulumi.set(__self__, "trustsec_re_authentication_every_x_seconds", trustsec_re_authentication_every_x_seconds)
866
+ if trustsec_rest_api_password is not None:
867
+ pulumi.set(__self__, "trustsec_rest_api_password", trustsec_rest_api_password)
868
+ if trustsec_rest_api_username is not None:
869
+ pulumi.set(__self__, "trustsec_rest_api_username", trustsec_rest_api_username)
870
+ if trustsec_send_configuration_to_device is not None:
871
+ pulumi.set(__self__, "trustsec_send_configuration_to_device", trustsec_send_configuration_to_device)
872
+ if trustsec_send_configuration_to_device_using is not None:
873
+ pulumi.set(__self__, "trustsec_send_configuration_to_device_using", trustsec_send_configuration_to_device_using)
874
+
875
+ @property
876
+ @pulumi.getter(name="authenticationDtlsRequired")
877
+ def authentication_dtls_required(self) -> Optional[pulumi.Input[bool]]:
878
+ """
879
+ Enforce use of DTLS
880
+ """
881
+ return pulumi.get(self, "authentication_dtls_required")
882
+
883
+ @authentication_dtls_required.setter
884
+ def authentication_dtls_required(self, value: Optional[pulumi.Input[bool]]):
885
+ pulumi.set(self, "authentication_dtls_required", value)
886
+
887
+ @property
888
+ @pulumi.getter(name="authenticationEnableKeyWrap")
889
+ def authentication_enable_key_wrap(self) -> Optional[pulumi.Input[bool]]:
890
+ """
891
+ Enable key wrap
892
+ """
893
+ return pulumi.get(self, "authentication_enable_key_wrap")
894
+
895
+ @authentication_enable_key_wrap.setter
896
+ def authentication_enable_key_wrap(self, value: Optional[pulumi.Input[bool]]):
897
+ pulumi.set(self, "authentication_enable_key_wrap", value)
898
+
899
+ @property
900
+ @pulumi.getter(name="authenticationEnableMultiSecret")
901
+ def authentication_enable_multi_secret(self) -> Optional[pulumi.Input[bool]]:
902
+ """
903
+ Enable multiple RADIUS shared secrets
904
+ """
905
+ return pulumi.get(self, "authentication_enable_multi_secret")
906
+
907
+ @authentication_enable_multi_secret.setter
908
+ def authentication_enable_multi_secret(self, value: Optional[pulumi.Input[bool]]):
909
+ pulumi.set(self, "authentication_enable_multi_secret", value)
910
+
911
+ @property
912
+ @pulumi.getter(name="authenticationEncryptionKey")
913
+ def authentication_encryption_key(self) -> Optional[pulumi.Input[str]]:
914
+ """
915
+ Encryption key
916
+ """
917
+ return pulumi.get(self, "authentication_encryption_key")
918
+
919
+ @authentication_encryption_key.setter
920
+ def authentication_encryption_key(self, value: Optional[pulumi.Input[str]]):
921
+ pulumi.set(self, "authentication_encryption_key", value)
922
+
923
+ @property
924
+ @pulumi.getter(name="authenticationEncryptionKeyFormat")
925
+ def authentication_encryption_key_format(self) -> Optional[pulumi.Input[str]]:
926
+ """
927
+ Key input format - Choices: `ASCII`, `HEXADECIMAL`
928
+ """
929
+ return pulumi.get(self, "authentication_encryption_key_format")
930
+
931
+ @authentication_encryption_key_format.setter
932
+ def authentication_encryption_key_format(self, value: Optional[pulumi.Input[str]]):
933
+ pulumi.set(self, "authentication_encryption_key_format", value)
934
+
935
+ @property
936
+ @pulumi.getter(name="authenticationMessageAuthenticatorCodeKey")
937
+ def authentication_message_authenticator_code_key(self) -> Optional[pulumi.Input[str]]:
938
+ """
939
+ Message authenticator code key
940
+ """
941
+ return pulumi.get(self, "authentication_message_authenticator_code_key")
942
+
943
+ @authentication_message_authenticator_code_key.setter
944
+ def authentication_message_authenticator_code_key(self, value: Optional[pulumi.Input[str]]):
945
+ pulumi.set(self, "authentication_message_authenticator_code_key", value)
946
+
947
+ @property
948
+ @pulumi.getter(name="authenticationNetworkProtocol")
949
+ def authentication_network_protocol(self) -> Optional[pulumi.Input[str]]:
950
+ """
951
+ Network protocol - Choices: `RADIUS`, `TACACS_PLUS`
952
+ """
953
+ return pulumi.get(self, "authentication_network_protocol")
954
+
955
+ @authentication_network_protocol.setter
956
+ def authentication_network_protocol(self, value: Optional[pulumi.Input[str]]):
957
+ pulumi.set(self, "authentication_network_protocol", value)
958
+
959
+ @property
960
+ @pulumi.getter(name="authenticationRadiusSharedSecret")
961
+ def authentication_radius_shared_secret(self) -> Optional[pulumi.Input[str]]:
962
+ """
963
+ RADIUS shared secret
964
+ """
965
+ return pulumi.get(self, "authentication_radius_shared_secret")
966
+
967
+ @authentication_radius_shared_secret.setter
968
+ def authentication_radius_shared_secret(self, value: Optional[pulumi.Input[str]]):
969
+ pulumi.set(self, "authentication_radius_shared_secret", value)
970
+
971
+ @property
972
+ @pulumi.getter(name="authenticationSecondRadiusSharedSecret")
973
+ def authentication_second_radius_shared_secret(self) -> Optional[pulumi.Input[str]]:
974
+ """
975
+ Second RADIUS shared secret
976
+ """
977
+ return pulumi.get(self, "authentication_second_radius_shared_secret")
978
+
979
+ @authentication_second_radius_shared_secret.setter
980
+ def authentication_second_radius_shared_secret(self, value: Optional[pulumi.Input[str]]):
981
+ pulumi.set(self, "authentication_second_radius_shared_secret", value)
982
+
983
+ @property
984
+ @pulumi.getter(name="coaPort")
985
+ def coa_port(self) -> Optional[pulumi.Input[int]]:
986
+ """
987
+ CoA port - Default value: `1700`
988
+ """
989
+ return pulumi.get(self, "coa_port")
990
+
991
+ @coa_port.setter
992
+ def coa_port(self, value: Optional[pulumi.Input[int]]):
993
+ pulumi.set(self, "coa_port", value)
994
+
995
+ @property
996
+ @pulumi.getter
997
+ def description(self) -> Optional[pulumi.Input[str]]:
998
+ """
999
+ Description
1000
+ """
1001
+ return pulumi.get(self, "description")
1002
+
1003
+ @description.setter
1004
+ def description(self, value: Optional[pulumi.Input[str]]):
1005
+ pulumi.set(self, "description", value)
1006
+
1007
+ @property
1008
+ @pulumi.getter(name="dtlsDnsName")
1009
+ def dtls_dns_name(self) -> Optional[pulumi.Input[str]]:
1010
+ """
1011
+ This value is used to verify the client identity contained in the X.509 RADIUS/DTLS client certificate
1012
+ """
1013
+ return pulumi.get(self, "dtls_dns_name")
1014
+
1015
+ @dtls_dns_name.setter
1016
+ def dtls_dns_name(self, value: Optional[pulumi.Input[str]]):
1017
+ pulumi.set(self, "dtls_dns_name", value)
1018
+
1019
+ @property
1020
+ @pulumi.getter
1021
+ def ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeviceIpArgs']]]]:
1022
+ """
1023
+ List of IP subnets
1024
+ """
1025
+ return pulumi.get(self, "ips")
1026
+
1027
+ @ips.setter
1028
+ def ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DeviceIpArgs']]]]):
1029
+ pulumi.set(self, "ips", value)
1030
+
1031
+ @property
1032
+ @pulumi.getter(name="modelName")
1033
+ def model_name(self) -> Optional[pulumi.Input[str]]:
1034
+ """
1035
+ Model name
1036
+ """
1037
+ return pulumi.get(self, "model_name")
1038
+
1039
+ @model_name.setter
1040
+ def model_name(self, value: Optional[pulumi.Input[str]]):
1041
+ pulumi.set(self, "model_name", value)
1042
+
1043
+ @property
1044
+ @pulumi.getter
1045
+ def name(self) -> Optional[pulumi.Input[str]]:
1046
+ """
1047
+ The name of the network device
1048
+ """
1049
+ return pulumi.get(self, "name")
1050
+
1051
+ @name.setter
1052
+ def name(self, value: Optional[pulumi.Input[str]]):
1053
+ pulumi.set(self, "name", value)
1054
+
1055
+ @property
1056
+ @pulumi.getter(name="networkDeviceGroups")
1057
+ def network_device_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1058
+ """
1059
+ List of network device groups, e.g. `Device Type#All Device Types#ACCESS`
1060
+ """
1061
+ return pulumi.get(self, "network_device_groups")
1062
+
1063
+ @network_device_groups.setter
1064
+ def network_device_groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1065
+ pulumi.set(self, "network_device_groups", value)
1066
+
1067
+ @property
1068
+ @pulumi.getter(name="profileName")
1069
+ def profile_name(self) -> Optional[pulumi.Input[str]]:
1070
+ """
1071
+ Profile name - Default value: `Cisco`
1072
+ """
1073
+ return pulumi.get(self, "profile_name")
1074
+
1075
+ @profile_name.setter
1076
+ def profile_name(self, value: Optional[pulumi.Input[str]]):
1077
+ pulumi.set(self, "profile_name", value)
1078
+
1079
+ @property
1080
+ @pulumi.getter(name="snmpLinkTrapQuery")
1081
+ def snmp_link_trap_query(self) -> Optional[pulumi.Input[bool]]:
1082
+ """
1083
+ SNMP link Trap Query
1084
+ """
1085
+ return pulumi.get(self, "snmp_link_trap_query")
1086
+
1087
+ @snmp_link_trap_query.setter
1088
+ def snmp_link_trap_query(self, value: Optional[pulumi.Input[bool]]):
1089
+ pulumi.set(self, "snmp_link_trap_query", value)
1090
+
1091
+ @property
1092
+ @pulumi.getter(name="snmpMacTrapQuery")
1093
+ def snmp_mac_trap_query(self) -> Optional[pulumi.Input[bool]]:
1094
+ """
1095
+ SNMP MAC Trap Query
1096
+ """
1097
+ return pulumi.get(self, "snmp_mac_trap_query")
1098
+
1099
+ @snmp_mac_trap_query.setter
1100
+ def snmp_mac_trap_query(self, value: Optional[pulumi.Input[bool]]):
1101
+ pulumi.set(self, "snmp_mac_trap_query", value)
1102
+
1103
+ @property
1104
+ @pulumi.getter(name="snmpOriginatingPolicyServiceNode")
1105
+ def snmp_originating_policy_service_node(self) -> Optional[pulumi.Input[str]]:
1106
+ """
1107
+ Originating Policy Services Node
1108
+ """
1109
+ return pulumi.get(self, "snmp_originating_policy_service_node")
1110
+
1111
+ @snmp_originating_policy_service_node.setter
1112
+ def snmp_originating_policy_service_node(self, value: Optional[pulumi.Input[str]]):
1113
+ pulumi.set(self, "snmp_originating_policy_service_node", value)
1114
+
1115
+ @property
1116
+ @pulumi.getter(name="snmpPollingInterval")
1117
+ def snmp_polling_interval(self) -> Optional[pulumi.Input[int]]:
1118
+ """
1119
+ SNMP Polling Interval in seconds - Range: `600`-`86400`
1120
+ """
1121
+ return pulumi.get(self, "snmp_polling_interval")
1122
+
1123
+ @snmp_polling_interval.setter
1124
+ def snmp_polling_interval(self, value: Optional[pulumi.Input[int]]):
1125
+ pulumi.set(self, "snmp_polling_interval", value)
1126
+
1127
+ @property
1128
+ @pulumi.getter(name="snmpRoCommunity")
1129
+ def snmp_ro_community(self) -> Optional[pulumi.Input[str]]:
1130
+ """
1131
+ SNMP RO Community
1132
+ """
1133
+ return pulumi.get(self, "snmp_ro_community")
1134
+
1135
+ @snmp_ro_community.setter
1136
+ def snmp_ro_community(self, value: Optional[pulumi.Input[str]]):
1137
+ pulumi.set(self, "snmp_ro_community", value)
1138
+
1139
+ @property
1140
+ @pulumi.getter(name="snmpVersion")
1141
+ def snmp_version(self) -> Optional[pulumi.Input[str]]:
1142
+ """
1143
+ SNMP version - Choices: `ONE`, `TWO_C`, `THREE`
1144
+ """
1145
+ return pulumi.get(self, "snmp_version")
1146
+
1147
+ @snmp_version.setter
1148
+ def snmp_version(self, value: Optional[pulumi.Input[str]]):
1149
+ pulumi.set(self, "snmp_version", value)
1150
+
1151
+ @property
1152
+ @pulumi.getter(name="softwareVersion")
1153
+ def software_version(self) -> Optional[pulumi.Input[str]]:
1154
+ """
1155
+ Software version
1156
+ """
1157
+ return pulumi.get(self, "software_version")
1158
+
1159
+ @software_version.setter
1160
+ def software_version(self, value: Optional[pulumi.Input[str]]):
1161
+ pulumi.set(self, "software_version", value)
1162
+
1163
+ @property
1164
+ @pulumi.getter(name="tacacsConnectModeOptions")
1165
+ def tacacs_connect_mode_options(self) -> Optional[pulumi.Input[str]]:
1166
+ """
1167
+ Connect mode options - Choices: `OFF`, `ON_LEGACY`, `ON_DRAFT_COMPLIANT`
1168
+ """
1169
+ return pulumi.get(self, "tacacs_connect_mode_options")
1170
+
1171
+ @tacacs_connect_mode_options.setter
1172
+ def tacacs_connect_mode_options(self, value: Optional[pulumi.Input[str]]):
1173
+ pulumi.set(self, "tacacs_connect_mode_options", value)
1174
+
1175
+ @property
1176
+ @pulumi.getter(name="tacacsSharedSecret")
1177
+ def tacacs_shared_secret(self) -> Optional[pulumi.Input[str]]:
1178
+ """
1179
+ Shared secret
1180
+ """
1181
+ return pulumi.get(self, "tacacs_shared_secret")
1182
+
1183
+ @tacacs_shared_secret.setter
1184
+ def tacacs_shared_secret(self, value: Optional[pulumi.Input[str]]):
1185
+ pulumi.set(self, "tacacs_shared_secret", value)
1186
+
1187
+ @property
1188
+ @pulumi.getter(name="trustsecCoaSourceHost")
1189
+ def trustsec_coa_source_host(self) -> Optional[pulumi.Input[str]]:
1190
+ """
1191
+ CoA source host
1192
+ """
1193
+ return pulumi.get(self, "trustsec_coa_source_host")
1194
+
1195
+ @trustsec_coa_source_host.setter
1196
+ def trustsec_coa_source_host(self, value: Optional[pulumi.Input[str]]):
1197
+ pulumi.set(self, "trustsec_coa_source_host", value)
1198
+
1199
+ @property
1200
+ @pulumi.getter(name="trustsecDeviceId")
1201
+ def trustsec_device_id(self) -> Optional[pulumi.Input[str]]:
1202
+ """
1203
+ TrustSec device ID
1204
+ """
1205
+ return pulumi.get(self, "trustsec_device_id")
1206
+
1207
+ @trustsec_device_id.setter
1208
+ def trustsec_device_id(self, value: Optional[pulumi.Input[str]]):
1209
+ pulumi.set(self, "trustsec_device_id", value)
1210
+
1211
+ @property
1212
+ @pulumi.getter(name="trustsecDevicePassword")
1213
+ def trustsec_device_password(self) -> Optional[pulumi.Input[str]]:
1214
+ """
1215
+ TrustSec device password
1216
+ """
1217
+ return pulumi.get(self, "trustsec_device_password")
1218
+
1219
+ @trustsec_device_password.setter
1220
+ def trustsec_device_password(self, value: Optional[pulumi.Input[str]]):
1221
+ pulumi.set(self, "trustsec_device_password", value)
1222
+
1223
+ @property
1224
+ @pulumi.getter(name="trustsecDownloadEnviromentDataEveryXSeconds")
1225
+ def trustsec_download_enviroment_data_every_x_seconds(self) -> Optional[pulumi.Input[int]]:
1226
+ """
1227
+ Download environment data every X seconds
1228
+ """
1229
+ return pulumi.get(self, "trustsec_download_enviroment_data_every_x_seconds")
1230
+
1231
+ @trustsec_download_enviroment_data_every_x_seconds.setter
1232
+ def trustsec_download_enviroment_data_every_x_seconds(self, value: Optional[pulumi.Input[int]]):
1233
+ pulumi.set(self, "trustsec_download_enviroment_data_every_x_seconds", value)
1234
+
1235
+ @property
1236
+ @pulumi.getter(name="trustsecDownloadPeerAuthorizationPolicyEveryXSeconds")
1237
+ def trustsec_download_peer_authorization_policy_every_x_seconds(self) -> Optional[pulumi.Input[int]]:
1238
+ """
1239
+ Download peer authorization policy every X seconds
1240
+ """
1241
+ return pulumi.get(self, "trustsec_download_peer_authorization_policy_every_x_seconds")
1242
+
1243
+ @trustsec_download_peer_authorization_policy_every_x_seconds.setter
1244
+ def trustsec_download_peer_authorization_policy_every_x_seconds(self, value: Optional[pulumi.Input[int]]):
1245
+ pulumi.set(self, "trustsec_download_peer_authorization_policy_every_x_seconds", value)
1246
+
1247
+ @property
1248
+ @pulumi.getter(name="trustsecDownloadSgaclListsEveryXSeconds")
1249
+ def trustsec_download_sgacl_lists_every_x_seconds(self) -> Optional[pulumi.Input[int]]:
1250
+ """
1251
+ Download SGACL lists every X seconds
1252
+ """
1253
+ return pulumi.get(self, "trustsec_download_sgacl_lists_every_x_seconds")
1254
+
1255
+ @trustsec_download_sgacl_lists_every_x_seconds.setter
1256
+ def trustsec_download_sgacl_lists_every_x_seconds(self, value: Optional[pulumi.Input[int]]):
1257
+ pulumi.set(self, "trustsec_download_sgacl_lists_every_x_seconds", value)
1258
+
1259
+ @property
1260
+ @pulumi.getter(name="trustsecEnableModePassword")
1261
+ def trustsec_enable_mode_password(self) -> Optional[pulumi.Input[str]]:
1262
+ """
1263
+ Enable mode password
1264
+ """
1265
+ return pulumi.get(self, "trustsec_enable_mode_password")
1266
+
1267
+ @trustsec_enable_mode_password.setter
1268
+ def trustsec_enable_mode_password(self, value: Optional[pulumi.Input[str]]):
1269
+ pulumi.set(self, "trustsec_enable_mode_password", value)
1270
+
1271
+ @property
1272
+ @pulumi.getter(name="trustsecExecModePassword")
1273
+ def trustsec_exec_mode_password(self) -> Optional[pulumi.Input[str]]:
1274
+ """
1275
+ EXEC mode password
1276
+ """
1277
+ return pulumi.get(self, "trustsec_exec_mode_password")
1278
+
1279
+ @trustsec_exec_mode_password.setter
1280
+ def trustsec_exec_mode_password(self, value: Optional[pulumi.Input[str]]):
1281
+ pulumi.set(self, "trustsec_exec_mode_password", value)
1282
+
1283
+ @property
1284
+ @pulumi.getter(name="trustsecExecModeUsername")
1285
+ def trustsec_exec_mode_username(self) -> Optional[pulumi.Input[str]]:
1286
+ """
1287
+ EXEC mode username
1288
+ """
1289
+ return pulumi.get(self, "trustsec_exec_mode_username")
1290
+
1291
+ @trustsec_exec_mode_username.setter
1292
+ def trustsec_exec_mode_username(self, value: Optional[pulumi.Input[str]]):
1293
+ pulumi.set(self, "trustsec_exec_mode_username", value)
1294
+
1295
+ @property
1296
+ @pulumi.getter(name="trustsecIncludeWhenDeployingSgtUpdates")
1297
+ def trustsec_include_when_deploying_sgt_updates(self) -> Optional[pulumi.Input[bool]]:
1298
+ """
1299
+ Include this device when deploying Security Group Tag Mapping Updates
1300
+ """
1301
+ return pulumi.get(self, "trustsec_include_when_deploying_sgt_updates")
1302
+
1303
+ @trustsec_include_when_deploying_sgt_updates.setter
1304
+ def trustsec_include_when_deploying_sgt_updates(self, value: Optional[pulumi.Input[bool]]):
1305
+ pulumi.set(self, "trustsec_include_when_deploying_sgt_updates", value)
1306
+
1307
+ @property
1308
+ @pulumi.getter(name="trustsecOtherSgaDevicesToTrustThisDevice")
1309
+ def trustsec_other_sga_devices_to_trust_this_device(self) -> Optional[pulumi.Input[bool]]:
1310
+ """
1311
+ Other TrustSec devices to trust this device
1312
+ """
1313
+ return pulumi.get(self, "trustsec_other_sga_devices_to_trust_this_device")
1314
+
1315
+ @trustsec_other_sga_devices_to_trust_this_device.setter
1316
+ def trustsec_other_sga_devices_to_trust_this_device(self, value: Optional[pulumi.Input[bool]]):
1317
+ pulumi.set(self, "trustsec_other_sga_devices_to_trust_this_device", value)
1318
+
1319
+ @property
1320
+ @pulumi.getter(name="trustsecReAuthenticationEveryXSeconds")
1321
+ def trustsec_re_authentication_every_x_seconds(self) -> Optional[pulumi.Input[int]]:
1322
+ """
1323
+ Re-authenticate every X seconds
1324
+ """
1325
+ return pulumi.get(self, "trustsec_re_authentication_every_x_seconds")
1326
+
1327
+ @trustsec_re_authentication_every_x_seconds.setter
1328
+ def trustsec_re_authentication_every_x_seconds(self, value: Optional[pulumi.Input[int]]):
1329
+ pulumi.set(self, "trustsec_re_authentication_every_x_seconds", value)
1330
+
1331
+ @property
1332
+ @pulumi.getter(name="trustsecRestApiPassword")
1333
+ def trustsec_rest_api_password(self) -> Optional[pulumi.Input[str]]:
1334
+ """
1335
+ REST API password
1336
+ """
1337
+ return pulumi.get(self, "trustsec_rest_api_password")
1338
+
1339
+ @trustsec_rest_api_password.setter
1340
+ def trustsec_rest_api_password(self, value: Optional[pulumi.Input[str]]):
1341
+ pulumi.set(self, "trustsec_rest_api_password", value)
1342
+
1343
+ @property
1344
+ @pulumi.getter(name="trustsecRestApiUsername")
1345
+ def trustsec_rest_api_username(self) -> Optional[pulumi.Input[str]]:
1346
+ """
1347
+ REST API username
1348
+ """
1349
+ return pulumi.get(self, "trustsec_rest_api_username")
1350
+
1351
+ @trustsec_rest_api_username.setter
1352
+ def trustsec_rest_api_username(self, value: Optional[pulumi.Input[str]]):
1353
+ pulumi.set(self, "trustsec_rest_api_username", value)
1354
+
1355
+ @property
1356
+ @pulumi.getter(name="trustsecSendConfigurationToDevice")
1357
+ def trustsec_send_configuration_to_device(self) -> Optional[pulumi.Input[bool]]:
1358
+ """
1359
+ Send configuration to device
1360
+ """
1361
+ return pulumi.get(self, "trustsec_send_configuration_to_device")
1362
+
1363
+ @trustsec_send_configuration_to_device.setter
1364
+ def trustsec_send_configuration_to_device(self, value: Optional[pulumi.Input[bool]]):
1365
+ pulumi.set(self, "trustsec_send_configuration_to_device", value)
1366
+
1367
+ @property
1368
+ @pulumi.getter(name="trustsecSendConfigurationToDeviceUsing")
1369
+ def trustsec_send_configuration_to_device_using(self) -> Optional[pulumi.Input[str]]:
1370
+ """
1371
+ Send configuration to device using - Choices: `DISABLE_ALL`, `ENABLE_USING_CLI`, `ENABLE_USING_COA`
1372
+ """
1373
+ return pulumi.get(self, "trustsec_send_configuration_to_device_using")
1374
+
1375
+ @trustsec_send_configuration_to_device_using.setter
1376
+ def trustsec_send_configuration_to_device_using(self, value: Optional[pulumi.Input[str]]):
1377
+ pulumi.set(self, "trustsec_send_configuration_to_device_using", value)
1378
+
1379
+
1380
+ class Device(pulumi.CustomResource):
1381
+ @overload
1382
+ def __init__(__self__,
1383
+ resource_name: str,
1384
+ opts: Optional[pulumi.ResourceOptions] = None,
1385
+ authentication_dtls_required: Optional[pulumi.Input[bool]] = None,
1386
+ authentication_enable_key_wrap: Optional[pulumi.Input[bool]] = None,
1387
+ authentication_enable_multi_secret: Optional[pulumi.Input[bool]] = None,
1388
+ authentication_encryption_key: Optional[pulumi.Input[str]] = None,
1389
+ authentication_encryption_key_format: Optional[pulumi.Input[str]] = None,
1390
+ authentication_message_authenticator_code_key: Optional[pulumi.Input[str]] = None,
1391
+ authentication_network_protocol: Optional[pulumi.Input[str]] = None,
1392
+ authentication_radius_shared_secret: Optional[pulumi.Input[str]] = None,
1393
+ authentication_second_radius_shared_secret: Optional[pulumi.Input[str]] = None,
1394
+ coa_port: Optional[pulumi.Input[int]] = None,
1395
+ description: Optional[pulumi.Input[str]] = None,
1396
+ dtls_dns_name: Optional[pulumi.Input[str]] = None,
1397
+ ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DeviceIpArgs', 'DeviceIpArgsDict']]]]] = None,
1398
+ model_name: Optional[pulumi.Input[str]] = None,
1399
+ name: Optional[pulumi.Input[str]] = None,
1400
+ network_device_groups: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1401
+ profile_name: Optional[pulumi.Input[str]] = None,
1402
+ snmp_link_trap_query: Optional[pulumi.Input[bool]] = None,
1403
+ snmp_mac_trap_query: Optional[pulumi.Input[bool]] = None,
1404
+ snmp_originating_policy_service_node: Optional[pulumi.Input[str]] = None,
1405
+ snmp_polling_interval: Optional[pulumi.Input[int]] = None,
1406
+ snmp_ro_community: Optional[pulumi.Input[str]] = None,
1407
+ snmp_version: Optional[pulumi.Input[str]] = None,
1408
+ software_version: Optional[pulumi.Input[str]] = None,
1409
+ tacacs_connect_mode_options: Optional[pulumi.Input[str]] = None,
1410
+ tacacs_shared_secret: Optional[pulumi.Input[str]] = None,
1411
+ trustsec_coa_source_host: Optional[pulumi.Input[str]] = None,
1412
+ trustsec_device_id: Optional[pulumi.Input[str]] = None,
1413
+ trustsec_device_password: Optional[pulumi.Input[str]] = None,
1414
+ trustsec_download_enviroment_data_every_x_seconds: Optional[pulumi.Input[int]] = None,
1415
+ trustsec_download_peer_authorization_policy_every_x_seconds: Optional[pulumi.Input[int]] = None,
1416
+ trustsec_download_sgacl_lists_every_x_seconds: Optional[pulumi.Input[int]] = None,
1417
+ trustsec_enable_mode_password: Optional[pulumi.Input[str]] = None,
1418
+ trustsec_exec_mode_password: Optional[pulumi.Input[str]] = None,
1419
+ trustsec_exec_mode_username: Optional[pulumi.Input[str]] = None,
1420
+ trustsec_include_when_deploying_sgt_updates: Optional[pulumi.Input[bool]] = None,
1421
+ trustsec_other_sga_devices_to_trust_this_device: Optional[pulumi.Input[bool]] = None,
1422
+ trustsec_re_authentication_every_x_seconds: Optional[pulumi.Input[int]] = None,
1423
+ trustsec_rest_api_password: Optional[pulumi.Input[str]] = None,
1424
+ trustsec_rest_api_username: Optional[pulumi.Input[str]] = None,
1425
+ trustsec_send_configuration_to_device: Optional[pulumi.Input[bool]] = None,
1426
+ trustsec_send_configuration_to_device_using: Optional[pulumi.Input[str]] = None,
1427
+ __props__=None):
1428
+ """
1429
+ This resource can manage a Network Device.
1430
+
1431
+ ## Example Usage
1432
+
1433
+ ```python
1434
+ import pulumi
1435
+ import pulumi_ise as ise
1436
+
1437
+ example = ise.network.Device("example",
1438
+ name="Device1",
1439
+ description="My device",
1440
+ authentication_enable_key_wrap=True,
1441
+ authentication_encryption_key="cisco123cisco123",
1442
+ authentication_encryption_key_format="ASCII",
1443
+ authentication_message_authenticator_code_key="cisco123cisco1235678",
1444
+ authentication_network_protocol="RADIUS",
1445
+ authentication_radius_shared_secret="cisco123",
1446
+ authentication_enable_multi_secret=True,
1447
+ authentication_second_radius_shared_secret="cisco12345",
1448
+ authentication_dtls_required=True,
1449
+ coa_port=12345,
1450
+ dtls_dns_name="cisco.com",
1451
+ ips=[{
1452
+ "ipaddress": "2.3.4.5",
1453
+ "mask": "32",
1454
+ }],
1455
+ model_name="Unknown",
1456
+ software_version="Unknown",
1457
+ profile_name="Cisco",
1458
+ snmp_link_trap_query=True,
1459
+ snmp_mac_trap_query=True,
1460
+ snmp_polling_interval=1200,
1461
+ snmp_ro_community="rocom",
1462
+ snmp_version="TWO_C",
1463
+ tacacs_connect_mode_options="OFF",
1464
+ tacacs_shared_secret="cisco123",
1465
+ trustsec_device_id="device123",
1466
+ trustsec_device_password="cisco123",
1467
+ trustsec_rest_api_username="user123",
1468
+ trustsec_rest_api_password="Cisco123",
1469
+ trustsec_enable_mode_password="cisco123",
1470
+ trustsec_exec_mode_password="cisco123",
1471
+ trustsec_exec_mode_username="user456",
1472
+ trustsec_include_when_deploying_sgt_updates=True,
1473
+ trustsec_download_enviroment_data_every_x_seconds=1000,
1474
+ trustsec_download_peer_authorization_policy_every_x_seconds=1000,
1475
+ trustsec_download_sgacl_lists_every_x_seconds=1000,
1476
+ trustsec_other_sga_devices_to_trust_this_device=True,
1477
+ trustsec_re_authentication_every_x_seconds=1000,
1478
+ trustsec_send_configuration_to_device=True,
1479
+ trustsec_send_configuration_to_device_using="ENABLE_USING_COA")
1480
+ ```
1481
+
1482
+ ## Import
1483
+
1484
+ ```sh
1485
+ $ pulumi import ise:network/device:Device example "76d24097-41c4-4558-a4d0-a8c07ac08470"
1486
+ ```
1487
+
1488
+ :param str resource_name: The name of the resource.
1489
+ :param pulumi.ResourceOptions opts: Options for the resource.
1490
+ :param pulumi.Input[bool] authentication_dtls_required: Enforce use of DTLS
1491
+ :param pulumi.Input[bool] authentication_enable_key_wrap: Enable key wrap
1492
+ :param pulumi.Input[bool] authentication_enable_multi_secret: Enable multiple RADIUS shared secrets
1493
+ :param pulumi.Input[str] authentication_encryption_key: Encryption key
1494
+ :param pulumi.Input[str] authentication_encryption_key_format: Key input format - Choices: `ASCII`, `HEXADECIMAL`
1495
+ :param pulumi.Input[str] authentication_message_authenticator_code_key: Message authenticator code key
1496
+ :param pulumi.Input[str] authentication_network_protocol: Network protocol - Choices: `RADIUS`, `TACACS_PLUS`
1497
+ :param pulumi.Input[str] authentication_radius_shared_secret: RADIUS shared secret
1498
+ :param pulumi.Input[str] authentication_second_radius_shared_secret: Second RADIUS shared secret
1499
+ :param pulumi.Input[int] coa_port: CoA port - Default value: `1700`
1500
+ :param pulumi.Input[str] description: Description
1501
+ :param pulumi.Input[str] dtls_dns_name: This value is used to verify the client identity contained in the X.509 RADIUS/DTLS client certificate
1502
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DeviceIpArgs', 'DeviceIpArgsDict']]]] ips: List of IP subnets
1503
+ :param pulumi.Input[str] model_name: Model name
1504
+ :param pulumi.Input[str] name: The name of the network device
1505
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] network_device_groups: List of network device groups, e.g. `Device Type#All Device Types#ACCESS`
1506
+ :param pulumi.Input[str] profile_name: Profile name - Default value: `Cisco`
1507
+ :param pulumi.Input[bool] snmp_link_trap_query: SNMP link Trap Query
1508
+ :param pulumi.Input[bool] snmp_mac_trap_query: SNMP MAC Trap Query
1509
+ :param pulumi.Input[str] snmp_originating_policy_service_node: Originating Policy Services Node
1510
+ :param pulumi.Input[int] snmp_polling_interval: SNMP Polling Interval in seconds - Range: `600`-`86400`
1511
+ :param pulumi.Input[str] snmp_ro_community: SNMP RO Community
1512
+ :param pulumi.Input[str] snmp_version: SNMP version - Choices: `ONE`, `TWO_C`, `THREE`
1513
+ :param pulumi.Input[str] software_version: Software version
1514
+ :param pulumi.Input[str] tacacs_connect_mode_options: Connect mode options - Choices: `OFF`, `ON_LEGACY`, `ON_DRAFT_COMPLIANT`
1515
+ :param pulumi.Input[str] tacacs_shared_secret: Shared secret
1516
+ :param pulumi.Input[str] trustsec_coa_source_host: CoA source host
1517
+ :param pulumi.Input[str] trustsec_device_id: TrustSec device ID
1518
+ :param pulumi.Input[str] trustsec_device_password: TrustSec device password
1519
+ :param pulumi.Input[int] trustsec_download_enviroment_data_every_x_seconds: Download environment data every X seconds
1520
+ :param pulumi.Input[int] trustsec_download_peer_authorization_policy_every_x_seconds: Download peer authorization policy every X seconds
1521
+ :param pulumi.Input[int] trustsec_download_sgacl_lists_every_x_seconds: Download SGACL lists every X seconds
1522
+ :param pulumi.Input[str] trustsec_enable_mode_password: Enable mode password
1523
+ :param pulumi.Input[str] trustsec_exec_mode_password: EXEC mode password
1524
+ :param pulumi.Input[str] trustsec_exec_mode_username: EXEC mode username
1525
+ :param pulumi.Input[bool] trustsec_include_when_deploying_sgt_updates: Include this device when deploying Security Group Tag Mapping Updates
1526
+ :param pulumi.Input[bool] trustsec_other_sga_devices_to_trust_this_device: Other TrustSec devices to trust this device
1527
+ :param pulumi.Input[int] trustsec_re_authentication_every_x_seconds: Re-authenticate every X seconds
1528
+ :param pulumi.Input[str] trustsec_rest_api_password: REST API password
1529
+ :param pulumi.Input[str] trustsec_rest_api_username: REST API username
1530
+ :param pulumi.Input[bool] trustsec_send_configuration_to_device: Send configuration to device
1531
+ :param pulumi.Input[str] trustsec_send_configuration_to_device_using: Send configuration to device using - Choices: `DISABLE_ALL`, `ENABLE_USING_CLI`, `ENABLE_USING_COA`
1532
+ """
1533
+ ...
1534
+ @overload
1535
+ def __init__(__self__,
1536
+ resource_name: str,
1537
+ args: DeviceArgs,
1538
+ opts: Optional[pulumi.ResourceOptions] = None):
1539
+ """
1540
+ This resource can manage a Network Device.
1541
+
1542
+ ## Example Usage
1543
+
1544
+ ```python
1545
+ import pulumi
1546
+ import pulumi_ise as ise
1547
+
1548
+ example = ise.network.Device("example",
1549
+ name="Device1",
1550
+ description="My device",
1551
+ authentication_enable_key_wrap=True,
1552
+ authentication_encryption_key="cisco123cisco123",
1553
+ authentication_encryption_key_format="ASCII",
1554
+ authentication_message_authenticator_code_key="cisco123cisco1235678",
1555
+ authentication_network_protocol="RADIUS",
1556
+ authentication_radius_shared_secret="cisco123",
1557
+ authentication_enable_multi_secret=True,
1558
+ authentication_second_radius_shared_secret="cisco12345",
1559
+ authentication_dtls_required=True,
1560
+ coa_port=12345,
1561
+ dtls_dns_name="cisco.com",
1562
+ ips=[{
1563
+ "ipaddress": "2.3.4.5",
1564
+ "mask": "32",
1565
+ }],
1566
+ model_name="Unknown",
1567
+ software_version="Unknown",
1568
+ profile_name="Cisco",
1569
+ snmp_link_trap_query=True,
1570
+ snmp_mac_trap_query=True,
1571
+ snmp_polling_interval=1200,
1572
+ snmp_ro_community="rocom",
1573
+ snmp_version="TWO_C",
1574
+ tacacs_connect_mode_options="OFF",
1575
+ tacacs_shared_secret="cisco123",
1576
+ trustsec_device_id="device123",
1577
+ trustsec_device_password="cisco123",
1578
+ trustsec_rest_api_username="user123",
1579
+ trustsec_rest_api_password="Cisco123",
1580
+ trustsec_enable_mode_password="cisco123",
1581
+ trustsec_exec_mode_password="cisco123",
1582
+ trustsec_exec_mode_username="user456",
1583
+ trustsec_include_when_deploying_sgt_updates=True,
1584
+ trustsec_download_enviroment_data_every_x_seconds=1000,
1585
+ trustsec_download_peer_authorization_policy_every_x_seconds=1000,
1586
+ trustsec_download_sgacl_lists_every_x_seconds=1000,
1587
+ trustsec_other_sga_devices_to_trust_this_device=True,
1588
+ trustsec_re_authentication_every_x_seconds=1000,
1589
+ trustsec_send_configuration_to_device=True,
1590
+ trustsec_send_configuration_to_device_using="ENABLE_USING_COA")
1591
+ ```
1592
+
1593
+ ## Import
1594
+
1595
+ ```sh
1596
+ $ pulumi import ise:network/device:Device example "76d24097-41c4-4558-a4d0-a8c07ac08470"
1597
+ ```
1598
+
1599
+ :param str resource_name: The name of the resource.
1600
+ :param DeviceArgs args: The arguments to use to populate this resource's properties.
1601
+ :param pulumi.ResourceOptions opts: Options for the resource.
1602
+ """
1603
+ ...
1604
+ def __init__(__self__, resource_name: str, *args, **kwargs):
1605
+ resource_args, opts = _utilities.get_resource_args_opts(DeviceArgs, pulumi.ResourceOptions, *args, **kwargs)
1606
+ if resource_args is not None:
1607
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
1608
+ else:
1609
+ __self__._internal_init(resource_name, *args, **kwargs)
1610
+
1611
+ def _internal_init(__self__,
1612
+ resource_name: str,
1613
+ opts: Optional[pulumi.ResourceOptions] = None,
1614
+ authentication_dtls_required: Optional[pulumi.Input[bool]] = None,
1615
+ authentication_enable_key_wrap: Optional[pulumi.Input[bool]] = None,
1616
+ authentication_enable_multi_secret: Optional[pulumi.Input[bool]] = None,
1617
+ authentication_encryption_key: Optional[pulumi.Input[str]] = None,
1618
+ authentication_encryption_key_format: Optional[pulumi.Input[str]] = None,
1619
+ authentication_message_authenticator_code_key: Optional[pulumi.Input[str]] = None,
1620
+ authentication_network_protocol: Optional[pulumi.Input[str]] = None,
1621
+ authentication_radius_shared_secret: Optional[pulumi.Input[str]] = None,
1622
+ authentication_second_radius_shared_secret: Optional[pulumi.Input[str]] = None,
1623
+ coa_port: Optional[pulumi.Input[int]] = None,
1624
+ description: Optional[pulumi.Input[str]] = None,
1625
+ dtls_dns_name: Optional[pulumi.Input[str]] = None,
1626
+ ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DeviceIpArgs', 'DeviceIpArgsDict']]]]] = None,
1627
+ model_name: Optional[pulumi.Input[str]] = None,
1628
+ name: Optional[pulumi.Input[str]] = None,
1629
+ network_device_groups: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1630
+ profile_name: Optional[pulumi.Input[str]] = None,
1631
+ snmp_link_trap_query: Optional[pulumi.Input[bool]] = None,
1632
+ snmp_mac_trap_query: Optional[pulumi.Input[bool]] = None,
1633
+ snmp_originating_policy_service_node: Optional[pulumi.Input[str]] = None,
1634
+ snmp_polling_interval: Optional[pulumi.Input[int]] = None,
1635
+ snmp_ro_community: Optional[pulumi.Input[str]] = None,
1636
+ snmp_version: Optional[pulumi.Input[str]] = None,
1637
+ software_version: Optional[pulumi.Input[str]] = None,
1638
+ tacacs_connect_mode_options: Optional[pulumi.Input[str]] = None,
1639
+ tacacs_shared_secret: Optional[pulumi.Input[str]] = None,
1640
+ trustsec_coa_source_host: Optional[pulumi.Input[str]] = None,
1641
+ trustsec_device_id: Optional[pulumi.Input[str]] = None,
1642
+ trustsec_device_password: Optional[pulumi.Input[str]] = None,
1643
+ trustsec_download_enviroment_data_every_x_seconds: Optional[pulumi.Input[int]] = None,
1644
+ trustsec_download_peer_authorization_policy_every_x_seconds: Optional[pulumi.Input[int]] = None,
1645
+ trustsec_download_sgacl_lists_every_x_seconds: Optional[pulumi.Input[int]] = None,
1646
+ trustsec_enable_mode_password: Optional[pulumi.Input[str]] = None,
1647
+ trustsec_exec_mode_password: Optional[pulumi.Input[str]] = None,
1648
+ trustsec_exec_mode_username: Optional[pulumi.Input[str]] = None,
1649
+ trustsec_include_when_deploying_sgt_updates: Optional[pulumi.Input[bool]] = None,
1650
+ trustsec_other_sga_devices_to_trust_this_device: Optional[pulumi.Input[bool]] = None,
1651
+ trustsec_re_authentication_every_x_seconds: Optional[pulumi.Input[int]] = None,
1652
+ trustsec_rest_api_password: Optional[pulumi.Input[str]] = None,
1653
+ trustsec_rest_api_username: Optional[pulumi.Input[str]] = None,
1654
+ trustsec_send_configuration_to_device: Optional[pulumi.Input[bool]] = None,
1655
+ trustsec_send_configuration_to_device_using: Optional[pulumi.Input[str]] = None,
1656
+ __props__=None):
1657
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
1658
+ if not isinstance(opts, pulumi.ResourceOptions):
1659
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
1660
+ if opts.id is None:
1661
+ if __props__ is not None:
1662
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
1663
+ __props__ = DeviceArgs.__new__(DeviceArgs)
1664
+
1665
+ __props__.__dict__["authentication_dtls_required"] = authentication_dtls_required
1666
+ __props__.__dict__["authentication_enable_key_wrap"] = authentication_enable_key_wrap
1667
+ __props__.__dict__["authentication_enable_multi_secret"] = authentication_enable_multi_secret
1668
+ __props__.__dict__["authentication_encryption_key"] = authentication_encryption_key
1669
+ __props__.__dict__["authentication_encryption_key_format"] = authentication_encryption_key_format
1670
+ __props__.__dict__["authentication_message_authenticator_code_key"] = authentication_message_authenticator_code_key
1671
+ __props__.__dict__["authentication_network_protocol"] = authentication_network_protocol
1672
+ __props__.__dict__["authentication_radius_shared_secret"] = authentication_radius_shared_secret
1673
+ __props__.__dict__["authentication_second_radius_shared_secret"] = authentication_second_radius_shared_secret
1674
+ __props__.__dict__["coa_port"] = coa_port
1675
+ __props__.__dict__["description"] = description
1676
+ __props__.__dict__["dtls_dns_name"] = dtls_dns_name
1677
+ if ips is None and not opts.urn:
1678
+ raise TypeError("Missing required property 'ips'")
1679
+ __props__.__dict__["ips"] = ips
1680
+ __props__.__dict__["model_name"] = model_name
1681
+ __props__.__dict__["name"] = name
1682
+ __props__.__dict__["network_device_groups"] = network_device_groups
1683
+ __props__.__dict__["profile_name"] = profile_name
1684
+ __props__.__dict__["snmp_link_trap_query"] = snmp_link_trap_query
1685
+ __props__.__dict__["snmp_mac_trap_query"] = snmp_mac_trap_query
1686
+ __props__.__dict__["snmp_originating_policy_service_node"] = snmp_originating_policy_service_node
1687
+ __props__.__dict__["snmp_polling_interval"] = snmp_polling_interval
1688
+ __props__.__dict__["snmp_ro_community"] = snmp_ro_community
1689
+ __props__.__dict__["snmp_version"] = snmp_version
1690
+ __props__.__dict__["software_version"] = software_version
1691
+ __props__.__dict__["tacacs_connect_mode_options"] = tacacs_connect_mode_options
1692
+ __props__.__dict__["tacacs_shared_secret"] = tacacs_shared_secret
1693
+ __props__.__dict__["trustsec_coa_source_host"] = trustsec_coa_source_host
1694
+ __props__.__dict__["trustsec_device_id"] = trustsec_device_id
1695
+ __props__.__dict__["trustsec_device_password"] = trustsec_device_password
1696
+ __props__.__dict__["trustsec_download_enviroment_data_every_x_seconds"] = trustsec_download_enviroment_data_every_x_seconds
1697
+ __props__.__dict__["trustsec_download_peer_authorization_policy_every_x_seconds"] = trustsec_download_peer_authorization_policy_every_x_seconds
1698
+ __props__.__dict__["trustsec_download_sgacl_lists_every_x_seconds"] = trustsec_download_sgacl_lists_every_x_seconds
1699
+ __props__.__dict__["trustsec_enable_mode_password"] = trustsec_enable_mode_password
1700
+ __props__.__dict__["trustsec_exec_mode_password"] = trustsec_exec_mode_password
1701
+ __props__.__dict__["trustsec_exec_mode_username"] = trustsec_exec_mode_username
1702
+ __props__.__dict__["trustsec_include_when_deploying_sgt_updates"] = trustsec_include_when_deploying_sgt_updates
1703
+ __props__.__dict__["trustsec_other_sga_devices_to_trust_this_device"] = trustsec_other_sga_devices_to_trust_this_device
1704
+ __props__.__dict__["trustsec_re_authentication_every_x_seconds"] = trustsec_re_authentication_every_x_seconds
1705
+ __props__.__dict__["trustsec_rest_api_password"] = trustsec_rest_api_password
1706
+ __props__.__dict__["trustsec_rest_api_username"] = trustsec_rest_api_username
1707
+ __props__.__dict__["trustsec_send_configuration_to_device"] = trustsec_send_configuration_to_device
1708
+ __props__.__dict__["trustsec_send_configuration_to_device_using"] = trustsec_send_configuration_to_device_using
1709
+ super(Device, __self__).__init__(
1710
+ 'ise:network/device:Device',
1711
+ resource_name,
1712
+ __props__,
1713
+ opts)
1714
+
1715
+ @staticmethod
1716
+ def get(resource_name: str,
1717
+ id: pulumi.Input[str],
1718
+ opts: Optional[pulumi.ResourceOptions] = None,
1719
+ authentication_dtls_required: Optional[pulumi.Input[bool]] = None,
1720
+ authentication_enable_key_wrap: Optional[pulumi.Input[bool]] = None,
1721
+ authentication_enable_multi_secret: Optional[pulumi.Input[bool]] = None,
1722
+ authentication_encryption_key: Optional[pulumi.Input[str]] = None,
1723
+ authentication_encryption_key_format: Optional[pulumi.Input[str]] = None,
1724
+ authentication_message_authenticator_code_key: Optional[pulumi.Input[str]] = None,
1725
+ authentication_network_protocol: Optional[pulumi.Input[str]] = None,
1726
+ authentication_radius_shared_secret: Optional[pulumi.Input[str]] = None,
1727
+ authentication_second_radius_shared_secret: Optional[pulumi.Input[str]] = None,
1728
+ coa_port: Optional[pulumi.Input[int]] = None,
1729
+ description: Optional[pulumi.Input[str]] = None,
1730
+ dtls_dns_name: Optional[pulumi.Input[str]] = None,
1731
+ ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DeviceIpArgs', 'DeviceIpArgsDict']]]]] = None,
1732
+ model_name: Optional[pulumi.Input[str]] = None,
1733
+ name: Optional[pulumi.Input[str]] = None,
1734
+ network_device_groups: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1735
+ profile_name: Optional[pulumi.Input[str]] = None,
1736
+ snmp_link_trap_query: Optional[pulumi.Input[bool]] = None,
1737
+ snmp_mac_trap_query: Optional[pulumi.Input[bool]] = None,
1738
+ snmp_originating_policy_service_node: Optional[pulumi.Input[str]] = None,
1739
+ snmp_polling_interval: Optional[pulumi.Input[int]] = None,
1740
+ snmp_ro_community: Optional[pulumi.Input[str]] = None,
1741
+ snmp_version: Optional[pulumi.Input[str]] = None,
1742
+ software_version: Optional[pulumi.Input[str]] = None,
1743
+ tacacs_connect_mode_options: Optional[pulumi.Input[str]] = None,
1744
+ tacacs_shared_secret: Optional[pulumi.Input[str]] = None,
1745
+ trustsec_coa_source_host: Optional[pulumi.Input[str]] = None,
1746
+ trustsec_device_id: Optional[pulumi.Input[str]] = None,
1747
+ trustsec_device_password: Optional[pulumi.Input[str]] = None,
1748
+ trustsec_download_enviroment_data_every_x_seconds: Optional[pulumi.Input[int]] = None,
1749
+ trustsec_download_peer_authorization_policy_every_x_seconds: Optional[pulumi.Input[int]] = None,
1750
+ trustsec_download_sgacl_lists_every_x_seconds: Optional[pulumi.Input[int]] = None,
1751
+ trustsec_enable_mode_password: Optional[pulumi.Input[str]] = None,
1752
+ trustsec_exec_mode_password: Optional[pulumi.Input[str]] = None,
1753
+ trustsec_exec_mode_username: Optional[pulumi.Input[str]] = None,
1754
+ trustsec_include_when_deploying_sgt_updates: Optional[pulumi.Input[bool]] = None,
1755
+ trustsec_other_sga_devices_to_trust_this_device: Optional[pulumi.Input[bool]] = None,
1756
+ trustsec_re_authentication_every_x_seconds: Optional[pulumi.Input[int]] = None,
1757
+ trustsec_rest_api_password: Optional[pulumi.Input[str]] = None,
1758
+ trustsec_rest_api_username: Optional[pulumi.Input[str]] = None,
1759
+ trustsec_send_configuration_to_device: Optional[pulumi.Input[bool]] = None,
1760
+ trustsec_send_configuration_to_device_using: Optional[pulumi.Input[str]] = None) -> 'Device':
1761
+ """
1762
+ Get an existing Device resource's state with the given name, id, and optional extra
1763
+ properties used to qualify the lookup.
1764
+
1765
+ :param str resource_name: The unique name of the resulting resource.
1766
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1767
+ :param pulumi.ResourceOptions opts: Options for the resource.
1768
+ :param pulumi.Input[bool] authentication_dtls_required: Enforce use of DTLS
1769
+ :param pulumi.Input[bool] authentication_enable_key_wrap: Enable key wrap
1770
+ :param pulumi.Input[bool] authentication_enable_multi_secret: Enable multiple RADIUS shared secrets
1771
+ :param pulumi.Input[str] authentication_encryption_key: Encryption key
1772
+ :param pulumi.Input[str] authentication_encryption_key_format: Key input format - Choices: `ASCII`, `HEXADECIMAL`
1773
+ :param pulumi.Input[str] authentication_message_authenticator_code_key: Message authenticator code key
1774
+ :param pulumi.Input[str] authentication_network_protocol: Network protocol - Choices: `RADIUS`, `TACACS_PLUS`
1775
+ :param pulumi.Input[str] authentication_radius_shared_secret: RADIUS shared secret
1776
+ :param pulumi.Input[str] authentication_second_radius_shared_secret: Second RADIUS shared secret
1777
+ :param pulumi.Input[int] coa_port: CoA port - Default value: `1700`
1778
+ :param pulumi.Input[str] description: Description
1779
+ :param pulumi.Input[str] dtls_dns_name: This value is used to verify the client identity contained in the X.509 RADIUS/DTLS client certificate
1780
+ :param pulumi.Input[Sequence[pulumi.Input[Union['DeviceIpArgs', 'DeviceIpArgsDict']]]] ips: List of IP subnets
1781
+ :param pulumi.Input[str] model_name: Model name
1782
+ :param pulumi.Input[str] name: The name of the network device
1783
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] network_device_groups: List of network device groups, e.g. `Device Type#All Device Types#ACCESS`
1784
+ :param pulumi.Input[str] profile_name: Profile name - Default value: `Cisco`
1785
+ :param pulumi.Input[bool] snmp_link_trap_query: SNMP link Trap Query
1786
+ :param pulumi.Input[bool] snmp_mac_trap_query: SNMP MAC Trap Query
1787
+ :param pulumi.Input[str] snmp_originating_policy_service_node: Originating Policy Services Node
1788
+ :param pulumi.Input[int] snmp_polling_interval: SNMP Polling Interval in seconds - Range: `600`-`86400`
1789
+ :param pulumi.Input[str] snmp_ro_community: SNMP RO Community
1790
+ :param pulumi.Input[str] snmp_version: SNMP version - Choices: `ONE`, `TWO_C`, `THREE`
1791
+ :param pulumi.Input[str] software_version: Software version
1792
+ :param pulumi.Input[str] tacacs_connect_mode_options: Connect mode options - Choices: `OFF`, `ON_LEGACY`, `ON_DRAFT_COMPLIANT`
1793
+ :param pulumi.Input[str] tacacs_shared_secret: Shared secret
1794
+ :param pulumi.Input[str] trustsec_coa_source_host: CoA source host
1795
+ :param pulumi.Input[str] trustsec_device_id: TrustSec device ID
1796
+ :param pulumi.Input[str] trustsec_device_password: TrustSec device password
1797
+ :param pulumi.Input[int] trustsec_download_enviroment_data_every_x_seconds: Download environment data every X seconds
1798
+ :param pulumi.Input[int] trustsec_download_peer_authorization_policy_every_x_seconds: Download peer authorization policy every X seconds
1799
+ :param pulumi.Input[int] trustsec_download_sgacl_lists_every_x_seconds: Download SGACL lists every X seconds
1800
+ :param pulumi.Input[str] trustsec_enable_mode_password: Enable mode password
1801
+ :param pulumi.Input[str] trustsec_exec_mode_password: EXEC mode password
1802
+ :param pulumi.Input[str] trustsec_exec_mode_username: EXEC mode username
1803
+ :param pulumi.Input[bool] trustsec_include_when_deploying_sgt_updates: Include this device when deploying Security Group Tag Mapping Updates
1804
+ :param pulumi.Input[bool] trustsec_other_sga_devices_to_trust_this_device: Other TrustSec devices to trust this device
1805
+ :param pulumi.Input[int] trustsec_re_authentication_every_x_seconds: Re-authenticate every X seconds
1806
+ :param pulumi.Input[str] trustsec_rest_api_password: REST API password
1807
+ :param pulumi.Input[str] trustsec_rest_api_username: REST API username
1808
+ :param pulumi.Input[bool] trustsec_send_configuration_to_device: Send configuration to device
1809
+ :param pulumi.Input[str] trustsec_send_configuration_to_device_using: Send configuration to device using - Choices: `DISABLE_ALL`, `ENABLE_USING_CLI`, `ENABLE_USING_COA`
1810
+ """
1811
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
1812
+
1813
+ __props__ = _DeviceState.__new__(_DeviceState)
1814
+
1815
+ __props__.__dict__["authentication_dtls_required"] = authentication_dtls_required
1816
+ __props__.__dict__["authentication_enable_key_wrap"] = authentication_enable_key_wrap
1817
+ __props__.__dict__["authentication_enable_multi_secret"] = authentication_enable_multi_secret
1818
+ __props__.__dict__["authentication_encryption_key"] = authentication_encryption_key
1819
+ __props__.__dict__["authentication_encryption_key_format"] = authentication_encryption_key_format
1820
+ __props__.__dict__["authentication_message_authenticator_code_key"] = authentication_message_authenticator_code_key
1821
+ __props__.__dict__["authentication_network_protocol"] = authentication_network_protocol
1822
+ __props__.__dict__["authentication_radius_shared_secret"] = authentication_radius_shared_secret
1823
+ __props__.__dict__["authentication_second_radius_shared_secret"] = authentication_second_radius_shared_secret
1824
+ __props__.__dict__["coa_port"] = coa_port
1825
+ __props__.__dict__["description"] = description
1826
+ __props__.__dict__["dtls_dns_name"] = dtls_dns_name
1827
+ __props__.__dict__["ips"] = ips
1828
+ __props__.__dict__["model_name"] = model_name
1829
+ __props__.__dict__["name"] = name
1830
+ __props__.__dict__["network_device_groups"] = network_device_groups
1831
+ __props__.__dict__["profile_name"] = profile_name
1832
+ __props__.__dict__["snmp_link_trap_query"] = snmp_link_trap_query
1833
+ __props__.__dict__["snmp_mac_trap_query"] = snmp_mac_trap_query
1834
+ __props__.__dict__["snmp_originating_policy_service_node"] = snmp_originating_policy_service_node
1835
+ __props__.__dict__["snmp_polling_interval"] = snmp_polling_interval
1836
+ __props__.__dict__["snmp_ro_community"] = snmp_ro_community
1837
+ __props__.__dict__["snmp_version"] = snmp_version
1838
+ __props__.__dict__["software_version"] = software_version
1839
+ __props__.__dict__["tacacs_connect_mode_options"] = tacacs_connect_mode_options
1840
+ __props__.__dict__["tacacs_shared_secret"] = tacacs_shared_secret
1841
+ __props__.__dict__["trustsec_coa_source_host"] = trustsec_coa_source_host
1842
+ __props__.__dict__["trustsec_device_id"] = trustsec_device_id
1843
+ __props__.__dict__["trustsec_device_password"] = trustsec_device_password
1844
+ __props__.__dict__["trustsec_download_enviroment_data_every_x_seconds"] = trustsec_download_enviroment_data_every_x_seconds
1845
+ __props__.__dict__["trustsec_download_peer_authorization_policy_every_x_seconds"] = trustsec_download_peer_authorization_policy_every_x_seconds
1846
+ __props__.__dict__["trustsec_download_sgacl_lists_every_x_seconds"] = trustsec_download_sgacl_lists_every_x_seconds
1847
+ __props__.__dict__["trustsec_enable_mode_password"] = trustsec_enable_mode_password
1848
+ __props__.__dict__["trustsec_exec_mode_password"] = trustsec_exec_mode_password
1849
+ __props__.__dict__["trustsec_exec_mode_username"] = trustsec_exec_mode_username
1850
+ __props__.__dict__["trustsec_include_when_deploying_sgt_updates"] = trustsec_include_when_deploying_sgt_updates
1851
+ __props__.__dict__["trustsec_other_sga_devices_to_trust_this_device"] = trustsec_other_sga_devices_to_trust_this_device
1852
+ __props__.__dict__["trustsec_re_authentication_every_x_seconds"] = trustsec_re_authentication_every_x_seconds
1853
+ __props__.__dict__["trustsec_rest_api_password"] = trustsec_rest_api_password
1854
+ __props__.__dict__["trustsec_rest_api_username"] = trustsec_rest_api_username
1855
+ __props__.__dict__["trustsec_send_configuration_to_device"] = trustsec_send_configuration_to_device
1856
+ __props__.__dict__["trustsec_send_configuration_to_device_using"] = trustsec_send_configuration_to_device_using
1857
+ return Device(resource_name, opts=opts, __props__=__props__)
1858
+
1859
+ @property
1860
+ @pulumi.getter(name="authenticationDtlsRequired")
1861
+ def authentication_dtls_required(self) -> pulumi.Output[Optional[bool]]:
1862
+ """
1863
+ Enforce use of DTLS
1864
+ """
1865
+ return pulumi.get(self, "authentication_dtls_required")
1866
+
1867
+ @property
1868
+ @pulumi.getter(name="authenticationEnableKeyWrap")
1869
+ def authentication_enable_key_wrap(self) -> pulumi.Output[Optional[bool]]:
1870
+ """
1871
+ Enable key wrap
1872
+ """
1873
+ return pulumi.get(self, "authentication_enable_key_wrap")
1874
+
1875
+ @property
1876
+ @pulumi.getter(name="authenticationEnableMultiSecret")
1877
+ def authentication_enable_multi_secret(self) -> pulumi.Output[Optional[bool]]:
1878
+ """
1879
+ Enable multiple RADIUS shared secrets
1880
+ """
1881
+ return pulumi.get(self, "authentication_enable_multi_secret")
1882
+
1883
+ @property
1884
+ @pulumi.getter(name="authenticationEncryptionKey")
1885
+ def authentication_encryption_key(self) -> pulumi.Output[Optional[str]]:
1886
+ """
1887
+ Encryption key
1888
+ """
1889
+ return pulumi.get(self, "authentication_encryption_key")
1890
+
1891
+ @property
1892
+ @pulumi.getter(name="authenticationEncryptionKeyFormat")
1893
+ def authentication_encryption_key_format(self) -> pulumi.Output[Optional[str]]:
1894
+ """
1895
+ Key input format - Choices: `ASCII`, `HEXADECIMAL`
1896
+ """
1897
+ return pulumi.get(self, "authentication_encryption_key_format")
1898
+
1899
+ @property
1900
+ @pulumi.getter(name="authenticationMessageAuthenticatorCodeKey")
1901
+ def authentication_message_authenticator_code_key(self) -> pulumi.Output[Optional[str]]:
1902
+ """
1903
+ Message authenticator code key
1904
+ """
1905
+ return pulumi.get(self, "authentication_message_authenticator_code_key")
1906
+
1907
+ @property
1908
+ @pulumi.getter(name="authenticationNetworkProtocol")
1909
+ def authentication_network_protocol(self) -> pulumi.Output[Optional[str]]:
1910
+ """
1911
+ Network protocol - Choices: `RADIUS`, `TACACS_PLUS`
1912
+ """
1913
+ return pulumi.get(self, "authentication_network_protocol")
1914
+
1915
+ @property
1916
+ @pulumi.getter(name="authenticationRadiusSharedSecret")
1917
+ def authentication_radius_shared_secret(self) -> pulumi.Output[Optional[str]]:
1918
+ """
1919
+ RADIUS shared secret
1920
+ """
1921
+ return pulumi.get(self, "authentication_radius_shared_secret")
1922
+
1923
+ @property
1924
+ @pulumi.getter(name="authenticationSecondRadiusSharedSecret")
1925
+ def authentication_second_radius_shared_secret(self) -> pulumi.Output[Optional[str]]:
1926
+ """
1927
+ Second RADIUS shared secret
1928
+ """
1929
+ return pulumi.get(self, "authentication_second_radius_shared_secret")
1930
+
1931
+ @property
1932
+ @pulumi.getter(name="coaPort")
1933
+ def coa_port(self) -> pulumi.Output[int]:
1934
+ """
1935
+ CoA port - Default value: `1700`
1936
+ """
1937
+ return pulumi.get(self, "coa_port")
1938
+
1939
+ @property
1940
+ @pulumi.getter
1941
+ def description(self) -> pulumi.Output[Optional[str]]:
1942
+ """
1943
+ Description
1944
+ """
1945
+ return pulumi.get(self, "description")
1946
+
1947
+ @property
1948
+ @pulumi.getter(name="dtlsDnsName")
1949
+ def dtls_dns_name(self) -> pulumi.Output[Optional[str]]:
1950
+ """
1951
+ This value is used to verify the client identity contained in the X.509 RADIUS/DTLS client certificate
1952
+ """
1953
+ return pulumi.get(self, "dtls_dns_name")
1954
+
1955
+ @property
1956
+ @pulumi.getter
1957
+ def ips(self) -> pulumi.Output[Sequence['outputs.DeviceIp']]:
1958
+ """
1959
+ List of IP subnets
1960
+ """
1961
+ return pulumi.get(self, "ips")
1962
+
1963
+ @property
1964
+ @pulumi.getter(name="modelName")
1965
+ def model_name(self) -> pulumi.Output[Optional[str]]:
1966
+ """
1967
+ Model name
1968
+ """
1969
+ return pulumi.get(self, "model_name")
1970
+
1971
+ @property
1972
+ @pulumi.getter
1973
+ def name(self) -> pulumi.Output[str]:
1974
+ """
1975
+ The name of the network device
1976
+ """
1977
+ return pulumi.get(self, "name")
1978
+
1979
+ @property
1980
+ @pulumi.getter(name="networkDeviceGroups")
1981
+ def network_device_groups(self) -> pulumi.Output[Optional[Sequence[str]]]:
1982
+ """
1983
+ List of network device groups, e.g. `Device Type#All Device Types#ACCESS`
1984
+ """
1985
+ return pulumi.get(self, "network_device_groups")
1986
+
1987
+ @property
1988
+ @pulumi.getter(name="profileName")
1989
+ def profile_name(self) -> pulumi.Output[str]:
1990
+ """
1991
+ Profile name - Default value: `Cisco`
1992
+ """
1993
+ return pulumi.get(self, "profile_name")
1994
+
1995
+ @property
1996
+ @pulumi.getter(name="snmpLinkTrapQuery")
1997
+ def snmp_link_trap_query(self) -> pulumi.Output[Optional[bool]]:
1998
+ """
1999
+ SNMP link Trap Query
2000
+ """
2001
+ return pulumi.get(self, "snmp_link_trap_query")
2002
+
2003
+ @property
2004
+ @pulumi.getter(name="snmpMacTrapQuery")
2005
+ def snmp_mac_trap_query(self) -> pulumi.Output[Optional[bool]]:
2006
+ """
2007
+ SNMP MAC Trap Query
2008
+ """
2009
+ return pulumi.get(self, "snmp_mac_trap_query")
2010
+
2011
+ @property
2012
+ @pulumi.getter(name="snmpOriginatingPolicyServiceNode")
2013
+ def snmp_originating_policy_service_node(self) -> pulumi.Output[Optional[str]]:
2014
+ """
2015
+ Originating Policy Services Node
2016
+ """
2017
+ return pulumi.get(self, "snmp_originating_policy_service_node")
2018
+
2019
+ @property
2020
+ @pulumi.getter(name="snmpPollingInterval")
2021
+ def snmp_polling_interval(self) -> pulumi.Output[Optional[int]]:
2022
+ """
2023
+ SNMP Polling Interval in seconds - Range: `600`-`86400`
2024
+ """
2025
+ return pulumi.get(self, "snmp_polling_interval")
2026
+
2027
+ @property
2028
+ @pulumi.getter(name="snmpRoCommunity")
2029
+ def snmp_ro_community(self) -> pulumi.Output[Optional[str]]:
2030
+ """
2031
+ SNMP RO Community
2032
+ """
2033
+ return pulumi.get(self, "snmp_ro_community")
2034
+
2035
+ @property
2036
+ @pulumi.getter(name="snmpVersion")
2037
+ def snmp_version(self) -> pulumi.Output[Optional[str]]:
2038
+ """
2039
+ SNMP version - Choices: `ONE`, `TWO_C`, `THREE`
2040
+ """
2041
+ return pulumi.get(self, "snmp_version")
2042
+
2043
+ @property
2044
+ @pulumi.getter(name="softwareVersion")
2045
+ def software_version(self) -> pulumi.Output[Optional[str]]:
2046
+ """
2047
+ Software version
2048
+ """
2049
+ return pulumi.get(self, "software_version")
2050
+
2051
+ @property
2052
+ @pulumi.getter(name="tacacsConnectModeOptions")
2053
+ def tacacs_connect_mode_options(self) -> pulumi.Output[Optional[str]]:
2054
+ """
2055
+ Connect mode options - Choices: `OFF`, `ON_LEGACY`, `ON_DRAFT_COMPLIANT`
2056
+ """
2057
+ return pulumi.get(self, "tacacs_connect_mode_options")
2058
+
2059
+ @property
2060
+ @pulumi.getter(name="tacacsSharedSecret")
2061
+ def tacacs_shared_secret(self) -> pulumi.Output[Optional[str]]:
2062
+ """
2063
+ Shared secret
2064
+ """
2065
+ return pulumi.get(self, "tacacs_shared_secret")
2066
+
2067
+ @property
2068
+ @pulumi.getter(name="trustsecCoaSourceHost")
2069
+ def trustsec_coa_source_host(self) -> pulumi.Output[Optional[str]]:
2070
+ """
2071
+ CoA source host
2072
+ """
2073
+ return pulumi.get(self, "trustsec_coa_source_host")
2074
+
2075
+ @property
2076
+ @pulumi.getter(name="trustsecDeviceId")
2077
+ def trustsec_device_id(self) -> pulumi.Output[Optional[str]]:
2078
+ """
2079
+ TrustSec device ID
2080
+ """
2081
+ return pulumi.get(self, "trustsec_device_id")
2082
+
2083
+ @property
2084
+ @pulumi.getter(name="trustsecDevicePassword")
2085
+ def trustsec_device_password(self) -> pulumi.Output[Optional[str]]:
2086
+ """
2087
+ TrustSec device password
2088
+ """
2089
+ return pulumi.get(self, "trustsec_device_password")
2090
+
2091
+ @property
2092
+ @pulumi.getter(name="trustsecDownloadEnviromentDataEveryXSeconds")
2093
+ def trustsec_download_enviroment_data_every_x_seconds(self) -> pulumi.Output[Optional[int]]:
2094
+ """
2095
+ Download environment data every X seconds
2096
+ """
2097
+ return pulumi.get(self, "trustsec_download_enviroment_data_every_x_seconds")
2098
+
2099
+ @property
2100
+ @pulumi.getter(name="trustsecDownloadPeerAuthorizationPolicyEveryXSeconds")
2101
+ def trustsec_download_peer_authorization_policy_every_x_seconds(self) -> pulumi.Output[Optional[int]]:
2102
+ """
2103
+ Download peer authorization policy every X seconds
2104
+ """
2105
+ return pulumi.get(self, "trustsec_download_peer_authorization_policy_every_x_seconds")
2106
+
2107
+ @property
2108
+ @pulumi.getter(name="trustsecDownloadSgaclListsEveryXSeconds")
2109
+ def trustsec_download_sgacl_lists_every_x_seconds(self) -> pulumi.Output[Optional[int]]:
2110
+ """
2111
+ Download SGACL lists every X seconds
2112
+ """
2113
+ return pulumi.get(self, "trustsec_download_sgacl_lists_every_x_seconds")
2114
+
2115
+ @property
2116
+ @pulumi.getter(name="trustsecEnableModePassword")
2117
+ def trustsec_enable_mode_password(self) -> pulumi.Output[Optional[str]]:
2118
+ """
2119
+ Enable mode password
2120
+ """
2121
+ return pulumi.get(self, "trustsec_enable_mode_password")
2122
+
2123
+ @property
2124
+ @pulumi.getter(name="trustsecExecModePassword")
2125
+ def trustsec_exec_mode_password(self) -> pulumi.Output[Optional[str]]:
2126
+ """
2127
+ EXEC mode password
2128
+ """
2129
+ return pulumi.get(self, "trustsec_exec_mode_password")
2130
+
2131
+ @property
2132
+ @pulumi.getter(name="trustsecExecModeUsername")
2133
+ def trustsec_exec_mode_username(self) -> pulumi.Output[Optional[str]]:
2134
+ """
2135
+ EXEC mode username
2136
+ """
2137
+ return pulumi.get(self, "trustsec_exec_mode_username")
2138
+
2139
+ @property
2140
+ @pulumi.getter(name="trustsecIncludeWhenDeployingSgtUpdates")
2141
+ def trustsec_include_when_deploying_sgt_updates(self) -> pulumi.Output[Optional[bool]]:
2142
+ """
2143
+ Include this device when deploying Security Group Tag Mapping Updates
2144
+ """
2145
+ return pulumi.get(self, "trustsec_include_when_deploying_sgt_updates")
2146
+
2147
+ @property
2148
+ @pulumi.getter(name="trustsecOtherSgaDevicesToTrustThisDevice")
2149
+ def trustsec_other_sga_devices_to_trust_this_device(self) -> pulumi.Output[Optional[bool]]:
2150
+ """
2151
+ Other TrustSec devices to trust this device
2152
+ """
2153
+ return pulumi.get(self, "trustsec_other_sga_devices_to_trust_this_device")
2154
+
2155
+ @property
2156
+ @pulumi.getter(name="trustsecReAuthenticationEveryXSeconds")
2157
+ def trustsec_re_authentication_every_x_seconds(self) -> pulumi.Output[Optional[int]]:
2158
+ """
2159
+ Re-authenticate every X seconds
2160
+ """
2161
+ return pulumi.get(self, "trustsec_re_authentication_every_x_seconds")
2162
+
2163
+ @property
2164
+ @pulumi.getter(name="trustsecRestApiPassword")
2165
+ def trustsec_rest_api_password(self) -> pulumi.Output[Optional[str]]:
2166
+ """
2167
+ REST API password
2168
+ """
2169
+ return pulumi.get(self, "trustsec_rest_api_password")
2170
+
2171
+ @property
2172
+ @pulumi.getter(name="trustsecRestApiUsername")
2173
+ def trustsec_rest_api_username(self) -> pulumi.Output[Optional[str]]:
2174
+ """
2175
+ REST API username
2176
+ """
2177
+ return pulumi.get(self, "trustsec_rest_api_username")
2178
+
2179
+ @property
2180
+ @pulumi.getter(name="trustsecSendConfigurationToDevice")
2181
+ def trustsec_send_configuration_to_device(self) -> pulumi.Output[Optional[bool]]:
2182
+ """
2183
+ Send configuration to device
2184
+ """
2185
+ return pulumi.get(self, "trustsec_send_configuration_to_device")
2186
+
2187
+ @property
2188
+ @pulumi.getter(name="trustsecSendConfigurationToDeviceUsing")
2189
+ def trustsec_send_configuration_to_device_using(self) -> pulumi.Output[Optional[str]]:
2190
+ """
2191
+ Send configuration to device using - Choices: `DISABLE_ALL`, `ENABLE_USING_CLI`, `ENABLE_USING_COA`
2192
+ """
2193
+ return pulumi.get(self, "trustsec_send_configuration_to_device_using")
2194
+