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,135 @@
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
+
12
+ __all__ = [
13
+ 'GetDeviceGroupResult',
14
+ 'AwaitableGetDeviceGroupResult',
15
+ 'get_device_group',
16
+ 'get_device_group_output',
17
+ ]
18
+
19
+ @pulumi.output_type
20
+ class GetDeviceGroupResult:
21
+ """
22
+ A collection of values returned by getDeviceGroup.
23
+ """
24
+ def __init__(__self__, description=None, id=None, name=None, root_group=None):
25
+ if description and not isinstance(description, str):
26
+ raise TypeError("Expected argument 'description' to be a str")
27
+ pulumi.set(__self__, "description", description)
28
+ if id and not isinstance(id, str):
29
+ raise TypeError("Expected argument 'id' to be a str")
30
+ pulumi.set(__self__, "id", id)
31
+ if name and not isinstance(name, str):
32
+ raise TypeError("Expected argument 'name' to be a str")
33
+ pulumi.set(__self__, "name", name)
34
+ if root_group and not isinstance(root_group, str):
35
+ raise TypeError("Expected argument 'root_group' to be a str")
36
+ pulumi.set(__self__, "root_group", root_group)
37
+
38
+ @property
39
+ @pulumi.getter
40
+ def description(self) -> str:
41
+ """
42
+ Description
43
+ """
44
+ return pulumi.get(self, "description")
45
+
46
+ @property
47
+ @pulumi.getter
48
+ def id(self) -> str:
49
+ """
50
+ The id of the object
51
+ """
52
+ return pulumi.get(self, "id")
53
+
54
+ @property
55
+ @pulumi.getter
56
+ def name(self) -> str:
57
+ """
58
+ The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`.
59
+ """
60
+ return pulumi.get(self, "name")
61
+
62
+ @property
63
+ @pulumi.getter(name="rootGroup")
64
+ def root_group(self) -> str:
65
+ """
66
+ The name of the root device group.
67
+ """
68
+ return pulumi.get(self, "root_group")
69
+
70
+
71
+ class AwaitableGetDeviceGroupResult(GetDeviceGroupResult):
72
+ # pylint: disable=using-constant-test
73
+ def __await__(self):
74
+ if False:
75
+ yield self
76
+ return GetDeviceGroupResult(
77
+ description=self.description,
78
+ id=self.id,
79
+ name=self.name,
80
+ root_group=self.root_group)
81
+
82
+
83
+ def get_device_group(id: Optional[str] = None,
84
+ name: Optional[str] = None,
85
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDeviceGroupResult:
86
+ """
87
+ This data source can read the Network Device Group.
88
+
89
+ ## Example Usage
90
+
91
+ ```python
92
+ import pulumi
93
+ import pulumi_ise as ise
94
+
95
+ example = ise.network.get_device_group(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
96
+ ```
97
+
98
+
99
+ :param str id: The id of the object
100
+ :param str name: The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`.
101
+ """
102
+ __args__ = dict()
103
+ __args__['id'] = id
104
+ __args__['name'] = name
105
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
106
+ __ret__ = pulumi.runtime.invoke('ise:network/getDeviceGroup:getDeviceGroup', __args__, opts=opts, typ=GetDeviceGroupResult).value
107
+
108
+ return AwaitableGetDeviceGroupResult(
109
+ description=pulumi.get(__ret__, 'description'),
110
+ id=pulumi.get(__ret__, 'id'),
111
+ name=pulumi.get(__ret__, 'name'),
112
+ root_group=pulumi.get(__ret__, 'root_group'))
113
+
114
+
115
+ @_utilities.lift_output_func(get_device_group)
116
+ def get_device_group_output(id: Optional[pulumi.Input[Optional[str]]] = None,
117
+ name: Optional[pulumi.Input[Optional[str]]] = None,
118
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDeviceGroupResult]:
119
+ """
120
+ This data source can read the Network Device Group.
121
+
122
+ ## Example Usage
123
+
124
+ ```python
125
+ import pulumi
126
+ import pulumi_ise as ise
127
+
128
+ example = ise.network.get_device_group(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
129
+ ```
130
+
131
+
132
+ :param str id: The id of the object
133
+ :param str name: The name of the network device group including its hierarchy, e.g. `Device Type#All Device Types#ACCESS`.
134
+ """
135
+ ...
@@ -0,0 +1,115 @@
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
+
12
+ __all__ = [
13
+ 'DeviceIp',
14
+ 'GetDeviceIpResult',
15
+ ]
16
+
17
+ @pulumi.output_type
18
+ class DeviceIp(dict):
19
+ @staticmethod
20
+ def __key_warning(key: str):
21
+ suggest = None
22
+ if key == "ipaddressExclude":
23
+ suggest = "ipaddress_exclude"
24
+
25
+ if suggest:
26
+ pulumi.log.warn(f"Key '{key}' not found in DeviceIp. Access the value via the '{suggest}' property getter instead.")
27
+
28
+ def __getitem__(self, key: str) -> Any:
29
+ DeviceIp.__key_warning(key)
30
+ return super().__getitem__(key)
31
+
32
+ def get(self, key: str, default = None) -> Any:
33
+ DeviceIp.__key_warning(key)
34
+ return super().get(key, default)
35
+
36
+ def __init__(__self__, *,
37
+ ipaddress: str,
38
+ ipaddress_exclude: Optional[str] = None,
39
+ mask: Optional[str] = None):
40
+ """
41
+ :param str ipaddress: It can be either single ip address or ip range address
42
+ :param str ipaddress_exclude: It can be either single ip address or ip range address
43
+ :param str mask: Subnet mask length
44
+ """
45
+ pulumi.set(__self__, "ipaddress", ipaddress)
46
+ if ipaddress_exclude is not None:
47
+ pulumi.set(__self__, "ipaddress_exclude", ipaddress_exclude)
48
+ if mask is not None:
49
+ pulumi.set(__self__, "mask", mask)
50
+
51
+ @property
52
+ @pulumi.getter
53
+ def ipaddress(self) -> str:
54
+ """
55
+ It can be either single ip address or ip range address
56
+ """
57
+ return pulumi.get(self, "ipaddress")
58
+
59
+ @property
60
+ @pulumi.getter(name="ipaddressExclude")
61
+ def ipaddress_exclude(self) -> Optional[str]:
62
+ """
63
+ It can be either single ip address or ip range address
64
+ """
65
+ return pulumi.get(self, "ipaddress_exclude")
66
+
67
+ @property
68
+ @pulumi.getter
69
+ def mask(self) -> Optional[str]:
70
+ """
71
+ Subnet mask length
72
+ """
73
+ return pulumi.get(self, "mask")
74
+
75
+
76
+ @pulumi.output_type
77
+ class GetDeviceIpResult(dict):
78
+ def __init__(__self__, *,
79
+ ipaddress: str,
80
+ ipaddress_exclude: str,
81
+ mask: str):
82
+ """
83
+ :param str ipaddress: It can be either single ip address or ip range address
84
+ :param str ipaddress_exclude: It can be either single ip address or ip range address
85
+ :param str mask: Subnet mask length
86
+ """
87
+ pulumi.set(__self__, "ipaddress", ipaddress)
88
+ pulumi.set(__self__, "ipaddress_exclude", ipaddress_exclude)
89
+ pulumi.set(__self__, "mask", mask)
90
+
91
+ @property
92
+ @pulumi.getter
93
+ def ipaddress(self) -> str:
94
+ """
95
+ It can be either single ip address or ip range address
96
+ """
97
+ return pulumi.get(self, "ipaddress")
98
+
99
+ @property
100
+ @pulumi.getter(name="ipaddressExclude")
101
+ def ipaddress_exclude(self) -> str:
102
+ """
103
+ It can be either single ip address or ip range address
104
+ """
105
+ return pulumi.get(self, "ipaddress_exclude")
106
+
107
+ @property
108
+ @pulumi.getter
109
+ def mask(self) -> str:
110
+ """
111
+ Subnet mask length
112
+ """
113
+ return pulumi.get(self, "mask")
114
+
115
+
@@ -0,0 +1,31 @@
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
+ from .. import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from .allowed_protocols import *
9
+ from .authentication_rule import *
10
+ from .authorization_exception_rule import *
11
+ from .authorization_global_exception_rule import *
12
+ from .authorization_profile import *
13
+ from .authorization_rule import *
14
+ from .condition import *
15
+ from .dictionary import *
16
+ from .downloadable_acl import *
17
+ from .get_allowed_protocols import *
18
+ from .get_authentication_rule import *
19
+ from .get_authorization_exception_rule import *
20
+ from .get_authorization_global_exception_rule import *
21
+ from .get_authorization_profile import *
22
+ from .get_authorization_rule import *
23
+ from .get_condition import *
24
+ from .get_dictionary import *
25
+ from .get_downloadable_acl import *
26
+ from .get_policy_set import *
27
+ from .get_time_and_date_condition import *
28
+ from .policy_set import *
29
+ from .time_and_date_condition import *
30
+ from ._inputs import *
31
+ from . import outputs