pulumi-cloudinit 1.5.0a1743571608__tar.gz → 1.5.0a1744262796__tar.gz

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-cloudinit might be problematic. Click here for more details.

Files changed (18) hide show
  1. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/PKG-INFO +1 -1
  2. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit/__init__.py +1 -0
  3. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit/_inputs.py +41 -40
  4. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit/config.py +50 -49
  5. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit/get_config.py +18 -17
  6. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit/outputs.py +25 -24
  7. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit/provider.py +1 -0
  8. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit/pulumi-plugin.json +1 -1
  9. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit.egg-info/PKG-INFO +1 -1
  10. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pyproject.toml +1 -1
  11. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/README.md +0 -0
  12. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit/_utilities.py +0 -0
  13. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit/py.typed +0 -0
  14. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit.egg-info/SOURCES.txt +0 -0
  15. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit.egg-info/dependency_links.txt +0 -0
  16. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit.egg-info/requires.txt +0 -0
  17. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/pulumi_cloudinit.egg-info/top_level.txt +0 -0
  18. {pulumi_cloudinit-1.5.0a1743571608 → pulumi_cloudinit-1.5.0a1744262796}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_cloudinit
3
- Version: 1.5.0a1743571608
3
+ Version: 1.5.0a1744262796
4
4
  Summary: A Pulumi package for creating and managing cloudinit cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -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
  from . import _utilities
6
7
  import typing
7
8
  # Export this package's modules as members:
@@ -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
@@ -25,19 +26,19 @@ MYPY = False
25
26
 
26
27
  if not MYPY:
27
28
  class ConfigPartArgsDict(TypedDict):
28
- content: pulumi.Input[str]
29
+ content: pulumi.Input[builtins.str]
29
30
  """
30
31
  Body content for the part.
31
32
  """
32
- content_type: NotRequired[pulumi.Input[str]]
33
+ content_type: NotRequired[pulumi.Input[builtins.str]]
33
34
  """
34
35
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
35
36
  """
36
- filename: NotRequired[pulumi.Input[str]]
37
+ filename: NotRequired[pulumi.Input[builtins.str]]
37
38
  """
38
39
  A filename to report in the header for the part.
39
40
  """
40
- merge_type: NotRequired[pulumi.Input[str]]
41
+ merge_type: NotRequired[pulumi.Input[builtins.str]]
41
42
  """
42
43
  A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
43
44
  """
@@ -47,15 +48,15 @@ elif False:
47
48
  @pulumi.input_type
48
49
  class ConfigPartArgs:
49
50
  def __init__(__self__, *,
50
- content: pulumi.Input[str],
51
- content_type: Optional[pulumi.Input[str]] = None,
52
- filename: Optional[pulumi.Input[str]] = None,
53
- merge_type: Optional[pulumi.Input[str]] = None):
51
+ content: pulumi.Input[builtins.str],
52
+ content_type: Optional[pulumi.Input[builtins.str]] = None,
53
+ filename: Optional[pulumi.Input[builtins.str]] = None,
54
+ merge_type: Optional[pulumi.Input[builtins.str]] = None):
54
55
  """
55
- :param pulumi.Input[str] content: Body content for the part.
56
- :param pulumi.Input[str] content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
57
- :param pulumi.Input[str] filename: A filename to report in the header for the part.
58
- :param pulumi.Input[str] merge_type: A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
56
+ :param pulumi.Input[builtins.str] content: Body content for the part.
57
+ :param pulumi.Input[builtins.str] content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
58
+ :param pulumi.Input[builtins.str] filename: A filename to report in the header for the part.
59
+ :param pulumi.Input[builtins.str] merge_type: A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
59
60
  """
60
61
  pulumi.set(__self__, "content", content)
61
62
  if content_type is not None:
@@ -67,68 +68,68 @@ class ConfigPartArgs:
67
68
 
68
69
  @property
69
70
  @pulumi.getter
70
- def content(self) -> pulumi.Input[str]:
71
+ def content(self) -> pulumi.Input[builtins.str]:
71
72
  """
72
73
  Body content for the part.
73
74
  """
74
75
  return pulumi.get(self, "content")
75
76
 
76
77
  @content.setter
77
- def content(self, value: pulumi.Input[str]):
78
+ def content(self, value: pulumi.Input[builtins.str]):
78
79
  pulumi.set(self, "content", value)
