pulumi-ise 0.1.7__py3-none-any.whl → 0.1.9__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.
- pulumi_ise/__init__.py +80 -0
- pulumi_ise/_utilities.py +1 -1
- pulumi_ise/config/__init__.pyi +5 -0
- pulumi_ise/config/vars.py +5 -0
- pulumi_ise/deviceadmin/__init__.py +5 -0
- pulumi_ise/deviceadmin/_inputs.py +565 -0
- pulumi_ise/deviceadmin/allowed_protocols_tacacs.py +5 -0
- pulumi_ise/deviceadmin/authentication_rule.py +5 -0
- pulumi_ise/deviceadmin/authentication_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/authorization_exception_rule.py +5 -0
- pulumi_ise/deviceadmin/authorization_exception_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/authorization_global_exception_rule.py +5 -0
- pulumi_ise/deviceadmin/authorization_global_exception_rule_update_rank.py +221 -0
- pulumi_ise/deviceadmin/authorization_rule.py +5 -0
- pulumi_ise/deviceadmin/authorization_rule_update_rank.py +271 -0
- pulumi_ise/deviceadmin/condition.py +5 -0
- pulumi_ise/deviceadmin/get_allowed_protocols_tacacs.py +17 -4
- pulumi_ise/deviceadmin/get_authentication_rule.py +31 -4
- pulumi_ise/deviceadmin/get_authorization_exception_rule.py +29 -4
- pulumi_ise/deviceadmin/get_authorization_global_exception_rule.py +27 -4
- pulumi_ise/deviceadmin/get_authorization_rule.py +29 -4
- pulumi_ise/deviceadmin/get_condition.py +22 -4
- pulumi_ise/deviceadmin/get_policy_set.py +28 -4
- pulumi_ise/deviceadmin/get_tacacs_command_set.py +16 -4
- pulumi_ise/deviceadmin/get_tacacs_profile.py +15 -4
- pulumi_ise/deviceadmin/get_time_and_date_condition.py +25 -4
- pulumi_ise/deviceadmin/outputs.py +5 -0
- pulumi_ise/deviceadmin/policy_set.py +7 -2
- pulumi_ise/deviceadmin/policy_set_update_rank.py +221 -0
- pulumi_ise/deviceadmin/tacacs_command_set.py +5 -0
- pulumi_ise/deviceadmin/tacacs_profile.py +5 -0
- pulumi_ise/deviceadmin/time_and_date_condition.py +5 -0
- pulumi_ise/identitymanagement/_inputs.py +106 -0
- pulumi_ise/identitymanagement/active_directory_add_groups.py +5 -0
- pulumi_ise/identitymanagement/active_directory_join_domain_with_all_nodes.py +5 -0
- pulumi_ise/identitymanagement/active_directory_join_point.py +5 -0
- pulumi_ise/identitymanagement/certificate_authentication_profile.py +5 -0
- pulumi_ise/identitymanagement/endpoint.py +5 -0
- pulumi_ise/identitymanagement/endpoint_identity_group.py +5 -0
- pulumi_ise/identitymanagement/get_active_directory_groups_by_domain.py +21 -4
- pulumi_ise/identitymanagement/get_active_directory_join_point.py +44 -4
- pulumi_ise/identitymanagement/get_certificate_authentication_profile.py +19 -4
- pulumi_ise/identitymanagement/get_endpoint.py +38 -4
- pulumi_ise/identitymanagement/get_endpoint_identity_group.py +16 -4
- pulumi_ise/identitymanagement/get_identity_source_sequence.py +17 -4
- pulumi_ise/identitymanagement/get_internal_user.py +26 -4
- pulumi_ise/identitymanagement/get_user_identity_group.py +15 -4
- pulumi_ise/identitymanagement/identity_source_sequence.py +5 -0
- pulumi_ise/identitymanagement/internal_user.py +5 -0
- pulumi_ise/identitymanagement/outputs.py +5 -0
- pulumi_ise/identitymanagement/user_identity_group.py +5 -0
- pulumi_ise/network/_inputs.py +25 -0
- pulumi_ise/network/device.py +5 -0
- pulumi_ise/network/device_group.py +5 -0
- pulumi_ise/network/get_device.py +54 -4
- pulumi_ise/network/get_device_group.py +15 -4
- pulumi_ise/network/outputs.py +5 -0
- pulumi_ise/networkaccess/__init__.py +5 -0
- pulumi_ise/networkaccess/_inputs.py +558 -0
- pulumi_ise/networkaccess/allowed_protocols.py +5 -0
- pulumi_ise/networkaccess/authentication_rule.py +5 -0
- pulumi_ise/networkaccess/authentication_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/authorization_exception_rule.py +5 -0
- pulumi_ise/networkaccess/authorization_exception_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/authorization_global_exception_rule.py +5 -0
- pulumi_ise/networkaccess/authorization_global_exception_rule_update_rank.py +221 -0
- pulumi_ise/networkaccess/authorization_profile.py +5 -0
- pulumi_ise/networkaccess/authorization_rule.py +5 -0
- pulumi_ise/networkaccess/authorization_rule_update_rank.py +271 -0
- pulumi_ise/networkaccess/condition.py +5 -0
- pulumi_ise/networkaccess/dictionary.py +5 -0
- pulumi_ise/networkaccess/downloadable_acl.py +5 -0
- pulumi_ise/networkaccess/get_allowed_protocols.py +89 -4
- pulumi_ise/networkaccess/get_authentication_rule.py +31 -4
- pulumi_ise/networkaccess/get_authorization_exception_rule.py +29 -4
- pulumi_ise/networkaccess/get_authorization_global_exception_rule.py +27 -4
- pulumi_ise/networkaccess/get_authorization_profile.py +45 -4
- pulumi_ise/networkaccess/get_authorization_rule.py +29 -4
- pulumi_ise/networkaccess/get_condition.py +22 -4
- pulumi_ise/networkaccess/get_dictionary.py +16 -4
- pulumi_ise/networkaccess/get_downloadable_acl.py +16 -4
- pulumi_ise/networkaccess/get_policy_set.py +28 -4
- pulumi_ise/networkaccess/get_time_and_date_condition.py +25 -4
- pulumi_ise/networkaccess/outputs.py +5 -0
- pulumi_ise/networkaccess/policy_set.py +7 -2
- pulumi_ise/networkaccess/policy_set_update_rank.py +221 -0
- pulumi_ise/networkaccess/time_and_date_condition.py +5 -0
- pulumi_ise/provider.py +5 -0
- pulumi_ise/pulumi-plugin.json +1 -1
- pulumi_ise/system/_inputs.py +23 -0
- pulumi_ise/system/get_license_tier_state.py +12 -4
- pulumi_ise/system/get_repository.py +19 -4
- pulumi_ise/system/license_tier_state.py +5 -0
- pulumi_ise/system/outputs.py +5 -0
- pulumi_ise/system/repository.py +5 -0
- pulumi_ise/trustsec/egress_matrix_cell.py +5 -0
- pulumi_ise/trustsec/get_egress_matrix_cell.py +17 -4
- pulumi_ise/trustsec/get_ip_to_sgt_mapping.py +20 -4
- pulumi_ise/trustsec/get_ip_to_sgt_mapping_group.py +17 -4
- pulumi_ise/trustsec/get_security_group.py +17 -4
- pulumi_ise/trustsec/get_security_group_acl.py +17 -4
- pulumi_ise/trustsec/ip_to_sgt_mapping.py +5 -0
- pulumi_ise/trustsec/ip_to_sgt_mapping_group.py +5 -0
- pulumi_ise/trustsec/security_group.py +5 -0
- pulumi_ise/trustsec/security_group_acl.py +5 -0
- {pulumi_ise-0.1.7.dist-info → pulumi_ise-0.1.9.dist-info}/METADATA +3 -2
- pulumi_ise-0.1.9.dist-info/RECORD +115 -0
- {pulumi_ise-0.1.7.dist-info → pulumi_ise-0.1.9.dist-info}/WHEEL +1 -1
- pulumi_ise-0.1.7.dist-info/RECORD +0 -105
- {pulumi_ise-0.1.7.dist-info → pulumi_ise-0.1.9.dist-info}/top_level.txt +0 -0
@@ -4,27 +4,90 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
13
18
|
'AuthenticationRuleChildrenArgs',
|
19
|
+
'AuthenticationRuleChildrenArgsDict',
|
14
20
|
'AuthenticationRuleChildrenChildrenArgs',
|
21
|
+
'AuthenticationRuleChildrenChildrenArgsDict',
|
15
22
|
'AuthorizationExceptionRuleChildrenArgs',
|
23
|
+
'AuthorizationExceptionRuleChildrenArgsDict',
|
16
24
|
'AuthorizationExceptionRuleChildrenChildrenArgs',
|
25
|
+
'AuthorizationExceptionRuleChildrenChildrenArgsDict',
|
17
26
|
'AuthorizationGlobalExceptionRuleChildrenArgs',
|
27
|
+
'AuthorizationGlobalExceptionRuleChildrenArgsDict',
|
18
28
|
'AuthorizationGlobalExceptionRuleChildrenChildrenArgs',
|
29
|
+
'AuthorizationGlobalExceptionRuleChildrenChildrenArgsDict',
|
19
30
|
'AuthorizationProfileAdvancedAttributeArgs',
|
31
|
+
'AuthorizationProfileAdvancedAttributeArgsDict',
|
20
32
|
'AuthorizationRuleChildrenArgs',
|
33
|
+
'AuthorizationRuleChildrenArgsDict',
|
21
34
|
'AuthorizationRuleChildrenChildrenArgs',
|
35
|
+
'AuthorizationRuleChildrenChildrenArgsDict',
|
22
36
|
'ConditionChildrenArgs',
|
37
|
+
'ConditionChildrenArgsDict',
|
23
38
|
'ConditionChildrenChildrenArgs',
|
39
|
+
'ConditionChildrenChildrenArgsDict',
|
24
40
|
'PolicySetChildrenArgs',
|
41
|
+
'PolicySetChildrenArgsDict',
|
25
42
|
'PolicySetChildrenChildrenArgs',
|
43
|
+
'PolicySetChildrenChildrenArgsDict',
|
26
44
|
]
|
27
45
|
|
46
|
+
MYPY = False
|
47
|
+
|
48
|
+
if not MYPY:
|
49
|
+
class AuthenticationRuleChildrenArgsDict(TypedDict):
|
50
|
+
condition_type: pulumi.Input[str]
|
51
|
+
"""
|
52
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
53
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
54
|
+
"""
|
55
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
56
|
+
"""
|
57
|
+
Dictionary attribute name
|
58
|
+
"""
|
59
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
60
|
+
"""
|
61
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
62
|
+
"""
|
63
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['AuthenticationRuleChildrenChildrenArgsDict']]]]
|
64
|
+
"""
|
65
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
66
|
+
"""
|
67
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
68
|
+
"""
|
69
|
+
Dictionary name
|
70
|
+
"""
|
71
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
72
|
+
"""
|
73
|
+
Dictionary value
|
74
|
+
"""
|
75
|
+
id: NotRequired[pulumi.Input[str]]
|
76
|
+
"""
|
77
|
+
UUID for condition
|
78
|
+
"""
|
79
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
80
|
+
"""
|
81
|
+
Indicates whereas this condition is in negate mode
|
82
|
+
"""
|
83
|
+
operator: NotRequired[pulumi.Input[str]]
|
84
|
+
"""
|
85
|
+
Equality operator
|
86
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
87
|
+
"""
|
88
|
+
elif False:
|
89
|
+
AuthenticationRuleChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
90
|
+
|
28
91
|
@pulumi.input_type
|
29
92
|
class AuthenticationRuleChildrenArgs:
|
30
93
|
def __init__(__self__, *,
|
@@ -179,6 +242,45 @@ class AuthenticationRuleChildrenArgs:
|
|
179
242
|
pulumi.set(self, "operator", value)
|
180
243
|
|
181
244
|
|
245
|
+
if not MYPY:
|
246
|
+
class AuthenticationRuleChildrenChildrenArgsDict(TypedDict):
|
247
|
+
condition_type: pulumi.Input[str]
|
248
|
+
"""
|
249
|
+
Condition type.
|
250
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
251
|
+
"""
|
252
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
253
|
+
"""
|
254
|
+
Dictionary attribute name
|
255
|
+
"""
|
256
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
257
|
+
"""
|
258
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
259
|
+
"""
|
260
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
261
|
+
"""
|
262
|
+
Dictionary name
|
263
|
+
"""
|
264
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
265
|
+
"""
|
266
|
+
Dictionary value
|
267
|
+
"""
|
268
|
+
id: NotRequired[pulumi.Input[str]]
|
269
|
+
"""
|
270
|
+
UUID for condition
|
271
|
+
"""
|
272
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
273
|
+
"""
|
274
|
+
Indicates whereas this condition is in negate mode
|
275
|
+
"""
|
276
|
+
operator: NotRequired[pulumi.Input[str]]
|
277
|
+
"""
|
278
|
+
Equality operator
|
279
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
280
|
+
"""
|
281
|
+
elif False:
|
282
|
+
AuthenticationRuleChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
283
|
+
|
182
284
|
@pulumi.input_type
|
183
285
|
class AuthenticationRuleChildrenChildrenArgs:
|
184
286
|
def __init__(__self__, *,
|
@@ -317,6 +419,49 @@ class AuthenticationRuleChildrenChildrenArgs:
|
|
317
419
|
pulumi.set(self, "operator", value)
|
318
420
|
|
319
421
|
|
422
|
+
if not MYPY:
|
423
|
+
class AuthorizationExceptionRuleChildrenArgsDict(TypedDict):
|
424
|
+
condition_type: pulumi.Input[str]
|
425
|
+
"""
|
426
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
427
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
428
|
+
"""
|
429
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
430
|
+
"""
|
431
|
+
Dictionary attribute name
|
432
|
+
"""
|
433
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
434
|
+
"""
|
435
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
436
|
+
"""
|
437
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['AuthorizationExceptionRuleChildrenChildrenArgsDict']]]]
|
438
|
+
"""
|
439
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
440
|
+
"""
|
441
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
442
|
+
"""
|
443
|
+
Dictionary name
|
444
|
+
"""
|
445
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
446
|
+
"""
|
447
|
+
Dictionary value
|
448
|
+
"""
|
449
|
+
id: NotRequired[pulumi.Input[str]]
|
450
|
+
"""
|
451
|
+
UUID for condition
|
452
|
+
"""
|
453
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
454
|
+
"""
|
455
|
+
Indicates whereas this condition is in negate mode
|
456
|
+
"""
|
457
|
+
operator: NotRequired[pulumi.Input[str]]
|
458
|
+
"""
|
459
|
+
Equality operator
|
460
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
461
|
+
"""
|
462
|
+
elif False:
|
463
|
+
AuthorizationExceptionRuleChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
464
|
+
|
320
465
|
@pulumi.input_type
|
321
466
|
class AuthorizationExceptionRuleChildrenArgs:
|
322
467
|
def __init__(__self__, *,
|
@@ -471,6 +616,45 @@ class AuthorizationExceptionRuleChildrenArgs:
|
|
471
616
|
pulumi.set(self, "operator", value)
|
472
617
|
|
473
618
|
|
619
|
+
if not MYPY:
|
620
|
+
class AuthorizationExceptionRuleChildrenChildrenArgsDict(TypedDict):
|
621
|
+
condition_type: pulumi.Input[str]
|
622
|
+
"""
|
623
|
+
Condition type.
|
624
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
625
|
+
"""
|
626
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
627
|
+
"""
|
628
|
+
Dictionary attribute name
|
629
|
+
"""
|
630
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
631
|
+
"""
|
632
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
633
|
+
"""
|
634
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
635
|
+
"""
|
636
|
+
Dictionary name
|
637
|
+
"""
|
638
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
639
|
+
"""
|
640
|
+
Dictionary value
|
641
|
+
"""
|
642
|
+
id: NotRequired[pulumi.Input[str]]
|
643
|
+
"""
|
644
|
+
UUID for condition
|
645
|
+
"""
|
646
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
647
|
+
"""
|
648
|
+
Indicates whereas this condition is in negate mode
|
649
|
+
"""
|
650
|
+
operator: NotRequired[pulumi.Input[str]]
|
651
|
+
"""
|
652
|
+
Equality operator
|
653
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
654
|
+
"""
|
655
|
+
elif False:
|
656
|
+
AuthorizationExceptionRuleChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
657
|
+
|
474
658
|
@pulumi.input_type
|
475
659
|
class AuthorizationExceptionRuleChildrenChildrenArgs:
|
476
660
|
def __init__(__self__, *,
|
@@ -609,6 +793,49 @@ class AuthorizationExceptionRuleChildrenChildrenArgs:
|
|
609
793
|
pulumi.set(self, "operator", value)
|
610
794
|
|
611
795
|
|
796
|
+
if not MYPY:
|
797
|
+
class AuthorizationGlobalExceptionRuleChildrenArgsDict(TypedDict):
|
798
|
+
condition_type: pulumi.Input[str]
|
799
|
+
"""
|
800
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
801
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
802
|
+
"""
|
803
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
804
|
+
"""
|
805
|
+
Dictionary attribute name
|
806
|
+
"""
|
807
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
808
|
+
"""
|
809
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
810
|
+
"""
|
811
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['AuthorizationGlobalExceptionRuleChildrenChildrenArgsDict']]]]
|
812
|
+
"""
|
813
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
814
|
+
"""
|
815
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
816
|
+
"""
|
817
|
+
Dictionary name
|
818
|
+
"""
|
819
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
820
|
+
"""
|
821
|
+
Dictionary value
|
822
|
+
"""
|
823
|
+
id: NotRequired[pulumi.Input[str]]
|
824
|
+
"""
|
825
|
+
UUID for condition
|
826
|
+
"""
|
827
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
828
|
+
"""
|
829
|
+
Indicates whereas this condition is in negate mode
|
830
|
+
"""
|
831
|
+
operator: NotRequired[pulumi.Input[str]]
|
832
|
+
"""
|
833
|
+
Equality operator
|
834
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
835
|
+
"""
|
836
|
+
elif False:
|
837
|
+
AuthorizationGlobalExceptionRuleChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
838
|
+
|
612
839
|
@pulumi.input_type
|
613
840
|
class AuthorizationGlobalExceptionRuleChildrenArgs:
|
614
841
|
def __init__(__self__, *,
|
@@ -763,6 +990,45 @@ class AuthorizationGlobalExceptionRuleChildrenArgs:
|
|
763
990
|
pulumi.set(self, "operator", value)
|
764
991
|
|
765
992
|
|
993
|
+
if not MYPY:
|
994
|
+
class AuthorizationGlobalExceptionRuleChildrenChildrenArgsDict(TypedDict):
|
995
|
+
condition_type: pulumi.Input[str]
|
996
|
+
"""
|
997
|
+
Condition type.
|
998
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
999
|
+
"""
|
1000
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
1001
|
+
"""
|
1002
|
+
Dictionary attribute name
|
1003
|
+
"""
|
1004
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
1005
|
+
"""
|
1006
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1007
|
+
"""
|
1008
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
1009
|
+
"""
|
1010
|
+
Dictionary name
|
1011
|
+
"""
|
1012
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
1013
|
+
"""
|
1014
|
+
Dictionary value
|
1015
|
+
"""
|
1016
|
+
id: NotRequired[pulumi.Input[str]]
|
1017
|
+
"""
|
1018
|
+
UUID for condition
|
1019
|
+
"""
|
1020
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
1021
|
+
"""
|
1022
|
+
Indicates whereas this condition is in negate mode
|
1023
|
+
"""
|
1024
|
+
operator: NotRequired[pulumi.Input[str]]
|
1025
|
+
"""
|
1026
|
+
Equality operator
|
1027
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1028
|
+
"""
|
1029
|
+
elif False:
|
1030
|
+
AuthorizationGlobalExceptionRuleChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
1031
|
+
|
766
1032
|
@pulumi.input_type
|
767
1033
|
class AuthorizationGlobalExceptionRuleChildrenChildrenArgs:
|
768
1034
|
def __init__(__self__, *,
|
@@ -901,6 +1167,36 @@ class AuthorizationGlobalExceptionRuleChildrenChildrenArgs:
|
|
901
1167
|
pulumi.set(self, "operator", value)
|
902
1168
|
|
903
1169
|
|
1170
|
+
if not MYPY:
|
1171
|
+
class AuthorizationProfileAdvancedAttributeArgsDict(TypedDict):
|
1172
|
+
attribute_left_dictionary_name: NotRequired[pulumi.Input[str]]
|
1173
|
+
"""
|
1174
|
+
Dictionary name
|
1175
|
+
"""
|
1176
|
+
attribute_left_name: NotRequired[pulumi.Input[str]]
|
1177
|
+
"""
|
1178
|
+
Attribute name
|
1179
|
+
"""
|
1180
|
+
attribute_right_dictionary_name: NotRequired[pulumi.Input[str]]
|
1181
|
+
"""
|
1182
|
+
Dictionary name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
|
1183
|
+
"""
|
1184
|
+
attribute_right_name: NotRequired[pulumi.Input[str]]
|
1185
|
+
"""
|
1186
|
+
Attribute name, only required when `attribute_right_value_type` is `AdvancedDictionaryAttribute`
|
1187
|
+
"""
|
1188
|
+
attribute_right_value: NotRequired[pulumi.Input[str]]
|
1189
|
+
"""
|
1190
|
+
Attribute value, only required when `attribute_right_value_type` is `AttributeValue`
|
1191
|
+
"""
|
1192
|
+
attribute_right_value_type: NotRequired[pulumi.Input[str]]
|
1193
|
+
"""
|
1194
|
+
Advanced attribute value type
|
1195
|
+
- Choices: `AdvancedDictionaryAttribute`, `AttributeValue`
|
1196
|
+
"""
|
1197
|
+
elif False:
|
1198
|
+
AuthorizationProfileAdvancedAttributeArgsDict: TypeAlias = Mapping[str, Any]
|
1199
|
+
|
904
1200
|
@pulumi.input_type
|
905
1201
|
class AuthorizationProfileAdvancedAttributeArgs:
|
906
1202
|
def __init__(__self__, *,
|
@@ -1006,6 +1302,49 @@ class AuthorizationProfileAdvancedAttributeArgs:
|
|
1006
1302
|
pulumi.set(self, "attribute_right_value_type", value)
|
1007
1303
|
|
1008
1304
|
|
1305
|
+
if not MYPY:
|
1306
|
+
class AuthorizationRuleChildrenArgsDict(TypedDict):
|
1307
|
+
condition_type: pulumi.Input[str]
|
1308
|
+
"""
|
1309
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
1310
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
1311
|
+
"""
|
1312
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
1313
|
+
"""
|
1314
|
+
Dictionary attribute name
|
1315
|
+
"""
|
1316
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
1317
|
+
"""
|
1318
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1319
|
+
"""
|
1320
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['AuthorizationRuleChildrenChildrenArgsDict']]]]
|
1321
|
+
"""
|
1322
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
1323
|
+
"""
|
1324
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
1325
|
+
"""
|
1326
|
+
Dictionary name
|
1327
|
+
"""
|
1328
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
1329
|
+
"""
|
1330
|
+
Dictionary value
|
1331
|
+
"""
|
1332
|
+
id: NotRequired[pulumi.Input[str]]
|
1333
|
+
"""
|
1334
|
+
UUID for condition
|
1335
|
+
"""
|
1336
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
1337
|
+
"""
|
1338
|
+
Indicates whereas this condition is in negate mode
|
1339
|
+
"""
|
1340
|
+
operator: NotRequired[pulumi.Input[str]]
|
1341
|
+
"""
|
1342
|
+
Equality operator
|
1343
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1344
|
+
"""
|
1345
|
+
elif False:
|
1346
|
+
AuthorizationRuleChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
1347
|
+
|
1009
1348
|
@pulumi.input_type
|
1010
1349
|
class AuthorizationRuleChildrenArgs:
|
1011
1350
|
def __init__(__self__, *,
|
@@ -1160,6 +1499,45 @@ class AuthorizationRuleChildrenArgs:
|
|
1160
1499
|
pulumi.set(self, "operator", value)
|
1161
1500
|
|
1162
1501
|
|
1502
|
+
if not MYPY:
|
1503
|
+
class AuthorizationRuleChildrenChildrenArgsDict(TypedDict):
|
1504
|
+
condition_type: pulumi.Input[str]
|
1505
|
+
"""
|
1506
|
+
Condition type.
|
1507
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
1508
|
+
"""
|
1509
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
1510
|
+
"""
|
1511
|
+
Dictionary attribute name
|
1512
|
+
"""
|
1513
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
1514
|
+
"""
|
1515
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1516
|
+
"""
|
1517
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
1518
|
+
"""
|
1519
|
+
Dictionary name
|
1520
|
+
"""
|
1521
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
1522
|
+
"""
|
1523
|
+
Dictionary value
|
1524
|
+
"""
|
1525
|
+
id: NotRequired[pulumi.Input[str]]
|
1526
|
+
"""
|
1527
|
+
UUID for condition
|
1528
|
+
"""
|
1529
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
1530
|
+
"""
|
1531
|
+
Indicates whereas this condition is in negate mode
|
1532
|
+
"""
|
1533
|
+
operator: NotRequired[pulumi.Input[str]]
|
1534
|
+
"""
|
1535
|
+
Equality operator
|
1536
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1537
|
+
"""
|
1538
|
+
elif False:
|
1539
|
+
AuthorizationRuleChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
1540
|
+
|
1163
1541
|
@pulumi.input_type
|
1164
1542
|
class AuthorizationRuleChildrenChildrenArgs:
|
1165
1543
|
def __init__(__self__, *,
|
@@ -1298,6 +1676,57 @@ class AuthorizationRuleChildrenChildrenArgs:
|
|
1298
1676
|
pulumi.set(self, "operator", value)
|
1299
1677
|
|
1300
1678
|
|
1679
|
+
if not MYPY:
|
1680
|
+
class ConditionChildrenArgsDict(TypedDict):
|
1681
|
+
condition_type: pulumi.Input[str]
|
1682
|
+
"""
|
1683
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
1684
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
1685
|
+
"""
|
1686
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
1687
|
+
"""
|
1688
|
+
Dictionary attribute name
|
1689
|
+
"""
|
1690
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
1691
|
+
"""
|
1692
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1693
|
+
"""
|
1694
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['ConditionChildrenChildrenArgsDict']]]]
|
1695
|
+
"""
|
1696
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
1697
|
+
"""
|
1698
|
+
description: NotRequired[pulumi.Input[str]]
|
1699
|
+
"""
|
1700
|
+
Condition description
|
1701
|
+
"""
|
1702
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
1703
|
+
"""
|
1704
|
+
Dictionary name
|
1705
|
+
"""
|
1706
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
1707
|
+
"""
|
1708
|
+
Dictionary value
|
1709
|
+
"""
|
1710
|
+
id: NotRequired[pulumi.Input[str]]
|
1711
|
+
"""
|
1712
|
+
UUID for condition
|
1713
|
+
"""
|
1714
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
1715
|
+
"""
|
1716
|
+
Indicates whereas this condition is in negate mode
|
1717
|
+
"""
|
1718
|
+
name: NotRequired[pulumi.Input[str]]
|
1719
|
+
"""
|
1720
|
+
Condition name
|
1721
|
+
"""
|
1722
|
+
operator: NotRequired[pulumi.Input[str]]
|
1723
|
+
"""
|
1724
|
+
Equality operator
|
1725
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1726
|
+
"""
|
1727
|
+
elif False:
|
1728
|
+
ConditionChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
1729
|
+
|
1301
1730
|
@pulumi.input_type
|
1302
1731
|
class ConditionChildrenArgs:
|
1303
1732
|
def __init__(__self__, *,
|
@@ -1484,6 +1913,53 @@ class ConditionChildrenArgs:
|
|
1484
1913
|
pulumi.set(self, "operator", value)
|
1485
1914
|
|
1486
1915
|
|
1916
|
+
if not MYPY:
|
1917
|
+
class ConditionChildrenChildrenArgsDict(TypedDict):
|
1918
|
+
condition_type: pulumi.Input[str]
|
1919
|
+
"""
|
1920
|
+
Condition type.
|
1921
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
1922
|
+
"""
|
1923
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
1924
|
+
"""
|
1925
|
+
Dictionary attribute name
|
1926
|
+
"""
|
1927
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
1928
|
+
"""
|
1929
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
1930
|
+
"""
|
1931
|
+
description: NotRequired[pulumi.Input[str]]
|
1932
|
+
"""
|
1933
|
+
Condition description
|
1934
|
+
"""
|
1935
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
1936
|
+
"""
|
1937
|
+
Dictionary name
|
1938
|
+
"""
|
1939
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
1940
|
+
"""
|
1941
|
+
Dictionary value
|
1942
|
+
"""
|
1943
|
+
id: NotRequired[pulumi.Input[str]]
|
1944
|
+
"""
|
1945
|
+
UUID for condition
|
1946
|
+
"""
|
1947
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
1948
|
+
"""
|
1949
|
+
Indicates whereas this condition is in negate mode
|
1950
|
+
"""
|
1951
|
+
name: NotRequired[pulumi.Input[str]]
|
1952
|
+
"""
|
1953
|
+
Condition name
|
1954
|
+
"""
|
1955
|
+
operator: NotRequired[pulumi.Input[str]]
|
1956
|
+
"""
|
1957
|
+
Equality operator
|
1958
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
1959
|
+
"""
|
1960
|
+
elif False:
|
1961
|
+
ConditionChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
1962
|
+
|
1487
1963
|
@pulumi.input_type
|
1488
1964
|
class ConditionChildrenChildrenArgs:
|
1489
1965
|
def __init__(__self__, *,
|
@@ -1654,6 +2130,49 @@ class ConditionChildrenChildrenArgs:
|
|
1654
2130
|
pulumi.set(self, "operator", value)
|
1655
2131
|
|
1656
2132
|
|
2133
|
+
if not MYPY:
|
2134
|
+
class PolicySetChildrenArgsDict(TypedDict):
|
2135
|
+
condition_type: pulumi.Input[str]
|
2136
|
+
"""
|
2137
|
+
Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
|
2138
|
+
- Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
2139
|
+
"""
|
2140
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
2141
|
+
"""
|
2142
|
+
Dictionary attribute name
|
2143
|
+
"""
|
2144
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
2145
|
+
"""
|
2146
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
2147
|
+
"""
|
2148
|
+
childrens: NotRequired[pulumi.Input[Sequence[pulumi.Input['PolicySetChildrenChildrenArgsDict']]]]
|
2149
|
+
"""
|
2150
|
+
List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`.
|
2151
|
+
"""
|
2152
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
2153
|
+
"""
|
2154
|
+
Dictionary name
|
2155
|
+
"""
|
2156
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
2157
|
+
"""
|
2158
|
+
Dictionary value
|
2159
|
+
"""
|
2160
|
+
id: NotRequired[pulumi.Input[str]]
|
2161
|
+
"""
|
2162
|
+
UUID for condition
|
2163
|
+
"""
|
2164
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
2165
|
+
"""
|
2166
|
+
Indicates whereas this condition is in negate mode
|
2167
|
+
"""
|
2168
|
+
operator: NotRequired[pulumi.Input[str]]
|
2169
|
+
"""
|
2170
|
+
Equality operator
|
2171
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
2172
|
+
"""
|
2173
|
+
elif False:
|
2174
|
+
PolicySetChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
2175
|
+
|
1657
2176
|
@pulumi.input_type
|
1658
2177
|
class PolicySetChildrenArgs:
|
1659
2178
|
def __init__(__self__, *,
|
@@ -1808,6 +2327,45 @@ class PolicySetChildrenArgs:
|
|
1808
2327
|
pulumi.set(self, "operator", value)
|
1809
2328
|
|
1810
2329
|
|
2330
|
+
if not MYPY:
|
2331
|
+
class PolicySetChildrenChildrenArgsDict(TypedDict):
|
2332
|
+
condition_type: pulumi.Input[str]
|
2333
|
+
"""
|
2334
|
+
Condition type.
|
2335
|
+
- Choices: `ConditionAttributes`, `ConditionReference`
|
2336
|
+
"""
|
2337
|
+
attribute_name: NotRequired[pulumi.Input[str]]
|
2338
|
+
"""
|
2339
|
+
Dictionary attribute name
|
2340
|
+
"""
|
2341
|
+
attribute_value: NotRequired[pulumi.Input[str]]
|
2342
|
+
"""
|
2343
|
+
Attribute value for condition. Value type is specified in dictionary object.
|
2344
|
+
"""
|
2345
|
+
dictionary_name: NotRequired[pulumi.Input[str]]
|
2346
|
+
"""
|
2347
|
+
Dictionary name
|
2348
|
+
"""
|
2349
|
+
dictionary_value: NotRequired[pulumi.Input[str]]
|
2350
|
+
"""
|
2351
|
+
Dictionary value
|
2352
|
+
"""
|
2353
|
+
id: NotRequired[pulumi.Input[str]]
|
2354
|
+
"""
|
2355
|
+
UUID for condition
|
2356
|
+
"""
|
2357
|
+
is_negate: NotRequired[pulumi.Input[bool]]
|
2358
|
+
"""
|
2359
|
+
Indicates whereas this condition is in negate mode
|
2360
|
+
"""
|
2361
|
+
operator: NotRequired[pulumi.Input[str]]
|
2362
|
+
"""
|
2363
|
+
Equality operator
|
2364
|
+
- Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
2365
|
+
"""
|
2366
|
+
elif False:
|
2367
|
+
PolicySetChildrenChildrenArgsDict: TypeAlias = Mapping[str, Any]
|
2368
|
+
|
1811
2369
|
@pulumi.input_type
|
1812
2370
|
class PolicySetChildrenChildrenArgs:
|
1813
2371
|
def __init__(__self__, *,
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = ['AllowedProtocolsArgs', 'AllowedProtocols']
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
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
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|