pulumi-ise 0.2.1__py3-none-any.whl → 0.2.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. pulumi_ise/__init__.py +81 -0
  2. pulumi_ise/config/__init__.py +1 -0
  3. pulumi_ise/config/__init__.pyi +1 -0
  4. pulumi_ise/config/vars.py +1 -0
  5. pulumi_ise/deviceadmin/__init__.py +6 -0
  6. pulumi_ise/deviceadmin/_inputs.py +807 -537
  7. pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +71 -70
  8. pulumi_ise/deviceadmin/authentication_rule.py +239 -238
  9. pulumi_ise/deviceadmin/authentication_rule_update_rank.py +43 -42
  10. pulumi_ise/deviceadmin/authentication_rule_update_ranks.py +216 -0
  11. pulumi_ise/deviceadmin/authorization_exception_rule.py +211 -210
  12. pulumi_ise/deviceadmin/authorization_exception_rule_update_rank.py +43 -42
  13. pulumi_ise/deviceadmin/authorization_exception_rule_update_ranks.py +216 -0
  14. pulumi_ise/deviceadmin/authorization_global_exception_rule.py +183 -182
  15. pulumi_ise/deviceadmin/authorization_global_exception_rule_update_rank.py +29 -28
  16. pulumi_ise/deviceadmin/authorization_global_exception_rule_update_ranks.py +164 -0
  17. pulumi_ise/deviceadmin/authorization_rule.py +211 -210
  18. pulumi_ise/deviceadmin/authorization_rule_update_rank.py +43 -42
  19. pulumi_ise/deviceadmin/authorization_rule_update_ranks.py +216 -0
  20. pulumi_ise/deviceadmin/condition.py +127 -126
  21. pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +15 -14
  22. pulumi_ise/deviceadmin/get_authentication_rule.py +31 -30
  23. pulumi_ise/deviceadmin/get_authorization_exception_rule.py +29 -28
  24. pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +23 -22
  25. pulumi_ise/deviceadmin/get_authorization_rule.py +29 -28
  26. pulumi_ise/deviceadmin/get_condition.py +19 -18
  27. pulumi_ise/deviceadmin/get_policy_set.py +25 -24
  28. pulumi_ise/deviceadmin/get_tacacs_command_set.py +13 -12
  29. pulumi_ise/deviceadmin/get_tacacs_profile.py +12 -11
  30. pulumi_ise/deviceadmin/get_time_and_date_condition.py +23 -22
  31. pulumi_ise/deviceadmin/outputs.py +815 -655
  32. pulumi_ise/deviceadmin/policy_set.py +211 -210
  33. pulumi_ise/deviceadmin/policy_set_update_rank.py +29 -28
  34. pulumi_ise/deviceadmin/policy_set_update_ranks.py +164 -0
  35. pulumi_ise/deviceadmin/tacacs_command_set.py +43 -42
  36. pulumi_ise/deviceadmin/tacacs_profile.py +29 -28
  37. pulumi_ise/deviceadmin/time_and_date_condition.py +183 -182
  38. pulumi_ise/identitymanagement/__init__.py +1 -0
  39. pulumi_ise/identitymanagement/_inputs.py +85 -84
  40. pulumi_ise/identitymanagement/active_directory_add_groups.py +85 -84
  41. pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +15 -14
  42. pulumi_ise/identitymanagement/active_directory_join_point.py +421 -420
  43. pulumi_ise/identitymanagement/certificate_authentication_profile.py +99 -98
  44. pulumi_ise/identitymanagement/endpoint.py +365 -364
  45. pulumi_ise/identitymanagement/endpoint_identity_group.py +57 -56
  46. pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +27 -26
  47. pulumi_ise/identitymanagement/get_active_directory_join_point.py +36 -35
  48. pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +17 -16
  49. pulumi_ise/identitymanagement/get_endpoint.py +36 -35
  50. pulumi_ise/identitymanagement/get_endpoint_identity_group.py +14 -13
  51. pulumi_ise/identitymanagement/get_identity_source_sequence.py +14 -13
  52. pulumi_ise/identitymanagement/get_internal_user.py +24 -23
  53. pulumi_ise/identitymanagement/get_user_identity_group.py +13 -12
  54. pulumi_ise/identitymanagement/identity_source_sequence.py +57 -56
  55. pulumi_ise/identitymanagement/internal_user.py +197 -196
  56. pulumi_ise/identitymanagement/outputs.py +95 -94
  57. pulumi_ise/identitymanagement/user_identity_group.py +43 -42
  58. pulumi_ise/network/__init__.py +1 -0
  59. pulumi_ise/network/_inputs.py +16 -15
  60. pulumi_ise/network/device.py +593 -592
  61. pulumi_ise/network/device_group.py +43 -42
  62. pulumi_ise/network/get_device.py +60 -59
  63. pulumi_ise/network/get_device_group.py +13 -12
  64. pulumi_ise/network/outputs.py +19 -18
  65. pulumi_ise/networkaccess/__init__.py +6 -0
  66. pulumi_ise/networkaccess/_inputs.py +812 -542
  67. pulumi_ise/networkaccess/allowed_protocols.py +1079 -1078
  68. pulumi_ise/networkaccess/authentication_rule.py +239 -238
  69. pulumi_ise/networkaccess/authentication_rule_update_rank.py +43 -42
  70. pulumi_ise/networkaccess/authentication_rule_update_ranks.py +216 -0
  71. pulumi_ise/networkaccess/authorization_exception_rule.py +211 -210
  72. pulumi_ise/networkaccess/authorization_exception_rule_update_rank.py +43 -42
  73. pulumi_ise/networkaccess/authorization_exception_rule_update_ranks.py +216 -0
  74. pulumi_ise/networkaccess/authorization_global_exception_rule.py +183 -182
  75. pulumi_ise/networkaccess/authorization_global_exception_rule_update_rank.py +29 -28
  76. pulumi_ise/networkaccess/authorization_global_exception_rule_update_ranks.py +164 -0
  77. pulumi_ise/networkaccess/authorization_profile.py +449 -448
  78. pulumi_ise/networkaccess/authorization_rule.py +211 -210
  79. pulumi_ise/networkaccess/authorization_rule_update_rank.py +43 -42
  80. pulumi_ise/networkaccess/authorization_rule_update_ranks.py +216 -0
  81. pulumi_ise/networkaccess/condition.py +127 -126
  82. pulumi_ise/networkaccess/dictionary.py +57 -56
  83. pulumi_ise/networkaccess/downloadable_acl.py +57 -56
  84. pulumi_ise/networkaccess/get_allowed_protocols.py +87 -86
  85. pulumi_ise/networkaccess/get_authentication_rule.py +31 -30
  86. pulumi_ise/networkaccess/get_authorization_exception_rule.py +29 -28
  87. pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +23 -22
  88. pulumi_ise/networkaccess/get_authorization_profile.py +42 -41
  89. pulumi_ise/networkaccess/get_authorization_rule.py +29 -28
  90. pulumi_ise/networkaccess/get_condition.py +19 -18
  91. pulumi_ise/networkaccess/get_dictionary.py +14 -13
  92. pulumi_ise/networkaccess/get_downloadable_acl.py +14 -13
  93. pulumi_ise/networkaccess/get_policy_set.py +25 -24
  94. pulumi_ise/networkaccess/get_time_and_date_condition.py +23 -22
  95. pulumi_ise/networkaccess/outputs.py +821 -661
  96. pulumi_ise/networkaccess/policy_set.py +211 -210
  97. pulumi_ise/networkaccess/policy_set_update_rank.py +29 -28
  98. pulumi_ise/networkaccess/policy_set_update_ranks.py +164 -0
  99. pulumi_ise/networkaccess/time_and_date_condition.py +183 -182
  100. pulumi_ise/provider.py +39 -38
  101. pulumi_ise/pulumi-plugin.json +1 -1
  102. pulumi_ise/system/__init__.py +1 -0
  103. pulumi_ise/system/_inputs.py +11 -10
  104. pulumi_ise/system/get_license_tier_state.py +6 -5
  105. pulumi_ise/system/get_repository.py +17 -16
  106. pulumi_ise/system/license_tier_state.py +1 -0
  107. pulumi_ise/system/outputs.py +13 -12
  108. pulumi_ise/system/repository.py +99 -98
  109. pulumi_ise/trustsec/__init__.py +1 -0
  110. pulumi_ise/trustsec/egress_matrix_cell.py +85 -84
  111. pulumi_ise/trustsec/egress_matrix_cell_default.py +57 -56
  112. pulumi_ise/trustsec/get_egress_matrix_cell.py +12 -11
  113. pulumi_ise/trustsec/get_egress_matrix_cell_default.py +10 -9
  114. pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +18 -17
  115. pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +15 -14
  116. pulumi_ise/trustsec/get_security_group.py +15 -14
  117. pulumi_ise/trustsec/get_security_group_acl.py +15 -14
  118. pulumi_ise/trustsec/get_sxp_domain_filter.py +16 -15
  119. pulumi_ise/trustsec/ip_to_sgt_mapping.py +113 -112
  120. pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +71 -70
  121. pulumi_ise/trustsec/security_group.py +71 -70
  122. pulumi_ise/trustsec/security_group_acl.py +71 -70
  123. pulumi_ise/trustsec/sxp_domain_filter.py +85 -84
  124. {pulumi_ise-0.2.1.dist-info → pulumi_ise-0.2.2.dist-info}/METADATA +2 -2
  125. pulumi_ise-0.2.2.dist-info/RECORD +129 -0
  126. {pulumi_ise-0.2.1.dist-info → pulumi_ise-0.2.2.dist-info}/WHEEL +1 -1
  127. pulumi_ise-0.2.1.dist-info/RECORD +0 -119
  128. {pulumi_ise-0.2.1.dist-info → pulumi_ise-0.2.2.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -27,7 +28,7 @@ class GetDeviceResult:
27
28
  """
28
29
  A collection of values returned by getDevice.
29
30
  """
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
+ 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_environment_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
32
  if authentication_dtls_required and not isinstance(authentication_dtls_required, bool):
32
33
  raise TypeError("Expected argument 'authentication_dtls_required' to be a bool")
33
34
  pulumi.set(__self__, "authentication_dtls_required", authentication_dtls_required)
@@ -118,9 +119,9 @@ class GetDeviceResult:
118
119
  if trustsec_device_password and not isinstance(trustsec_device_password, str):
119
120
  raise TypeError("Expected argument 'trustsec_device_password' to be a str")
120
121
  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)
