pulumi-docker 4.9.0a1753422638__py3-none-any.whl → 4.9.0a1753479729__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 +1 -1
- pulumi_docker/_enums.py +2 -2
- pulumi_docker/_inputs.py +1783 -1784
- pulumi_docker/buildx_builder.py +197 -198
- pulumi_docker/config/__init__.py +1 -1
- pulumi_docker/config/__init__.pyi +1 -2
- pulumi_docker/config/outputs.py +24 -25
- pulumi_docker/config/vars.py +10 -11
- pulumi_docker/container.py +994 -995
- pulumi_docker/get_logs.py +55 -56
- pulumi_docker/get_network.py +18 -19
- pulumi_docker/get_plugin.py +23 -24
- pulumi_docker/get_registry_image.py +17 -18
- pulumi_docker/get_registry_image_manifests.py +17 -18
- pulumi_docker/get_remote_image.py +11 -12
- pulumi_docker/image.py +41 -42
- pulumi_docker/network.py +186 -187
- pulumi_docker/outputs.py +1169 -1170
- pulumi_docker/plugin.py +149 -150
- pulumi_docker/provider.py +79 -80
- pulumi_docker/pulumi-plugin.json +1 -1
- pulumi_docker/registry_image.py +81 -82
- pulumi_docker/remote_image.py +124 -125
- pulumi_docker/secret.py +38 -39
- pulumi_docker/service.py +42 -43
- pulumi_docker/service_config.py +35 -36
- pulumi_docker/tag.py +61 -62
- pulumi_docker/volume.py +64 -65
- {pulumi_docker-4.9.0a1753422638.dist-info → pulumi_docker-4.9.0a1753479729.dist-info}/METADATA +1 -1
- pulumi_docker-4.9.0a1753479729.dist-info/RECORD +34 -0
- pulumi_docker-4.9.0a1753422638.dist-info/RECORD +0 -34
- {pulumi_docker-4.9.0a1753422638.dist-info → pulumi_docker-4.9.0a1753479729.dist-info}/WHEEL +0 -0
- {pulumi_docker-4.9.0a1753422638.dist-info → pulumi_docker-4.9.0a1753479729.dist-info}/top_level.txt +0 -0
pulumi_docker/get_logs.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
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 builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -68,84 +67,84 @@ class GetLogsResult:
|
|
|
68
67
|
raise TypeError("Expected argument 'until' to be a str")
|
|
69
68
|
pulumi.set(__self__, "until", until)
|
|
70
69
|
|
|
71
|
-
@property
|
|
70
|
+
@_builtins.property
|
|
72
71
|
@pulumi.getter
|
|
73
|
-
def details(self) -> Optional[
|
|
72
|
+
def details(self) -> Optional[_builtins.bool]:
|
|
74
73
|
return pulumi.get(self, "details")
|
|
75
74
|
|
|
76
|
-
@property
|
|
75
|
+
@_builtins.property
|
|
77
76
|
@pulumi.getter(name="discardHeaders")
|
|
78
|
-
def discard_headers(self) -> Optional[
|
|
77
|
+
def discard_headers(self) -> Optional[_builtins.bool]:
|
|
79
78
|
"""
|
|
80
79
|
Discard headers that docker appends to each log entry
|
|
81
80
|
"""
|
|
82
81
|
return pulumi.get(self, "discard_headers")
|
|
83
82
|
|
|
84
|
-
@property
|
|
83
|
+
@_builtins.property
|
|
85
84
|
@pulumi.getter
|
|
86
|
-
def follow(self) -> Optional[
|
|
85
|
+
def follow(self) -> Optional[_builtins.bool]:
|
|
87
86
|
return pulumi.get(self, "follow")
|
|
88
87
|
|
|
89
|
-
@property
|
|
88
|
+
@_builtins.property
|
|
90
89
|
@pulumi.getter
|
|
91
|
-
def id(self) ->
|
|
90
|
+
def id(self) -> _builtins.str:
|
|
92
91
|
"""
|
|
93
92
|
The provider-assigned unique ID for this managed resource.
|
|
94
93
|
"""
|
|
95
94
|
return pulumi.get(self, "id")
|
|
96
95
|
|
|
97
|
-
@property
|
|
96
|
+
@_builtins.property
|
|
98
97
|
@pulumi.getter(name="logsListStringEnabled")
|
|
99
|
-
def logs_list_string_enabled(self) -> Optional[
|
|
98
|
+
def logs_list_string_enabled(self) -> Optional[_builtins.bool]:
|
|
100
99
|
"""
|
|
101
100
|
If true populate computed value `logs_list_string`
|
|
102
101
|
"""
|
|
103
102
|
return pulumi.get(self, "logs_list_string_enabled")
|
|
104
103
|
|
|
105
|
-
@property
|
|
104
|
+
@_builtins.property
|
|
106
105
|
@pulumi.getter(name="logsListStrings")
|
|
107
|
-
def logs_list_strings(self) -> Sequence[
|
|
106
|
+
def logs_list_strings(self) -> Sequence[_builtins.str]:
|
|
108
107
|
"""
|
|
109
108
|
List of container logs, each element is a line.
|
|
110
109
|
"""
|
|
111
110
|
return pulumi.get(self, "logs_list_strings")
|
|
112
111
|
|
|
113
|
-
@property
|
|
112
|
+
@_builtins.property
|
|
114
113
|
@pulumi.getter
|
|
115
|
-
def name(self) ->
|
|
114
|
+
def name(self) -> _builtins.str:
|
|
116
115
|
"""
|
|
117
116
|
The name of the Docker Container
|
|
118
117
|
"""
|
|
119
118
|
return pulumi.get(self, "name")
|
|
120
119
|
|
|
121
|
-
@property
|
|
120
|
+
@_builtins.property
|
|
122
121
|
@pulumi.getter(name="showStderr")
|
|
123
|
-
def show_stderr(self) -> Optional[
|
|
122
|
+
def show_stderr(self) -> Optional[_builtins.bool]:
|
|
124
123
|
return pulumi.get(self, "show_stderr")
|
|
125
124
|
|
|
126
|
-
@property
|
|
125
|
+
@_builtins.property
|
|
127
126
|
@pulumi.getter(name="showStdout")
|
|
128
|
-
def show_stdout(self) -> Optional[
|
|
127
|
+
def show_stdout(self) -> Optional[_builtins.bool]:
|
|
129
128
|
return pulumi.get(self, "show_stdout")
|
|
130
129
|
|
|
131
|
-
@property
|
|
130
|
+
@_builtins.property
|
|
132
131
|
@pulumi.getter
|
|
133
|
-
def since(self) -> Optional[
|
|
132
|
+
def since(self) -> Optional[_builtins.str]:
|
|
134
133
|
return pulumi.get(self, "since")
|
|
135
134
|
|
|
136
|
-
@property
|
|
135
|
+
@_builtins.property
|
|
137
136
|
@pulumi.getter
|
|
138
|
-
def tail(self) -> Optional[
|
|
137
|
+
def tail(self) -> Optional[_builtins.str]:
|
|
139
138
|
return pulumi.get(self, "tail")
|
|
140
139
|
|
|
141
|
-
@property
|
|
140
|
+
@_builtins.property
|
|
142
141
|
@pulumi.getter
|
|
143
|
-
def timestamps(self) -> Optional[
|
|
142
|
+
def timestamps(self) -> Optional[_builtins.bool]:
|
|
144
143
|
return pulumi.get(self, "timestamps")
|
|
145
144
|
|
|
146
|
-
@property
|
|
145
|
+
@_builtins.property
|
|
147
146
|
@pulumi.getter
|
|
148
|
-
def until(self) -> Optional[
|
|
147
|
+
def until(self) -> Optional[_builtins.str]:
|
|
149
148
|
return pulumi.get(self, "until")
|
|
150
149
|
|
|
151
150
|
|
|
@@ -170,25 +169,25 @@ class AwaitableGetLogsResult(GetLogsResult):
|
|
|
170
169
|
until=self.until)
|
|
171
170
|
|
|
172
171
|
|
|
173
|
-
def get_logs(details: Optional[
|
|
174
|
-
discard_headers: Optional[
|
|
175
|
-
follow: Optional[
|
|
176
|
-
logs_list_string_enabled: Optional[
|
|
177
|
-
name: Optional[
|
|
178
|
-
show_stderr: Optional[
|
|
179
|
-
show_stdout: Optional[
|
|
180
|
-
since: Optional[
|
|
181
|
-
tail: Optional[
|
|
182
|
-
timestamps: Optional[
|
|
183
|
-
until: Optional[
|
|
172
|
+
def get_logs(details: Optional[_builtins.bool] = None,
|
|
173
|
+
discard_headers: Optional[_builtins.bool] = None,
|
|
174
|
+
follow: Optional[_builtins.bool] = None,
|
|
175
|
+
logs_list_string_enabled: Optional[_builtins.bool] = None,
|
|
176
|
+
name: Optional[_builtins.str] = None,
|
|
177
|
+
show_stderr: Optional[_builtins.bool] = None,
|
|
178
|
+
show_stdout: Optional[_builtins.bool] = None,
|
|
179
|
+
since: Optional[_builtins.str] = None,
|
|
180
|
+
tail: Optional[_builtins.str] = None,
|
|
181
|
+
timestamps: Optional[_builtins.bool] = None,
|
|
182
|
+
until: Optional[_builtins.str] = None,
|
|
184
183
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLogsResult:
|
|
185
184
|
"""
|
|
186
185
|
`get_logs` provides logs from specific container
|
|
187
186
|
|
|
188
187
|
|
|
189
|
-
:param
|
|
190
|
-
:param
|
|
191
|
-
:param
|
|
188
|
+
:param _builtins.bool discard_headers: Discard headers that docker appends to each log entry
|
|
189
|
+
:param _builtins.bool logs_list_string_enabled: If true populate computed value `logs_list_string`
|
|
190
|
+
:param _builtins.str name: The name of the Docker Container
|
|
192
191
|
"""
|
|
193
192
|
__args__ = dict()
|
|
194
193
|
__args__['details'] = details
|
|
@@ -219,25 +218,25 @@ def get_logs(details: Optional[builtins.bool] = None,
|
|
|
219
218
|
tail=pulumi.get(__ret__, 'tail'),
|
|
220
219
|
timestamps=pulumi.get(__ret__, 'timestamps'),
|
|
221
220
|
until=pulumi.get(__ret__, 'until'))
|
|
222
|
-
def get_logs_output(details: Optional[pulumi.Input[Optional[
|
|
223
|
-
discard_headers: Optional[pulumi.Input[Optional[
|
|
224
|
-
follow: Optional[pulumi.Input[Optional[
|
|
225
|
-
logs_list_string_enabled: Optional[pulumi.Input[Optional[
|
|
226
|
-
name: Optional[pulumi.Input[
|
|
227
|
-
show_stderr: Optional[pulumi.Input[Optional[
|
|
228
|
-
show_stdout: Optional[pulumi.Input[Optional[
|
|
229
|
-
since: Optional[pulumi.Input[Optional[
|
|
230
|
-
tail: Optional[pulumi.Input[Optional[
|
|
231
|
-
timestamps: Optional[pulumi.Input[Optional[
|
|
232
|
-
until: Optional[pulumi.Input[Optional[
|
|
221
|
+
def get_logs_output(details: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
222
|
+
discard_headers: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
223
|
+
follow: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
224
|
+
logs_list_string_enabled: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
225
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
226
|
+
show_stderr: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
227
|
+
show_stdout: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
228
|
+
since: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
229
|
+
tail: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
230
|
+
timestamps: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
231
|
+
until: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
233
232
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLogsResult]:
|
|
234
233
|
"""
|
|
235
234
|
`get_logs` provides logs from specific container
|
|
236
235
|
|
|
237
236
|
|
|
238
|
-
:param
|
|
239
|
-
:param
|
|
240
|
-
:param
|
|
237
|
+
:param _builtins.bool discard_headers: Discard headers that docker appends to each log entry
|
|
238
|
+
:param _builtins.bool logs_list_string_enabled: If true populate computed value `logs_list_string`
|
|
239
|
+
:param _builtins.str name: The name of the Docker Container
|
|
241
240
|
"""
|
|
242
241
|
__args__ = dict()
|
|
243
242
|
__args__['details'] = details
|
pulumi_docker/get_network.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
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 builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -51,31 +50,31 @@ class GetNetworkResult:
|
|
|
51
50
|
raise TypeError("Expected argument 'scope' to be a str")
|
|
52
51
|
pulumi.set(__self__, "scope", scope)
|
|
53
52
|
|
|
54
|
-
@property
|
|
53
|
+
@_builtins.property
|
|
55
54
|
@pulumi.getter
|
|
56
|
-
def driver(self) ->
|
|
55
|
+
def driver(self) -> _builtins.str:
|
|
57
56
|
"""
|
|
58
57
|
The driver of the Docker network. Possible values are `bridge`, `host`, `overlay`, `macvlan`. See [network docs](https://docs.docker.com/network/#network-drivers) for more details.
|
|
59
58
|
"""
|
|
60
59
|
return pulumi.get(self, "driver")
|
|
61
60
|
|
|
62
|
-
@property
|
|
61
|
+
@_builtins.property
|
|
63
62
|
@pulumi.getter
|
|
64
|
-
def id(self) ->
|
|
63
|
+
def id(self) -> _builtins.str:
|
|
65
64
|
"""
|
|
66
65
|
The ID of this resource.
|
|
67
66
|
"""
|
|
68
67
|
return pulumi.get(self, "id")
|
|
69
68
|
|
|
70
|
-
@property
|
|
69
|
+
@_builtins.property
|
|
71
70
|
@pulumi.getter
|
|
72
|
-
def internal(self) ->
|
|
71
|
+
def internal(self) -> _builtins.bool:
|
|
73
72
|
"""
|
|
74
73
|
If `true`, the network is internal.
|
|
75
74
|
"""
|
|
76
75
|
return pulumi.get(self, "internal")
|
|
77
76
|
|
|
78
|
-
@property
|
|
77
|
+
@_builtins.property
|
|
79
78
|
@pulumi.getter(name="ipamConfigs")
|
|
80
79
|
def ipam_configs(self) -> Sequence['outputs.GetNetworkIpamConfigResult']:
|
|
81
80
|
"""
|
|
@@ -83,25 +82,25 @@ class GetNetworkResult:
|
|
|
83
82
|
"""
|
|
84
83
|
return pulumi.get(self, "ipam_configs")
|
|
85
84
|
|
|
86
|
-
@property
|
|
85
|
+
@_builtins.property
|
|
87
86
|
@pulumi.getter
|
|
88
|
-
def name(self) ->
|
|
87
|
+
def name(self) -> _builtins.str:
|
|
89
88
|
"""
|
|
90
89
|
The name of the Docker network.
|
|
91
90
|
"""
|
|
92
91
|
return pulumi.get(self, "name")
|
|
93
92
|
|
|
94
|
-
@property
|
|
93
|
+
@_builtins.property
|
|
95
94
|
@pulumi.getter
|
|
96
|
-
def options(self) -> Mapping[str,
|
|
95
|
+
def options(self) -> Mapping[str, _builtins.str]:
|
|
97
96
|
"""
|
|
98
97
|
Only available with bridge networks. See [bridge options docs](https://docs.docker.com/engine/reference/commandline/network_create/#bridge-driver-options) for more details.
|
|
99
98
|
"""
|
|
100
99
|
return pulumi.get(self, "options")
|
|
101
100
|
|
|
102
|
-
@property
|
|
101
|
+
@_builtins.property
|
|
103
102
|
@pulumi.getter
|
|
104
|
-
def scope(self) ->
|
|
103
|
+
def scope(self) -> _builtins.str:
|
|
105
104
|
"""
|
|
106
105
|
Scope of the network. One of `swarm`, `global`, or `local`.
|
|
107
106
|
"""
|
|
@@ -123,7 +122,7 @@ class AwaitableGetNetworkResult(GetNetworkResult):
|
|
|
123
122
|
scope=self.scope)
|
|
124
123
|
|
|
125
124
|
|
|
126
|
-
def get_network(name: Optional[
|
|
125
|
+
def get_network(name: Optional[_builtins.str] = None,
|
|
127
126
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNetworkResult:
|
|
128
127
|
"""
|
|
129
128
|
`Network` provides details about a specific Docker Network.
|
|
@@ -138,7 +137,7 @@ def get_network(name: Optional[builtins.str] = None,
|
|
|
138
137
|
```
|
|
139
138
|
|
|
140
139
|
|
|
141
|
-
:param
|
|
140
|
+
:param _builtins.str name: The name of the Docker network.
|
|
142
141
|
"""
|
|
143
142
|
__args__ = dict()
|
|
144
143
|
__args__['name'] = name
|
|
@@ -153,7 +152,7 @@ def get_network(name: Optional[builtins.str] = None,
|
|
|
153
152
|
name=pulumi.get(__ret__, 'name'),
|
|
154
153
|
options=pulumi.get(__ret__, 'options'),
|
|
155
154
|
scope=pulumi.get(__ret__, 'scope'))
|
|
156
|
-
def get_network_output(name: Optional[pulumi.Input[
|
|
155
|
+
def get_network_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
157
156
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetNetworkResult]:
|
|
158
157
|
"""
|
|
159
158
|
`Network` provides details about a specific Docker Network.
|
|
@@ -168,7 +167,7 @@ def get_network_output(name: Optional[pulumi.Input[builtins.str]] = None,
|
|
|
168
167
|
```
|
|
169
168
|
|
|
170
169
|
|
|
171
|
-
:param
|
|
170
|
+
:param _builtins.str name: The name of the Docker network.
|
|
172
171
|
"""
|
|
173
172
|
__args__ = dict()
|
|
174
173
|
__args__['name'] = name
|
pulumi_docker/get_plugin.py
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
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 builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -50,57 +49,57 @@ class GetPluginResult:
|
|
|
50
49
|
raise TypeError("Expected argument 'plugin_reference' to be a str")
|
|
51
50
|
pulumi.set(__self__, "plugin_reference", plugin_reference)
|
|
52
51
|
|
|
53
|
-
@property
|
|
52
|
+
@_builtins.property
|
|
54
53
|
@pulumi.getter
|
|
55
|
-
def alias(self) -> Optional[
|
|
54
|
+
def alias(self) -> Optional[_builtins.str]:
|
|
56
55
|
"""
|
|
57
56
|
The alias of the Docker plugin. If the tag is omitted, `:latest` is complemented to the attribute value.
|
|
58
57
|
"""
|
|
59
58
|
return pulumi.get(self, "alias")
|
|
60
59
|
|
|
61
|
-
@property
|
|
60
|
+
@_builtins.property
|
|
62
61
|
@pulumi.getter
|
|
63
|
-
def enabled(self) ->
|
|
62
|
+
def enabled(self) -> _builtins.bool:
|
|
64
63
|
"""
|
|
65
64
|
If `true` the plugin is enabled
|
|
66
65
|
"""
|
|
67
66
|
return pulumi.get(self, "enabled")
|
|
68
67
|
|
|
69
|
-
@property
|
|
68
|
+
@_builtins.property
|
|
70
69
|
@pulumi.getter
|
|
71
|
-
def envs(self) -> Sequence[
|
|
70
|
+
def envs(self) -> Sequence[_builtins.str]:
|
|
72
71
|
"""
|
|
73
72
|
The environment variables in the form of `KEY=VALUE`, e.g. `DEBUG=0`
|
|
74
73
|
"""
|
|
75
74
|
return pulumi.get(self, "envs")
|
|
76
75
|
|
|
77
|
-
@property
|
|
76
|
+
@_builtins.property
|
|
78
77
|
@pulumi.getter(name="grantAllPermissions")
|
|
79
|
-
def grant_all_permissions(self) ->
|
|
78
|
+
def grant_all_permissions(self) -> _builtins.bool:
|
|
80
79
|
"""
|
|
81
80
|
If true, grant all permissions necessary to run the plugin
|
|
82
81
|
"""
|
|
83
82
|
return pulumi.get(self, "grant_all_permissions")
|
|
84
83
|
|
|
85
|
-
@property
|
|
84
|
+
@_builtins.property
|
|
86
85
|
@pulumi.getter
|
|
87
|
-
def id(self) -> Optional[
|
|
86
|
+
def id(self) -> Optional[_builtins.str]:
|
|
88
87
|
"""
|
|
89
88
|
The ID of the plugin, which has precedence over the `alias` of both are given
|
|
90
89
|
"""
|
|
91
90
|
return pulumi.get(self, "id")
|
|
92
91
|
|
|
93
|
-
@property
|
|
92
|
+
@_builtins.property
|
|
94
93
|
@pulumi.getter
|
|
95
|
-
def name(self) ->
|
|
94
|
+
def name(self) -> _builtins.str:
|
|
96
95
|
"""
|
|
97
96
|
The plugin name. If the tag is omitted, `:latest` is complemented to the attribute value.
|
|
98
97
|
"""
|
|
99
98
|
return pulumi.get(self, "name")
|
|
100
99
|
|
|
101
|
-
@property
|
|
100
|
+
@_builtins.property
|
|
102
101
|
@pulumi.getter(name="pluginReference")
|
|
103
|
-
def plugin_reference(self) ->
|
|
102
|
+
def plugin_reference(self) -> _builtins.str:
|
|
104
103
|
"""
|
|
105
104
|
The Docker Plugin Reference
|
|
106
105
|
"""
|
|
@@ -122,8 +121,8 @@ class AwaitableGetPluginResult(GetPluginResult):
|
|
|
122
121
|
plugin_reference=self.plugin_reference)
|
|
123
122
|
|
|
124
123
|
|
|
125
|
-
def get_plugin(alias: Optional[
|
|
126
|
-
id: Optional[
|
|
124
|
+
def get_plugin(alias: Optional[_builtins.str] = None,
|
|
125
|
+
id: Optional[_builtins.str] = None,
|
|
127
126
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPluginResult:
|
|
128
127
|
"""
|
|
129
128
|
Reads the local Docker plugin. The plugin must be installed locally.
|
|
@@ -141,8 +140,8 @@ def get_plugin(alias: Optional[builtins.str] = None,
|
|
|
141
140
|
```
|
|
142
141
|
|
|
143
142
|
|
|
144
|
-
:param
|
|
145
|
-
:param
|
|
143
|
+
:param _builtins.str alias: The alias of the Docker plugin. If the tag is omitted, `:latest` is complemented to the attribute value.
|
|
144
|
+
:param _builtins.str id: The ID of the plugin, which has precedence over the `alias` of both are given
|
|
146
145
|
"""
|
|
147
146
|
__args__ = dict()
|
|
148
147
|
__args__['alias'] = alias
|
|
@@ -158,8 +157,8 @@ def get_plugin(alias: Optional[builtins.str] = None,
|
|
|
158
157
|
id=pulumi.get(__ret__, 'id'),
|
|
159
158
|
name=pulumi.get(__ret__, 'name'),
|
|
160
159
|
plugin_reference=pulumi.get(__ret__, 'plugin_reference'))
|
|
161
|
-
def get_plugin_output(alias: Optional[pulumi.Input[Optional[
|
|
162
|
-
id: Optional[pulumi.Input[Optional[
|
|
160
|
+
def get_plugin_output(alias: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
161
|
+
id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
163
162
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPluginResult]:
|
|
164
163
|
"""
|
|
165
164
|
Reads the local Docker plugin. The plugin must be installed locally.
|
|
@@ -177,8 +176,8 @@ def get_plugin_output(alias: Optional[pulumi.Input[Optional[builtins.str]]] = No
|
|
|
177
176
|
```
|
|
178
177
|
|
|
179
178
|
|
|
180
|
-
:param
|
|
181
|
-
:param
|
|
179
|
+
:param _builtins.str alias: The alias of the Docker plugin. If the tag is omitted, `:latest` is complemented to the attribute value.
|
|
180
|
+
:param _builtins.str id: The ID of the plugin, which has precedence over the `alias` of both are given
|
|
182
181
|
"""
|
|
183
182
|
__args__ = dict()
|
|
184
183
|
__args__['alias'] = alias
|
|
@@ -2,8 +2,7 @@
|
|
|
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 builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -41,33 +40,33 @@ class GetRegistryImageResult:
|
|
|
41
40
|
raise TypeError("Expected argument 'sha256_digest' to be a str")
|
|
42
41
|
pulumi.set(__self__, "sha256_digest", sha256_digest)
|
|
43
42
|
|
|
44
|
-
@property
|
|
43
|
+
@_builtins.property
|
|
45
44
|
@pulumi.getter
|
|
46
|
-
def id(self) ->
|
|
45
|
+
def id(self) -> _builtins.str:
|
|
47
46
|
"""
|
|
48
47
|
The provider-assigned unique ID for this managed resource.
|
|
49
48
|
"""
|
|
50
49
|
return pulumi.get(self, "id")
|
|
51
50
|
|
|
52
|
-
@property
|
|
51
|
+
@_builtins.property
|
|
53
52
|
@pulumi.getter(name="insecureSkipVerify")
|
|
54
|
-
def insecure_skip_verify(self) -> Optional[
|
|
53
|
+
def insecure_skip_verify(self) -> Optional[_builtins.bool]:
|
|
55
54
|
"""
|
|
56
55
|
If `true`, the verification of TLS certificates of the server/registry is disabled. Defaults to `false`
|
|
57
56
|
"""
|
|
58
57
|
return pulumi.get(self, "insecure_skip_verify")
|
|
59
58
|
|
|
60
|
-
@property
|
|
59
|
+
@_builtins.property
|
|
61
60
|
@pulumi.getter
|
|
62
|
-
def name(self) ->
|
|
61
|
+
def name(self) -> _builtins.str:
|
|
63
62
|
"""
|
|
64
63
|
The name of the Docker image, including any tags. e.g. `alpine:latest`. You can also specify a digest, e.g. `nginx:1.28.0@sha256:eaa7e36decc3421fc04478c586dfea0d931cebe47d5bc0b15d758a32ba51126f`.
|
|
65
64
|
"""
|
|
66
65
|
return pulumi.get(self, "name")
|
|
67
66
|
|
|
68
|
-
@property
|
|
67
|
+
@_builtins.property
|
|
69
68
|
@pulumi.getter(name="sha256Digest")
|
|
70
|
-
def sha256_digest(self) ->
|
|
69
|
+
def sha256_digest(self) -> _builtins.str:
|
|
71
70
|
"""
|
|
72
71
|
The content digest of the image, as stored in the registry.
|
|
73
72
|
"""
|
|
@@ -86,8 +85,8 @@ class AwaitableGetRegistryImageResult(GetRegistryImageResult):
|
|
|
86
85
|
sha256_digest=self.sha256_digest)
|
|
87
86
|
|
|
88
87
|
|
|
89
|
-
def get_registry_image(insecure_skip_verify: Optional[
|
|
90
|
-
name: Optional[
|
|
88
|
+
def get_registry_image(insecure_skip_verify: Optional[_builtins.bool] = None,
|
|
89
|
+
name: Optional[_builtins.str] = None,
|
|
91
90
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegistryImageResult:
|
|
92
91
|
"""
|
|
93
92
|
Reads the image metadata from a Docker Registry. Used in conjunction with the RemoteImage resource to keep an image up to date on the latest available version of the tag.
|
|
@@ -105,8 +104,8 @@ def get_registry_image(insecure_skip_verify: Optional[builtins.bool] = None,
|
|
|
105
104
|
```
|
|
106
105
|
|
|
107
106
|
|
|
108
|
-
:param
|
|
109
|
-
:param
|
|
107
|
+
:param _builtins.bool insecure_skip_verify: If `true`, the verification of TLS certificates of the server/registry is disabled. Defaults to `false`
|
|
108
|
+
:param _builtins.str name: The name of the Docker image, including any tags. e.g. `alpine:latest`. You can also specify a digest, e.g. `nginx:1.28.0@sha256:eaa7e36decc3421fc04478c586dfea0d931cebe47d5bc0b15d758a32ba51126f`.
|
|
110
109
|
"""
|
|
111
110
|
__args__ = dict()
|
|
112
111
|
__args__['insecureSkipVerify'] = insecure_skip_verify
|
|
@@ -119,8 +118,8 @@ def get_registry_image(insecure_skip_verify: Optional[builtins.bool] = None,
|
|
|
119
118
|
insecure_skip_verify=pulumi.get(__ret__, 'insecure_skip_verify'),
|
|
120
119
|
name=pulumi.get(__ret__, 'name'),
|
|
121
120
|
sha256_digest=pulumi.get(__ret__, 'sha256_digest'))
|
|
122
|
-
def get_registry_image_output(insecure_skip_verify: Optional[pulumi.Input[Optional[
|
|
123
|
-
name: Optional[pulumi.Input[
|
|
121
|
+
def get_registry_image_output(insecure_skip_verify: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
122
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
124
123
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRegistryImageResult]:
|
|
125
124
|
"""
|
|
126
125
|
Reads the image metadata from a Docker Registry. Used in conjunction with the RemoteImage resource to keep an image up to date on the latest available version of the tag.
|
|
@@ -138,8 +137,8 @@ def get_registry_image_output(insecure_skip_verify: Optional[pulumi.Input[Option
|
|
|
138
137
|
```
|
|
139
138
|
|
|
140
139
|
|
|
141
|
-
:param
|
|
142
|
-
:param
|
|
140
|
+
:param _builtins.bool insecure_skip_verify: If `true`, the verification of TLS certificates of the server/registry is disabled. Defaults to `false`
|
|
141
|
+
:param _builtins.str name: The name of the Docker image, including any tags. e.g. `alpine:latest`. You can also specify a digest, e.g. `nginx:1.28.0@sha256:eaa7e36decc3421fc04478c586dfea0d931cebe47d5bc0b15d758a32ba51126f`.
|
|
143
142
|
"""
|
|
144
143
|
__args__ = dict()
|
|
145
144
|
__args__['insecureSkipVerify'] = insecure_skip_verify
|
|
@@ -2,8 +2,7 @@
|
|
|
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 builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -46,7 +45,7 @@ class GetRegistryImageManifestsResult:
|
|
|
46
45
|
raise TypeError("Expected argument 'name' to be a str")
|
|
47
46
|
pulumi.set(__self__, "name", name)
|
|
48
47
|
|
|
49
|
-
@property
|
|
48
|
+
@_builtins.property
|
|
50
49
|
@pulumi.getter(name="authConfig")
|
|
51
50
|
def auth_config(self) -> Optional['outputs.GetRegistryImageManifestsAuthConfigResult']:
|
|
52
51
|
"""
|
|
@@ -54,23 +53,23 @@ class GetRegistryImageManifestsResult:
|
|
|
54
53
|
"""
|
|
55
54
|
return pulumi.get(self, "auth_config")
|
|
56
55
|
|
|
57
|
-
@property
|
|
56
|
+
@_builtins.property
|
|
58
57
|
@pulumi.getter
|
|
59
|
-
def id(self) ->
|
|
58
|
+
def id(self) -> _builtins.str:
|
|
60
59
|
"""
|
|
61
60
|
The provider-assigned unique ID for this managed resource.
|
|
62
61
|
"""
|
|
63
62
|
return pulumi.get(self, "id")
|
|
64
63
|
|
|
65
|
-
@property
|
|
64
|
+
@_builtins.property
|
|
66
65
|
@pulumi.getter(name="insecureSkipVerify")
|
|
67
|
-
def insecure_skip_verify(self) -> Optional[
|
|
66
|
+
def insecure_skip_verify(self) -> Optional[_builtins.bool]:
|
|
68
67
|
"""
|
|
69
68
|
If `true`, the verification of TLS certificates of the server/registry is disabled. Defaults to `false`
|
|
70
69
|
"""
|
|
71
70
|
return pulumi.get(self, "insecure_skip_verify")
|
|
72
71
|
|
|
73
|
-
@property
|
|
72
|
+
@_builtins.property
|
|
74
73
|
@pulumi.getter
|
|
75
74
|
def manifests(self) -> Sequence['outputs.GetRegistryImageManifestsManifestResult']:
|
|
76
75
|
"""
|
|
@@ -78,9 +77,9 @@ class GetRegistryImageManifestsResult:
|
|
|
78
77
|
"""
|
|
79
78
|
return pulumi.get(self, "manifests")
|
|
80
79
|
|
|
81
|
-
@property
|
|
80
|
+
@_builtins.property
|
|
82
81
|
@pulumi.getter
|
|
83
|
-
def name(self) ->
|
|
82
|
+
def name(self) -> _builtins.str:
|
|
84
83
|
"""
|
|
85
84
|
The name of the Docker image, including any tags. e.g. `alpine:latest`
|
|
86
85
|
"""
|
|
@@ -101,16 +100,16 @@ class AwaitableGetRegistryImageManifestsResult(GetRegistryImageManifestsResult):
|
|
|
101
100
|
|
|
102
101
|
|
|
103
102
|
def get_registry_image_manifests(auth_config: Optional[Union['GetRegistryImageManifestsAuthConfigArgs', 'GetRegistryImageManifestsAuthConfigArgsDict']] = None,
|
|
104
|
-
insecure_skip_verify: Optional[
|
|
105
|
-
name: Optional[
|
|
103
|
+
insecure_skip_verify: Optional[_builtins.bool] = None,
|
|
104
|
+
name: Optional[_builtins.str] = None,
|
|
106
105
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegistryImageManifestsResult:
|
|
107
106
|
"""
|
|
108
107
|
Reads the image metadata for each manifest in a Docker multi-arch image from a Docker Registry.
|
|
109
108
|
|
|
110
109
|
|
|
111
110
|
:param Union['GetRegistryImageManifestsAuthConfigArgs', 'GetRegistryImageManifestsAuthConfigArgsDict'] auth_config: Authentication configuration for the Docker registry. It is only used for this resource.
|
|
112
|
-
:param
|
|
113
|
-
:param
|
|
111
|
+
:param _builtins.bool insecure_skip_verify: If `true`, the verification of TLS certificates of the server/registry is disabled. Defaults to `false`
|
|
112
|
+
:param _builtins.str name: The name of the Docker image, including any tags. e.g. `alpine:latest`
|
|
114
113
|
"""
|
|
115
114
|
__args__ = dict()
|
|
116
115
|
__args__['authConfig'] = auth_config
|
|
@@ -126,16 +125,16 @@ def get_registry_image_manifests(auth_config: Optional[Union['GetRegistryImageMa
|
|
|
126
125
|
manifests=pulumi.get(__ret__, 'manifests'),
|
|
127
126
|
name=pulumi.get(__ret__, 'name'))
|
|
128
127
|
def get_registry_image_manifests_output(auth_config: Optional[pulumi.Input[Optional[Union['GetRegistryImageManifestsAuthConfigArgs', 'GetRegistryImageManifestsAuthConfigArgsDict']]]] = None,
|
|
129
|
-
insecure_skip_verify: Optional[pulumi.Input[Optional[
|
|
130
|
-
name: Optional[pulumi.Input[
|
|
128
|
+
insecure_skip_verify: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
|
|
129
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
131
130
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRegistryImageManifestsResult]:
|
|
132
131
|
"""
|
|
133
132
|
Reads the image metadata for each manifest in a Docker multi-arch image from a Docker Registry.
|
|
134
133
|
|
|
135
134
|
|
|
136
135
|
:param Union['GetRegistryImageManifestsAuthConfigArgs', 'GetRegistryImageManifestsAuthConfigArgsDict'] auth_config: Authentication configuration for the Docker registry. It is only used for this resource.
|
|
137
|
-
:param
|
|
138
|
-
:param
|
|
136
|
+
:param _builtins.bool insecure_skip_verify: If `true`, the verification of TLS certificates of the server/registry is disabled. Defaults to `false`
|
|
137
|
+
:param _builtins.str name: The name of the Docker image, including any tags. e.g. `alpine:latest`
|
|
139
138
|
"""
|
|
140
139
|
__args__ = dict()
|
|
141
140
|
__args__['authConfig'] = auth_config
|