pulumi-docker 4.6.0b1__py3-none-any.whl → 4.6.0b3__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 might be problematic. Click here for more details.
- pulumi_docker/__init__.py +2 -1
- pulumi_docker/_inputs.py +2 -2
- pulumi_docker/buildx/__init__.py +1 -0
- pulumi_docker/buildx/_enums.py +16 -0
- pulumi_docker/buildx/_inputs.py +500 -491
- pulumi_docker/buildx/image.py +951 -153
- pulumi_docker/buildx/index.py +352 -0
- pulumi_docker/buildx/outputs.py +460 -440
- pulumi_docker/config/__init__.pyi +8 -6
- pulumi_docker/config/outputs.py +2 -2
- pulumi_docker/config/vars.py +8 -6
- pulumi_docker/provider.py +30 -23
- {pulumi_docker-4.6.0b1.dist-info → pulumi_docker-4.6.0b3.dist-info}/METADATA +1 -1
- {pulumi_docker-4.6.0b1.dist-info → pulumi_docker-4.6.0b3.dist-info}/RECORD +16 -15
- {pulumi_docker-4.6.0b1.dist-info → pulumi_docker-4.6.0b3.dist-info}/WHEEL +1 -1
- {pulumi_docker-4.6.0b1.dist-info → pulumi_docker-4.6.0b3.dist-info}/top_level.txt +0 -0
pulumi_docker/__init__.py
CHANGED
pulumi_docker/_inputs.py
CHANGED
|
@@ -1286,7 +1286,7 @@ class ProviderRegistryAuthArgs:
|
|
|
1286
1286
|
password: Optional[pulumi.Input[str]] = None,
|
|
1287
1287
|
username: Optional[pulumi.Input[str]] = None):
|
|
1288
1288
|
"""
|
|
1289
|
-
:param pulumi.Input[str] address: Address of the registry
|
|
1289
|
+
:param pulumi.Input[str] address: Address of the registry.
|
|
1290
1290
|
:param pulumi.Input[str] config_file: Path to docker json file for registry auth. Defaults to `~/.docker/config.json`. If `DOCKER_CONFIG` is set, the value of `DOCKER_CONFIG` is used as the path. `config_file` has predencen over all other options.
|
|
1291
1291
|
:param pulumi.Input[str] config_file_content: Plain content of the docker json file for registry auth. `config_file_content` has precedence over username/password.
|
|
1292
1292
|
:param pulumi.Input[str] password: Password for the registry. Defaults to `DOCKER_REGISTRY_PASS` env variable if set.
|
|
@@ -1308,7 +1308,7 @@ class ProviderRegistryAuthArgs:
|
|
|
1308
1308
|
@pulumi.getter
|
|
1309
1309
|
def address(self) -> pulumi.Input[str]:
|
|
1310
1310
|
"""
|
|
1311
|
-
Address of the registry
|
|
1311
|
+
Address of the registry.
|
|
1312
1312
|
"""
|
|
1313
1313
|
return pulumi.get(self, "address")
|
|
1314
1314
|
|
pulumi_docker/buildx/__init__.py
CHANGED
pulumi_docker/buildx/_enums.py
CHANGED
|
@@ -7,6 +7,7 @@ from enum import Enum
|
|
|
7
7
|
__all__ = [
|
|
8
8
|
'CacheMode',
|
|
9
9
|
'CompressionType',
|
|
10
|
+
'NetworkMode',
|
|
10
11
|
'Platform',
|
|
11
12
|
]
|
|
12
13
|
|
|
@@ -37,6 +38,21 @@ class CompressionType(str, Enum):
|
|
|
37
38
|
"""
|
|
38
39
|
|
|
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
|
+
|
|
40
56
|
class Platform(str, Enum):
|
|
41
57
|
DARWIN_386 = "darwin/386"
|
|
42
58
|
DARWIN_AMD64 = "darwin/amd64"
|