122
+ if trustsec_download_environment_data_every_x_seconds and not isinstance(trustsec_download_environment_data_every_x_seconds, int):
123
+ raise TypeError("Expected argument 'trustsec_download_environment_data_every_x_seconds' to be a int")
124
+ pulumi.set(__self__, "trustsec_download_environment_data_every_x_seconds", trustsec_download_environment_data_every_x_seconds)
124
125
  if trustsec_download_peer_authorization_policy_every_x_seconds and not isinstance(trustsec_download_peer_authorization_policy_every_x_seconds, int):
125
126
  raise TypeError("Expected argument 'trustsec_download_peer_authorization_policy_every_x_seconds' to be a int")
126
127
  pulumi.set(__self__, "trustsec_download_peer_authorization_policy_every_x_seconds", trustsec_download_peer_authorization_policy_every_x_seconds)
@@ -160,7 +161,7 @@ class GetDeviceResult:
160
161
 
161
162
  @property
162
163
  @pulumi.getter(name="authenticationDtlsRequired")
163
- def authentication_dtls_required(self) -> bool:
164
+ def authentication_dtls_required(self) -> builtins.bool:
164
165
  """
165
166
  Enforce use of DTLS
166
167
  """
@@ -168,7 +169,7 @@ class GetDeviceResult:
168
169
 