79
80
 
80
81
  @property
81
82
  @pulumi.getter(name="contentType")
82
- def content_type(self) -> Optional[pulumi.Input[str]]:
83
+ def content_type(self) -> Optional[pulumi.Input[builtins.str]]:
83
84
  """
84
85
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
85
86
  """
86
87
  return pulumi.get(self, "content_type")
87
88
 
88
89
  @content_type.setter
89
- def content_type(self, value: Optional[pulumi.Input[str]]):
90
+ def content_type(self, value: Optional[pulumi.Input[builtins.str]]):
90
91
  pulumi.set(self, "content_type", value)
91
92
 
92
93
  @property
93
94
  @pulumi.getter
94
- def filename(self) -> Optional[pulumi.Input[str]]:
95
+ def filename(self) -> Optional[pulumi.Input[builtins.str]]:
95
96
  """
96
97
  A filename to report in the header for the part.
97
98
  """
98
99
  return pulumi.get(self, "filename")
99
100
 
100
101
  @filename.setter
101
- def filename(self, value: Optional[pulumi.Input[str]]):
102
+ def filename(self, value: Optional[pulumi.Input[builtins.str]]):
102
103
  pulumi.set(self, "filename", value)
103
104
 
104
105
  @property
105
106
  @pulumi.getter(name="mergeType")
106
- def merge_type(self) -> Optional[pulumi.Input[str]]:
107
+ def merge_type(self) -> Optional[pulumi.Input[builtins.str]]:
107
108
  """
108
109
  A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
109
110
  """
110
111
  return pulumi.get(self, "merge_type")
111
112
 
112
113
  @merge_type.setter
113
- def merge_type(self, value: Optional[pulumi.Input[str]]):
114
+ def merge_type(self, value: Optional[pulumi.Input[builtins.str]]):
114
115
  pulumi.set(self, "merge_type", value)
115
116
 
116
117
 
117
118
  if not MYPY:
118
119
  class GetConfigPartArgsDict(TypedDict):
119
- content: str
120
+ content: builtins.str
120
121
  """
121
122
  Body content for the part.
122
123
  """
123
- content_type: NotRequired[str]
124
+ content_type: NotRequired[builtins.str]
124
125
  """
125
126
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
126
127
  """
127
- filename: NotRequired[str]
128
+ filename: NotRequired[builtins.str]
128
129
  """
129
130
  A filename to report in the header for the part.
130
131
  """
131
- merge_type: NotRequired[str]
132
+ merge_type: NotRequired[builtins.str]
132
133
  """
133
134
  A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
134
135
  """
@@ -138,15 +139,15 @@ elif False:
138
139
  @pulumi.input_type
139
140
  class GetConfigPartArgs:
140
141
  def __init__(__self__, *,
141
- content: str,
142
- content_type: Optional[str] = None,
143
- filename: Optional[str] = None,
144
- merge_type: Optional[str] = None):
142
+ content: builtins.str,
143
+ content_type: Optional[builtins.str] = None,
144
+ filename: Optional[builtins.str] = None,
145
+ merge_type: Optional[builtins.str] = None):
145
146
  """
146
- :param str content: Body content for the part.
147
- :param str content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
148
- :param str filename: A filename to report in the header for the part.
149
- :param str merge_type: A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
147
+ :param builtins.str content: Body content for the part.
148
+ :param builtins.str content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
149
+ :param builtins.str filename: A filename to report in the header for the part.
150
+ :param builtins.str merge_type: A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
150
151
  """
151
152
  pulumi.set(__self__, "content", content)
152
153
  if content_type is None:
@@ -160,50 +161,50 @@ class GetConfigPartArgs:
160
161
 
161
162
  @property
162
163
  @pulumi.getter
163
- def content(self) -> str:
164
+ def content(self) -> builtins.str:
164
165
  """
165
166
  Body content for the part.
166
167
  """
167
168
  return pulumi.get(self, "content")
168
169
 
169
170
  @content.setter
170
- def content(self, value: str):
171
+ def content(self, value: builtins.str):
171
172
  pulumi.set(self, "content", value)
172
173
 
173
174
  @property
174
175
  @pulumi.getter(name="contentType")
175
- def content_type(self) -> Optional[str]:
176
+ def content_type(self) -> Optional[builtins.str]:
176
177
  """
177
178
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
178
179
  """
