pulumi-ise 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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.0.dist-info/METADATA +64 -0
  117. pulumi_ise-0.2.0.dist-info/RECORD +119 -0
  118. pulumi_ise-0.2.0.dist-info/WHEEL +5 -0
  119. pulumi_ise-0.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,376 @@
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
+
17
+ __all__ = ['IpToSgtMappingGroupArgs', 'IpToSgtMappingGroup']
18
+
19
+ @pulumi.input_type
20
+ class IpToSgtMappingGroupArgs:
21
+ def __init__(__self__, *,
22
+ deploy_type: pulumi.Input[str],
23
+ sgt: pulumi.Input[str],
24
+ deploy_to: Optional[pulumi.Input[str]] = None,
25
+ description: Optional[pulumi.Input[str]] = None,
26
+ name: Optional[pulumi.Input[str]] = None):
27
+ """
28
+ The set of arguments for constructing a IpToSgtMappingGroup resource.
29
+ :param pulumi.Input[str] deploy_type: Deploy Type - Choices: `ALL`, `ND`, `NDG`
30
+ :param pulumi.Input[str] sgt: Trustsec Security Group ID
31
+ :param pulumi.Input[str] deploy_to: Mandatory unless `deploy_type` is `ALL`
32
+ :param pulumi.Input[str] description: Description
33
+ :param pulumi.Input[str] name: The name of the IP to SGT mapping Group
34
+ """
35
+ pulumi.set(__self__, "deploy_type", deploy_type)
36
+ pulumi.set(__self__, "sgt", sgt)
37
+ if deploy_to is not None:
38
+ pulumi.set(__self__, "deploy_to", deploy_to)
39
+ if description is not None:
40
+ pulumi.set(__self__, "description", description)
41
+ if name is not None:
42
+ pulumi.set(__self__, "name", name)
43
+
44
+ @property
45
+ @pulumi.getter(name="deployType")
46
+ def deploy_type(self) -> pulumi.Input[str]:
47
+ """
48
+ Deploy Type - Choices: `ALL`, `ND`, `NDG`
49
+ """
50
+ return pulumi.get(self, "deploy_type")
51
+
52
+ @deploy_type.setter
53
+ def deploy_type(self, value: pulumi.Input[str]):
54
+ pulumi.set(self, "deploy_type", value)
55
+
56
+ @property
57
+ @pulumi.getter
58
+ def sgt(self) -> pulumi.Input[str]:
59
+ """
60
+ Trustsec Security Group ID
61
+ """
62
+ return pulumi.get(self, "sgt")
63
+
64
+ @sgt.setter
65
+ def sgt(self, value: pulumi.Input[str]):
66
+ pulumi.set(self, "sgt", value)
67
+
68
+ @property
69
+ @pulumi.getter(name="deployTo")
70
+ def deploy_to(self) -> Optional[pulumi.Input[str]]:
71
+ """
72
+ Mandatory unless `deploy_type` is `ALL`
73
+ """
74
+ return pulumi.get(self, "deploy_to")
75
+
76
+ @deploy_to.setter
77
+ def deploy_to(self, value: Optional[pulumi.Input[str]]):
78
+ pulumi.set(self, "deploy_to", value)
79
+
80
+ @property
81
+ @pulumi.getter
82
+ def description(self) -> Optional[pulumi.Input[str]]:
83
+ """
84
+ Description
85
+ """
86
+ return pulumi.get(self, "description")
87
+
88
+ @description.setter
89
+ def description(self, value: Optional[pulumi.Input[str]]):
90
+ pulumi.set(self, "description", value)
91
+
92
+ @property
93
+ @pulumi.getter
94
+ def name(self) -> Optional[pulumi.Input[str]]:
95
+ """
96
+ The name of the IP to SGT mapping Group
97
+ """
98
+ return pulumi.get(self, "name")
99
+
100
+ @name.setter
101
+ def name(self, value: Optional[pulumi.Input[str]]):
102
+ pulumi.set(self, "name", value)
103
+
104
+
105
+ @pulumi.input_type
106
+ class _IpToSgtMappingGroupState:
107
+ def __init__(__self__, *,
108
+ deploy_to: Optional[pulumi.Input[str]] = None,
109
+ deploy_type: Optional[pulumi.Input[str]] = None,
110
+ description: Optional[pulumi.Input[str]] = None,
111
+ name: Optional[pulumi.Input[str]] = None,
112
+ sgt: Optional[pulumi.Input[str]] = None):
113
+ """
114
+ Input properties used for looking up and filtering IpToSgtMappingGroup resources.
115
+ :param pulumi.Input[str] deploy_to: Mandatory unless `deploy_type` is `ALL`
116
+ :param pulumi.Input[str] deploy_type: Deploy Type - Choices: `ALL`, `ND`, `NDG`
117
+ :param pulumi.Input[str] description: Description
118
+ :param pulumi.Input[str] name: The name of the IP to SGT mapping Group
119
+ :param pulumi.Input[str] sgt: Trustsec Security Group ID
120
+ """
121
+ if deploy_to is not None:
122
+ pulumi.set(__self__, "deploy_to", deploy_to)
123
+ if deploy_type is not None:
124
+ pulumi.set(__self__, "deploy_type", deploy_type)
125
+ if description is not None:
126
+ pulumi.set(__self__, "description", description)
127
+ if name is not None:
128
+ pulumi.set(__self__, "name", name)
129
+ if sgt is not None:
130
+ pulumi.set(__self__, "sgt", sgt)
131
+
132
+ @property
133
+ @pulumi.getter(name="deployTo")
134
+ def deploy_to(self) -> Optional[pulumi.Input[str]]:
135
+ """
136
+ Mandatory unless `deploy_type` is `ALL`
137
+ """
138
+ return pulumi.get(self, "deploy_to")
139
+
140
+ @deploy_to.setter
141
+ def deploy_to(self, value: Optional[pulumi.Input[str]]):
142
+ pulumi.set(self, "deploy_to", value)
143
+
144
+ @property
145
+ @pulumi.getter(name="deployType")
146
+ def deploy_type(self) -> Optional[pulumi.Input[str]]:
147
+ """
148
+ Deploy Type - Choices: `ALL`, `ND`, `NDG`
149
+ """
150
+ return pulumi.get(self, "deploy_type")
151
+
152
+ @deploy_type.setter
153
+ def deploy_type(self, value: Optional[pulumi.Input[str]]):
154
+ pulumi.set(self, "deploy_type", value)
155
+
156
+ @property
157
+ @pulumi.getter
158
+ def description(self) -> Optional[pulumi.Input[str]]:
159
+ """
160
+ Description
161
+ """
162
+ return pulumi.get(self, "description")
163
+
164
+ @description.setter
165
+ def description(self, value: Optional[pulumi.Input[str]]):
166
+ pulumi.set(self, "description", value)
167
+
168
+ @property
169
+ @pulumi.getter
170
+ def name(self) -> Optional[pulumi.Input[str]]:
171
+ """
172
+ The name of the IP to SGT mapping Group
173
+ """
174
+ return pulumi.get(self, "name")
175
+
176
+ @name.setter
177
+ def name(self, value: Optional[pulumi.Input[str]]):
178
+ pulumi.set(self, "name", value)
179
+
180
+ @property
181
+ @pulumi.getter
182
+ def sgt(self) -> Optional[pulumi.Input[str]]:
183
+ """
184
+ Trustsec Security Group ID
185
+ """
186
+ return pulumi.get(self, "sgt")
187
+
188
+ @sgt.setter
189
+ def sgt(self, value: Optional[pulumi.Input[str]]):
190
+ pulumi.set(self, "sgt", value)
191
+
192
+
193
+ class IpToSgtMappingGroup(pulumi.CustomResource):
194
+ @overload
195
+ def __init__(__self__,
196
+ resource_name: str,
197
+ opts: Optional[pulumi.ResourceOptions] = None,
198
+ deploy_to: Optional[pulumi.Input[str]] = None,
199
+ deploy_type: Optional[pulumi.Input[str]] = None,
200
+ description: Optional[pulumi.Input[str]] = None,
201
+ name: Optional[pulumi.Input[str]] = None,
202
+ sgt: Optional[pulumi.Input[str]] = None,
203
+ __props__=None):
204
+ """
205
+ This resource can manage a TrustSec IP to SGT Mapping Group.
206
+
207
+ ## Example Usage
208
+
209
+ ```python
210
+ import pulumi
211
+ import pulumi_ise as ise
212
+
213
+ example = ise.trustsec.IpToSgtMappingGroup("example",
214
+ name="groupA",
215
+ deploy_type="ALL",
216
+ sgt="93e1bf00-8c01-11e6-996c-525400b48521")
217
+ ```
218
+
219
+ ## Import
220
+
221
+ ```sh
222
+ $ pulumi import ise:trustsec/ipToSgtMappingGroup:IpToSgtMappingGroup example "76d24097-41c4-4558-a4d0-a8c07ac08470"
223
+ ```
224
+
225
+ :param str resource_name: The name of the resource.
226
+ :param pulumi.ResourceOptions opts: Options for the resource.
227
+ :param pulumi.Input[str] deploy_to: Mandatory unless `deploy_type` is `ALL`
228
+ :param pulumi.Input[str] deploy_type: Deploy Type - Choices: `ALL`, `ND`, `NDG`
229
+ :param pulumi.Input[str] description: Description
230
+ :param pulumi.Input[str] name: The name of the IP to SGT mapping Group
231
+ :param pulumi.Input[str] sgt: Trustsec Security Group ID
232
+ """
233
+ ...
234
+ @overload
235
+ def __init__(__self__,
236
+ resource_name: str,
237
+ args: IpToSgtMappingGroupArgs,
238
+ opts: Optional[pulumi.ResourceOptions] = None):
239
+ """
240
+ This resource can manage a TrustSec IP to SGT Mapping Group.
241
+
242
+ ## Example Usage
243
+
244
+ ```python
245
+ import pulumi
246
+ import pulumi_ise as ise
247
+
248
+ example = ise.trustsec.IpToSgtMappingGroup("example",
249
+ name="groupA",
250
+ deploy_type="ALL",
251
+ sgt="93e1bf00-8c01-11e6-996c-525400b48521")
252
+ ```
253
+
254
+ ## Import
255
+
256
+ ```sh
257
+ $ pulumi import ise:trustsec/ipToSgtMappingGroup:IpToSgtMappingGroup example "76d24097-41c4-4558-a4d0-a8c07ac08470"
258
+ ```
259
+
260
+ :param str resource_name: The name of the resource.
261
+ :param IpToSgtMappingGroupArgs args: The arguments to use to populate this resource's properties.
262
+ :param pulumi.ResourceOptions opts: Options for the resource.
263
+ """
264
+ ...
265
+ def __init__(__self__, resource_name: str, *args, **kwargs):
266
+ resource_args, opts = _utilities.get_resource_args_opts(IpToSgtMappingGroupArgs, pulumi.ResourceOptions, *args, **kwargs)
267
+ if resource_args is not None:
268
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
269
+ else:
270
+ __self__._internal_init(resource_name, *args, **kwargs)
271
+
272
+ def _internal_init(__self__,
273
+ resource_name: str,
274
+ opts: Optional[pulumi.ResourceOptions] = None,
275
+ deploy_to: Optional[pulumi.Input[str]] = None,
276
+ deploy_type: Optional[pulumi.Input[str]] = None,
277
+ description: Optional[pulumi.Input[str]] = None,
278
+ name: Optional[pulumi.Input[str]] = None,
279
+ sgt: Optional[pulumi.Input[str]] = None,
280
+ __props__=None):
281
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
282
+ if not isinstance(opts, pulumi.ResourceOptions):
283
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
284
+ if opts.id is None:
285
+ if __props__ is not None:
286
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
287
+ __props__ = IpToSgtMappingGroupArgs.__new__(IpToSgtMappingGroupArgs)
288
+
289
+ __props__.__dict__["deploy_to"] = deploy_to
290
+ if deploy_type is None and not opts.urn:
291
+ raise TypeError("Missing required property 'deploy_type'")
292
+ __props__.__dict__["deploy_type"] = deploy_type
293
+ __props__.__dict__["description"] = description
294
+ __props__.__dict__["name"] = name
295
+ if sgt is None and not opts.urn:
296
+ raise TypeError("Missing required property 'sgt'")
297
+ __props__.__dict__["sgt"] = sgt
298
+ super(IpToSgtMappingGroup, __self__).__init__(
299
+ 'ise:trustsec/ipToSgtMappingGroup:IpToSgtMappingGroup',
300
+ resource_name,
301
+ __props__,
302
+ opts)
303
+
304
+ @staticmethod
305
+ def get(resource_name: str,
306
+ id: pulumi.Input[str],
307
+ opts: Optional[pulumi.ResourceOptions] = None,
308
+ deploy_to: Optional[pulumi.Input[str]] = None,
309
+ deploy_type: Optional[pulumi.Input[str]] = None,
310
+ description: Optional[pulumi.Input[str]] = None,
311
+ name: Optional[pulumi.Input[str]] = None,
312
+ sgt: Optional[pulumi.Input[str]] = None) -> 'IpToSgtMappingGroup':
313
+ """
314
+ Get an existing IpToSgtMappingGroup resource's state with the given name, id, and optional extra
315
+ properties used to qualify the lookup.
316
+
317
+ :param str resource_name: The unique name of the resulting resource.
318
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
319
+ :param pulumi.ResourceOptions opts: Options for the resource.
320
+ :param pulumi.Input[str] deploy_to: Mandatory unless `deploy_type` is `ALL`
321
+ :param pulumi.Input[str] deploy_type: Deploy Type - Choices: `ALL`, `ND`, `NDG`
322
+ :param pulumi.Input[str] description: Description
323
+ :param pulumi.Input[str] name: The name of the IP to SGT mapping Group
324
+ :param pulumi.Input[str] sgt: Trustsec Security Group ID
325
+ """
326
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
327
+
328
+ __props__ = _IpToSgtMappingGroupState.__new__(_IpToSgtMappingGroupState)
329
+
330
+ __props__.__dict__["deploy_to"] = deploy_to
331
+ __props__.__dict__["deploy_type"] = deploy_type
332
+ __props__.__dict__["description"] = description
333
+ __props__.__dict__["name"] = name
334
+ __props__.__dict__["sgt"] = sgt
335
+ return IpToSgtMappingGroup(resource_name, opts=opts, __props__=__props__)
336
+
337
+ @property
338
+ @pulumi.getter(name="deployTo")
339
+ def deploy_to(self) -> pulumi.Output[Optional[str]]:
340
+ """
341
+ Mandatory unless `deploy_type` is `ALL`
342
+ """
343
+ return pulumi.get(self, "deploy_to")
344
+
345
+ @property
346
+ @pulumi.getter(name="deployType")
347
+ def deploy_type(self) -> pulumi.Output[str]:
348
+ """
349
+ Deploy Type - Choices: `ALL`, `ND`, `NDG`
350
+ """
351
+ return pulumi.get(self, "deploy_type")
352
+
353
+ @property
354
+ @pulumi.getter
355
+ def description(self) -> pulumi.Output[Optional[str]]:
356
+ """
357
+ Description
358
+ """
359
+ return pulumi.get(self, "description")
360
+
361
+ @property
362
+ @pulumi.getter
363
+ def name(self) -> pulumi.Output[str]:
364
+ """
365
+ The name of the IP to SGT mapping Group
366
+ """
367
+ return pulumi.get(self, "name")
368
+
369
+ @property
370
+ @pulumi.getter
371
+ def sgt(self) -> pulumi.Output[str]:
372
+ """
373
+ Trustsec Security Group ID
374
+ """
375
+ return pulumi.get(self, "sgt")
376
+