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,184 @@
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
+ from ._inputs import *
13
+
14
+ __all__ = ['LicenseTierStateArgs', 'LicenseTierState']
15
+
16
+ @pulumi.input_type
17
+ class LicenseTierStateArgs:
18
+ def __init__(__self__, *,
19
+ licenses: pulumi.Input[Sequence[pulumi.Input['LicenseTierStateLicenseArgs']]]):
20
+ """
21
+ The set of arguments for constructing a LicenseTierState resource.
22
+ :param pulumi.Input[Sequence[pulumi.Input['LicenseTierStateLicenseArgs']]] licenses: List of licenses
23
+ """
24
+ pulumi.set(__self__, "licenses", licenses)
25
+
26
+ @property
27
+ @pulumi.getter
28
+ def licenses(self) -> pulumi.Input[Sequence[pulumi.Input['LicenseTierStateLicenseArgs']]]:
29
+ """
30
+ List of licenses
31
+ """
32
+ return pulumi.get(self, "licenses")
33
+
34
+ @licenses.setter
35
+ def licenses(self, value: pulumi.Input[Sequence[pulumi.Input['LicenseTierStateLicenseArgs']]]):
36
+ pulumi.set(self, "licenses", value)
37
+
38
+
39
+ @pulumi.input_type
40
+ class _LicenseTierStateState:
41
+ def __init__(__self__, *,
42
+ licenses: Optional[pulumi.Input[Sequence[pulumi.Input['LicenseTierStateLicenseArgs']]]] = None):
43
+ """
44
+ Input properties used for looking up and filtering LicenseTierState resources.
45
+ :param pulumi.Input[Sequence[pulumi.Input['LicenseTierStateLicenseArgs']]] licenses: List of licenses
46
+ """
47
+ if licenses is not None:
48
+ pulumi.set(__self__, "licenses", licenses)
49
+
50
+ @property
51
+ @pulumi.getter
52
+ def licenses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LicenseTierStateLicenseArgs']]]]:
53
+ """
54
+ List of licenses
55
+ """
56
+ return pulumi.get(self, "licenses")
57
+
58
+ @licenses.setter
59
+ def licenses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LicenseTierStateLicenseArgs']]]]):
60
+ pulumi.set(self, "licenses", value)
61
+
62
+
63
+ class LicenseTierState(pulumi.CustomResource):
64
+ @overload
65
+ def __init__(__self__,
66
+ resource_name: str,
67
+ opts: Optional[pulumi.ResourceOptions] = None,
68
+ licenses: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['LicenseTierStateLicenseArgs']]]]] = None,
69
+ __props__=None):
70
+ """
71
+ This resource can manage a License Tier State.
72
+
73
+ ## Example Usage
74
+
75
+ ```python
76
+ import pulumi
77
+ import pulumi_ise as ise
78
+
79
+ example = ise.system.LicenseTierState("example", licenses=[ise.system.LicenseTierStateLicenseArgs(
80
+ name="ESSENTIAL",
81
+ status="ENABLED",
82
+ )])
83
+ ```
84
+
85
+ ## Import
86
+
87
+ ```sh
88
+ $ pulumi import ise:system/licenseTierState:LicenseTierState example "76d24097-41c4-4558-a4d0-a8c07ac08470"
89
+ ```
90
+
91
+ :param str resource_name: The name of the resource.
92
+ :param pulumi.ResourceOptions opts: Options for the resource.
93
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['LicenseTierStateLicenseArgs']]]] licenses: List of licenses
94
+ """
95
+ ...
96
+ @overload
97
+ def __init__(__self__,
98
+ resource_name: str,
99
+ args: LicenseTierStateArgs,
100
+ opts: Optional[pulumi.ResourceOptions] = None):
101
+ """
102
+ This resource can manage a License Tier State.
103
+
104
+ ## Example Usage
105
+
106
+ ```python
107
+ import pulumi
108
+ import pulumi_ise as ise
109
+
110
+ example = ise.system.LicenseTierState("example", licenses=[ise.system.LicenseTierStateLicenseArgs(
111
+ name="ESSENTIAL",
112
+ status="ENABLED",
113
+ )])
114
+ ```
115
+
116
+ ## Import
117
+
118
+ ```sh
119
+ $ pulumi import ise:system/licenseTierState:LicenseTierState example "76d24097-41c4-4558-a4d0-a8c07ac08470"
120
+ ```
121
+
122
+ :param str resource_name: The name of the resource.
123
+ :param LicenseTierStateArgs args: The arguments to use to populate this resource's properties.
124
+ :param pulumi.ResourceOptions opts: Options for the resource.
125
+ """
126
+ ...
127
+ def __init__(__self__, resource_name: str, *args, **kwargs):
128
+ resource_args, opts = _utilities.get_resource_args_opts(LicenseTierStateArgs, pulumi.ResourceOptions, *args, **kwargs)
129
+ if resource_args is not None:
130
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
131
+ else:
132
+ __self__._internal_init(resource_name, *args, **kwargs)
133
+
134
+ def _internal_init(__self__,
135
+ resource_name: str,
136
+ opts: Optional[pulumi.ResourceOptions] = None,
137
+ licenses: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['LicenseTierStateLicenseArgs']]]]] = None,
138
+ __props__=None):
139
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
140
+ if not isinstance(opts, pulumi.ResourceOptions):
141
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
142
+ if opts.id is None:
143
+ if __props__ is not None:
144
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
145
+ __props__ = LicenseTierStateArgs.__new__(LicenseTierStateArgs)
146
+
147
+ if licenses is None and not opts.urn:
148
+ raise TypeError("Missing required property 'licenses'")
149
+ __props__.__dict__["licenses"] = licenses
150
+ super(LicenseTierState, __self__).__init__(
151
+ 'ise:system/licenseTierState:LicenseTierState',
152
+ resource_name,
153
+ __props__,
154
+ opts)
155
+
156
+ @staticmethod
157
+ def get(resource_name: str,
158
+ id: pulumi.Input[str],
159
+ opts: Optional[pulumi.ResourceOptions] = None,
160
+ licenses: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['LicenseTierStateLicenseArgs']]]]] = None) -> 'LicenseTierState':
161
+ """
162
+ Get an existing LicenseTierState resource's state with the given name, id, and optional extra
163
+ properties used to qualify the lookup.
164
+
165
+ :param str resource_name: The unique name of the resulting resource.
166
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
167
+ :param pulumi.ResourceOptions opts: Options for the resource.
168
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['LicenseTierStateLicenseArgs']]]] licenses: List of licenses
169
+ """
170
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
171
+
172
+ __props__ = _LicenseTierStateState.__new__(_LicenseTierStateState)
173
+
174
+ __props__.__dict__["licenses"] = licenses
175
+ return LicenseTierState(resource_name, opts=opts, __props__=__props__)
176
+
177
+ @property
178
+ @pulumi.getter
179
+ def licenses(self) -> pulumi.Output[Sequence['outputs.LicenseTierStateLicense']]:
180
+ """
181
+ List of licenses
182
+ """
183
+ return pulumi.get(self, "licenses")
184
+
@@ -0,0 +1,78 @@
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
+ 'LicenseTierStateLicense',
14
+ 'GetLicenseTierStateLicenseResult',
15
+ ]
16
+
17
+ @pulumi.output_type
18
+ class LicenseTierStateLicense(dict):
19
+ def __init__(__self__, *,
20
+ name: str,
21
+ status: str):
22
+ """
23
+ :param str name: License name
24
+ - Choices: `ESSENTIAL`, `ADVANTAGE`, `PREMIER`, `DEVICEADMIN`, `VM`
25
+ :param str status: License status
26
+ - Choices: `ENABLED`, `DISABLED`
27
+ """
28
+ pulumi.set(__self__, "name", name)
29
+ pulumi.set(__self__, "status", status)
30
+
31
+ @property
32
+ @pulumi.getter
33
+ def name(self) -> str:
34
+ """
35
+ License name
36
+ - Choices: `ESSENTIAL`, `ADVANTAGE`, `PREMIER`, `DEVICEADMIN`, `VM`
37
+ """
38
+ return pulumi.get(self, "name")
39
+
40
+ @property
41
+ @pulumi.getter
42
+ def status(self) -> str:
43
+ """
44
+ License status
45
+ - Choices: `ENABLED`, `DISABLED`
46
+ """
47
+ return pulumi.get(self, "status")
48
+
49
+
50
+ @pulumi.output_type
51
+ class GetLicenseTierStateLicenseResult(dict):
52
+ def __init__(__self__, *,
53
+ name: str,
54
+ status: str):
55
+ """
56
+ :param str name: License name
57
+ :param str status: License status
58
+ """
59
+ pulumi.set(__self__, "name", name)
60
+ pulumi.set(__self__, "status", status)
61
+
62
+ @property
63
+ @pulumi.getter
64
+ def name(self) -> str:
65
+ """
66
+ License name
67
+ """
68
+ return pulumi.get(self, "name")
69
+
70
+ @property
71
+ @pulumi.getter
72
+ def status(self) -> str:
73
+ """
74
+ License status
75
+ """
76
+ return pulumi.get(self, "status")
77
+
78
+