179
180
  return pulumi.get(self, "content_type")
180
181
 
181
182
  @content_type.setter
182
- def content_type(self, value: Optional[str]):
183
+ def content_type(self, value: Optional[builtins.str]):
183
184
  pulumi.set(self, "content_type", value)
184
185
 
185
186
  @property
186
187
  @pulumi.getter
187
- def filename(self) -> Optional[str]:
188
+ def filename(self) -> Optional[builtins.str]:
188
189
  """
189
190
  A filename to report in the header for the part.
190
191
  """
191
192
  return pulumi.get(self, "filename")
192
193
 
193
194
  @filename.setter
194
- def filename(self, value: Optional[str]):
195
+ def filename(self, value: Optional[builtins.str]):
195
196
  pulumi.set(self, "filename", value)
196
197
 
197
198
  @property
198
199
  @pulumi.getter(name="mergeType")
199
- def merge_type(self) -> Optional[str]:
200
+ def merge_type(self) -> Optional[builtins.str]:
200
201
  """
201
202
  A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
202
203
  """
203
204
  return pulumi.get(self, "merge_type")
204
205
 
205
206
  @merge_type.setter
206
- def merge_type(self, value: Optional[str]):
207
+ def merge_type(self, value: Optional[builtins.str]):
207
208
  pulumi.set(self, "merge_type", value)
208
209
 
209
210
 
@@ -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,15 +22,15 @@ __all__ = ['ConfigArgs', 'Config']
21
22
  @pulumi.input_type
22
23
  class ConfigArgs:
23
24
  def __init__(__self__, *,
24
- base64_encode: Optional[pulumi.Input[bool]] = None,
25
- boundary: Optional[pulumi.Input[str]] = None,
26
- gzip: Optional[pulumi.Input[bool]] = None,
25
+ base64_encode: Optional[pulumi.Input[builtins.bool]] = None,
26
+ boundary: Optional[pulumi.Input[builtins.str]] = None,
27
+ gzip: Optional[pulumi.Input[builtins.bool]] = None,
27
28
  parts: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigPartArgs']]]] = None):
28
29
  """
29
30
  The set of arguments for constructing a Config resource.
30
- :param pulumi.Input[bool] base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
31
- :param pulumi.Input[str] boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
32
- :param pulumi.Input[bool] gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
31
+ :param pulumi.Input[builtins.bool] base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
32
+ :param pulumi.Input[builtins.str] boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
33
+ :param pulumi.Input[builtins.bool] gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
33
34
  :param pulumi.Input[Sequence[pulumi.Input['ConfigPartArgs']]] parts: A nested block type which adds a file to the generated cloud-init configuration. Use multiple `part` blocks to specify multiple files, which will be included in order of declaration in the final MIME document.
34
35
  """
35
36
  if base64_encode is not None:
@@ -43,38 +44,38 @@ class ConfigArgs:
43
44
 
44
45
  @property
45
46
  @pulumi.getter(name="base64Encode")
46
- def base64_encode(self) -> Optional[pulumi.Input[bool]]:
47
+ def base64_encode(self) -> Optional[pulumi.Input[builtins.bool]]:
47
48
  """
48
49
  Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
49
50
  """
50
51
  return pulumi.get(self, "base64_encode")
51
52
 
52
53
  @base64_encode.setter
53
- def base64_encode(self, value: Optional[pulumi.Input[bool]]):
54
+ def base64_encode(self, value: Optional[pulumi.Input[builtins.bool]]):
54
55
  pulumi.set(self, "base64_encode", value)
55
56
 
56
57
  @property
57
58
  @pulumi.getter
58
- def boundary(self) -> Optional[pulumi.Input[str]]:
59
+ def boundary(self) -> Optional[pulumi.Input[builtins.str]]:
59
60
  """
60
61
  Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
61
62
  """
62
63
  return pulumi.get(self, "boundary")
63
64
 
64
65
  @boundary.setter
65
- def boundary(self, value: Optional[pulumi.Input[str]]):
66
+ def boundary(self, value: Optional[pulumi.Input[builtins.str]]):
66
67
  pulumi.set(self, "boundary", value)
67
68
 
68
69
  @property
69
70
  @pulumi.getter
70
- def gzip(self) -> Optional[pulumi.Input[bool]]:
71
+ def gzip(self) -> Optional[pulumi.Input[builtins.bool]]:
71
72
  """
72
73
  Specify whether or not to gzip the `rendered` output. Defaults to `true`.
73
74
  """
74
75
  return pulumi.get(self, "gzip")
75
76
 
76
77
  @gzip.setter
77
- def gzip(self, value: Optional[pulumi.Input[bool]]):
78
+ def gzip(self, value: Optional[pulumi.Input[builtins.bool]]):
78
79
  pulumi.set(self, "gzip", value)
79
80
 
80
81
  @property
@@ -93,18 +94,18 @@ class ConfigArgs:
93
94
  @pulumi.input_type
94
95
  class _ConfigState:
95
96
  def __init__(__self__, *,
96
- base64_encode: Optional[pulumi.Input[bool]] = None,
97
- boundary: Optional[pulumi.Input[str]] = None,
98
- gzip: Optional[pulumi.Input[bool]] = None,
97
+ base64_encode: Optional[pulumi.Input[builtins.bool]] = None,
98
+ boundary: Optional[pulumi.Input[builtins.str]] = None,
99
+ gzip: Optional[pulumi.Input[builtins.bool]] = None,
99
100
  parts: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigPartArgs']]]] = None,
100
- rendered: Optional[pulumi.Input[str]] = None):
101
+ rendered: Optional[pulumi.Input[builtins.str]] = None):
101
102
  """
102
103
  Input properties used for looking up and filtering Config resources.
103
- :param pulumi.Input[bool] base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
104
- :param pulumi.Input[str] boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
105
- :param pulumi.Input[bool] gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
104
+ :param pulumi.Input[builtins.bool] base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
105
+ :param pulumi.Input[builtins.str] boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
106
+ :param pulumi.Input[builtins.bool] gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
106
107
  :param pulumi.Input[Sequence[pulumi.Input['ConfigPartArgs']]] parts: A nested block type which adds a file to the generated cloud-init configuration. Use multiple `part` blocks to specify multiple files, which will be included in order of declaration in the final MIME document.
107
- :param pulumi.Input[str] rendered: The final rendered multi-part cloud-init config.
108
+ :param pulumi.Input[builtins.str] rendered: The final rendered multi-part cloud-init config.
108
109
  """