169
170
  @property
170
171
  @pulumi.getter(name="authenticationEnableKeyWrap")
171
- def authentication_enable_key_wrap(self) -> bool:
172
+ def authentication_enable_key_wrap(self) -> builtins.bool:
172
173
  """
173
174
  Enable key wrap
174
175
  """
@@ -176,7 +177,7 @@ class GetDeviceResult:
176
177
 
177
178
  @property
178
179
  @pulumi.getter(name="authenticationEnableMultiSecret")
179
- def authentication_enable_multi_secret(self) -> bool:
180
+ def authentication_enable_multi_secret(self) -> builtins.bool:
180
181
  """
181
182
  Enable multiple RADIUS shared secrets
182
183
  """
@@ -184,7 +185,7 @@ class GetDeviceResult:
184
185
 
185
186
  @property
186
187
  @pulumi.getter(name="authenticationEncryptionKey")
187
- def authentication_encryption_key(self) -> str:
188
+ def authentication_encryption_key(self) -> builtins.str:
188
189
  """
189
190
  Encryption key
190
191
  """
@@ -192,7 +193,7 @@ class GetDeviceResult:
192
193
 
193
194
  @property
194
195
  @pulumi.getter(name="authenticationEncryptionKeyFormat")
195
- def authentication_encryption_key_format(self) -> str:
196
+ def authentication_encryption_key_format(self) -> builtins.str:
196
197
  """
197
198
  Key input format
198
199
  """
@@ -200,7 +201,7 @@ class GetDeviceResult:
200
201
 
201
202
  @property
202
203
  @pulumi.getter(name="authenticationMessageAuthenticatorCodeKey")
203
- def authentication_message_authenticator_code_key(self) -> str:
204
+ def authentication_message_authenticator_code_key(self) -> builtins.str:
204
205
  """
205
206
  Message authenticator code key
206
207
  """
@@ -208,7 +209,7 @@ class GetDeviceResult:
208
209
 
209
210
  @property
210
211
  @pulumi.getter(name="authenticationNetworkProtocol")
211
- def authentication_network_protocol(self) -> str:
212
+ def authentication_network_protocol(self) -> builtins.str:
212
213
  """
213
214
  Network protocol
214
215
  """
@@ -216,7 +217,7 @@ class GetDeviceResult:
216
217
 
217
218
  @property
218
219
  @pulumi.getter(name="authenticationRadiusSharedSecret")
219
- def authentication_radius_shared_secret(self) -> str:
220
+ def authentication_radius_shared_secret(self) -> builtins.str:
220
221
  """
221
222
  RADIUS shared secret
222
223
  """
@@ -224,7 +225,7 @@ class GetDeviceResult:
224
225
 
225
226
  @property
