pulumi-aiven 6.19.0__py3-none-any.whl → 6.19.0a1719551643__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-aiven might be problematic. Click here for more details.
- pulumi_aiven/__init__.py +0 -10
- pulumi_aiven/_inputs.py +0 -774
- pulumi_aiven/_utilities.py +4 -3
- pulumi_aiven/outputs.py +0 -1356
- pulumi_aiven/pulumi-plugin.json +1 -1
- {pulumi_aiven-6.19.0.dist-info → pulumi_aiven-6.19.0a1719551643.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.19.0.dist-info → pulumi_aiven-6.19.0a1719551643.dist-info}/RECORD +9 -11
- {pulumi_aiven-6.19.0.dist-info → pulumi_aiven-6.19.0a1719551643.dist-info}/WHEEL +1 -1
- pulumi_aiven/get_thanos.py +0 -449
- pulumi_aiven/thanos.py +0 -1208
- {pulumi_aiven-6.19.0.dist-info → pulumi_aiven-6.19.0a1719551643.dist-info}/top_level.txt +0 -0
pulumi_aiven/_utilities.py
CHANGED
|
@@ -100,6 +100,10 @@ def _get_semver_version():
|
|
|
100
100
|
_version = _get_semver_version()
|
|
101
101
|
_version_str = str(_version)
|
|
102
102
|
|
|
103
|
+
|
|
104
|
+
def get_version():
|
|
105
|
+
return _version_str
|
|
106
|
+
|
|
103
107
|
def get_resource_opts_defaults() -> pulumi.ResourceOptions:
|
|
104
108
|
return pulumi.ResourceOptions(
|
|
105
109
|
version=get_version(),
|
|
@@ -320,6 +324,3 @@ def deprecated(message: str) -> typing.Callable[[C], C]:
|
|
|
320
324
|
|
|
321
325
|
def get_plugin_download_url():
|
|
322
326
|
return None
|
|
323
|
-
|
|
324
|
-
def get_version():
|
|
325
|
-
return _version_str
|