pulumi-docker 4.7.0a1744751302__py3-none-any.whl → 4.7.0a1744829297__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.

@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import sys
6
7
  from .vars import _ExportableConfig
7
8
 
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -21,18 +22,18 @@ __all__ = [
21
22
  @pulumi.output_type
22
23
  class RegistryAuth(dict):
23
24
  def __init__(__self__, *,
24
- address: str,
25
- auth_disabled: Optional[bool] = None,
26
- config_file: Optional[str] = None,
27
- config_file_content: Optional[str] = None,
28
- password: Optional[str] = None,
29
- username: Optional[str] = None):
25
+ address: builtins.str,
26
+ auth_disabled: Optional[builtins.bool] = None,
27
+ config_file: Optional[builtins.str] = None,
28
+ config_file_content: Optional[builtins.str] = None,
29
+ password: Optional[builtins.str] = None,
30
+ username: Optional[builtins.str] = None):
30
31
  """
31
- :param str address: Address of the registry
32
- :param 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.
33
- :param str config_file_content: Plain content of the docker json file for registry auth. `config_file_content` has precedence over username/password.
34
- :param str password: Password for the registry. Defaults to `DOCKER_REGISTRY_PASS` env variable if set.
35
- :param str username: Username for the registry. Defaults to `DOCKER_REGISTRY_USER` env variable if set.
32
+ :param builtins.str address: Address of the registry
33
+ :param builtins.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.
34
+ :param builtins.str config_file_content: Plain content of the docker json file for registry auth. `config_file_content` has precedence over username/password.
35
+ :param builtins.str password: Password for the registry. Defaults to `DOCKER_REGISTRY_PASS` env variable if set.
36
+ :param builtins.str username: Username for the registry. Defaults to `DOCKER_REGISTRY_USER` env variable if set.
36
37
  """
37
38
  pulumi.set(__self__, "address", address)
38
39
  if auth_disabled is not None:
@@ -48,7 +49,7 @@ class RegistryAuth(dict):
48
49
 
49
50
  @property
50
51
  @pulumi.getter
51
- def address(self) -> str:
52
+ def address(self) -> builtins.str:
52
53
  """
53
54
  Address of the registry
54
55
  """
@@ -56,12 +57,12 @@ class RegistryAuth(dict):
56
57
 
57
58
  @property
58
59
  @pulumi.getter(name="authDisabled")
59
- def auth_disabled(self) -> Optional[bool]:
60
+ def auth_disabled(self) -> Optional[builtins.bool]:
60
61
  return pulumi.get(self, "auth_disabled")
61
62
 
62
63
  @property
63
64
  @pulumi.getter(name="configFile")
64
- def config_file(self) -> Optional[str]:
65
+ def config_file(self) -> Optional[builtins.str]:
65
66
  """
66
67
  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.
67
68
  """
@@ -69,7 +70,7 @@ class RegistryAuth(dict):
69
70
 
70
71
  @property
71
72
  @pulumi.getter(name="configFileContent")
72
- def config_file_content(self) -> Optional[str]:
73
+ def config_file_content(self) -> Optional[builtins.str]:
73
74
  """
74
75
  Plain content of the docker json file for registry auth. `config_file_content` has precedence over username/password.
75
76
  """
@@ -77,7 +78,7 @@ class RegistryAuth(dict):
77
78
 
78
79
  @property
79
80
  @pulumi.getter
80
- def password(self) -> Optional[str]:
81
+ def password(self) -> Optional[builtins.str]:
81
82
  """
82
83
  Password for the registry. Defaults to `DOCKER_REGISTRY_PASS` env variable if set.
83
84
  """
@@ -85,7 +86,7 @@ class RegistryAuth(dict):
85
86
 
86
87
  @property
87
88
  @pulumi.getter
88
- def username(self) -> Optional[str]:
89
+ def username(self) -> Optional[builtins.str]:
89
90
  """
90
91
  Username for the registry. Defaults to `DOCKER_REGISTRY_USER` env variable if set.
91
92
  """
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys