pulumi-docker 4.6.0a1723009002__py3-none-any.whl → 4.6.0a1726704154__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/_inputs.py +8 -8
- pulumi_docker/container.py +113 -113
- pulumi_docker/get_network.py +1 -1
- pulumi_docker/get_plugin.py +14 -14
- pulumi_docker/image.py +52 -52
- pulumi_docker/network.py +38 -38
- pulumi_docker/outputs.py +9 -9
- pulumi_docker/plugin.py +5 -5
- pulumi_docker/provider.py +2 -2
- pulumi_docker/pulumi-plugin.json +1 -1
- pulumi_docker/registry_image.py +14 -14
- pulumi_docker/remote_image.py +31 -31
- pulumi_docker/secret.py +5 -5
- pulumi_docker/service.py +40 -40
- pulumi_docker/volume.py +19 -19
- {pulumi_docker-4.6.0a1723009002.dist-info → pulumi_docker-4.6.0a1726704154.dist-info}/METADATA +1 -1
- pulumi_docker-4.6.0a1726704154.dist-info/RECORD +32 -0
- {pulumi_docker-4.6.0a1723009002.dist-info → pulumi_docker-4.6.0a1726704154.dist-info}/WHEEL +1 -1
- pulumi_docker-4.6.0a1723009002.dist-info/RECORD +0 -32
- {pulumi_docker-4.6.0a1723009002.dist-info → pulumi_docker-4.6.0a1726704154.dist-info}/top_level.txt +0 -0
pulumi_docker/_inputs.py
CHANGED
|
@@ -1134,12 +1134,12 @@ class ContainerVolumeArgs:
|
|
|
1134
1134
|
@pulumi.input_type
|
|
1135
1135
|
class NetworkIpamConfigArgs:
|
|
1136
1136
|
def __init__(__self__, *,
|
|
1137
|
-
aux_address: Optional[pulumi.Input[Mapping[str,
|
|
1137
|
+
aux_address: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
1138
1138
|
gateway: Optional[pulumi.Input[str]] = None,
|
|
1139
1139
|
ip_range: Optional[pulumi.Input[str]] = None,
|
|
1140
1140
|
subnet: Optional[pulumi.Input[str]] = None):
|
|
1141
1141
|
"""
|
|
1142
|
-
:param pulumi.Input[Mapping[str,
|
|
1142
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] aux_address: Auxiliary IPv4 or IPv6 addresses used by Network driver
|
|
1143
1143
|
:param pulumi.Input[str] gateway: The IP address of the gateway
|
|
1144
1144
|
:param pulumi.Input[str] ip_range: The ip range in CIDR form
|
|
1145
1145
|
:param pulumi.Input[str] subnet: The subnet in CIDR form
|
|
@@ -1155,14 +1155,14 @@ class NetworkIpamConfigArgs:
|
|
|
1155
1155
|
|
|
1156
1156
|
@property
|
|
1157
1157
|
@pulumi.getter(name="auxAddress")
|
|
1158
|
-
def aux_address(self) -> Optional[pulumi.Input[Mapping[str,
|
|
1158
|
+
def aux_address(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
1159
1159
|
"""
|
|
1160
1160
|
Auxiliary IPv4 or IPv6 addresses used by Network driver
|
|
1161
1161
|
"""
|
|
1162
1162
|
return pulumi.get(self, "aux_address")
|
|
1163
1163
|
|
|
1164
1164
|
@aux_address.setter
|
|
1165
|
-
def aux_address(self, value: Optional[pulumi.Input[Mapping[str,
|
|
1165
|
+
def aux_address(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
1166
1166
|
pulumi.set(self, "aux_address", value)
|
|
1167
1167
|
|
|
1168
1168
|
@property
|
|
@@ -2739,7 +2739,7 @@ class ServiceTaskSpecContainerSpecArgs:
|
|
|
2739
2739
|
secrets: Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTaskSpecContainerSpecSecretArgs']]]] = None,
|
|
2740
2740
|
stop_grace_period: Optional[pulumi.Input[str]] = None,
|
|
2741
2741
|
stop_signal: Optional[pulumi.Input[str]] = None,
|
|
2742
|
-
sysctl: Optional[pulumi.Input[Mapping[str,
|
|
2742
|
+
sysctl: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
2743
2743
|
user: Optional[pulumi.Input[str]] = None):
|
|
2744
2744
|
"""
|
|
2745
2745
|
:param pulumi.Input[str] image: The image name to use for the containers of the service, like `nginx:1.17.6`. Also use the data-source or resource of `RemoteImage` with the `repo_digest` or `RegistryImage` with the `name` attribute for this, as shown in the examples.
|
|
@@ -2761,7 +2761,7 @@ class ServiceTaskSpecContainerSpecArgs:
|
|
|
2761
2761
|
:param pulumi.Input[Sequence[pulumi.Input['ServiceTaskSpecContainerSpecSecretArgs']]] secrets: References to zero or more secrets that will be exposed to the service
|
|
2762
2762
|
:param pulumi.Input[str] stop_grace_period: Amount of time to wait for the container to terminate before forcefully removing it (ms|s|m|h). If not specified or '0s' the destroy will not check if all tasks/containers of the service terminate.
|
|
2763
2763
|
:param pulumi.Input[str] stop_signal: Signal to stop the container
|
|
2764
|
-
:param pulumi.Input[Mapping[str,
|
|
2764
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] sysctl: Sysctls config (Linux only)
|
|
2765
2765
|
:param pulumi.Input[str] user: The user inside the container
|
|
2766
2766
|
"""
|
|
2767
2767
|
pulumi.set(__self__, "image", image)
|
|
@@ -3036,14 +3036,14 @@ class ServiceTaskSpecContainerSpecArgs:
|
|
|
3036
3036
|
|
|
3037
3037
|
@property
|
|
3038
3038
|
@pulumi.getter
|
|
3039
|
-
def sysctl(self) -> Optional[pulumi.Input[Mapping[str,
|
|
3039
|
+
def sysctl(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
3040
3040
|
"""
|
|
3041
3041
|
Sysctls config (Linux only)
|
|
3042
3042
|
"""
|
|
3043
3043
|
return pulumi.get(self, "sysctl")
|
|
3044
3044
|
|
|
3045
3045
|
@sysctl.setter
|
|
3046
|
-
def sysctl(self, value: Optional[pulumi.Input[Mapping[str,
|
|
3046
|
+
def sysctl(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
3047
3047
|
pulumi.set(self, "sysctl", value)
|
|
3048
3048
|
|
|
3049
3049
|
@property
|