109
110
  if base64_encode is not None:
110
111
  pulumi.set(__self__, "base64_encode", base64_encode)
@@ -119,38 +120,38 @@ class _ConfigState:
119
120
 
120
121
  @property
121
122
  @pulumi.getter(name="base64Encode")
122
- def base64_encode(self) -> Optional[pulumi.Input[bool]]:
123
+ def base64_encode(self) -> Optional[pulumi.Input[builtins.bool]]:
123
124
  """
124
125
  Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
125
126
  """
126
127
  return pulumi.get(self, "base64_encode")
127
128
 
128
129
  @base64_encode.setter
129
- def base64_encode(self, value: Optional[pulumi.Input[bool]]):
130
+ def base64_encode(self, value: Optional[pulumi.Input[builtins.bool]]):
130
131
  pulumi.set(self, "base64_encode", value)
131
132
 
132
133
  @property
133
134
  @pulumi.getter
134
- def boundary(self) -> Optional[pulumi.Input[str]]:
135
+ def boundary(self) -> Optional[pulumi.Input[builtins.str]]:
135
136
  """
136
137
  Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
137
138
  """
138
139
  return pulumi.get(self, "boundary")
139
140
 
140
141
  @boundary.setter
141
- def boundary(self, value: Optional[pulumi.Input[str]]):
142
+ def boundary(self, value: Optional[pulumi.Input[builtins.str]]):
142
143
  pulumi.set(self, "boundary", value)
143
144
 
144
145
  @property
145
146
  @pulumi.getter
146
- def gzip(self) -> Optional[pulumi.Input[bool]]:
147
+ def gzip(self) -> Optional[pulumi.Input[builtins.bool]]:
147
148
  """
148
149
  Specify whether or not to gzip the `rendered` output. Defaults to `true`.
149
150
  """
150
151
  return pulumi.get(self, "gzip")
151
152
 
152
153
  @gzip.setter
153
- def gzip(self, value: Optional[pulumi.Input[bool]]):
154
+ def gzip(self, value: Optional[pulumi.Input[builtins.bool]]):
154
155
  pulumi.set(self, "gzip", value)
