pulumi-kubernetes 4.19.0a1726528617__py3-none-any.whl → 4.19.0a1727725728__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/helm/v3/_inputs.py +3 -3
- pulumi_kubernetes/helm/v3/outputs.py +2 -2
- pulumi_kubernetes/helm/v4/_inputs.py +3 -3
- pulumi_kubernetes/pulumi-plugin.json +1 -1
- {pulumi_kubernetes-4.19.0a1726528617.dist-info → pulumi_kubernetes-4.19.0a1727725728.dist-info}/METADATA +1 -1
- {pulumi_kubernetes-4.19.0a1726528617.dist-info → pulumi_kubernetes-4.19.0a1727725728.dist-info}/RECORD +8 -8
- {pulumi_kubernetes-4.19.0a1726528617.dist-info → pulumi_kubernetes-4.19.0a1727725728.dist-info}/WHEEL +0 -0
- {pulumi_kubernetes-4.19.0a1726528617.dist-info → pulumi_kubernetes-4.19.0a1727725728.dist-info}/top_level.txt +0 -0
|
@@ -44,7 +44,7 @@ if not MYPY:
|
|
|
44
44
|
"""
|
|
45
45
|
repo: NotRequired[pulumi.Input[str]]
|
|
46
46
|
"""
|
|
47
|
-
Repository where to locate the requested chart. If
|
|
47
|
+
Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
|
|
48
48
|
"""
|
|
49
49
|
username: NotRequired[pulumi.Input[str]]
|
|
50
50
|
"""
|
|
@@ -68,7 +68,7 @@ class RepositoryOptsArgs:
|
|
|
68
68
|
:param pulumi.Input[str] cert_file: The repository's cert file
|
|
69
69
|
:param pulumi.Input[str] key_file: The repository's cert key file
|
|
70
70
|
:param pulumi.Input[str] password: Password for HTTP basic authentication
|
|
71
|
-
:param pulumi.Input[str] repo: Repository where to locate the requested chart. If
|
|
71
|
+
:param pulumi.Input[str] repo: Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
|
|
72
72
|
:param pulumi.Input[str] username: Username for HTTP basic authentication
|
|
73
73
|
"""
|
|
74
74
|
if ca_file is not None:
|
|
@@ -136,7 +136,7 @@ class RepositoryOptsArgs:
|
|
|
136
136
|
@pulumi.getter
|
|
137
137
|
def repo(self) -> Optional[pulumi.Input[str]]:
|
|
138
138
|
"""
|
|
139
|
-
Repository where to locate the requested chart. If
|
|
139
|
+
Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
|
|
140
140
|
"""
|
|
141
141
|
return pulumi.get(self, "repo")
|
|
142
142
|
|
|
@@ -165,7 +165,7 @@ class RepositoryOpts(dict):
|
|
|
165
165
|
:param str cert_file: The repository's cert file
|
|
166
166
|
:param str key_file: The repository's cert key file
|
|
167
167
|
:param str password: Password for HTTP basic authentication
|
|
168
|
-
:param str repo: Repository where to locate the requested chart. If
|
|
168
|
+
:param str repo: Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
|
|
169
169
|
:param str username: Username for HTTP basic authentication
|
|
170
170
|
"""
|
|
171
171
|
if ca_file is not None:
|
|
@@ -217,7 +217,7 @@ class RepositoryOpts(dict):
|
|
|
217
217
|
@pulumi.getter
|
|
218
218
|
def repo(self) -> Optional[str]:
|
|
219
219
|
"""
|
|
220
|
-
Repository where to locate the requested chart. If
|
|
220
|
+
Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
|
|
221
221
|
"""
|
|
222
222
|
return pulumi.get(self, "repo")
|
|
223
223
|
|
|
@@ -101,7 +101,7 @@ if not MYPY:
|
|
|
101
101
|
"""
|
|
102
102
|
repo: NotRequired[pulumi.Input[str]]
|
|
103
103
|
"""
|
|
104
|
-
Repository where to locate the requested chart. If
|
|
104
|
+
Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
|
|
105
105
|
"""
|
|
106
106
|
username: NotRequired[pulumi.Input[str]]
|
|
107
107
|
"""
|
|
@@ -125,7 +125,7 @@ class RepositoryOptsArgs:
|
|
|
125
125
|
:param pulumi.Input[Union[pulumi.Asset, pulumi.Archive]] cert_file: The repository's cert file
|
|
126
126
|
:param pulumi.Input[Union[pulumi.Asset, pulumi.Archive]] key_file: The repository's cert key file
|
|
127
127
|
:param pulumi.Input[str] password: Password for HTTP basic authentication
|
|
128
|
-
:param pulumi.Input[str] repo: Repository where to locate the requested chart. If
|
|
128
|
+
:param pulumi.Input[str] repo: Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
|
|
129
129
|
:param pulumi.Input[str] username: Username for HTTP basic authentication
|
|
130
130
|
"""
|
|
131
131
|
if ca_file is not None:
|
|
@@ -193,7 +193,7 @@ class RepositoryOptsArgs:
|
|
|
193
193
|
@pulumi.getter
|
|
194
194
|
def repo(self) -> Optional[pulumi.Input[str]]:
|
|
195
195
|
"""
|
|
196
|
-
Repository where to locate the requested chart. If
|
|
196
|
+
Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
|
|
197
197
|
"""
|
|
198
198
|
return pulumi.get(self, "repo")
|
|
199
199
|
|
|
@@ -4,7 +4,7 @@ pulumi_kubernetes/_tables.py,sha256=3neJaK1ZuzFWWgLJKwl0jAR-Gymxn6CMeGwh1k4tcw4,
|
|
|
4
4
|
pulumi_kubernetes/_utilities.py,sha256=WpjMxjS_nwp8B1Bh4EYpzGv6c1C3DWVL4ekrgReUNLA,10475
|
|
5
5
|
pulumi_kubernetes/outputs.py,sha256=YLfWOa1pqtMnI9hVe-nfOVDDjTDGeomctTClWqDX_Sw,1685
|
|
6
6
|
pulumi_kubernetes/provider.py,sha256=_R1fb8GIGXJnHnEvhcpGBXDMdvJywrWCNVOEBQs_QYA,30294
|
|
7
|
-
pulumi_kubernetes/pulumi-plugin.json,sha256=
|
|
7
|
+
pulumi_kubernetes/pulumi-plugin.json,sha256=AyNGb2g6SjAVefE3Rv5dGYkKm8FnHh150xNDDUOmECk,87
|
|
8
8
|
pulumi_kubernetes/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
pulumi_kubernetes/admissionregistration/__init__.py,sha256=85XpZ49dreIz2jkQcun5WDfJfI5ao85E6njlB8A8y_k,785
|
|
10
10
|
pulumi_kubernetes/admissionregistration/v1/MutatingWebhookConfiguration.py,sha256=oCfW2vqC_yrazTudFFz1fnJDhuYsqV8p6HVuKZeE-Ec,12104
|
|
@@ -364,12 +364,12 @@ pulumi_kubernetes/flowcontrol/v1beta3/outputs.py,sha256=U7fvtA9dFrIBmRyt6xf17I4G
|
|
|
364
364
|
pulumi_kubernetes/helm/__init__.py,sha256=EbPhjk2cF8npPznWJKTx1U2YCnHyxst3CawQk6MppxE,497
|
|
365
365
|
pulumi_kubernetes/helm/v3/Release.py,sha256=rWoXMwOGdAjbINE8NJp8tpZjDhgXjavfw2rv6IKI_SE,61669
|
|
366
366
|
pulumi_kubernetes/helm/v3/__init__.py,sha256=OZvXgccpPzl_hsRWYo8qyYhsZ6FOsm5FDfuaVsE8GSM,327
|
|
367
|
-
pulumi_kubernetes/helm/v3/_inputs.py,sha256=
|
|
367
|
+
pulumi_kubernetes/helm/v3/_inputs.py,sha256=UoGBUkIemZQxX29bfo3rrwh2l_r3Ol5aMzeRcwB6y6I,5202
|
|
368
368
|
pulumi_kubernetes/helm/v3/helm.py,sha256=jzuI3naCi_tLSTVtTMbgsdjdjBy_YukBtVIXv8X7kh4,28219
|
|
369
|
-
pulumi_kubernetes/helm/v3/outputs.py,sha256=
|
|
369
|
+
pulumi_kubernetes/helm/v3/outputs.py,sha256=GmNI4nXhkKYTvC4fTgK9ltmTCGtSqV76V3JHE2r_mlg,7365
|
|
370
370
|
pulumi_kubernetes/helm/v4/Chart.py,sha256=xfGXsXDOV4sl8NUcggQ9oxlyojPT1OZ3ghE0M4eTtP8,34699
|
|
371
371
|
pulumi_kubernetes/helm/v4/__init__.py,sha256=85KWAru_ONeUv70Qx1R1DAuhvJnHwL03OP8ERal20FI,283
|
|
372
|
-
pulumi_kubernetes/helm/v4/_inputs.py,sha256=
|
|
372
|
+
pulumi_kubernetes/helm/v4/_inputs.py,sha256=2lIkH6Y8tiLA4D-8UJMB8USRXfsXipQ3v13WTu75qNc,7511
|
|
373
373
|
pulumi_kubernetes/kustomize/__init__.py,sha256=WdwYu9her4c8GYjm_rKxBe_8PVAK8fYvqKV9nGRBQgs,456
|
|
374
374
|
pulumi_kubernetes/kustomize/kustomize.py,sha256=a89dnJ0qkrpCmrYz_ARDKE6u10M5XoK1ZHoE-wB8itA,6828
|
|
375
375
|
pulumi_kubernetes/kustomize/v2/Directory.py,sha256=wNyvW-nAKwMHBn5SvvoXTI4sTcmqLOxULWq3YlsujC4,9500
|
|
@@ -645,7 +645,7 @@ pulumi_kubernetes/yaml/yaml.py,sha256=d5eqPtRNwBm6BmexW0Ux58SiJ7ornpWnVvoeDP6K5x
|
|
|
645
645
|
pulumi_kubernetes/yaml/v2/ConfigFile.py,sha256=dB_-cepmwo6mOVzY5T-GnoZ_mVlm1u0pveSRWnDTcVg,11100
|
|
646
646
|
pulumi_kubernetes/yaml/v2/ConfigGroup.py,sha256=GoDGxpAemfjEHcYiOexM1fxmKqu4uWBzTB1Fbqy4Ips,15702
|
|
647
647
|
pulumi_kubernetes/yaml/v2/__init__.py,sha256=5S6M8sncwfHm2sXPUBAjROBlGQWwFFedOQ8z1f5SB3U,292
|
|
648
|
-
pulumi_kubernetes-4.19.
|
|
649
|
-
pulumi_kubernetes-4.19.
|
|
650
|
-
pulumi_kubernetes-4.19.
|
|
651
|
-
pulumi_kubernetes-4.19.
|
|
648
|
+
pulumi_kubernetes-4.19.0a1727725728.dist-info/METADATA,sha256=5QK5lcGjuUzaTvv4r4XB5ibTFOeYTryPndTwQ2ak_GI,9427
|
|
649
|
+
pulumi_kubernetes-4.19.0a1727725728.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
650
|
+
pulumi_kubernetes-4.19.0a1727725728.dist-info/top_level.txt,sha256=xoTPI88GpKE_G1dcKvsjaA1qV3yO4NCn2ZpXq4byqNc,18
|
|
651
|
+
pulumi_kubernetes-4.19.0a1727725728.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|