pulumi-docker-build 0.0.6__py3-none-any.whl → 0.1.0a1767073522__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_docker_build/__init__.py +1 -0
- pulumi_docker_build/_enums.py +10 -4
- pulumi_docker_build/_inputs.py +1345 -654
- pulumi_docker_build/_utilities.py +9 -5
- pulumi_docker_build/config/__init__.py +1 -0
- pulumi_docker_build/config/__init__.pyi +6 -1
- pulumi_docker_build/config/vars.py +8 -3
- pulumi_docker_build/image.py +155 -149
- pulumi_docker_build/index.py +41 -35
- pulumi_docker_build/outputs.py +465 -532
- pulumi_docker_build/provider.py +18 -12
- pulumi_docker_build/pulumi-plugin.json +1 -1
- {pulumi_docker_build-0.0.6.dist-info → pulumi_docker_build-0.1.0a1767073522.dist-info}/METADATA +7 -6
- pulumi_docker_build-0.1.0a1767073522.dist-info/RECORD +17 -0
- {pulumi_docker_build-0.0.6.dist-info → pulumi_docker_build-0.1.0a1767073522.dist-info}/WHEEL +1 -1
- pulumi_docker_build-0.0.6.dist-info/RECORD +0 -17
- {pulumi_docker_build-0.0.6.dist-info → pulumi_docker_build-0.1.0a1767073522.dist-info}/top_level.txt +0 -0
|
@@ -89,12 +89,16 @@ def _get_semver_version():
|
|
|
89
89
|
elif pep440_version.pre_tag == 'rc':
|
|
90
90
|
prerelease = f"rc.{pep440_version.pre}"
|
|
91
91
|
elif pep440_version.dev is not None:
|
|
92
|
+
# PEP440 has explicit support for dev builds, while semver encodes them as "prerelease" versions. To bridge
|
|
93
|
+
# between the two, we convert our dev build version into a prerelease tag. This matches what all of our other
|
|
94
|
+
# packages do when constructing their own semver string.
|
|
92
95
|
prerelease = f"dev.{pep440_version.dev}"
|
|
96
|
+
elif pep440_version.local is not None:
|
|
97
|
+
# PEP440 only allows a small set of prerelease tags, so when converting an arbitrary prerelease,
|
|
98
|
+
# PypiVersion in /pkg/codegen/python/utilities.go converts it to a local version. Therefore, we need to
|
|
99
|
+
# do the reverse conversion here and set the local version as the prerelease tag.
|
|
100
|
+
prerelease = pep440_version.local
|
|
93
101
|
|
|
94
|
-
# The only significant difference between PEP440 and semver as it pertains to us is that PEP440 has explicit support
|
|
95
|
-
# for dev builds, while semver encodes them as "prerelease" versions. In order to bridge between the two, we convert
|
|
96
|
-
# our dev build version into a prerelease tag. This matches what all of our other packages do when constructing
|
|
97
|
-
# their own semver string.
|
|
98
102
|
return SemverVersion(major=major, minor=minor, patch=patch, prerelease=prerelease)
|
|
99
103
|
|
|
100
104
|
|
|
@@ -264,7 +268,7 @@ def call_plain(
|
|
|
264
268
|
output = pulumi.runtime.call(tok, props, res, typ)
|
|
265
269
|
|
|
266
270
|
# Ingoring deps silently. They are typically non-empty, r.f() calls include r as a dependency.
|
|
267
|
-
result, known, secret, _ = _sync_await(asyncio.
|
|
271
|
+
result, known, secret, _ = _sync_await(asyncio.create_task(_await_output(output)))
|
|
268
272
|
|
|
269
273
|
problem = None
|
|
270
274
|
if not known:
|
|
@@ -2,11 +2,16 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import builtins as _builtins
|
|
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 as _root_outputs
|
|
12
17
|
|
|
@@ -2,11 +2,16 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import builtins as _builtins
|
|
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 as _root_outputs
|
|
12
17
|
|
|
@@ -16,14 +21,14 @@ __config__ = pulumi.Config('docker-build')
|
|
|
16
21
|
|
|
17
22
|
|
|
18
23
|
class _ExportableConfig(types.ModuleType):
|
|
19
|
-
@property
|
|
24
|
+
@_builtins.property
|
|
20
25
|
def host(self) -> str:
|
|
21
26
|
"""
|
|
22
27
|
The build daemon's address.
|
|
23
28
|
"""
|
|
24
29
|
return __config__.get('host') or (_utilities.get_env('DOCKER_HOST') or '')
|
|
25
30
|
|
|
26
|
-
@property
|
|
31
|
+
@_builtins.property
|
|
27
32
|
def registries(self) -> Optional[str]:
|
|
28
33
|
return __config__.get('registries')
|
|
29
34
|
|