pulumi-kubernetes 4.17.0a1723228048__py3-none-any.whl → 4.17.0a1723576835__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.
Potentially problematic release.
This version of pulumi-kubernetes might be problematic. Click here for more details.
- pulumi_kubernetes/__init__.py +42 -2
- pulumi_kubernetes/admissionregistration/v1/ValidatingAdmissionPolicyBindingList.py +18 -17
- pulumi_kubernetes/admissionregistration/v1/ValidatingAdmissionPolicyList.py +18 -17
- pulumi_kubernetes/admissionregistration/v1alpha1/ValidatingAdmissionPolicyBindingList.py +18 -17
- pulumi_kubernetes/admissionregistration/v1alpha1/ValidatingAdmissionPolicyList.py +18 -17
- pulumi_kubernetes/admissionregistration/v1beta1/ValidatingAdmissionPolicyBindingList.py +18 -17
- pulumi_kubernetes/admissionregistration/v1beta1/ValidatingAdmissionPolicyList.py +18 -17
- pulumi_kubernetes/apiextensions/v1/_inputs.py +6 -6
- pulumi_kubernetes/apiextensions/v1/outputs.py +4 -4
- pulumi_kubernetes/apps/v1/_inputs.py +12 -12
- pulumi_kubernetes/apps/v1/outputs.py +8 -8
- pulumi_kubernetes/batch/v1/_inputs.py +15 -27
- pulumi_kubernetes/batch/v1/outputs.py +12 -20
- pulumi_kubernetes/coordination/__init__.py +3 -0
- pulumi_kubernetes/coordination/v1/_inputs.py +94 -14
- pulumi_kubernetes/coordination/v1/outputs.py +62 -10
- pulumi_kubernetes/coordination/v1alpha1/LeaseCandidate.py +214 -0
- pulumi_kubernetes/coordination/v1alpha1/LeaseCandidateList.py +215 -0
- pulumi_kubernetes/coordination/v1alpha1/LeaseCandidatePatch.py +226 -0
- pulumi_kubernetes/coordination/v1alpha1/__init__.py +12 -0
- pulumi_kubernetes/coordination/v1alpha1/_inputs.py +418 -0
- pulumi_kubernetes/coordination/v1alpha1/outputs.py +334 -0
- pulumi_kubernetes/core/v1/_inputs.py +955 -184
- pulumi_kubernetes/core/v1/outputs.py +1026 -135
- pulumi_kubernetes/networking/v1alpha1/IPAddress.py +2 -0
- pulumi_kubernetes/networking/v1alpha1/IPAddressPatch.py +2 -0
- pulumi_kubernetes/networking/v1alpha1/ServiceCIDR.py +2 -0
- pulumi_kubernetes/networking/v1alpha1/ServiceCIDRPatch.py +2 -0
- pulumi_kubernetes/networking/v1beta1/IPAddress.py +216 -0
- pulumi_kubernetes/networking/v1beta1/IPAddressList.py +215 -0
- pulumi_kubernetes/networking/v1beta1/IPAddressPatch.py +228 -0
- pulumi_kubernetes/networking/v1beta1/ServiceCIDR.py +226 -0
- pulumi_kubernetes/networking/v1beta1/ServiceCIDRList.py +215 -0
- pulumi_kubernetes/networking/v1beta1/ServiceCIDRPatch.py +238 -0
- pulumi_kubernetes/networking/v1beta1/__init__.py +6 -0
- pulumi_kubernetes/networking/v1beta1/_inputs.py +599 -0
- pulumi_kubernetes/networking/v1beta1/outputs.py +461 -0
- pulumi_kubernetes/pulumi-plugin.json +1 -1
- pulumi_kubernetes/resource/__init__.py +3 -0
- pulumi_kubernetes/resource/v1alpha1/ResourceClaim.py +1 -1
- pulumi_kubernetes/resource/v1alpha1/ResourceClaimPatch.py +1 -1
- pulumi_kubernetes/resource/v1alpha1/ResourceClaimTemplate.py +1 -1
- pulumi_kubernetes/resource/v1alpha1/ResourceClaimTemplatePatch.py +1 -1
- pulumi_kubernetes/resource/v1alpha2/PodSchedulingContext.py +2 -0
- pulumi_kubernetes/resource/v1alpha2/PodSchedulingContextPatch.py +2 -0
- pulumi_kubernetes/resource/v1alpha2/ResourceClaim.py +1 -1
- pulumi_kubernetes/resource/v1alpha2/ResourceClaimPatch.py +1 -1
- pulumi_kubernetes/resource/v1alpha2/ResourceClaimTemplate.py +1 -1
- pulumi_kubernetes/resource/v1alpha2/ResourceClaimTemplatePatch.py +1 -1
- pulumi_kubernetes/resource/v1alpha2/ResourceSlice.py +2 -0
- pulumi_kubernetes/resource/v1alpha2/ResourceSlicePatch.py +2 -0
- pulumi_kubernetes/resource/v1alpha3/DeviceClass.py +236 -0
- pulumi_kubernetes/resource/v1alpha3/DeviceClassList.py +216 -0
- pulumi_kubernetes/resource/v1alpha3/DeviceClassPatch.py +247 -0
- pulumi_kubernetes/resource/v1alpha3/PodSchedulingContext.py +231 -0
- pulumi_kubernetes/resource/v1alpha3/PodSchedulingContextList.py +215 -0
- pulumi_kubernetes/resource/v1alpha3/PodSchedulingContextPatch.py +242 -0
- pulumi_kubernetes/resource/v1alpha3/ResourceClaim.py +232 -0
- pulumi_kubernetes/resource/v1alpha3/ResourceClaimList.py +216 -0
- pulumi_kubernetes/resource/v1alpha3/ResourceClaimPatch.py +243 -0
- pulumi_kubernetes/resource/v1alpha3/ResourceClaimTemplate.py +229 -0
- pulumi_kubernetes/resource/v1alpha3/ResourceClaimTemplateList.py +215 -0
- pulumi_kubernetes/resource/v1alpha3/ResourceClaimTemplatePatch.py +240 -0
- pulumi_kubernetes/resource/v1alpha3/ResourceSlice.py +246 -0
- pulumi_kubernetes/resource/v1alpha3/ResourceSlicePatch.py +257 -0
- pulumi_kubernetes/resource/v1alpha3/__init__.py +23 -0
- pulumi_kubernetes/resource/v1alpha3/_inputs.py +3924 -0
- pulumi_kubernetes/resource/v1alpha3/outputs.py +3327 -0
- pulumi_kubernetes/storage/v1alpha1/VolumeAttributesClass.py +2 -0
- pulumi_kubernetes/storage/v1alpha1/VolumeAttributesClassPatch.py +2 -0
- pulumi_kubernetes/storage/v1beta1/VolumeAttributesClass.py +252 -0
- pulumi_kubernetes/storage/v1beta1/VolumeAttributesClassList.py +215 -0
- pulumi_kubernetes/storage/v1beta1/VolumeAttributesClassPatch.py +263 -0
- pulumi_kubernetes/storage/v1beta1/__init__.py +3 -0
- pulumi_kubernetes/storage/v1beta1/_inputs.py +123 -0
- pulumi_kubernetes/storage/v1beta1/outputs.py +94 -0
- pulumi_kubernetes/yaml/yaml.py +102 -0
- {pulumi_kubernetes-4.17.0a1723228048.dist-info → pulumi_kubernetes-4.17.0a1723576835.dist-info}/METADATA +1 -1
- {pulumi_kubernetes-4.17.0a1723228048.dist-info → pulumi_kubernetes-4.17.0a1723576835.dist-info}/RECORD +81 -49
- {pulumi_kubernetes-4.17.0a1723228048.dist-info → pulumi_kubernetes-4.17.0a1723576835.dist-info}/WHEEL +1 -1
- {pulumi_kubernetes-4.17.0a1723228048.dist-info → pulumi_kubernetes-4.17.0a1723576835.dist-info}/top_level.txt +0 -0
pulumi_kubernetes/__init__.py
CHANGED
|
@@ -370,6 +370,16 @@ _utilities.register(
|
|
|
370
370
|
"kubernetes:coordination.k8s.io/v1:LeasePatch": "LeasePatch"
|
|
371
371
|
}
|
|
372
372
|
},
|
|
373
|
+
{
|
|
374
|
+
"pkg": "kubernetes",
|
|
375
|
+
"mod": "coordination.k8s.io/v1alpha1",
|
|
376
|
+
"fqn": "pulumi_kubernetes.coordination.v1alpha1",
|
|
377
|
+
"classes": {
|
|
378
|
+
"kubernetes:coordination.k8s.io/v1alpha1:LeaseCandidate": "LeaseCandidate",
|
|
379
|
+
"kubernetes:coordination.k8s.io/v1alpha1:LeaseCandidateList": "LeaseCandidateList",
|
|
380
|
+
"kubernetes:coordination.k8s.io/v1alpha1:LeaseCandidatePatch": "LeaseCandidatePatch"
|
|
381
|
+
}
|
|
382
|
+
},
|
|
373
383
|
{
|
|
374
384
|
"pkg": "kubernetes",
|
|
375
385
|
"mod": "coordination.k8s.io/v1beta1",
|
|
@@ -634,12 +644,18 @@ _utilities.register(
|
|
|
634
644
|
"mod": "networking.k8s.io/v1beta1",
|
|
635
645
|
"fqn": "pulumi_kubernetes.networking.v1beta1",
|
|
636
646
|
"classes": {
|
|
647
|
+
"kubernetes:networking.k8s.io/v1beta1:IPAddress": "IPAddress",
|
|
648
|
+
"kubernetes:networking.k8s.io/v1beta1:IPAddressList": "IPAddressList",
|
|
649
|
+
"kubernetes:networking.k8s.io/v1beta1:IPAddressPatch": "IPAddressPatch",
|
|
637
650
|
"kubernetes:networking.k8s.io/v1beta1:Ingress": "Ingress",
|
|
638
651
|
"kubernetes:networking.k8s.io/v1beta1:IngressClass": "IngressClass",
|
|
639
652
|
"kubernetes:networking.k8s.io/v1beta1:IngressClassList": "IngressClassList",
|
|
640
653
|
"kubernetes:networking.k8s.io/v1beta1:IngressClassPatch": "IngressClassPatch",
|
|
641
654
|
"kubernetes:networking.k8s.io/v1beta1:IngressList": "IngressList",
|
|
642
|
-
"kubernetes:networking.k8s.io/v1beta1:IngressPatch": "IngressPatch"
|
|
655
|
+
"kubernetes:networking.k8s.io/v1beta1:IngressPatch": "IngressPatch",
|
|
656
|
+
"kubernetes:networking.k8s.io/v1beta1:ServiceCIDR": "ServiceCIDR",
|
|
657
|
+
"kubernetes:networking.k8s.io/v1beta1:ServiceCIDRList": "ServiceCIDRList",
|
|
658
|
+
"kubernetes:networking.k8s.io/v1beta1:ServiceCIDRPatch": "ServiceCIDRPatch"
|
|
643
659
|
}
|
|
644
660
|
},
|
|
645
661
|
{
|
|
@@ -799,6 +815,27 @@ _utilities.register(
|
|
|
799
815
|
"kubernetes:resource.k8s.io/v1alpha2:ResourceSlicePatch": "ResourceSlicePatch"
|
|
800
816
|
}
|
|
801
817
|
},
|
|
818
|
+
{
|
|
819
|
+
"pkg": "kubernetes",
|
|
820
|
+
"mod": "resource.k8s.io/v1alpha3",
|
|
821
|
+
"fqn": "pulumi_kubernetes.resource.v1alpha3",
|
|
822
|
+
"classes": {
|
|
823
|
+
"kubernetes:resource.k8s.io/v1alpha3:DeviceClass": "DeviceClass",
|
|
824
|
+
"kubernetes:resource.k8s.io/v1alpha3:DeviceClassList": "DeviceClassList",
|
|
825
|
+
"kubernetes:resource.k8s.io/v1alpha3:DeviceClassPatch": "DeviceClassPatch",
|
|
826
|
+
"kubernetes:resource.k8s.io/v1alpha3:PodSchedulingContext": "PodSchedulingContext",
|
|
827
|
+
"kubernetes:resource.k8s.io/v1alpha3:PodSchedulingContextList": "PodSchedulingContextList",
|
|
828
|
+
"kubernetes:resource.k8s.io/v1alpha3:PodSchedulingContextPatch": "PodSchedulingContextPatch",
|
|
829
|
+
"kubernetes:resource.k8s.io/v1alpha3:ResourceClaim": "ResourceClaim",
|
|
830
|
+
"kubernetes:resource.k8s.io/v1alpha3:ResourceClaimList": "ResourceClaimList",
|
|
831
|
+
"kubernetes:resource.k8s.io/v1alpha3:ResourceClaimPatch": "ResourceClaimPatch",
|
|
832
|
+
"kubernetes:resource.k8s.io/v1alpha3:ResourceClaimTemplate": "ResourceClaimTemplate",
|
|
833
|
+
"kubernetes:resource.k8s.io/v1alpha3:ResourceClaimTemplateList": "ResourceClaimTemplateList",
|
|
834
|
+
"kubernetes:resource.k8s.io/v1alpha3:ResourceClaimTemplatePatch": "ResourceClaimTemplatePatch",
|
|
835
|
+
"kubernetes:resource.k8s.io/v1alpha3:ResourceSlice": "ResourceSlice",
|
|
836
|
+
"kubernetes:resource.k8s.io/v1alpha3:ResourceSlicePatch": "ResourceSlicePatch"
|
|
837
|
+
}
|
|
838
|
+
},
|
|
802
839
|
{
|
|
803
840
|
"pkg": "kubernetes",
|
|
804
841
|
"mod": "scheduling.k8s.io/v1",
|
|
@@ -893,7 +930,10 @@ _utilities.register(
|
|
|
893
930
|
"kubernetes:storage.k8s.io/v1beta1:StorageClassPatch": "StorageClassPatch",
|
|
894
931
|
"kubernetes:storage.k8s.io/v1beta1:VolumeAttachment": "VolumeAttachment",
|
|
895
932
|
"kubernetes:storage.k8s.io/v1beta1:VolumeAttachmentList": "VolumeAttachmentList",
|
|
896
|
-
"kubernetes:storage.k8s.io/v1beta1:VolumeAttachmentPatch": "VolumeAttachmentPatch"
|
|
933
|
+
"kubernetes:storage.k8s.io/v1beta1:VolumeAttachmentPatch": "VolumeAttachmentPatch",
|
|
934
|
+
"kubernetes:storage.k8s.io/v1beta1:VolumeAttributesClass": "VolumeAttributesClass",
|
|
935
|
+
"kubernetes:storage.k8s.io/v1beta1:VolumeAttributesClassList": "VolumeAttributesClassList",
|
|
936
|
+
"kubernetes:storage.k8s.io/v1beta1:VolumeAttributesClassPatch": "VolumeAttributesClassPatch"
|
|
897
937
|
}
|
|
898
938
|
},
|
|
899
939
|
{
|
|
@@ -22,26 +22,37 @@ __all__ = ['ValidatingAdmissionPolicyBindingListArgs', 'ValidatingAdmissionPolic
|
|
|
22
22
|
@pulumi.input_type
|
|
23
23
|
class ValidatingAdmissionPolicyBindingListArgs:
|
|
24
24
|
def __init__(__self__, *,
|
|
25
|
+
items: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]],
|
|
25
26
|
api_version: Optional[pulumi.Input[str]] = None,
|
|
26
|
-
items: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]] = None,
|
|
27
27
|
kind: Optional[pulumi.Input[str]] = None,
|
|
28
28
|
metadata: Optional[pulumi.Input['_meta.v1.ListMetaArgs']] = None):
|
|
29
29
|
"""
|
|
30
30
|
The set of arguments for constructing a ValidatingAdmissionPolicyBindingList resource.
|
|
31
|
-
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
32
31
|
:param pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]] items: List of PolicyBinding.
|
|
32
|
+
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
33
33
|
:param pulumi.Input[str] kind: Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
34
34
|
:param pulumi.Input['_meta.v1.ListMetaArgs'] metadata: Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
35
35
|
"""
|
|
36
|
+
pulumi.set(__self__, "items", items)
|
|
36
37
|
if api_version is not None:
|
|
37
38
|
pulumi.set(__self__, "api_version", 'admissionregistration.k8s.io/v1')
|
|
38
|
-
if items is not None:
|
|
39
|
-
pulumi.set(__self__, "items", items)
|
|
40
39
|
if kind is not None:
|
|
41
40
|
pulumi.set(__self__, "kind", 'ValidatingAdmissionPolicyBindingList')
|
|
42
41
|
if metadata is not None:
|
|
43
42
|
pulumi.set(__self__, "metadata", metadata)
|
|
44
43
|
|
|
44
|
+
@property
|
|
45
|
+
@pulumi.getter
|
|
46
|
+
def items(self) -> pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]:
|
|
47
|
+
"""
|
|
48
|
+
List of PolicyBinding.
|
|
49
|
+
"""
|
|
50
|
+
return pulumi.get(self, "items")
|
|
51
|
+
|
|
52
|
+
@items.setter
|
|
53
|
+
def items(self, value: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]):
|
|
54
|
+
pulumi.set(self, "items", value)
|
|
55
|
+
|
|
45
56
|
@property
|
|
46
57
|
@pulumi.getter(name="apiVersion")
|
|
47
58
|
def api_version(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -54,18 +65,6 @@ class ValidatingAdmissionPolicyBindingListArgs:
|
|
|
54
65
|
def api_version(self, value: Optional[pulumi.Input[str]]):
|
|
55
66
|
pulumi.set(self, "api_version", value)
|
|
56
67
|
|
|
57
|
-
@property
|
|
58
|
-
@pulumi.getter
|
|
59
|
-
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]]:
|
|
60
|
-
"""
|
|
61
|
-
List of PolicyBinding.
|
|
62
|
-
"""
|
|
63
|
-
return pulumi.get(self, "items")
|
|
64
|
-
|
|
65
|
-
@items.setter
|
|
66
|
-
def items(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]]):
|
|
67
|
-
pulumi.set(self, "items", value)
|
|
68
|
-
|
|
69
68
|
@property
|
|
70
69
|
@pulumi.getter
|
|
71
70
|
def kind(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -115,7 +114,7 @@ class ValidatingAdmissionPolicyBindingList(pulumi.CustomResource):
|
|
|
115
114
|
@overload
|
|
116
115
|
def __init__(__self__,
|
|
117
116
|
resource_name: str,
|
|
118
|
-
args:
|
|
117
|
+
args: ValidatingAdmissionPolicyBindingListArgs,
|
|
119
118
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
120
119
|
"""
|
|
121
120
|
ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.
|
|
@@ -149,6 +148,8 @@ class ValidatingAdmissionPolicyBindingList(pulumi.CustomResource):
|
|
|
149
148
|
__props__ = ValidatingAdmissionPolicyBindingListArgs.__new__(ValidatingAdmissionPolicyBindingListArgs)
|
|
150
149
|
|
|
151
150
|
__props__.__dict__["api_version"] = 'admissionregistration.k8s.io/v1'
|
|
151
|
+
if items is None and not opts.urn:
|
|
152
|
+
raise TypeError("Missing required property 'items'")
|
|
152
153
|
__props__.__dict__["items"] = items
|
|
153
154
|
__props__.__dict__["kind"] = 'ValidatingAdmissionPolicyBindingList'
|
|
154
155
|
__props__.__dict__["metadata"] = metadata
|
|
@@ -22,26 +22,37 @@ __all__ = ['ValidatingAdmissionPolicyListArgs', 'ValidatingAdmissionPolicyList']
|
|
|
22
22
|
@pulumi.input_type
|
|
23
23
|
class ValidatingAdmissionPolicyListArgs:
|
|
24
24
|
def __init__(__self__, *,
|
|
25
|
+
items: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]],
|
|
25
26
|
api_version: Optional[pulumi.Input[str]] = None,
|
|
26
|
-
items: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]] = None,
|
|
27
27
|
kind: Optional[pulumi.Input[str]] = None,
|
|
28
28
|
metadata: Optional[pulumi.Input['_meta.v1.ListMetaArgs']] = None):
|
|
29
29
|
"""
|
|
30
30
|
The set of arguments for constructing a ValidatingAdmissionPolicyList resource.
|
|
31
|
-
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
32
31
|
:param pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]] items: List of ValidatingAdmissionPolicy.
|
|
32
|
+
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
33
33
|
:param pulumi.Input[str] kind: Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
34
34
|
:param pulumi.Input['_meta.v1.ListMetaArgs'] metadata: Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
35
35
|
"""
|
|
36
|
+
pulumi.set(__self__, "items", items)
|
|
36
37
|
if api_version is not None:
|
|
37
38
|
pulumi.set(__self__, "api_version", 'admissionregistration.k8s.io/v1')
|
|
38
|
-
if items is not None:
|
|
39
|
-
pulumi.set(__self__, "items", items)
|
|
40
39
|
if kind is not None:
|
|
41
40
|
pulumi.set(__self__, "kind", 'ValidatingAdmissionPolicyList')
|
|
42
41
|
if metadata is not None:
|
|
43
42
|
pulumi.set(__self__, "metadata", metadata)
|
|
44
43
|
|
|
44
|
+
@property
|
|
45
|
+
@pulumi.getter
|
|
46
|
+
def items(self) -> pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]:
|
|
47
|
+
"""
|
|
48
|
+
List of ValidatingAdmissionPolicy.
|
|
49
|
+
"""
|
|
50
|
+
return pulumi.get(self, "items")
|
|
51
|
+
|
|
52
|
+
@items.setter
|
|
53
|
+
def items(self, value: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]):
|
|
54
|
+
pulumi.set(self, "items", value)
|
|
55
|
+
|
|
45
56
|
@property
|
|
46
57
|
@pulumi.getter(name="apiVersion")
|
|
47
58
|
def api_version(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -54,18 +65,6 @@ class ValidatingAdmissionPolicyListArgs:
|
|
|
54
65
|
def api_version(self, value: Optional[pulumi.Input[str]]):
|
|
55
66
|
pulumi.set(self, "api_version", value)
|
|
56
67
|
|
|
57
|
-
@property
|
|
58
|
-
@pulumi.getter
|
|
59
|
-
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]]:
|
|
60
|
-
"""
|
|
61
|
-
List of ValidatingAdmissionPolicy.
|
|
62
|
-
"""
|
|
63
|
-
return pulumi.get(self, "items")
|
|
64
|
-
|
|
65
|
-
@items.setter
|
|
66
|
-
def items(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]]):
|
|
67
|
-
pulumi.set(self, "items", value)
|
|
68
|
-
|
|
69
68
|
@property
|
|
70
69
|
@pulumi.getter
|
|
71
70
|
def kind(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -115,7 +114,7 @@ class ValidatingAdmissionPolicyList(pulumi.CustomResource):
|
|
|
115
114
|
@overload
|
|
116
115
|
def __init__(__self__,
|
|
117
116
|
resource_name: str,
|
|
118
|
-
args:
|
|
117
|
+
args: ValidatingAdmissionPolicyListArgs,
|
|
119
118
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
120
119
|
"""
|
|
121
120
|
ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.
|
|
@@ -149,6 +148,8 @@ class ValidatingAdmissionPolicyList(pulumi.CustomResource):
|
|
|
149
148
|
__props__ = ValidatingAdmissionPolicyListArgs.__new__(ValidatingAdmissionPolicyListArgs)
|
|
150
149
|
|
|
151
150
|
__props__.__dict__["api_version"] = 'admissionregistration.k8s.io/v1'
|
|
151
|
+
if items is None and not opts.urn:
|
|
152
|
+
raise TypeError("Missing required property 'items'")
|
|
152
153
|
__props__.__dict__["items"] = items
|
|
153
154
|
__props__.__dict__["kind"] = 'ValidatingAdmissionPolicyList'
|
|
154
155
|
__props__.__dict__["metadata"] = metadata
|
|
@@ -22,26 +22,37 @@ __all__ = ['ValidatingAdmissionPolicyBindingListArgs', 'ValidatingAdmissionPolic
|
|
|
22
22
|
@pulumi.input_type
|
|
23
23
|
class ValidatingAdmissionPolicyBindingListArgs:
|
|
24
24
|
def __init__(__self__, *,
|
|
25
|
+
items: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]],
|
|
25
26
|
api_version: Optional[pulumi.Input[str]] = None,
|
|
26
|
-
items: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]] = None,
|
|
27
27
|
kind: Optional[pulumi.Input[str]] = None,
|
|
28
28
|
metadata: Optional[pulumi.Input['_meta.v1.ListMetaArgs']] = None):
|
|
29
29
|
"""
|
|
30
30
|
The set of arguments for constructing a ValidatingAdmissionPolicyBindingList resource.
|
|
31
|
-
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
32
31
|
:param pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]] items: List of PolicyBinding.
|
|
32
|
+
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
33
33
|
:param pulumi.Input[str] kind: Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
34
34
|
:param pulumi.Input['_meta.v1.ListMetaArgs'] metadata: Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
35
35
|
"""
|
|
36
|
+
pulumi.set(__self__, "items", items)
|
|
36
37
|
if api_version is not None:
|
|
37
38
|
pulumi.set(__self__, "api_version", 'admissionregistration.k8s.io/v1alpha1')
|
|
38
|
-
if items is not None:
|
|
39
|
-
pulumi.set(__self__, "items", items)
|
|
40
39
|
if kind is not None:
|
|
41
40
|
pulumi.set(__self__, "kind", 'ValidatingAdmissionPolicyBindingList')
|
|
42
41
|
if metadata is not None:
|
|
43
42
|
pulumi.set(__self__, "metadata", metadata)
|
|
44
43
|
|
|
44
|
+
@property
|
|
45
|
+
@pulumi.getter
|
|
46
|
+
def items(self) -> pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]:
|
|
47
|
+
"""
|
|
48
|
+
List of PolicyBinding.
|
|
49
|
+
"""
|
|
50
|
+
return pulumi.get(self, "items")
|
|
51
|
+
|
|
52
|
+
@items.setter
|
|
53
|
+
def items(self, value: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]):
|
|
54
|
+
pulumi.set(self, "items", value)
|
|
55
|
+
|
|
45
56
|
@property
|
|
46
57
|
@pulumi.getter(name="apiVersion")
|
|
47
58
|
def api_version(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -54,18 +65,6 @@ class ValidatingAdmissionPolicyBindingListArgs:
|
|
|
54
65
|
def api_version(self, value: Optional[pulumi.Input[str]]):
|
|
55
66
|
pulumi.set(self, "api_version", value)
|
|
56
67
|
|
|
57
|
-
@property
|
|
58
|
-
@pulumi.getter
|
|
59
|
-
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]]:
|
|
60
|
-
"""
|
|
61
|
-
List of PolicyBinding.
|
|
62
|
-
"""
|
|
63
|
-
return pulumi.get(self, "items")
|
|
64
|
-
|
|
65
|
-
@items.setter
|
|
66
|
-
def items(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]]):
|
|
67
|
-
pulumi.set(self, "items", value)
|
|
68
|
-
|
|
69
68
|
@property
|
|
70
69
|
@pulumi.getter
|
|
71
70
|
def kind(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -115,7 +114,7 @@ class ValidatingAdmissionPolicyBindingList(pulumi.CustomResource):
|
|
|
115
114
|
@overload
|
|
116
115
|
def __init__(__self__,
|
|
117
116
|
resource_name: str,
|
|
118
|
-
args:
|
|
117
|
+
args: ValidatingAdmissionPolicyBindingListArgs,
|
|
119
118
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
120
119
|
"""
|
|
121
120
|
ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.
|
|
@@ -149,6 +148,8 @@ class ValidatingAdmissionPolicyBindingList(pulumi.CustomResource):
|
|
|
149
148
|
__props__ = ValidatingAdmissionPolicyBindingListArgs.__new__(ValidatingAdmissionPolicyBindingListArgs)
|
|
150
149
|
|
|
151
150
|
__props__.__dict__["api_version"] = 'admissionregistration.k8s.io/v1alpha1'
|
|
151
|
+
if items is None and not opts.urn:
|
|
152
|
+
raise TypeError("Missing required property 'items'")
|
|
152
153
|
__props__.__dict__["items"] = items
|
|
153
154
|
__props__.__dict__["kind"] = 'ValidatingAdmissionPolicyBindingList'
|
|
154
155
|
__props__.__dict__["metadata"] = metadata
|
|
@@ -22,26 +22,37 @@ __all__ = ['ValidatingAdmissionPolicyListArgs', 'ValidatingAdmissionPolicyList']
|
|
|
22
22
|
@pulumi.input_type
|
|
23
23
|
class ValidatingAdmissionPolicyListArgs:
|
|
24
24
|
def __init__(__self__, *,
|
|
25
|
+
items: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]],
|
|
25
26
|
api_version: Optional[pulumi.Input[str]] = None,
|
|
26
|
-
items: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]] = None,
|
|
27
27
|
kind: Optional[pulumi.Input[str]] = None,
|
|
28
28
|
metadata: Optional[pulumi.Input['_meta.v1.ListMetaArgs']] = None):
|
|
29
29
|
"""
|
|
30
30
|
The set of arguments for constructing a ValidatingAdmissionPolicyList resource.
|
|
31
|
-
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
32
31
|
:param pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]] items: List of ValidatingAdmissionPolicy.
|
|
32
|
+
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
33
33
|
:param pulumi.Input[str] kind: Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
34
34
|
:param pulumi.Input['_meta.v1.ListMetaArgs'] metadata: Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
35
35
|
"""
|
|
36
|
+
pulumi.set(__self__, "items", items)
|
|
36
37
|
if api_version is not None:
|
|
37
38
|
pulumi.set(__self__, "api_version", 'admissionregistration.k8s.io/v1alpha1')
|
|
38
|
-
if items is not None:
|
|
39
|
-
pulumi.set(__self__, "items", items)
|
|
40
39
|
if kind is not None:
|
|
41
40
|
pulumi.set(__self__, "kind", 'ValidatingAdmissionPolicyList')
|
|
42
41
|
if metadata is not None:
|
|
43
42
|
pulumi.set(__self__, "metadata", metadata)
|
|
44
43
|
|
|
44
|
+
@property
|
|
45
|
+
@pulumi.getter
|
|
46
|
+
def items(self) -> pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]:
|
|
47
|
+
"""
|
|
48
|
+
List of ValidatingAdmissionPolicy.
|
|
49
|
+
"""
|
|
50
|
+
return pulumi.get(self, "items")
|
|
51
|
+
|
|
52
|
+
@items.setter
|
|
53
|
+
def items(self, value: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]):
|
|
54
|
+
pulumi.set(self, "items", value)
|
|
55
|
+
|
|
45
56
|
@property
|
|
46
57
|
@pulumi.getter(name="apiVersion")
|
|
47
58
|
def api_version(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -54,18 +65,6 @@ class ValidatingAdmissionPolicyListArgs:
|
|
|
54
65
|
def api_version(self, value: Optional[pulumi.Input[str]]):
|
|
55
66
|
pulumi.set(self, "api_version", value)
|
|
56
67
|
|
|
57
|
-
@property
|
|
58
|
-
@pulumi.getter
|
|
59
|
-
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]]:
|
|
60
|
-
"""
|
|
61
|
-
List of ValidatingAdmissionPolicy.
|
|
62
|
-
"""
|
|
63
|
-
return pulumi.get(self, "items")
|
|
64
|
-
|
|
65
|
-
@items.setter
|
|
66
|
-
def items(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]]):
|
|
67
|
-
pulumi.set(self, "items", value)
|
|
68
|
-
|
|
69
68
|
@property
|
|
70
69
|
@pulumi.getter
|
|
71
70
|
def kind(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -115,7 +114,7 @@ class ValidatingAdmissionPolicyList(pulumi.CustomResource):
|
|
|
115
114
|
@overload
|
|
116
115
|
def __init__(__self__,
|
|
117
116
|
resource_name: str,
|
|
118
|
-
args:
|
|
117
|
+
args: ValidatingAdmissionPolicyListArgs,
|
|
119
118
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
120
119
|
"""
|
|
121
120
|
ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.
|
|
@@ -149,6 +148,8 @@ class ValidatingAdmissionPolicyList(pulumi.CustomResource):
|
|
|
149
148
|
__props__ = ValidatingAdmissionPolicyListArgs.__new__(ValidatingAdmissionPolicyListArgs)
|
|
150
149
|
|
|
151
150
|
__props__.__dict__["api_version"] = 'admissionregistration.k8s.io/v1alpha1'
|
|
151
|
+
if items is None and not opts.urn:
|
|
152
|
+
raise TypeError("Missing required property 'items'")
|
|
152
153
|
__props__.__dict__["items"] = items
|
|
153
154
|
__props__.__dict__["kind"] = 'ValidatingAdmissionPolicyList'
|
|
154
155
|
__props__.__dict__["metadata"] = metadata
|
|
@@ -22,26 +22,37 @@ __all__ = ['ValidatingAdmissionPolicyBindingListArgs', 'ValidatingAdmissionPolic
|
|
|
22
22
|
@pulumi.input_type
|
|
23
23
|
class ValidatingAdmissionPolicyBindingListArgs:
|
|
24
24
|
def __init__(__self__, *,
|
|
25
|
+
items: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]],
|
|
25
26
|
api_version: Optional[pulumi.Input[str]] = None,
|
|
26
|
-
items: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]] = None,
|
|
27
27
|
kind: Optional[pulumi.Input[str]] = None,
|
|
28
28
|
metadata: Optional[pulumi.Input['_meta.v1.ListMetaArgs']] = None):
|
|
29
29
|
"""
|
|
30
30
|
The set of arguments for constructing a ValidatingAdmissionPolicyBindingList resource.
|
|
31
|
-
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
32
31
|
:param pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]] items: List of PolicyBinding.
|
|
32
|
+
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
33
33
|
:param pulumi.Input[str] kind: Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
34
34
|
:param pulumi.Input['_meta.v1.ListMetaArgs'] metadata: Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
35
35
|
"""
|
|
36
|
+
pulumi.set(__self__, "items", items)
|
|
36
37
|
if api_version is not None:
|
|
37
38
|
pulumi.set(__self__, "api_version", 'admissionregistration.k8s.io/v1beta1')
|
|
38
|
-
if items is not None:
|
|
39
|
-
pulumi.set(__self__, "items", items)
|
|
40
39
|
if kind is not None:
|
|
41
40
|
pulumi.set(__self__, "kind", 'ValidatingAdmissionPolicyBindingList')
|
|
42
41
|
if metadata is not None:
|
|
43
42
|
pulumi.set(__self__, "metadata", metadata)
|
|
44
43
|
|
|
44
|
+
@property
|
|
45
|
+
@pulumi.getter
|
|
46
|
+
def items(self) -> pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]:
|
|
47
|
+
"""
|
|
48
|
+
List of PolicyBinding.
|
|
49
|
+
"""
|
|
50
|
+
return pulumi.get(self, "items")
|
|
51
|
+
|
|
52
|
+
@items.setter
|
|
53
|
+
def items(self, value: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]):
|
|
54
|
+
pulumi.set(self, "items", value)
|
|
55
|
+
|
|
45
56
|
@property
|
|
46
57
|
@pulumi.getter(name="apiVersion")
|
|
47
58
|
def api_version(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -54,18 +65,6 @@ class ValidatingAdmissionPolicyBindingListArgs:
|
|
|
54
65
|
def api_version(self, value: Optional[pulumi.Input[str]]):
|
|
55
66
|
pulumi.set(self, "api_version", value)
|
|
56
67
|
|
|
57
|
-
@property
|
|
58
|
-
@pulumi.getter
|
|
59
|
-
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]]:
|
|
60
|
-
"""
|
|
61
|
-
List of PolicyBinding.
|
|
62
|
-
"""
|
|
63
|
-
return pulumi.get(self, "items")
|
|
64
|
-
|
|
65
|
-
@items.setter
|
|
66
|
-
def items(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyBindingArgs']]]]):
|
|
67
|
-
pulumi.set(self, "items", value)
|
|
68
|
-
|
|
69
68
|
@property
|
|
70
69
|
@pulumi.getter
|
|
71
70
|
def kind(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -115,7 +114,7 @@ class ValidatingAdmissionPolicyBindingList(pulumi.CustomResource):
|
|
|
115
114
|
@overload
|
|
116
115
|
def __init__(__self__,
|
|
117
116
|
resource_name: str,
|
|
118
|
-
args:
|
|
117
|
+
args: ValidatingAdmissionPolicyBindingListArgs,
|
|
119
118
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
120
119
|
"""
|
|
121
120
|
ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.
|
|
@@ -149,6 +148,8 @@ class ValidatingAdmissionPolicyBindingList(pulumi.CustomResource):
|
|
|
149
148
|
__props__ = ValidatingAdmissionPolicyBindingListArgs.__new__(ValidatingAdmissionPolicyBindingListArgs)
|
|
150
149
|
|
|
151
150
|
__props__.__dict__["api_version"] = 'admissionregistration.k8s.io/v1beta1'
|
|
151
|
+
if items is None and not opts.urn:
|
|
152
|
+
raise TypeError("Missing required property 'items'")
|
|
152
153
|
__props__.__dict__["items"] = items
|
|
153
154
|
__props__.__dict__["kind"] = 'ValidatingAdmissionPolicyBindingList'
|
|
154
155
|
__props__.__dict__["metadata"] = metadata
|
|
@@ -22,26 +22,37 @@ __all__ = ['ValidatingAdmissionPolicyListArgs', 'ValidatingAdmissionPolicyList']
|
|
|
22
22
|
@pulumi.input_type
|
|
23
23
|
class ValidatingAdmissionPolicyListArgs:
|
|
24
24
|
def __init__(__self__, *,
|
|
25
|
+
items: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]],
|
|
25
26
|
api_version: Optional[pulumi.Input[str]] = None,
|
|
26
|
-
items: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]] = None,
|
|
27
27
|
kind: Optional[pulumi.Input[str]] = None,
|
|
28
28
|
metadata: Optional[pulumi.Input['_meta.v1.ListMetaArgs']] = None):
|
|
29
29
|
"""
|
|
30
30
|
The set of arguments for constructing a ValidatingAdmissionPolicyList resource.
|
|
31
|
-
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
32
31
|
:param pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]] items: List of ValidatingAdmissionPolicy.
|
|
32
|
+
:param pulumi.Input[str] api_version: APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
|
|
33
33
|
:param pulumi.Input[str] kind: Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
34
34
|
:param pulumi.Input['_meta.v1.ListMetaArgs'] metadata: Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
|
|
35
35
|
"""
|
|
36
|
+
pulumi.set(__self__, "items", items)
|
|
36
37
|
if api_version is not None:
|
|
37
38
|
pulumi.set(__self__, "api_version", 'admissionregistration.k8s.io/v1beta1')
|
|
38
|
-
if items is not None:
|
|
39
|
-
pulumi.set(__self__, "items", items)
|
|
40
39
|
if kind is not None:
|
|
41
40
|
pulumi.set(__self__, "kind", 'ValidatingAdmissionPolicyList')
|
|
42
41
|
if metadata is not None:
|
|
43
42
|
pulumi.set(__self__, "metadata", metadata)
|
|
44
43
|
|
|
44
|
+
@property
|
|
45
|
+
@pulumi.getter
|
|
46
|
+
def items(self) -> pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]:
|
|
47
|
+
"""
|
|
48
|
+
List of ValidatingAdmissionPolicy.
|
|
49
|
+
"""
|
|
50
|
+
return pulumi.get(self, "items")
|
|
51
|
+
|
|
52
|
+
@items.setter
|
|
53
|
+
def items(self, value: pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]):
|
|
54
|
+
pulumi.set(self, "items", value)
|
|
55
|
+
|
|
45
56
|
@property
|
|
46
57
|
@pulumi.getter(name="apiVersion")
|
|
47
58
|
def api_version(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -54,18 +65,6 @@ class ValidatingAdmissionPolicyListArgs:
|
|
|
54
65
|
def api_version(self, value: Optional[pulumi.Input[str]]):
|
|
55
66
|
pulumi.set(self, "api_version", value)
|
|
56
67
|
|
|
57
|
-
@property
|
|
58
|
-
@pulumi.getter
|
|
59
|
-
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]]:
|
|
60
|
-
"""
|
|
61
|
-
List of ValidatingAdmissionPolicy.
|
|
62
|
-
"""
|
|
63
|
-
return pulumi.get(self, "items")
|
|
64
|
-
|
|
65
|
-
@items.setter
|
|
66
|
-
def items(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ValidatingAdmissionPolicyArgs']]]]):
|
|
67
|
-
pulumi.set(self, "items", value)
|
|
68
|
-
|
|
69
68
|
@property
|
|
70
69
|
@pulumi.getter
|
|
71
70
|
def kind(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -115,7 +114,7 @@ class ValidatingAdmissionPolicyList(pulumi.CustomResource):
|
|
|
115
114
|
@overload
|
|
116
115
|
def __init__(__self__,
|
|
117
116
|
resource_name: str,
|
|
118
|
-
args:
|
|
117
|
+
args: ValidatingAdmissionPolicyListArgs,
|
|
119
118
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
120
119
|
"""
|
|
121
120
|
ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.
|
|
@@ -149,6 +148,8 @@ class ValidatingAdmissionPolicyList(pulumi.CustomResource):
|
|
|
149
148
|
__props__ = ValidatingAdmissionPolicyListArgs.__new__(ValidatingAdmissionPolicyListArgs)
|
|
150
149
|
|
|
151
150
|
__props__.__dict__["api_version"] = 'admissionregistration.k8s.io/v1beta1'
|
|
151
|
+
if items is None and not opts.urn:
|
|
152
|
+
raise TypeError("Missing required property 'items'")
|
|
152
153
|
__props__.__dict__["items"] = items
|
|
153
154
|
__props__.__dict__["kind"] = 'ValidatingAdmissionPolicyList'
|
|
154
155
|
__props__.__dict__["metadata"] = metadata
|
|
@@ -2229,7 +2229,7 @@ if not MYPY:
|
|
|
2229
2229
|
"""
|
|
2230
2230
|
x_kubernetes_validations: NotRequired[pulumi.Input[Sequence[pulumi.Input['ValidationRulePatchArgsDict']]]]
|
|
2231
2231
|
"""
|
|
2232
|
-
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2232
|
+
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2233
2233
|
"""
|
|
2234
2234
|
elif False:
|
|
2235
2235
|
JSONSchemaPropsPatchArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -2326,7 +2326,7 @@ class JSONSchemaPropsPatchArgs:
|
|
|
2326
2326
|
2) `atomic`: the list is treated as a single entity, like a scalar.
|
|
2327
2327
|
Atomic maps will be entirely replaced when updated.
|
|
2328
2328
|
:param pulumi.Input[bool] x_kubernetes_preserve_unknown_fields: x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.
|
|
2329
|
-
:param pulumi.Input[Sequence[pulumi.Input['ValidationRulePatchArgs']]] x_kubernetes_validations: x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2329
|
+
:param pulumi.Input[Sequence[pulumi.Input['ValidationRulePatchArgs']]] x_kubernetes_validations: x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2330
2330
|
"""
|
|
2331
2331
|
if _ref is not None:
|
|
2332
2332
|
pulumi.set(__self__, "_ref", _ref)
|
|
@@ -2867,7 +2867,7 @@ class JSONSchemaPropsPatchArgs:
|
|
|
2867
2867
|
@pulumi.getter
|
|
2868
2868
|
def x_kubernetes_validations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ValidationRulePatchArgs']]]]:
|
|
2869
2869
|
"""
|
|
2870
|
-
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2870
|
+
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2871
2871
|
"""
|
|
2872
2872
|
return pulumi.get(self, "x_kubernetes_validations")
|
|
2873
2873
|
|
|
@@ -2985,7 +2985,7 @@ if not MYPY:
|
|
|
2985
2985
|
"""
|
|
2986
2986
|
x_kubernetes_validations: NotRequired[pulumi.Input[Sequence[pulumi.Input['ValidationRuleArgsDict']]]]
|
|
2987
2987
|
"""
|
|
2988
|
-
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2988
|
+
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2989
2989
|
"""
|
|
2990
2990
|
elif False:
|
|
2991
2991
|
JSONSchemaPropsArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -3082,7 +3082,7 @@ class JSONSchemaPropsArgs:
|
|
|
3082
3082
|
2) `atomic`: the list is treated as a single entity, like a scalar.
|
|
3083
3083
|
Atomic maps will be entirely replaced when updated.
|
|
3084
3084
|
:param pulumi.Input[bool] x_kubernetes_preserve_unknown_fields: x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.
|
|
3085
|
-
:param pulumi.Input[Sequence[pulumi.Input['ValidationRuleArgs']]] x_kubernetes_validations: x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
3085
|
+
:param pulumi.Input[Sequence[pulumi.Input['ValidationRuleArgs']]] x_kubernetes_validations: x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
3086
3086
|
"""
|
|
3087
3087
|
if _ref is not None:
|
|
3088
3088
|
pulumi.set(__self__, "_ref", _ref)
|
|
@@ -3623,7 +3623,7 @@ class JSONSchemaPropsArgs:
|
|
|
3623
3623
|
@pulumi.getter
|
|
3624
3624
|
def x_kubernetes_validations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ValidationRuleArgs']]]]:
|
|
3625
3625
|
"""
|
|
3626
|
-
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
3626
|
+
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
3627
3627
|
"""
|
|
3628
3628
|
return pulumi.get(self, "x_kubernetes_validations")
|
|
3629
3629
|
|
|
@@ -1878,7 +1878,7 @@ class JSONSchemaProps(dict):
|
|
|
1878
1878
|
2) `atomic`: the list is treated as a single entity, like a scalar.
|
|
1879
1879
|
Atomic maps will be entirely replaced when updated.
|
|
1880
1880
|
:param bool x_kubernetes_preserve_unknown_fields: x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.
|
|
1881
|
-
:param Sequence['ValidationRuleArgs'] x_kubernetes_validations: x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
1881
|
+
:param Sequence['ValidationRuleArgs'] x_kubernetes_validations: x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
1882
1882
|
"""
|
|
1883
1883
|
if _ref is not None:
|
|
1884
1884
|
pulumi.set(__self__, "_ref", _ref)
|
|
@@ -2247,7 +2247,7 @@ class JSONSchemaProps(dict):
|
|
|
2247
2247
|
@pulumi.getter
|
|
2248
2248
|
def x_kubernetes_validations(self) -> Optional[Sequence['outputs.ValidationRule']]:
|
|
2249
2249
|
"""
|
|
2250
|
-
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2250
|
+
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2251
2251
|
"""
|
|
2252
2252
|
return pulumi.get(self, "x_kubernetes_validations")
|
|
2253
2253
|
|
|
@@ -2402,7 +2402,7 @@ class JSONSchemaPropsPatch(dict):
|
|
|
2402
2402
|
2) `atomic`: the list is treated as a single entity, like a scalar.
|
|
2403
2403
|
Atomic maps will be entirely replaced when updated.
|
|
2404
2404
|
:param bool x_kubernetes_preserve_unknown_fields: x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.
|
|
2405
|
-
:param Sequence['ValidationRulePatchArgs'] x_kubernetes_validations: x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2405
|
+
:param Sequence['ValidationRulePatchArgs'] x_kubernetes_validations: x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2406
2406
|
"""
|
|
2407
2407
|
if _ref is not None:
|
|
2408
2408
|
pulumi.set(__self__, "_ref", _ref)
|
|
@@ -2771,7 +2771,7 @@ class JSONSchemaPropsPatch(dict):
|
|
|
2771
2771
|
@pulumi.getter
|
|
2772
2772
|
def x_kubernetes_validations(self) -> Optional[Sequence['outputs.ValidationRulePatch']]:
|
|
2773
2773
|
"""
|
|
2774
|
-
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2774
|
+
x-kubernetes-validations describes a list of validation rules written in the CEL expression language.
|
|
2775
2775
|
"""
|
|
2776
2776
|
return pulumi.get(self, "x_kubernetes_validations")
|
|
2777
2777
|
|