pulumi-ise 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. pulumi_ise/__init__.py +362 -0
  2. pulumi_ise/_utilities.py +291 -0
  3. pulumi_ise/config/__init__.py +8 -0
  4. pulumi_ise/config/__init__.pyi +36 -0
  5. pulumi_ise/config/vars.py +52 -0
  6. pulumi_ise/deviceadmin/__init__.py +29 -0
  7. pulumi_ise/deviceadmin/_inputs.py +1952 -0
  8. pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +376 -0
  9. pulumi_ise/deviceadmin/authentication_rule.py +1045 -0
  10. pulumi_ise/deviceadmin/authorization_exception_rule.py +937 -0
  11. pulumi_ise/deviceadmin/authorization_global_exception_rule.py +887 -0
  12. pulumi_ise/deviceadmin/authorization_rule.py +937 -0
  13. pulumi_ise/deviceadmin/condition.py +645 -0
  14. pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +161 -0
  15. pulumi_ise/deviceadmin/get_authentication_rule.py +338 -0
  16. pulumi_ise/deviceadmin/get_authorization_exception_rule.py +312 -0
  17. pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +292 -0
  18. pulumi_ise/deviceadmin/get_authorization_rule.py +312 -0
  19. pulumi_ise/deviceadmin/get_condition.py +227 -0
  20. pulumi_ise/deviceadmin/get_policy_set.py +305 -0
  21. pulumi_ise/deviceadmin/get_tacacs_command_set.py +146 -0
  22. pulumi_ise/deviceadmin/get_tacacs_profile.py +133 -0
  23. pulumi_ise/deviceadmin/get_time_and_date_condition.py +265 -0
  24. pulumi_ise/deviceadmin/outputs.py +3173 -0
  25. pulumi_ise/deviceadmin/policy_set.py +942 -0
  26. pulumi_ise/deviceadmin/tacacs_command_set.py +321 -0
  27. pulumi_ise/deviceadmin/tacacs_profile.py +272 -0
  28. pulumi_ise/deviceadmin/time_and_date_condition.py +765 -0
  29. pulumi_ise/identitymanagement/__init__.py +26 -0
  30. pulumi_ise/identitymanagement/_inputs.py +313 -0
  31. pulumi_ise/identitymanagement/active_directory_add_groups.py +478 -0
  32. pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +211 -0
  33. pulumi_ise/identitymanagement/active_directory_join_point.py +1671 -0
  34. pulumi_ise/identitymanagement/certificate_authentication_profile.py +520 -0
  35. pulumi_ise/identitymanagement/endpoint.py +1371 -0
  36. pulumi_ise/identitymanagement/endpoint_identity_group.py +322 -0
  37. pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +198 -0
  38. pulumi_ise/identitymanagement/get_active_directory_join_point.py +518 -0
  39. pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +187 -0
  40. pulumi_ise/identitymanagement/get_endpoint.py +434 -0
  41. pulumi_ise/identitymanagement/get_endpoint_identity_group.py +148 -0
  42. pulumi_ise/identitymanagement/get_identity_source_sequence.py +159 -0
  43. pulumi_ise/identitymanagement/get_internal_user.py +278 -0
  44. pulumi_ise/identitymanagement/get_user_identity_group.py +135 -0
  45. pulumi_ise/identitymanagement/identity_source_sequence.py +371 -0
  46. pulumi_ise/identitymanagement/internal_user.py +825 -0
  47. pulumi_ise/identitymanagement/outputs.py +486 -0
  48. pulumi_ise/identitymanagement/user_identity_group.py +275 -0
  49. pulumi_ise/network/__init__.py +13 -0
  50. pulumi_ise/network/_inputs.py +69 -0
  51. pulumi_ise/network/device.py +2189 -0
  52. pulumi_ise/network/device_group.py +276 -0
  53. pulumi_ise/network/get_device.py +643 -0
  54. pulumi_ise/network/get_device_group.py +135 -0
  55. pulumi_ise/network/outputs.py +115 -0
  56. pulumi_ise/networkaccess/__init__.py +31 -0
  57. pulumi_ise/networkaccess/_inputs.py +1948 -0
  58. pulumi_ise/networkaccess/allowed_protocols.py +3962 -0
  59. pulumi_ise/networkaccess/authentication_rule.py +1045 -0
  60. pulumi_ise/networkaccess/authorization_exception_rule.py +937 -0
  61. pulumi_ise/networkaccess/authorization_global_exception_rule.py +887 -0
  62. pulumi_ise/networkaccess/authorization_profile.py +1677 -0
  63. pulumi_ise/networkaccess/authorization_rule.py +937 -0
  64. pulumi_ise/networkaccess/condition.py +645 -0
  65. pulumi_ise/networkaccess/dictionary.py +326 -0
  66. pulumi_ise/networkaccess/downloadable_acl.py +325 -0
  67. pulumi_ise/networkaccess/get_allowed_protocols.py +1097 -0
  68. pulumi_ise/networkaccess/get_authentication_rule.py +338 -0
  69. pulumi_ise/networkaccess/get_authorization_exception_rule.py +312 -0
  70. pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +292 -0
  71. pulumi_ise/networkaccess/get_authorization_profile.py +526 -0
  72. pulumi_ise/networkaccess/get_authorization_rule.py +312 -0
  73. pulumi_ise/networkaccess/get_condition.py +227 -0
  74. pulumi_ise/networkaccess/get_dictionary.py +148 -0
  75. pulumi_ise/networkaccess/get_downloadable_acl.py +148 -0
  76. pulumi_ise/networkaccess/get_policy_set.py +305 -0
  77. pulumi_ise/networkaccess/get_time_and_date_condition.py +265 -0
  78. pulumi_ise/networkaccess/outputs.py +3188 -0
  79. pulumi_ise/networkaccess/policy_set.py +942 -0
  80. pulumi_ise/networkaccess/time_and_date_condition.py +765 -0
  81. pulumi_ise/provider.py +204 -0
  82. pulumi_ise/pulumi-plugin.json +4 -0
  83. pulumi_ise/py.typed +0 -0
  84. pulumi_ise/system/__init__.py +13 -0
  85. pulumi_ise/system/_inputs.py +56 -0
  86. pulumi_ise/system/get_license_tier_state.py +105 -0
  87. pulumi_ise/system/get_repository.py +187 -0
  88. pulumi_ise/system/license_tier_state.py +184 -0
  89. pulumi_ise/system/outputs.py +78 -0
  90. pulumi_ise/system/repository.py +473 -0
  91. pulumi_ise/trustsec/__init__.py +17 -0
  92. pulumi_ise/trustsec/egress_matrix_cell.py +424 -0
  93. pulumi_ise/trustsec/get_egress_matrix_cell.py +169 -0
  94. pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +200 -0
  95. pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +161 -0
  96. pulumi_ise/trustsec/get_security_group.py +161 -0
  97. pulumi_ise/trustsec/get_security_group_acl.py +161 -0
  98. pulumi_ise/trustsec/ip_to_sgt_mapping.py +512 -0
  99. pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +371 -0
  100. pulumi_ise/trustsec/security_group.py +374 -0
  101. pulumi_ise/trustsec/security_group_acl.py +374 -0
  102. pulumi_ise-0.1.0.dist-info/METADATA +63 -0
  103. pulumi_ise-0.1.0.dist-info/RECORD +105 -0
  104. pulumi_ise-0.1.0.dist-info/WHEEL +5 -0
  105. pulumi_ise-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,305 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetPolicySetResult',
