pulumi-docker-build 0.1.0a1736895711__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-docker-build might be problematic. Click here for more details.
- pulumi_docker_build/__init__.py +46 -0
- pulumi_docker_build/_enums.py +84 -0
- pulumi_docker_build/_inputs.py +3485 -0
- pulumi_docker_build/_utilities.py +327 -0
- pulumi_docker_build/config/__init__.py +8 -0
- pulumi_docker_build/config/__init__.pyi +24 -0
- pulumi_docker_build/config/vars.py +34 -0
- pulumi_docker_build/image.py +1804 -0
- pulumi_docker_build/index.py +381 -0
- pulumi_docker_build/outputs.py +2404 -0
- pulumi_docker_build/provider.py +123 -0
- pulumi_docker_build/pulumi-plugin.json +5 -0
- pulumi_docker_build/py.typed +0 -0
- pulumi_docker_build-0.1.0a1736895711.dist-info/METADATA +38 -0
- pulumi_docker_build-0.1.0a1736895711.dist-info/RECORD +17 -0
- pulumi_docker_build-0.1.0a1736895711.dist-info/WHEEL +5 -0
- pulumi_docker_build-0.1.0a1736895711.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
from . import _utilities
|
|
6
|
+
import typing
|
|
7
|
+
# Export this package's modules as members:
|
|
8
|
+
from ._enums import *
|
|
9
|
+
from .image import *
|
|
10
|
+
from .index import *
|
|
11
|
+
from .provider import *
|
|
12
|
+
from ._inputs import *
|
|
13
|
+
from . import outputs
|
|
14
|
+
|
|
15
|
+
# Make subpackages available:
|
|
16
|
+
if typing.TYPE_CHECKING:
|
|
17
|
+
import pulumi_docker_build.config as __config
|
|
18
|
+
config = __config
|
|
19
|
+
else:
|
|
20
|
+
config = _utilities.lazy_import('pulumi_docker_build.config')
|
|
21
|
+
|
|
22
|
+
_utilities.register(
|
|
23
|
+
resource_modules="""
|
|
24
|
+
[
|
|
25
|
+
{
|
|
26
|
+
"pkg": "docker-build",
|
|
27
|
+
"mod": "index",
|
|
28
|
+
"fqn": "pulumi_docker_build",
|
|
29
|
+
"classes": {
|
|
30
|
+
"docker-build:index:Image": "Image",
|
|
31
|
+
"docker-build:index:Index": "Index"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
""",
|
|
36
|
+
resource_packages="""
|
|
37
|
+
[
|
|
38
|
+
{
|
|
39
|
+
"pkg": "docker-build",
|
|
40
|
+
"token": "pulumi:providers:docker-build",
|
|
41
|
+
"fqn": "pulumi_docker_build",
|
|
42
|
+
"class": "Provider"
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
"""
|
|
46
|
+
)
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
from enum import Enum
|
|
6
|
+
|
|
7
|
+
__all__ = [
|
|
8
|
+
'CacheMode',
|
|
9
|
+
'CompressionType',
|
|
10
|
+
'NetworkMode',
|
|
11
|
+
'Platform',
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class CacheMode(str, Enum):
|
|
16
|
+
MIN = "min"
|
|
17
|
+
"""
|
|
18
|
+
Only layers that are exported into the resulting image are cached.
|
|
19
|
+
"""
|
|
20
|
+
MAX = "max"
|
|
21
|
+
"""
|
|
22
|
+
All layers are cached, even those of intermediate steps.
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class CompressionType(str, Enum):
|
|
27
|
+
GZIP = "gzip"
|
|
28
|
+
"""
|
|
29
|
+
Use `gzip` for compression.
|
|
30
|
+
"""
|
|
31
|
+
ESTARGZ = "estargz"
|
|
32
|
+
"""
|
|
33
|
+
Use `estargz` for compression.
|
|
34
|
+
"""
|
|
35
|
+
ZSTD = "zstd"
|
|
36
|
+
"""
|
|
37
|
+
Use `zstd` for compression.
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class NetworkMode(str, Enum):
|
|
42
|
+
DEFAULT = "default"
|
|
43
|
+
"""
|
|
44
|
+
The default sandbox network mode.
|
|
45
|
+
"""
|
|
46
|
+
HOST = "host"
|
|
47
|
+
"""
|
|
48
|
+
Host network mode.
|
|
49
|
+
"""
|
|
50
|
+
NONE = "none"
|
|
51
|
+
"""
|
|
52
|
+
Disable network access.
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
class Platform(str, Enum):
|
|
57
|
+
DARWIN_386 = "darwin/386"
|
|
58
|
+
DARWIN_AMD64 = "darwin/amd64"
|
|
59
|
+
DARWIN_ARM = "darwin/arm"
|
|
60
|
+
DARWIN_ARM64 = "darwin/arm64"
|
|
61
|
+
DRAGONFLY_AMD64 = "dragonfly/amd64"
|
|
62
|
+
FREEBSD_386 = "freebsd/386"
|
|
63
|
+
FREEBSD_AMD64 = "freebsd/amd64"
|
|
64
|
+
FREEBSD_ARM = "freebsd/arm"
|
|
65
|
+
LINUX_386 = "linux/386"
|
|
66
|
+
LINUX_AMD64 = "linux/amd64"
|
|
67
|
+
LINUX_ARM = "linux/arm"
|
|
68
|
+
LINUX_ARM64 = "linux/arm64"
|
|
69
|
+
LINUX_MIPS64 = "linux/mips64"
|
|
70
|
+
LINUX_MIPS64LE = "linux/mips64le"
|
|
71
|
+
LINUX_PPC64LE = "linux/ppc64le"
|
|
72
|
+
LINUX_RISCV64 = "linux/riscv64"
|
|
73
|
+
LINUX_S390X = "linux/s390x"
|
|
74
|
+
NETBSD_386 = "netbsd/386"
|
|
75
|
+
NETBSD_AMD64 = "netbsd/amd64"
|
|
76
|
+
NETBSD_ARM = "netbsd/arm"
|
|
77
|
+
OPENBSD_386 = "openbsd/386"
|
|
78
|
+
OPENBSD_AMD64 = "openbsd/amd64"
|
|
79
|
+
OPENBSD_ARM = "openbsd/arm"
|
|
80
|
+
PLAN9_386 = "plan9/386"
|
|
81
|
+
PLAN9_AMD64 = "plan9/amd64"
|
|
82
|
+
SOLARIS_AMD64 = "solaris/amd64"
|
|
83
|
+
WINDOWS_386 = "windows/386"
|
|
84
|
+
WINDOWS_AMD64 = "windows/amd64"
|