155
156
 
156
157
  @property
@@ -167,14 +168,14 @@ class _ConfigState:
167
168
 
168
169
  @property
169
170
  @pulumi.getter
170
- def rendered(self) -> Optional[pulumi.Input[str]]:
171
+ def rendered(self) -> Optional[pulumi.Input[builtins.str]]:
171
172
  """
172
173
  The final rendered multi-part cloud-init config.
173
174
  """
174
175
  return pulumi.get(self, "rendered")
175
176
 
176
177
  @rendered.setter
177
- def rendered(self, value: Optional[pulumi.Input[str]]):
178
+ def rendered(self, value: Optional[pulumi.Input[builtins.str]]):
178
179
  pulumi.set(self, "rendered", value)
179
180
 
180
181
 
@@ -183,9 +184,9 @@ class Config(pulumi.CustomResource):
183
184
  def __init__(__self__,
184
185
  resource_name: str,
185
186
  opts: Optional[pulumi.ResourceOptions] = None,
186
- base64_encode: Optional[pulumi.Input[bool]] = None,
187
- boundary: Optional[pulumi.Input[str]] = None,
188
- gzip: Optional[pulumi.Input[bool]] = None,
187
+ base64_encode: Optional[pulumi.Input[builtins.bool]] = None,
188
+ boundary: Optional[pulumi.Input[builtins.str]] = None,
189
+ gzip: Optional[pulumi.Input[builtins.bool]] = None,
189
190
  parts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigPartArgs', 'ConfigPartArgsDict']]]]] = None,
190
191
  __props__=None):
191
192
  """
@@ -210,9 +211,9 @@ class Config(pulumi.CustomResource):
210
211
 
211
212
  :param str resource_name: The name of the resource.
212
213
  :param pulumi.ResourceOptions opts: Options for the resource.
213
- :param pulumi.Input[bool] base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
214
- :param pulumi.Input[str] boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
215
- :param pulumi.Input[bool] gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
214
+ :param pulumi.Input[builtins.bool] base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
215
+ :param pulumi.Input[builtins.str] boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
216
+ :param pulumi.Input[builtins.bool] gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
216
217
  :param pulumi.Input[Sequence[pulumi.Input[Union['ConfigPartArgs', 'ConfigPartArgsDict']]]] parts: A nested block type which adds a file to the generated cloud-init configuration. Use multiple `part` blocks to specify multiple files, which will be included in order of declaration in the final MIME document.
217
218
  """
218
219
  ...
@@ -256,9 +257,9 @@ class Config(pulumi.CustomResource):
256
257
  def _internal_init(__self__,
257
258
  resource_name: str,
258
259
  opts: Optional[pulumi.ResourceOptions] = None,
259
- base64_encode: Optional[pulumi.Input[bool]] = None,
260
- boundary: Optional[pulumi.Input[str]] = None,
261
- gzip: Optional[pulumi.Input[bool]] = None,
260
+ base64_encode: Optional[pulumi.Input[builtins.bool]] = None,
261
+ boundary: Optional[pulumi.Input[builtins.str]] = None,
262
+ gzip: Optional[pulumi.Input[builtins.bool]] = None,
262
263
  parts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigPartArgs', 'ConfigPartArgsDict']]]]] = None,
263
264
  __props__=None):