15
+ 'AwaitableGetPolicySetResult',
16
+ 'get_policy_set',
17
+ 'get_policy_set_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetPolicySetResult:
22
+ """
23
+ A collection of values returned by getPolicySet.
24
+ """
25
+ def __init__(__self__, childrens=None, condition_attribute_name=None, condition_attribute_value=None, condition_dictionary_name=None, condition_dictionary_value=None, condition_id=None, condition_is_negate=None, condition_operator=None, condition_type=None, default=None, description=None, id=None, is_proxy=None, name=None, rank=None, service_name=None, state=None):
26
+ if childrens and not isinstance(childrens, list):
27
+ raise TypeError("Expected argument 'childrens' to be a list")
28
+ pulumi.set(__self__, "childrens", childrens)
29
+ if condition_attribute_name and not isinstance(condition_attribute_name, str):
30
+ raise TypeError("Expected argument 'condition_attribute_name' to be a str")
31
+ pulumi.set(__self__, "condition_attribute_name", condition_attribute_name)
32
+ if condition_attribute_value and not isinstance(condition_attribute_value, str):
33
+ raise TypeError("Expected argument 'condition_attribute_value' to be a str")
34
+ pulumi.set(__self__, "condition_attribute_value", condition_attribute_value)
35
+ if condition_dictionary_name and not isinstance(condition_dictionary_name, str):
36
+ raise TypeError("Expected argument 'condition_dictionary_name' to be a str")
37
+ pulumi.set(__self__, "condition_dictionary_name", condition_dictionary_name)
38
+ if condition_dictionary_value and not isinstance(condition_dictionary_value, str):
39
+ raise TypeError("Expected argument 'condition_dictionary_value' to be a str")
40
+ pulumi.set(__self__, "condition_dictionary_value", condition_dictionary_value)
41
+ if condition_id and not isinstance(condition_id, str):
42
+ raise TypeError("Expected argument 'condition_id' to be a str")
43
+ pulumi.set(__self__, "condition_id", condition_id)
44
+ if condition_is_negate and not isinstance(condition_is_negate, bool):
45
+ raise TypeError("Expected argument 'condition_is_negate' to be a bool")
46
+ pulumi.set(__self__, "condition_is_negate", condition_is_negate)
47
+ if condition_operator and not isinstance(condition_operator, str):
48
+ raise TypeError("Expected argument 'condition_operator' to be a str")
49
+ pulumi.set(__self__, "condition_operator", condition_operator)
50
+ if condition_type and not isinstance(condition_type, str):
51
+ raise TypeError("Expected argument 'condition_type' to be a str")
52
+ pulumi.set(__self__, "condition_type", condition_type)
53
+ if default and not isinstance(default, bool):
54
+ raise TypeError("Expected argument 'default' to be a bool")
55
+ pulumi.set(__self__, "default", default)
56
+ if description and not isinstance(description, str):
57
+ raise TypeError("Expected argument 'description' to be a str")
58
+ pulumi.set(__self__, "description", description)
59
+ if id and not isinstance(id, str):
60
+ raise TypeError("Expected argument 'id' to be a str")
61
+ pulumi.set(__self__, "id", id)
62
+ if is_proxy and not isinstance(is_proxy, bool):
63
+ raise TypeError("Expected argument 'is_proxy' to be a bool")
64
+ pulumi.set(__self__, "is_proxy", is_proxy)
65
+ if name and not isinstance(name, str):
66
+ raise TypeError("Expected argument 'name' to be a str")
67
+ pulumi.set(__self__, "name", name)
68
+ if rank and not isinstance(rank, int):
69
+ raise TypeError("Expected argument 'rank' to be a int")
70
+ pulumi.set(__self__, "rank", rank)
71
+ if service_name and not isinstance(service_name, str):
72
+ raise TypeError("Expected argument 'service_name' to be a str")
73
+ pulumi.set(__self__, "service_name", service_name)
74
+ if state and not isinstance(state, str):
75
+ raise TypeError("Expected argument 'state' to be a str")
76
+ pulumi.set(__self__, "state", state)
77
+
78
+ @property
79
+ @pulumi.getter
80
+ def childrens(self) -> Sequence['outputs.GetPolicySetChildrenResult']:
81
+ """
82
+ List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
83
+ """
84
+ return pulumi.get(self, "childrens")
85
+
86
+ @property
87
+ @pulumi.getter(name="conditionAttributeName")
88
+ def condition_attribute_name(self) -> str:
89
+ """
90
+ Dictionary attribute name
91
+ """
92
+ return pulumi.get(self, "condition_attribute_name")
93
+
94
+ @property
95
+ @pulumi.getter(name="conditionAttributeValue")
96
+ def condition_attribute_value(self) -> str:
97
+ """
98
+ Attribute value for condition. Value type is specified in dictionary object.
99
+ """
100
+ return pulumi.get(self, "condition_attribute_value")
101
+
102
+ @property
103
+ @pulumi.getter(name="conditionDictionaryName")
104
+ def condition_dictionary_name(self) -> str:
105
+ """
106
+ Dictionary name
107
+ """
108
+ return pulumi.get(self, "condition_dictionary_name")
109
+
110
+ @property
111
+ @pulumi.getter(name="conditionDictionaryValue")
112
+ def condition_dictionary_value(self) -> str:
113
+ """
114
+ Dictionary value
115
+ """
116
+ return pulumi.get(self, "condition_dictionary_value")
117
+
118
+ @property
119
+ @pulumi.getter(name="conditionId")
120
+ def condition_id(self) -> str:
121
+ """
122
+ UUID for condition
123
+ """
124
+ return pulumi.get(self, "condition_id")
125
+
126
+ @property
127
+ @pulumi.getter(name="conditionIsNegate")
128
+ def condition_is_negate(self) -> bool:
129
+ """
130
+ Indicates whereas this condition is in negate mode
131
+ """
132
+ return pulumi.get(self, "condition_is_negate")
133
+
134
+ @property
135
+ @pulumi.getter(name="conditionOperator")
136
+ def condition_operator(self) -> str:
137
+ """
138
+ Equality operator
139
+ """
140
+ return pulumi.get(self, "condition_operator")
141
+
142
+ @property
143
+ @pulumi.getter(name="conditionType")
144
+ def condition_type(self) -> str:
145
+ """
146
+ Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
147
+ """
148
+ return pulumi.get(self, "condition_type")
149
+
150
+ @property
151
+ @pulumi.getter
152
+ def default(self) -> bool:
153
+ """
154
+ Indicates if this policy set is the default one
155
+ """
156
+ return pulumi.get(self, "default")
157
+
158
+ @property
159
+ @pulumi.getter
160
+ def description(self) -> str:
161
+ """
162
+ The description of the policy set
163
+ """
164
+ return pulumi.get(self, "description")
165
+
166
+ @property
167
+ @pulumi.getter
168
+ def id(self) -> str:
169
+ """
170
+ The id of the object
171
+ """
172
+ return pulumi.get(self, "id")
173
+
174
+ @property
175
+ @pulumi.getter(name="isProxy")
176
+ def is_proxy(self) -> bool:
177
+ """
178
+ Flag which indicates if the policy set service is of type 'Proxy Sequence' or 'Allowed Protocols'
179
+ """
180
+ return pulumi.get(self, "is_proxy")
181
+
182
+ @property
183
+ @pulumi.getter
184
+ def name(self) -> str:
185
+ """
186
+ Given name for the policy set, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
187
+ """
188
+ return pulumi.get(self, "name")
189
+
190
+ @property
191
+ @pulumi.getter
192
+ def rank(self) -> int:
193
+ """
194
+ The rank (priority) in relation to other policy sets. Lower rank is higher priority.
195
+ """
196
+ return pulumi.get(self, "rank")
197
+
198
+ @property
199
+ @pulumi.getter(name="serviceName")
200
+ def service_name(self) -> str:
201
+ """
202
+ Policy set service identifier. 'Allowed Protocols' or 'Server Sequence'.
203
+ """
204
+ return pulumi.get(self, "service_name")
205
+
206
+ @property
207
+ @pulumi.getter
208
+ def state(self) -> str:
209
+ """
210
+ The state that the policy set is in. A disabled policy set cannot be matched.
211
+ """
212
+ return pulumi.get(self, "state")
213
+
214
+
215
+ class AwaitableGetPolicySetResult(GetPolicySetResult):
216
+ # pylint: disable=using-constant-test
217
+ def __await__(self):
218
+ if False:
219
+ yield self
220
+ return GetPolicySetResult(
221
+ childrens=self.childrens,
222
+ condition_attribute_name=self.condition_attribute_name,
223
+ condition_attribute_value=self.condition_attribute_value,
224
+ condition_dictionary_name=self.condition_dictionary_name,
225
+ condition_dictionary_value=self.condition_dictionary_value,
226
+ condition_id=self.condition_id,
227
+ condition_is_negate=self.condition_is_negate,
228
+ condition_operator=self.condition_operator,
229
+ condition_type=self.condition_type,
230
+ default=self.default,
231
+ description=self.description,
232
+ id=self.id,
233
+ is_proxy=self.is_proxy,
234
+ name=self.name,
235
+ rank=self.rank,
236
+ service_name=self.service_name,
237
+ state=self.state)
238
+
239
+
240
+ def get_policy_set(id: Optional[str] = None,
241
+ name: Optional[str] = None,
242
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPolicySetResult:
243
+ """
244
+ This data source can read the Device Admin Policy Set.
245
+
246
+ ## Example Usage
247
+
248
+ ```python
249
+ import pulumi
250
+ import pulumi_ise as ise
251
+
252
+ example = ise.deviceadmin.get_policy_set(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
253
+ ```
254
+
255
+
256
+ :param str id: The id of the object
257
+ :param str name: Given name for the policy set, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
258
+ """
259
+ __args__ = dict()
260
+ __args__['id'] = id
261
+ __args__['name'] = name
262
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
263
+ __ret__ = pulumi.runtime.invoke('ise:deviceadmin/getPolicySet:getPolicySet', __args__, opts=opts, typ=GetPolicySetResult).value
264
+
265
+ return AwaitableGetPolicySetResult(
266
+ childrens=pulumi.get(__ret__, 'childrens'),
267
+ condition_attribute_name=pulumi.get(__ret__, 'condition_attribute_name'),
268
+ condition_attribute_value=pulumi.get(__ret__, 'condition_attribute_value'),
269
+ condition_dictionary_name=pulumi.get(__ret__, 'condition_dictionary_name'),
270
+ condition_dictionary_value=pulumi.get(__ret__, 'condition_dictionary_value'),
271
+ condition_id=pulumi.get(__ret__, 'condition_id'),
272
+ condition_is_negate=pulumi.get(__ret__, 'condition_is_negate'),
273
+ condition_operator=pulumi.get(__ret__, 'condition_operator'),
274
+ condition_type=pulumi.get(__ret__, 'condition_type'),
275
+ default=pulumi.get(__ret__, 'default'),
276
+ description=pulumi.get(__ret__, 'description'),
277
+ id=pulumi.get(__ret__, 'id'),
278
+ is_proxy=pulumi.get(__ret__, 'is_proxy'),
279
+ name=pulumi.get(__ret__, 'name'),
280
+ rank=pulumi.get(__ret__, 'rank'),
281
+ service_name=pulumi.get(__ret__, 'service_name'),
282
+ state=pulumi.get(__ret__, 'state'))
283
+
284
+
285
+ @_utilities.lift_output_func(get_policy_set)
286
+ def get_policy_set_output(id: Optional[pulumi.Input[Optional[str]]] = None,
287
+ name: Optional[pulumi.Input[Optional[str]]] = None,
288
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPolicySetResult]:
289
+ """
290
+ This data source can read the Device Admin Policy Set.
291
+
292
+ ## Example Usage
293
+
294
+ ```python
295
+ import pulumi
296
+ import pulumi_ise as ise
297
+
298
+ example = ise.deviceadmin.get_policy_set(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
299
+ ```
300
+
301
+
302
+ :param str id: The id of the object
303
+ :param str name: Given name for the policy set, [Valid characters are alphanumerics, underscore, hyphen, space, period, parentheses]
304
+ """
305
+ ...
@@ -0,0 +1,146 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetTacacsCommandSetResult',
15
+ 'AwaitableGetTacacsCommandSetResult',
16
+ 'get_tacacs_command_set',
17
+ 'get_tacacs_command_set_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetTacacsCommandSetResult:
22
+ """
23
+ A collection of values returned by getTacacsCommandSet.
24
+ """
25
+ def __init__(__self__, commands=None, description=None, id=None, name=None, permit_unmatched=None):
26
+ if commands and not isinstance(commands, list):
27
+ raise TypeError("Expected argument 'commands' to be a list")
28
+ pulumi.set(__self__, "commands", commands)
29
+ if description and not isinstance(description, str):
30
+ raise TypeError("Expected argument 'description' to be a str")
31
+ pulumi.set(__self__, "description", description)
32
+ if id and not isinstance(id, str):
33
+ raise TypeError("Expected argument 'id' to be a str")
34
+ pulumi.set(__self__, "id", id)
35
+ if name and not isinstance(name, str):
36
+ raise TypeError("Expected argument 'name' to be a str")
37
+ pulumi.set(__self__, "name", name)
38
+ if permit_unmatched and not isinstance(permit_unmatched, bool):
39
+ raise TypeError("Expected argument 'permit_unmatched' to be a bool")
40
+ pulumi.set(__self__, "permit_unmatched", permit_unmatched)
41
+
42
+ @property
43
+ @pulumi.getter
44
+ def commands(self) -> Sequence['outputs.GetTacacsCommandSetCommandResult']:
45
+ return pulumi.get(self, "commands")
46
+
47
+ @property
48
+ @pulumi.getter
49
+ def description(self) -> str:
50
+ """
51
+ Description
52
+ """
53
+ return pulumi.get(self, "description")
54
+
55
+ @property
56
+ @pulumi.getter
57
+ def id(self) -> str:
58
+ """
59
+ The id of the object
60
+ """
61
+ return pulumi.get(self, "id")
62
+
63
+ @property
64
+ @pulumi.getter
65
+ def name(self) -> str:
66
+ """
67
+ The name of the TACACS command set
68
+ """
69
+ return pulumi.get(self, "name")
70
+
71
+ @property
72
+ @pulumi.getter(name="permitUnmatched")
73
+ def permit_unmatched(self) -> bool:
74
+ """
75
+ Permit unmatched commands
76
+ """
77
+ return pulumi.get(self, "permit_unmatched")
78
+
79
+
80
+ class AwaitableGetTacacsCommandSetResult(GetTacacsCommandSetResult):
81
+ # pylint: disable=using-constant-test
82
+ def __await__(self):
83
+ if False:
84
+ yield self
85
+ return GetTacacsCommandSetResult(
86
+ commands=self.commands,
87
+ description=self.description,
88
+ id=self.id,
89
+ name=self.name,
90
+ permit_unmatched=self.permit_unmatched)
91
+
92
+
93
+ def get_tacacs_command_set(id: Optional[str] = None,
94
+ name: Optional[str] = None,
95
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTacacsCommandSetResult:
96
+ """
97
+ This data source can read the TACACS Command Set.
98
+
99
+ ## Example Usage
100
+
101
+ ```python
102
+ import pulumi
103
+ import pulumi_ise as ise
104
+
105
+ example = ise.deviceadmin.get_tacacs_command_set(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
106
+ ```
107
+
108
+
109
+ :param str id: The id of the object
110
+ :param str name: The name of the TACACS command set
111
+ """
112
+ __args__ = dict()
113
+ __args__['id'] = id
114
+ __args__['name'] = name
115
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
116
+ __ret__ = pulumi.runtime.invoke('ise:deviceadmin/getTacacsCommandSet:getTacacsCommandSet', __args__, opts=opts, typ=GetTacacsCommandSetResult).value
117
+
118
+ return AwaitableGetTacacsCommandSetResult(
119
+ commands=pulumi.get(__ret__, 'commands'),
120
+ description=pulumi.get(__ret__, 'description'),
121
+ id=pulumi.get(__ret__, 'id'),
122
+ name=pulumi.get(__ret__, 'name'),
123
+ permit_unmatched=pulumi.get(__ret__, 'permit_unmatched'))
124
+
125
+
126
+ @_utilities.lift_output_func(get_tacacs_command_set)
127
+ def get_tacacs_command_set_output(id: Optional[pulumi.Input[Optional[str]]] = None,
128
+ name: Optional[pulumi.Input[Optional[str]]] = None,
129
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTacacsCommandSetResult]:
130
+ """
131
+ This data source can read the TACACS Command Set.
132
+
133
+ ## Example Usage
134
+
135
+ ```python
136
+ import pulumi
137
+ import pulumi_ise as ise
138
+
139
+ example = ise.deviceadmin.get_tacacs_command_set(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
140
+ ```
141
+
142
+
143
+ :param str id: The id of the object
144
+ :param str name: The name of the TACACS command set
145
+ """
146
+ ...
@@ -0,0 +1,133 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetTacacsProfileResult',
15
+ 'AwaitableGetTacacsProfileResult',
16
+ 'get_tacacs_profile',
17
+ 'get_tacacs_profile_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetTacacsProfileResult:
22
+ """
23
+ A collection of values returned by getTacacsProfile.
24
+ """
25
+ def __init__(__self__, description=None, id=None, name=None, session_attributes=None):
26
+ if description and not isinstance(description, str):
27
+ raise TypeError("Expected argument 'description' to be a str")
28
+ pulumi.set(__self__, "description", description)
29
+ if id and not isinstance(id, str):
30
+ raise TypeError("Expected argument 'id' to be a str")
31
+ pulumi.set(__self__, "id", id)
32
+ if name and not isinstance(name, str):
33
+ raise TypeError("Expected argument 'name' to be a str")
34
+ pulumi.set(__self__, "name", name)
35
+ if session_attributes and not isinstance(session_attributes, list):
36
+ raise TypeError("Expected argument 'session_attributes' to be a list")
37
+ pulumi.set(__self__, "session_attributes", session_attributes)
38
+
39
+ @property
40
+ @pulumi.getter
41
+ def description(self) -> str:
42
+ """
43
+ Description
44
+ """
45
+ return pulumi.get(self, "description")
46
+
47
+ @property
48
+ @pulumi.getter
49
+ def id(self) -> str:
50
+ """
51
+ The id of the object
52
+ """
53
+ return pulumi.get(self, "id")
54
+
55
+ @property
56
+ @pulumi.getter
57
+ def name(self) -> str:
58
+ """
59
+ The name of the TACACS profile
60
+ """
61
+ return pulumi.get(self, "name")
62
+
63
+ @property
64
+ @pulumi.getter(name="sessionAttributes")
65
+ def session_attributes(self) -> Sequence['outputs.GetTacacsProfileSessionAttributeResult']:
66
+ return pulumi.get(self, "session_attributes")
67
+
68
+
69
+ class AwaitableGetTacacsProfileResult(GetTacacsProfileResult):
70
+ # pylint: disable=using-constant-test
71
+ def __await__(self):
72
+ if False:
73
+ yield self
74
+ return GetTacacsProfileResult(
75
+ description=self.description,
76
+ id=self.id,
77
+ name=self.name,
78
+ session_attributes=self.session_attributes)
79
+
80
+
81
+ def get_tacacs_profile(id: Optional[str] = None,
82
+ name: Optional[str] = None,
83
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTacacsProfileResult:
84
+ """
85
+ This data source can read the TACACS Profile.
86
+
87
+ ## Example Usage
88
+
89
+ ```python
90
+ import pulumi
91
+ import pulumi_ise as ise
92
+
93
+ example = ise.deviceadmin.get_tacacs_profile(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
94
+ ```
95
+
96
+
97
+ :param str id: The id of the object
98
+ :param str name: The name of the TACACS profile
99
+ """
100
+ __args__ = dict()
101
+ __args__['id'] = id
102
+ __args__['name'] = name
103
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
104
+ __ret__ = pulumi.runtime.invoke('ise:deviceadmin/getTacacsProfile:getTacacsProfile', __args__, opts=opts, typ=GetTacacsProfileResult).value
105
+
106
+ return AwaitableGetTacacsProfileResult(
107
+ description=pulumi.get(__ret__, 'description'),
108
+ id=pulumi.get(__ret__, 'id'),
109
+ name=pulumi.get(__ret__, 'name'),
110
+ session_attributes=pulumi.get(__ret__, 'session_attributes'))
111
+
112
+
113
+ @_utilities.lift_output_func(get_tacacs_profile)
114
+ def get_tacacs_profile_output(id: Optional[pulumi.Input[Optional[str]]] = None,
115
+ name: Optional[pulumi.Input[Optional[str]]] = None,
116
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetTacacsProfileResult]:
117
+ """
118
+ This data source can read the TACACS Profile.
119
+
120
+ ## Example Usage
121
+
122
+ ```python
123
+ import pulumi
124
+ import pulumi_ise as ise
125
+
126
+ example = ise.deviceadmin.get_tacacs_profile(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
127
+ ```
128
+
129
+
130
+ :param str id: The id of the object
131
+ :param str name: The name of the TACACS profile
132
+ """
133
+ ...