226
227
  @pulumi.getter(name="authenticationSecondRadiusSharedSecret")
227
- def authentication_second_radius_shared_secret(self) -> str:
228
+ def authentication_second_radius_shared_secret(self) -> builtins.str:
228
229
  """
229
230
  Second RADIUS shared secret
230
231
  """
@@ -232,7 +233,7 @@ class GetDeviceResult:
232
233
 
233
234
  @property
234
235
  @pulumi.getter(name="coaPort")
235
- def coa_port(self) -> int:
236
+ def coa_port(self) -> builtins.int:
236
237
  """
237
238
  CoA port
238
239
  """
@@ -240,7 +241,7 @@ class GetDeviceResult:
240
241
 
241
242
  @property
242
243
  @pulumi.getter
243
- def description(self) -> str:
244
+ def description(self) -> builtins.str:
244
245
  """
245
246
  Description
246
247
  """
@@ -248,7 +249,7 @@ class GetDeviceResult:
248
249
 
249
250
  @property
250
251
  @pulumi.getter(name="dtlsDnsName")
251
- def dtls_dns_name(self) -> str:
252
+ def dtls_dns_name(self) -> builtins.str:
252
253
  """
253
254
  This value is used to verify the client identity contained in the X.509 RADIUS/DTLS client certificate
254
255
  """
@@ -256,7 +257,7 @@ class GetDeviceResult:
256
257
 
257
258
  @property
258
259
  @pulumi.getter
259
- def id(self) -> str:
260
+ def id(self) -> builtins.str:
260
261
  """
261
262
  The id of the object
262
263
  """
@@ -272,7 +273,7 @@ class GetDeviceResult:
272
273
 
273
274
  @property
274
275
  @pulumi.getter(name="modelName")
275
- def model_name(self) -> str:
276
+ def model_name(self) -> builtins.str:
276
277
  """
277
278
  Model name
278
279
  """
@@ -280,7 +281,7 @@ class GetDeviceResult:
280
281
 
281
282
  @property
282
283
  @pulumi.getter
283
- def name(self) -> str:
284
+ def name(self) -> builtins.str:
284
285
  """
285
286
  The name of the network device
286
287
  """
@@ -288,7 +289,7 @@ class GetDeviceResult:
288
289
 
289
290
  @property
290
291
  @pulumi.getter(name="networkDeviceGroups")
291
- def network_device_groups(self) -> Sequence[str]:
292
+ def network_device_groups(self) -> Sequence[builtins.str]:
292
293
  """
293
294
  List of network device groups, e.g. `Device Type#All Device Types#ACCESS`
294
295
  """
@@ -296,7 +297,7 @@ class GetDeviceResult:
296
297
 
297
298
  @property
298
299
  @pulumi.getter(name="profileName")
299
- def profile_name(self) -> str:
300
+ def profile_name(self) -> builtins.str:
300
301
  """
301
302
  Profile name
302
303
  """
@@ -304,7 +305,7 @@ class GetDeviceResult:
304
305
 
305
306
  @property
306
307
  @pulumi.getter(name="snmpLinkTrapQuery")
307
- def snmp_link_trap_query(self) -> bool:
308
+ def snmp_link_trap_query(self) -> builtins.bool:
308
309
  """
309
310
  SNMP link Trap Query
310
311
  """
@@ -312,7 +313,7 @@ class GetDeviceResult:
312
313
 
313
314
  @property
314
315
  @pulumi.getter(name="snmpMacTrapQuery")
315
- def snmp_mac_trap_query(self) -> bool:
316
+ def snmp_mac_trap_query(self) -> builtins.bool:
316
317
  """
317
318
  SNMP MAC Trap Query
318
319
  """
@@ -320,7 +321,7 @@ class GetDeviceResult:
320
321
 
321
322
  @property
322
323
  @pulumi.getter(name="snmpOriginatingPolicyServiceNode")
323
- def snmp_originating_policy_service_node(self) -> str:
324
+ def snmp_originating_policy_service_node(self) -> builtins.str:
324
325
  """
325
326
  Originating Policy Services Node
326
327
  """
@@ -328,7 +329,7 @@ class GetDeviceResult:
328
329
 
329
330
  @property
330
331
  @pulumi.getter(name="snmpPollingInterval")
331
- def snmp_polling_interval(self) -> int:
332
+ def snmp_polling_interval(self) -> builtins.int:
332
333
  """
333
334
  SNMP Polling Interval in seconds
334
335
  """
@@ -336,7 +337,7 @@ class GetDeviceResult:
336
337
 
337
338
  @property
338
339
  @pulumi.getter(name="snmpRoCommunity")
339
- def snmp_ro_community(self) -> str:
340
+ def snmp_ro_community(self) -> builtins.str:
340
341
  """
341
342
  SNMP RO Community
342
343
  """
@@ -344,7 +345,7 @@ class GetDeviceResult:
344
345
 
345
346
  @property
346
347
  @pulumi.getter(name="snmpVersion")
