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