264
265
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -284,11 +285,11 @@ class Config(pulumi.CustomResource):
284
285
  def get(resource_name: str,
285
286
  id: pulumi.Input[str],
286
287
  opts: Optional[pulumi.ResourceOptions] = None,
287
- base64_encode: Optional[pulumi.Input[bool]] = None,
288
- boundary: Optional[pulumi.Input[str]] = None,
289
- gzip: Optional[pulumi.Input[bool]] = None,
288
+ base64_encode: Optional[pulumi.Input[builtins.bool]] = None,
289
+ boundary: Optional[pulumi.Input[builtins.str]] = None,
290
+ gzip: Optional[pulumi.Input[builtins.bool]] = None,
290
291
  parts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigPartArgs', 'ConfigPartArgsDict']]]]] = None,
291
- rendered: Optional[pulumi.Input[str]] = None) -> 'Config':
292
+ rendered: Optional[pulumi.Input[builtins.str]] = None) -> 'Config':
292
293
  """
293
294
  Get an existing Config resource's state with the given name, id, and optional extra
294
295
  properties used to qualify the lookup.
@@ -296,11 +297,11 @@ class Config(pulumi.CustomResource):
296
297
  :param str resource_name: The unique name of the resulting resource.
297
298
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
298
299
  :param pulumi.ResourceOptions opts: Options for the resource.
299
- :param pulumi.Input[bool] base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
300
- :param pulumi.Input[str] boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
301
- :param pulumi.Input[bool] gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
300
+ :param pulumi.Input[builtins.bool] base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
301
+ :param pulumi.Input[builtins.str] boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
302
+ :param pulumi.Input[builtins.bool] gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
302
303
  :param pulumi.Input[Sequence[pulumi.Input[Union['ConfigPartArgs', 'ConfigPartArgsDict']]]] parts: A nested block type which adds a file to the generated cloud-init configuration. Use multiple `part` blocks to specify multiple files, which will be included in order of declaration in the final MIME document.
303
- :param pulumi.Input[str] rendered: The final rendered multi-part cloud-init config.
304
+ :param pulumi.Input[builtins.str] rendered: The final rendered multi-part cloud-init config.
304
305
  """
305
306
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
306
307
 
@@ -315,7 +316,7 @@ class Config(pulumi.CustomResource):
315
316
 
316
317
  @property
317
318
  @pulumi.getter(name="base64Encode")
318
- def base64_encode(self) -> pulumi.Output[bool]:
319
+ def base64_encode(self) -> pulumi.Output[builtins.bool]:
319
320
  """
320
321
  Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
321
322
  """
@@ -323,7 +324,7 @@ class Config(pulumi.CustomResource):
323
324
 
324
325
  @property
325
326
  @pulumi.getter
326
- def boundary(self) -> pulumi.Output[str]:
327
+ def boundary(self) -> pulumi.Output[builtins.str]:
327
328
  """
328
329
  Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
329
330
  """
@@ -331,7 +332,7 @@ class Config(pulumi.CustomResource):
331
332
 
332
333
  @property
333
334
  @pulumi.getter
334
- def gzip(self) -> pulumi.Output[bool]:
335
+ def gzip(self) -> pulumi.Output[builtins.bool]:
335
336
  """
336
337
  Specify whether or not to gzip the `rendered` output. Defaults to `true`.
337
338
  """
@@ -347,7 +348,7 @@ class Config(pulumi.CustomResource):
347
348
 
348
349
  @property
349
350
  @pulumi.getter
350
- def rendered(self) -> pulumi.Output[str]:
351
+ def rendered(self) -> pulumi.Output[builtins.str]:
351
352
  """
352
353
  The final rendered multi-part cloud-init config.
353
354
  """
@@ -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
@@ -50,7 +51,7 @@ class GetConfigResult:
50
51
 
51
52
  @property
52
53
  @pulumi.getter(name="base64Encode")
53
- def base64_encode(self) -> bool:
54
+ def base64_encode(self) -> builtins.bool:
54
55
  """
55
56
  Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
56
57
  """
@@ -58,7 +59,7 @@ class GetConfigResult:
58
59
 
59
60
  @property
60
61
  @pulumi.getter
61
- def boundary(self) -> str:
62
+ def boundary(self) -> builtins.str:
62
63
  """
63
64
  Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
64
65
  """
@@ -66,7 +67,7 @@ class GetConfigResult:
66
67
 
67
68
  @property
68
69
  @pulumi.getter
69
- def gzip(self) -> bool:
70
+ def gzip(self) -> builtins.bool:
70
71
  """
71
72
  Specify whether or not to gzip the `rendered` output. Defaults to `true`.
72
73
  """
@@ -74,7 +75,7 @@ class GetConfigResult:
74
75
 
75
76
  @property
76
77
  @pulumi.getter
77
- def id(self) -> str:
78
+ def id(self) -> builtins.str:
78
79
  """
79
80
  [CRC-32](https://pkg.go.dev/hash/crc32) checksum of `rendered` cloud-init config.
80
81
  """
@@ -90,7 +91,7 @@ class GetConfigResult:
90
91
 
91
92
  @property
92
93
  @pulumi.getter
93
- def rendered(self) -> str:
94
+ def rendered(self) -> builtins.str:
94
95
  """
95
96
  The final rendered multi-part cloud-init config.
96
97
  """