347
- def snmp_version(self) -> str:
348
+ def snmp_version(self) -> builtins.str:
348
349
  """
349
350
  SNMP version
350
351
  """
@@ -352,7 +353,7 @@ class GetDeviceResult:
352
353
 
353
354
  @property
354
355
  @pulumi.getter(name="softwareVersion")
355
- def software_version(self) -> str:
356
+ def software_version(self) -> builtins.str:
356
357
  """
357
358
  Software version
358
359
  """
@@ -360,7 +361,7 @@ class GetDeviceResult:
360
361
 
361
362
  @property
362
363
  @pulumi.getter(name="tacacsConnectModeOptions")
363
- def tacacs_connect_mode_options(self) -> str:
364
+ def tacacs_connect_mode_options(self) -> builtins.str:
364
365
  """
365
366
  Connect mode options
366
367
  """
@@ -368,7 +369,7 @@ class GetDeviceResult:
368
369
 
369
370
  @property
370
371
  @pulumi.getter(name="tacacsSharedSecret")
371
- def tacacs_shared_secret(self) -> str:
372
+ def tacacs_shared_secret(self) -> builtins.str:
372
373
  """
373
374
  Shared secret
374
375
  """
@@ -376,7 +377,7 @@ class GetDeviceResult:
376
377
 
377
378
  @property
378
379
  @pulumi.getter(name="trustsecCoaSourceHost")
379
- def trustsec_coa_source_host(self) -> str:
380
+ def trustsec_coa_source_host(self) -> builtins.str:
380
381
  """
381
382
  CoA source host
382
383
  """
@@ -384,7 +385,7 @@ class GetDeviceResult:
384
385
 
385
386
  @property
386
387
  @pulumi.getter(name="trustsecDeviceId")
387
- def trustsec_device_id(self) -> str:
388
+ def trustsec_device_id(self) -> builtins.str:
388
389
  """
389
390
  TrustSec device ID
390
391
  """
@@ -392,23 +393,23 @@ class GetDeviceResult:
392
393
 
393
394
  @property
394
395
  @pulumi.getter(name="trustsecDevicePassword")
395
- def trustsec_device_password(self) -> str:
396
+ def trustsec_device_password(self) -> builtins.str:
396
397
  """
397
398
  TrustSec device password
398
399
  """
399
400
  return pulumi.get(self, "trustsec_device_password")
400
401
 
401
402
  @property
402
- @pulumi.getter(name="trustsecDownloadEnviromentDataEveryXSeconds")
403
- def trustsec_download_enviroment_data_every_x_seconds(self) -> int:
403
+ @pulumi.getter(name="trustsecDownloadEnvironmentDataEveryXSeconds")
404
+ def trustsec_download_environment_data_every_x_seconds(self) -> builtins.int:
404
405
  """
405
406
  Download environment data every X seconds
406
407
  """
407
- return pulumi.get(self, "trustsec_download_enviroment_data_every_x_seconds")
408
+ return pulumi.get(self, "trustsec_download_environment_data_every_x_seconds")
408
409
 
409
410
  @property
410
411
  @pulumi.getter(name="trustsecDownloadPeerAuthorizationPolicyEveryXSeconds")
411
- def trustsec_download_peer_authorization_policy_every_x_seconds(self) -> int:
412
+ def trustsec_download_peer_authorization_policy_every_x_seconds(self) -> builtins.int:
412
413
  """
413
414
  Download peer authorization policy every X seconds
414
415
  """
@@ -416,7 +417,7 @@ class GetDeviceResult:
416
417
 
417
418
  @property
418
419
  @pulumi.getter(name="trustsecDownloadSgaclListsEveryXSeconds")
419
- def trustsec_download_sgacl_lists_every_x_seconds(self) -> int:
420
+ def trustsec_download_sgacl_lists_every_x_seconds(self) -> builtins.int:
420
421
  """
421
422
  Download SGACL lists every X seconds
422
423
  """
@@ -424,7 +425,7 @@ class GetDeviceResult:
424
425
 
425
426
  @property
426
427
  @pulumi.getter(name="trustsecEnableModePassword")
427
- def trustsec_enable_mode_password(self) -> str:
428
+ def trustsec_enable_mode_password(self) -> builtins.str:
428
429
  """
429
430
  Enable mode password
430
431
  """
@@ -432,7 +433,7 @@ class GetDeviceResult:
432
433
 
433
434
  @property
434
435
  @pulumi.getter(name="trustsecExecModePassword")
435
- def trustsec_exec_mode_password(self) -> str:
436
+ def trustsec_exec_mode_password(self) -> builtins.str:
436
437
  """
437
438
  EXEC mode password
438
439
  """
@@ -440,7 +441,7 @@ class GetDeviceResult:
440
441
 
441
442
  @property
442
443
  @pulumi.getter(name="trustsecExecModeUsername")
443
- def trustsec_exec_mode_username(self) -> str:
444
+ def trustsec_exec_mode_username(self) -> builtins.str:
444
445
  """
445
446
  EXEC mode username
446
447
  """
@@ -448,7 +449,7 @@ class GetDeviceResult:
448
449
 
449
450
  @property
450
451
  @pulumi.getter(name="trustsecIncludeWhenDeployingSgtUpdates")
451
- def trustsec_include_when_deploying_sgt_updates(self) -> bool:
452
+ def trustsec_include_when_deploying_sgt_updates(self) -> builtins.bool:
452
453
  """
453
454
  Include this device when deploying Security Group Tag Mapping Updates
454
455
  """
@@ -456,7 +457,7 @@ class GetDeviceResult:
456
457
 
457
458
  @property
458
459
  @pulumi.getter(name="trustsecOtherSgaDevicesToTrustThisDevice")
459
- def trustsec_other_sga_devices_to_trust_this_device(self) -> bool:
460
+ def trustsec_other_sga_devices_to_trust_this_device(self) -> builtins.bool:
460
461
  """
461
462
  Other TrustSec devices to trust this device
462
463
  """
@@ -464,7 +465,7 @@ class GetDeviceResult:
464
465
 
465
466
  @property
466
467
  @pulumi.getter(name="trustsecReAuthenticationEveryXSeconds")
467
- def trustsec_re_authentication_every_x_seconds(self) -> int:
468
+ def trustsec_re_authentication_every_x_seconds(self) -> builtins.int:
468
469
  """
469
470
  Re-authenticate every X seconds
470
471
  """
@@ -472,7 +473,7 @@ class GetDeviceResult:
472
473
 
473
474
  @property
474
475
  @pulumi.getter(name="trustsecRestApiPassword")
475
- def trustsec_rest_api_password(self) -> str:
476
+ def trustsec_rest_api_password(self) -> builtins.str:
476
477
  """
477
478
  REST API password
478
479
  """
@@ -480,7 +481,7 @@ class GetDeviceResult:
480
481
 
481
482
  @property
482
483
  @pulumi.getter(name="trustsecRestApiUsername")
483
- def trustsec_rest_api_username(self) -> str:
484
+ def trustsec_rest_api_username(self) -> builtins.str:
484
485
  """
485
486
  REST API username
486
487
  """
@@ -488,7 +489,7 @@ class GetDeviceResult:
488
489
 
489
490
  @property
490
491
  @pulumi.getter(name="trustsecSendConfigurationToDevice")
491
- def trustsec_send_configuration_to_device(self) -> bool:
492
+ def trustsec_send_configuration_to_device(self) -> builtins.bool:
492
493
  """
493
494
  Send configuration to device
494
495
  """
@@ -496,7 +497,7 @@ class GetDeviceResult:
496
497
 
497
498
  @property
498
499
  @pulumi.getter(name="trustsecSendConfigurationToDeviceUsing")
499
- def trustsec_send_configuration_to_device_using(self) -> str:
500
+ def trustsec_send_configuration_to_device_using(self) -> builtins.str:
500
501
  """
501
502
  Send configuration to device using
502
503
  """
@@ -539,7 +540,7 @@ class AwaitableGetDeviceResult(GetDeviceResult):
539
540
  trustsec_coa_source_host=self.trustsec_coa_source_host,
540
541
  trustsec_device_id=self.trustsec_device_id,
541
542
  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_environment_data_every_x_seconds=self.trustsec_download_environment_data_every_x_seconds,
543
544
  trustsec_download_peer_authorization_policy_every_x_seconds=self.trustsec_download_peer_authorization_policy_every_x_seconds,
544
545
  trustsec_download_sgacl_lists_every_x_seconds=self.trustsec_download_sgacl_lists_every_x_seconds,
545
546
  trustsec_enable_mode_password=self.trustsec_enable_mode_password,
@@ -554,8 +555,8 @@ class AwaitableGetDeviceResult(GetDeviceResult):
554
555
  trustsec_send_configuration_to_device_using=self.trustsec_send_configuration_to_device_using)
555
556
 
556
557
 