@@ -111,9 +112,9 @@ class AwaitableGetConfigResult(GetConfigResult):
111
112
  rendered=self.rendered)
112
113
 
113
114
 
114
- def get_config(base64_encode: Optional[bool] = None,
115
- boundary: Optional[str] = None,
116
- gzip: Optional[bool] = None,
115
+ def get_config(base64_encode: Optional[builtins.bool] = None,
116
+ boundary: Optional[builtins.str] = None,
117
+ gzip: Optional[builtins.bool] = None,
117
118
  parts: Optional[Sequence[Union['GetConfigPartArgs', 'GetConfigPartArgsDict']]] = None,
118
119
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConfigResult:
119
120
  """
@@ -134,9 +135,9 @@ def get_config(base64_encode: Optional[bool] = None,
134
135
  <!-- This schema was originally generated with tfplugindocs, then modified manually to ensure `part` block list is noted as Required -->
135
136
 
136
137
 
137
- :param bool base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
138
- :param str boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
139
- :param bool gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
138
+ :param builtins.bool base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
139
+ :param builtins.str boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
140
+ :param builtins.bool gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
140
141
  :param Sequence[Union['GetConfigPartArgs', 'GetConfigPartArgsDict']] parts: A nested block type which adds a file to the generated cloud-init configuration. Use multiple `part` blocks to specify multiple files, which will be included in order of declaration in the final MIME document.
141
142
  """
142
143
  __args__ = dict()
@@ -154,9 +155,9 @@ def get_config(base64_encode: Optional[bool] = None,
154
155
  id=pulumi.get(__ret__, 'id'),
155
156
  parts=pulumi.get(__ret__, 'parts'),
156
157
  rendered=pulumi.get(__ret__, 'rendered'))
157
- def get_config_output(base64_encode: Optional[pulumi.Input[Optional[bool]]] = None,
158
- boundary: Optional[pulumi.Input[Optional[str]]] = None,
159
- gzip: Optional[pulumi.Input[Optional[bool]]] = None,
158
+ def get_config_output(base64_encode: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
159
+ boundary: Optional[pulumi.Input[Optional[builtins.str]]] = None,
160
+ gzip: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
160
161
  parts: Optional[pulumi.Input[Optional[Sequence[Union['GetConfigPartArgs', 'GetConfigPartArgsDict']]]]] = None,
161
162
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetConfigResult]:
162
163
  """
@@ -177,9 +178,9 @@ def get_config_output(base64_encode: Optional[pulumi.Input[Optional[bool]]] = No
177
178
  <!-- This schema was originally generated with tfplugindocs, then modified manually to ensure `part` block list is noted as Required -->
178
179
 
179
180
 
180
- :param bool base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
181
- :param str boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
182
- :param bool gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
181
+ :param builtins.bool base64_encode: Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
182
+ :param builtins.str boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
183
+ :param builtins.bool gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
183
184
  :param Sequence[Union['GetConfigPartArgs', 'GetConfigPartArgsDict']] parts: A nested block type which adds a file to the generated cloud-init configuration. Use multiple `part` blocks to specify multiple files, which will be included in order of declaration in the final MIME document.
184
185
  """
185
186
  __args__ = dict()
@@ -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
@@ -41,15 +42,15 @@ class ConfigPart(dict):
41
42
  return super().get(key, default)
42
43
 
43
44
  def __init__(__self__, *,
44
- content: str,
45
- content_type: Optional[str] = None,
46
- filename: Optional[str] = None,
47
- merge_type: Optional[str] = None):
45
+ content: builtins.str,
46
+ content_type: Optional[builtins.str] = None,
47
+ filename: Optional[builtins.str] = None,
48
+ merge_type: Optional[builtins.str] = None):
48
49
  """
49
- :param str content: Body content for the part.
50
- :param str content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
51
- :param str filename: A filename to report in the header for the part.
52
- :param str merge_type: A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
50
+ :param builtins.str content: Body content for the part.
51
+ :param builtins.str content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
52
+ :param builtins.str filename: A filename to report in the header for the part.
53
+ :param builtins.str merge_type: A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
53
54
  """
54
55
  pulumi.set(__self__, "content", content)
55
56
  if content_type is not None:
@@ -61,7 +62,7 @@ class ConfigPart(dict):
61
62
 
62
63
  @property
63
64
  @pulumi.getter
64
- def content(self) -> str:
65
+ def content(self) -> builtins.str:
65
66
  """
66
67
  Body content for the part.
67
68
  """
@@ -69,7 +70,7 @@ class ConfigPart(dict):
69
70
 
70
71
  @property
71
72
  @pulumi.getter(name="contentType")
72
- def content_type(self) -> Optional[str]:
73
+ def content_type(self) -> Optional[builtins.str]:
73
74
  """
74
75
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
75
76
  """
@@ -77,7 +78,7 @@ class ConfigPart(dict):
77
78
 
78
79
  @property
79
80
  @pulumi.getter
80
- def filename(self) -> Optional[str]:
81
+ def filename(self) -> Optional[builtins.str]:
81
82
  """
82
83
  A filename to report in the header for the part.
83
84
  """
@@ -85,7 +86,7 @@ class ConfigPart(dict):
85
86
 
86
87
  @property
87
88
  @pulumi.getter(name="mergeType")
88
- def merge_type(self) -> Optional[str]:
89
+ def merge_type(self) -> Optional[builtins.str]:
89
90
  """
90
91
  A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
91
92
  """
@@ -95,15 +96,15 @@ class ConfigPart(dict):
95
96
  @pulumi.output_type
96
97
  class GetConfigPartResult(dict):
97
98
  def __init__(__self__, *,
98
- content: str,
99
- content_type: Optional[str] = None,
100
- filename: Optional[str] = None,
101
- merge_type: Optional[str] = None):
99
+ content: builtins.str,
100
+ content_type: Optional[builtins.str] = None,
101
+ filename: Optional[builtins.str] = None,
102
+ merge_type: Optional[builtins.str] = None):
102
103
  """
103
- :param str content: Body content for the part.
104
- :param str content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
105
- :param str filename: A filename to report in the header for the part.
106
- :param str merge_type: A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
104
+ :param builtins.str content: Body content for the part.
105
+ :param builtins.str content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
106
+ :param builtins.str filename: A filename to report in the header for the part.
107
+ :param builtins.str merge_type: A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
107
108
  """
108
109
  pulumi.set(__self__, "content", content)
109
110
  if content_type is None:
@@ -117,7 +118,7 @@ class GetConfigPartResult(dict):
117
118
 
118
119
  @property
119
120
  @pulumi.getter
120
- def content(self) -> str:
121
+ def content(self) -> builtins.str:
121
122
  """
122
123
  Body content for the part.
123
124
  """
@@ -125,7 +126,7 @@ class GetConfigPartResult(dict):
125
126
 
126
127
  @property
127
128
  @pulumi.getter(name="contentType")
128
- def content_type(self) -> Optional[str]:
129
+ def content_type(self) -> Optional[builtins.str]:
129
130
  """
130
131
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
131
132
  """
@@ -133,7 +134,7 @@ class GetConfigPartResult(dict):
133
134
 
134
135
  @property
135
136
  @pulumi.getter
136
- def filename(self) -> Optional[str]:
137
+ def filename(self) -> Optional[builtins.str]:
137
138
  """
138
139
  A filename to report in the header for the part.
139
140
  """
@@ -141,7 +142,7 @@ class GetConfigPartResult(dict):
141
142
 
142
143
  @property
143
144
  @pulumi.getter(name="mergeType")
144
- def merge_type(self) -> Optional[str]:
145
+ def merge_type(self) -> Optional[builtins.str]:
145
146
  """
146
147
  A value for the `X-Merge-Type` header of the part, to control [cloud-init merging behavior](https://cloudinit.readthedocs.io/en/latest/reference/merging.html).
147
148
  """
@@ -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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "cloudinit",
4
- "version": "1.5.0-alpha.1743571608"
4
+ "version": "1.5.0-alpha.1744262796"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_cloudinit
3
- Version: 1.5.0a1743571608
3
+ Version: 1.5.0a1744262796
4
4
  Summary: A Pulumi package for creating and managing cloudinit cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -5,7 +5,7 @@
5
5
  keywords = ["pulumi", "cloudinit"]
6
6
  readme = "README.md"
7
7
  requires-python = ">=3.9"
8
- version = "1.5.0a1743571608"
8
+ version = "1.5.0a1744262796"
9
9
  [project.license]
10
10
  text = "Apache-2.0"
11
11
  [project.urls]