557
- def get_device(id: Optional[str] = None,
558
- name: Optional[str] = None,
558
+ def get_device(id: Optional[builtins.str] = None,
559
+ name: Optional[builtins.str] = None,
559
560
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDeviceResult:
560
561
  """
561
562
  This data source can read the Network Device.
@@ -570,8 +571,8 @@ def get_device(id: Optional[str] = None,
570
571
  ```
571
572
 
572
573
 
573
- :param str id: The id of the object
574
- :param str name: The name of the network device
574
+ :param builtins.str id: The id of the object
575
+ :param builtins.str name: The name of the network device
575
576
  """
576
577
  __args__ = dict()
577
578
  __args__['id'] = id
@@ -610,7 +611,7 @@ def get_device(id: Optional[str] = None,
610
611
  trustsec_coa_source_host=pulumi.get(__ret__, 'trustsec_coa_source_host'),
611
612
  trustsec_device_id=pulumi.get(__ret__, 'trustsec_device_id'),
612
613
  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_environment_data_every_x_seconds=pulumi.get(__ret__, 'trustsec_download_environment_data_every_x_seconds'),
614
615
  trustsec_download_peer_authorization_policy_every_x_seconds=pulumi.get(__ret__, 'trustsec_download_peer_authorization_policy_every_x_seconds'),
615
616
  trustsec_download_sgacl_lists_every_x_seconds=pulumi.get(__ret__, 'trustsec_download_sgacl_lists_every_x_seconds'),
616
617
  trustsec_enable_mode_password=pulumi.get(__ret__, 'trustsec_enable_mode_password'),
@@ -623,8 +624,8 @@ def get_device(id: Optional[str] = None,
623
624
  trustsec_rest_api_username=pulumi.get(__ret__, 'trustsec_rest_api_username'),
624
625
  trustsec_send_configuration_to_device=pulumi.get(__ret__, 'trustsec_send_configuration_to_device'),
625
626
  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,
627
+ def get_device_output(id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
628
+ name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
628
629
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDeviceResult]:
629
630
  """
630
631
  This data source can read the Network Device.
@@ -639,8 +640,8 @@ def get_device_output(id: Optional[pulumi.Input[Optional[str]]] = None,
639
640
  ```
640
641
 
641
642
 
642
- :param str id: The id of the object
643
- :param str name: The name of the network device
643
+ :param builtins.str id: The id of the object
644
+ :param builtins.str name: The name of the network device
644
645
  """
645
646
  __args__ = dict()
646
647
  __args__['id'] = id
@@ -678,7 +679,7 @@ def get_device_output(id: Optional[pulumi.Input[Optional[str]]] = None,
678
679
  trustsec_coa_source_host=pulumi.get(__response__, 'trustsec_coa_source_host'),
679
680
  trustsec_device_id=pulumi.get(__response__, 'trustsec_device_id'),
680
681
  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_environment_data_every_x_seconds=pulumi.get(__response__, 'trustsec_download_environment_data_every_x_seconds'),
682
683
  trustsec_download_peer_authorization_policy_every_x_seconds=pulumi.get(__response__, 'trustsec_download_peer_authorization_policy_every_x_seconds'),
683
684
  trustsec_download_sgacl_lists_every_x_seconds=pulumi.get(__response__, 'trustsec_download_sgacl_lists_every_x_seconds'),
684
685
  trustsec_enable_mode_password=pulumi.get(__response__, 'trustsec_enable_mode_password'),
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -42,7 +43,7 @@ class GetDeviceGroupResult:
42
43
 
43
44
  @property
44
45
  @pulumi.getter
45
- def description(self) -> str:
46
+ def description(self) -> builtins.str:
46
47
  """
47
48
  Description
48
49
  """
@@ -50,7 +51,7 @@ class GetDeviceGroupResult:
50
51
 
51
52
  @property
52
53
  @pulumi.getter
53
- def id(self) -> str:
54
+ def id(self) -> builtins.str:
54
55
  """
55
56
  The id of the object
56
57
  """
@@ -58,7 +59,7 @@ class GetDeviceGroupResult:
58
59
 
59
60
  @property
60
61
  @pulumi.getter
61
- def name(self) -> str:
62
+ def name(self) -> builtins.str:
62
63
  """
63
64
  The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`.
64
65
  """
@@ -66,7 +67,7 @@ class GetDeviceGroupResult:
66
67
 
67
68
  @property
68
69
  @pulumi.getter(name="rootGroup")
69
- def root_group(self) -> str:
70
+ def root_group(self) -> builtins.str:
70
71
  """
71
72
  The name of the root device group.
72
73
  """
@@ -85,8 +86,8 @@ class AwaitableGetDeviceGroupResult(GetDeviceGroupResult):
85
86
  root_group=self.root_group)
86
87
 
87
88
 
88
- def get_device_group(id: Optional[str] = None,
89
- name: Optional[str] = None,
89
+ def get_device_group(id: Optional[builtins.str] = None,
90
+ name: Optional[builtins.str] = None,
90
91
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDeviceGroupResult:
91
92
  """
92
93
  This data source can read the Network Device Group.
@@ -101,8 +102,8 @@ def get_device_group(id: Optional[str] = None,
101
102
  ```
102
103
 
103
104
 
104
- :param str id: The id of the object
105
- :param str name: The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`.
105
+ :param builtins.str id: The id of the object
106
+ :param builtins.str name: The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`.
106
107
  """
107
108
  __args__ = dict()
108
109
  __args__['id'] = id
@@ -115,8 +116,8 @@ def get_device_group(id: Optional[str] = None,
115
116
  id=pulumi.get(__ret__, 'id'),
116
117
  name=pulumi.get(__ret__, 'name'),
117
118
  root_group=pulumi.get(__ret__, 'root_group'))
118
- def get_device_group_output(id: Optional[pulumi.Input[Optional[str]]] = None,
119
- name: Optional[pulumi.Input[Optional[str]]] = None,
119
+ def get_device_group_output(id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
120
+ name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
120
121
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDeviceGroupResult]:
121
122
  """
122
123
  This data source can read the Network Device Group.
@@ -131,8 +132,8 @@ def get_device_group_output(id: Optional[pulumi.Input[Optional[str]]] = None,
131
132
  ```
132
133
 
133
134
 
134
- :param str id: The id of the object
135
- :param str name: The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`.
135
+ :param builtins.str id: The id of the object
136
+ :param builtins.str name: The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`.
136
137
  """
137
138
  __args__ = dict()
138
139
  __args__['id'] = id
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -39,13 +40,13 @@ class DeviceIp(dict):
39
40
  return super().get(key, default)
40
41
 
41
42
  def __init__(__self__, *,
42
- ipaddress: str,
43
- ipaddress_exclude: Optional[str] = None,
44
- mask: Optional[str] = None):
43
+ ipaddress: builtins.str,
44
+ ipaddress_exclude: Optional[builtins.str] = None,
45
+ mask: Optional[builtins.str] = None):
45
46
  """
46
- :param str ipaddress: It can be either single ip address or ip range address
47
- :param str ipaddress_exclude: It can be either single ip address or ip range address
48
- :param str mask: Subnet mask length
47
+ :param builtins.str ipaddress: It can be either single ip address or ip range address
48
+ :param builtins.str ipaddress_exclude: It can be either single ip address or ip range address
49
+ :param builtins.str mask: Subnet mask length
49
50
  """
50
51
  pulumi.set(__self__, "ipaddress", ipaddress)
51
52
  if ipaddress_exclude is not None:
@@ -55,7 +56,7 @@ class DeviceIp(dict):
55
56
 
56
57
  @property
57
58
  @pulumi.getter
58
- def ipaddress(self) -> str:
59
+ def ipaddress(self) -> builtins.str:
59
60
  """
60
61
  It can be either single ip address or ip range address
61
62
  """
@@ -63,7 +64,7 @@ class DeviceIp(dict):
63
64
 
64
65
  @property
65
66
  @pulumi.getter(name="ipaddressExclude")
66
- def ipaddress_exclude(self) -> Optional[str]:
67
+ def ipaddress_exclude(self) -> Optional[builtins.str]:
67
68
  """
68
69
  It can be either single ip address or ip range address
69
70
  """
@@ -71,7 +72,7 @@ class DeviceIp(dict):
71
72
 
72
73
  @property
73
74
  @pulumi.getter
74
- def mask(self) -> Optional[str]:
75
+ def mask(self) -> Optional[builtins.str]:
75
76
  """
76
77
  Subnet mask length
77
78
  """
@@ -81,13 +82,13 @@ class DeviceIp(dict):
81
82
  @pulumi.output_type
82
83
  class GetDeviceIpResult(dict):
83
84
  def __init__(__self__, *,
84
- ipaddress: str,
85
- ipaddress_exclude: str,
86
- mask: str):
85
+ ipaddress: builtins.str,
86
+ ipaddress_exclude: builtins.str,
87
+ mask: builtins.str):
87
88
  """
88
- :param str ipaddress: It can be either single ip address or ip range address
89
- :param str ipaddress_exclude: It can be either single ip address or ip range address
90
- :param str mask: Subnet mask length
89
+ :param builtins.str ipaddress: It can be either single ip address or ip range address
90
+ :param builtins.str ipaddress_exclude: It can be either single ip address or ip range address
91
+ :param builtins.str mask: Subnet mask length
91
92
  """
92
93
  pulumi.set(__self__, "ipaddress", ipaddress)
93
94
  pulumi.set(__self__, "ipaddress_exclude", ipaddress_exclude)
@@ -95,7 +96,7 @@ class GetDeviceIpResult(dict):
95
96
 
96
97
  @property
97
98
  @pulumi.getter
98
- def ipaddress(self) -> str:
99
+ def ipaddress(self) -> builtins.str:
99
100
  """
100
101
  It can be either single ip address or ip range address
101
102
  """
@@ -103,7 +104,7 @@ class GetDeviceIpResult(dict):
103
104
 
104
105
  @property
105
106
  @pulumi.getter(name="ipaddressExclude")
106
- def ipaddress_exclude(self) -> str:
107
+ def ipaddress_exclude(self) -> builtins.str:
107
108
  """
108
109
  It can be either single ip address or ip range address
109
110
  """
@@ -111,7 +112,7 @@ class GetDeviceIpResult(dict):
111
112
 
112
113
  @property
113
114
  @pulumi.getter
114
- def mask(self) -> str:
115
+ def mask(self) -> builtins.str:
115
116
  """
116
117
  Subnet mask length
117
118
  """