pulumi-cloudinit 1.5.0a1744262796__py3-none-any.whl → 1.5.0a1766467727__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.
@@ -1,8 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
+ import builtins as _builtins
6
6
  from . import _utilities
7
7
  import typing
8
8
  # Export this package's modules as members:
@@ -1,9 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
@@ -26,19 +25,19 @@ MYPY = False
26
25
 
27
26
  if not MYPY:
28
27
  class ConfigPartArgsDict(TypedDict):
29
- content: pulumi.Input[builtins.str]
28
+ content: pulumi.Input[_builtins.str]
30
29
  """
31
30
  Body content for the part.
32
31
  """
33
- content_type: NotRequired[pulumi.Input[builtins.str]]
32
+ content_type: NotRequired[pulumi.Input[_builtins.str]]
34
33
  """
35
34
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
36
35
  """
37
- filename: NotRequired[pulumi.Input[builtins.str]]
36
+ filename: NotRequired[pulumi.Input[_builtins.str]]
38
37
  """
39
38
  A filename to report in the header for the part.
40
39
  """
41
- merge_type: NotRequired[pulumi.Input[builtins.str]]
40
+ merge_type: NotRequired[pulumi.Input[_builtins.str]]
42
41
  """
43
42
  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).
44
43
  """
@@ -48,15 +47,15 @@ elif False:
48
47
  @pulumi.input_type
49
48
  class ConfigPartArgs:
50
49
  def __init__(__self__, *,
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):
50
+ content: pulumi.Input[_builtins.str],
51
+ content_type: Optional[pulumi.Input[_builtins.str]] = None,
52
+ filename: Optional[pulumi.Input[_builtins.str]] = None,
53
+ merge_type: Optional[pulumi.Input[_builtins.str]] = None):
55
54
  """
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).
55
+ :param pulumi.Input[_builtins.str] content: Body content for the part.
56
+ :param pulumi.Input[_builtins.str] content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
57
+ :param pulumi.Input[_builtins.str] filename: A filename to report in the header for the part.
58
+ :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).
60
59
  """
61
60
  pulumi.set(__self__, "content", content)
62
61
  if content_type is not None:
@@ -66,70 +65,70 @@ class ConfigPartArgs:
66
65
  if merge_type is not None:
67
66
  pulumi.set(__self__, "merge_type", merge_type)
68
67
 
69
- @property
68
+ @_builtins.property
70
69
  @pulumi.getter
71
- def content(self) -> pulumi.Input[builtins.str]:
70
+ def content(self) -> pulumi.Input[_builtins.str]:
72
71
  """
73
72
  Body content for the part.
74
73
  """
75
74
  return pulumi.get(self, "content")
76
75
 
77
76
  @content.setter
78
- def content(self, value: pulumi.Input[builtins.str]):
77
+ def content(self, value: pulumi.Input[_builtins.str]):
79
78
  pulumi.set(self, "content", value)
80
79
 
81
- @property
80
+ @_builtins.property
82
81
  @pulumi.getter(name="contentType")
83
- def content_type(self) -> Optional[pulumi.Input[builtins.str]]:
82
+ def content_type(self) -> Optional[pulumi.Input[_builtins.str]]:
84
83
  """
85
84
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
86
85
  """
87
86
  return pulumi.get(self, "content_type")
88
87
 
89
88
  @content_type.setter
90
- def content_type(self, value: Optional[pulumi.Input[builtins.str]]):
89
+ def content_type(self, value: Optional[pulumi.Input[_builtins.str]]):
91
90
  pulumi.set(self, "content_type", value)
92
91
 
93
- @property
92
+ @_builtins.property
94
93
  @pulumi.getter
95
- def filename(self) -> Optional[pulumi.Input[builtins.str]]:
94
+ def filename(self) -> Optional[pulumi.Input[_builtins.str]]:
96
95
  """
97
96
  A filename to report in the header for the part.
98
97
  """
99
98
  return pulumi.get(self, "filename")
100
99
 
101
100
  @filename.setter
102
- def filename(self, value: Optional[pulumi.Input[builtins.str]]):
101
+ def filename(self, value: Optional[pulumi.Input[_builtins.str]]):
103
102
  pulumi.set(self, "filename", value)
104
103
 
105
- @property
104
+ @_builtins.property
106
105
  @pulumi.getter(name="mergeType")
107
- def merge_type(self) -> Optional[pulumi.Input[builtins.str]]:
106
+ def merge_type(self) -> Optional[pulumi.Input[_builtins.str]]:
108
107
  """
109
108
  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).
110
109
  """
111
110
  return pulumi.get(self, "merge_type")
112
111
 
113
112
  @merge_type.setter
114
- def merge_type(self, value: Optional[pulumi.Input[builtins.str]]):
113
+ def merge_type(self, value: Optional[pulumi.Input[_builtins.str]]):
115
114
  pulumi.set(self, "merge_type", value)
116
115
 
117
116
 
118
117
  if not MYPY:
119
118
  class GetConfigPartArgsDict(TypedDict):
120
- content: builtins.str
119
+ content: _builtins.str
121
120
  """
122
121
  Body content for the part.
123
122
  """
124
- content_type: NotRequired[builtins.str]
123
+ content_type: NotRequired[_builtins.str]
125
124
  """
126
125
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
127
126
  """
128
- filename: NotRequired[builtins.str]
127
+ filename: NotRequired[_builtins.str]
129
128
  """
130
129
  A filename to report in the header for the part.
131
130
  """
132
- merge_type: NotRequired[builtins.str]
131
+ merge_type: NotRequired[_builtins.str]
133
132
  """
134
133
  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).
135
134
  """
@@ -139,15 +138,15 @@ elif False:
139
138
  @pulumi.input_type
140
139
  class GetConfigPartArgs:
141
140
  def __init__(__self__, *,
142
- content: builtins.str,
143
- content_type: Optional[builtins.str] = None,
144
- filename: Optional[builtins.str] = None,
145
- merge_type: Optional[builtins.str] = None):
141
+ content: _builtins.str,
142
+ content_type: Optional[_builtins.str] = None,
143
+ filename: Optional[_builtins.str] = None,
144
+ merge_type: Optional[_builtins.str] = None):
146
145
  """
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).
146
+ :param _builtins.str content: Body content for the part.
147
+ :param _builtins.str content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
148
+ :param _builtins.str filename: A filename to report in the header for the part.
149
+ :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).
151
150
  """
152
151
  pulumi.set(__self__, "content", content)
153
152
  if content_type is None:
@@ -159,52 +158,52 @@ class GetConfigPartArgs:
159
158
  if merge_type is not None:
160
159
  pulumi.set(__self__, "merge_type", merge_type)
161
160
 
162
- @property
161
+ @_builtins.property
163
162
  @pulumi.getter
164
- def content(self) -> builtins.str:
163
+ def content(self) -> _builtins.str:
165
164
  """
166
165
  Body content for the part.
167
166
  """
168
167
  return pulumi.get(self, "content")
169
168
 
170
169
  @content.setter
171
- def content(self, value: builtins.str):
170
+ def content(self, value: _builtins.str):
172
171
  pulumi.set(self, "content", value)
173
172
 
174
- @property
173
+ @_builtins.property
175
174
  @pulumi.getter(name="contentType")
176
- def content_type(self) -> Optional[builtins.str]:
175
+ def content_type(self) -> Optional[_builtins.str]:
177
176
  """
178
177
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
179
178
  """
180
179
  return pulumi.get(self, "content_type")
181
180
 
182
181
  @content_type.setter
183
- def content_type(self, value: Optional[builtins.str]):
182
+ def content_type(self, value: Optional[_builtins.str]):
184
183
  pulumi.set(self, "content_type", value)
185
184
 
186
- @property
185
+ @_builtins.property
187
186
  @pulumi.getter
188
- def filename(self) -> Optional[builtins.str]:
187
+ def filename(self) -> Optional[_builtins.str]:
189
188
  """
190
189
  A filename to report in the header for the part.
191
190
  """
192
191
  return pulumi.get(self, "filename")
193
192
 
194
193
  @filename.setter
195
- def filename(self, value: Optional[builtins.str]):
194
+ def filename(self, value: Optional[_builtins.str]):
196
195
  pulumi.set(self, "filename", value)
197
196
 
198
- @property
197
+ @_builtins.property
199
198
  @pulumi.getter(name="mergeType")
200
- def merge_type(self) -> Optional[builtins.str]:
199
+ def merge_type(self) -> Optional[_builtins.str]:
201
200
  """
202
201
  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).
203
202
  """
204
203
  return pulumi.get(self, "merge_type")
205
204
 
206
205
  @merge_type.setter
207
- def merge_type(self, value: Optional[builtins.str]):
206
+ def merge_type(self, value: Optional[_builtins.str]):
208
207
  pulumi.set(self, "merge_type", value)
209
208
 
210
209
 
@@ -1,5 +1,5 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
5
 
@@ -1,9 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
@@ -22,15 +21,15 @@ __all__ = ['ConfigArgs', 'Config']
22
21
  @pulumi.input_type
23
22
  class ConfigArgs:
24
23
  def __init__(__self__, *,
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,
24
+ base64_encode: Optional[pulumi.Input[_builtins.bool]] = None,
25
+ boundary: Optional[pulumi.Input[_builtins.str]] = None,
26
+ gzip: Optional[pulumi.Input[_builtins.bool]] = None,
28
27
  parts: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigPartArgs']]]] = None):
29
28
  """
30
29
  The set of arguments for constructing a Config resource.
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`.
30
+ :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`.
31
+ :param pulumi.Input[_builtins.str] boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
32
+ :param pulumi.Input[_builtins.bool] gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
34
33
  :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.
35
34
  """
36
35
  if base64_encode is not None:
@@ -42,43 +41,43 @@ class ConfigArgs:
42
41
  if parts is not None:
43
42
  pulumi.set(__self__, "parts", parts)
44
43
 
45
- @property
44
+ @_builtins.property
46
45
  @pulumi.getter(name="base64Encode")
47
- def base64_encode(self) -> Optional[pulumi.Input[builtins.bool]]:
46
+ def base64_encode(self) -> Optional[pulumi.Input[_builtins.bool]]:
48
47
  """
49
48
  Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
50
49
  """
51
50
  return pulumi.get(self, "base64_encode")
52
51
 
53
52
  @base64_encode.setter
54
- def base64_encode(self, value: Optional[pulumi.Input[builtins.bool]]):
53
+ def base64_encode(self, value: Optional[pulumi.Input[_builtins.bool]]):
55
54
  pulumi.set(self, "base64_encode", value)
56
55
 
57
- @property
56
+ @_builtins.property
58
57
  @pulumi.getter
59
- def boundary(self) -> Optional[pulumi.Input[builtins.str]]:
58
+ def boundary(self) -> Optional[pulumi.Input[_builtins.str]]:
60
59
  """
61
60
  Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
62
61
  """
63
62
  return pulumi.get(self, "boundary")
64
63
 
65
64
  @boundary.setter
66
- def boundary(self, value: Optional[pulumi.Input[builtins.str]]):
65
+ def boundary(self, value: Optional[pulumi.Input[_builtins.str]]):
67
66
  pulumi.set(self, "boundary", value)
68
67
 
69
- @property
68
+ @_builtins.property
70
69
  @pulumi.getter
71
- def gzip(self) -> Optional[pulumi.Input[builtins.bool]]:
70
+ def gzip(self) -> Optional[pulumi.Input[_builtins.bool]]:
72
71
  """
73
72
  Specify whether or not to gzip the `rendered` output. Defaults to `true`.
74
73
  """
75
74
  return pulumi.get(self, "gzip")
76
75
 
77
76
  @gzip.setter
78
- def gzip(self, value: Optional[pulumi.Input[builtins.bool]]):
77
+ def gzip(self, value: Optional[pulumi.Input[_builtins.bool]]):
79
78
  pulumi.set(self, "gzip", value)
80
79
 
81
- @property
80
+ @_builtins.property
82
81
  @pulumi.getter
83
82
  def parts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ConfigPartArgs']]]]:
84
83
  """
@@ -94,18 +93,18 @@ class ConfigArgs:
94
93
  @pulumi.input_type
95
94
  class _ConfigState:
96
95
  def __init__(__self__, *,
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,
96
+ base64_encode: Optional[pulumi.Input[_builtins.bool]] = None,
97
+ boundary: Optional[pulumi.Input[_builtins.str]] = None,
98
+ gzip: Optional[pulumi.Input[_builtins.bool]] = None,
100
99
  parts: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigPartArgs']]]] = None,
101
- rendered: Optional[pulumi.Input[builtins.str]] = None):
100
+ rendered: Optional[pulumi.Input[_builtins.str]] = None):
102
101
  """
103
102
  Input properties used for looking up and filtering Config resources.
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`.
103
+ :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`.
104
+ :param pulumi.Input[_builtins.str] boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
105
+ :param pulumi.Input[_builtins.bool] gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
107
106
  :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.
108
- :param pulumi.Input[builtins.str] rendered: The final rendered multi-part cloud-init config.
107
+ :param pulumi.Input[_builtins.str] rendered: The final rendered multi-part cloud-init config.
109
108
  """
110
109
  if base64_encode is not None:
111
110
  pulumi.set(__self__, "base64_encode", base64_encode)
@@ -118,43 +117,43 @@ class _ConfigState:
118
117
  if rendered is not None:
119
118
  pulumi.set(__self__, "rendered", rendered)
120
119
 
121
- @property
120
+ @_builtins.property
122
121
  @pulumi.getter(name="base64Encode")
123
- def base64_encode(self) -> Optional[pulumi.Input[builtins.bool]]:
122
+ def base64_encode(self) -> Optional[pulumi.Input[_builtins.bool]]:
124
123
  """
125
124
  Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
126
125
  """
127
126
  return pulumi.get(self, "base64_encode")
128
127
 
129
128
  @base64_encode.setter
130
- def base64_encode(self, value: Optional[pulumi.Input[builtins.bool]]):
129
+ def base64_encode(self, value: Optional[pulumi.Input[_builtins.bool]]):
131
130
  pulumi.set(self, "base64_encode", value)
132
131
 
133
- @property
132
+ @_builtins.property
134
133
  @pulumi.getter
135
- def boundary(self) -> Optional[pulumi.Input[builtins.str]]:
134
+ def boundary(self) -> Optional[pulumi.Input[_builtins.str]]:
136
135
  """
137
136
  Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
138
137
  """
139
138
  return pulumi.get(self, "boundary")
140
139
 
141
140
  @boundary.setter
142
- def boundary(self, value: Optional[pulumi.Input[builtins.str]]):
141
+ def boundary(self, value: Optional[pulumi.Input[_builtins.str]]):
143
142
  pulumi.set(self, "boundary", value)
144
143
 
145
- @property
144
+ @_builtins.property
146
145
  @pulumi.getter
147
- def gzip(self) -> Optional[pulumi.Input[builtins.bool]]:
146
+ def gzip(self) -> Optional[pulumi.Input[_builtins.bool]]:
148
147
  """
149
148
  Specify whether or not to gzip the `rendered` output. Defaults to `true`.
150
149
  """
151
150
  return pulumi.get(self, "gzip")
152
151
 
153
152
  @gzip.setter
154
- def gzip(self, value: Optional[pulumi.Input[builtins.bool]]):
153
+ def gzip(self, value: Optional[pulumi.Input[_builtins.bool]]):
155
154
  pulumi.set(self, "gzip", value)
156
155
 
157
- @property
156
+ @_builtins.property
158
157
  @pulumi.getter
159
158
  def parts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ConfigPartArgs']]]]:
160
159
  """
@@ -166,27 +165,28 @@ class _ConfigState:
166
165
  def parts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ConfigPartArgs']]]]):
167
166
  pulumi.set(self, "parts", value)
168
167
 
169
- @property
168
+ @_builtins.property
170
169
  @pulumi.getter
171
- def rendered(self) -> Optional[pulumi.Input[builtins.str]]:
170
+ def rendered(self) -> Optional[pulumi.Input[_builtins.str]]:
172
171
  """
173
172
  The final rendered multi-part cloud-init config.
174
173
  """
175
174
  return pulumi.get(self, "rendered")
176
175
 
177
176
  @rendered.setter
178
- def rendered(self, value: Optional[pulumi.Input[builtins.str]]):
177
+ def rendered(self, value: Optional[pulumi.Input[_builtins.str]]):
179
178
  pulumi.set(self, "rendered", value)
180
179
 
181
180
 
181
+ @pulumi.type_token("cloudinit:index/config:Config")
182
182
  class Config(pulumi.CustomResource):
183
183
  @overload
184
184
  def __init__(__self__,
185
185
  resource_name: str,
186
186
  opts: Optional[pulumi.ResourceOptions] = 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,
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,
190
190
  parts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigPartArgs', 'ConfigPartArgsDict']]]]] = None,
191
191
  __props__=None):
192
192
  """
@@ -211,9 +211,9 @@ class Config(pulumi.CustomResource):
211
211
 
212
212
  :param str resource_name: The name of the resource.
213
213
  :param pulumi.ResourceOptions opts: Options for the resource.
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`.
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`.
217
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.
218
218
  """
219
219
  ...
@@ -257,9 +257,9 @@ class Config(pulumi.CustomResource):
257
257
  def _internal_init(__self__,
258
258
  resource_name: str,
259
259
  opts: Optional[pulumi.ResourceOptions] = 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,
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,
263
263
  parts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigPartArgs', 'ConfigPartArgsDict']]]]] = None,
264
264
  __props__=None):
265
265
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -285,11 +285,11 @@ class Config(pulumi.CustomResource):
285
285
  def get(resource_name: str,
286
286
  id: pulumi.Input[str],
287
287
  opts: Optional[pulumi.ResourceOptions] = 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,
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,
291
291
  parts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ConfigPartArgs', 'ConfigPartArgsDict']]]]] = None,
292
- rendered: Optional[pulumi.Input[builtins.str]] = None) -> 'Config':
292
+ rendered: Optional[pulumi.Input[_builtins.str]] = None) -> 'Config':
293
293
  """
294
294
  Get an existing Config resource's state with the given name, id, and optional extra
295
295
  properties used to qualify the lookup.
@@ -297,11 +297,11 @@ class Config(pulumi.CustomResource):
297
297
  :param str resource_name: The unique name of the resulting resource.
298
298
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
299
299
  :param pulumi.ResourceOptions opts: Options for the resource.
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`.
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`.
303
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.
304
- :param pulumi.Input[builtins.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.
305
305
  """
306
306
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
307
307
 
@@ -314,31 +314,31 @@ class Config(pulumi.CustomResource):
314
314
  __props__.__dict__["rendered"] = rendered
315
315
  return Config(resource_name, opts=opts, __props__=__props__)
316
316
 
317
- @property
317
+ @_builtins.property
318
318
  @pulumi.getter(name="base64Encode")
319
- def base64_encode(self) -> pulumi.Output[builtins.bool]:
319
+ def base64_encode(self) -> pulumi.Output[_builtins.bool]:
320
320
  """
321
321
  Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
322
322
  """
323
323
  return pulumi.get(self, "base64_encode")
324
324
 
325
- @property
325
+ @_builtins.property
326
326
  @pulumi.getter
327
- def boundary(self) -> pulumi.Output[builtins.str]:
327
+ def boundary(self) -> pulumi.Output[_builtins.str]:
328
328
  """
329
329
  Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
330
330
  """
331
331
  return pulumi.get(self, "boundary")
332
332
 
333
- @property
333
+ @_builtins.property
334
334
  @pulumi.getter
335
- def gzip(self) -> pulumi.Output[builtins.bool]:
335
+ def gzip(self) -> pulumi.Output[_builtins.bool]:
336
336
  """
337
337
  Specify whether or not to gzip the `rendered` output. Defaults to `true`.
338
338
  """
339
339
  return pulumi.get(self, "gzip")
340
340
 
341
- @property
341
+ @_builtins.property
342
342
  @pulumi.getter
343
343
  def parts(self) -> pulumi.Output[Optional[Sequence['outputs.ConfigPart']]]:
344
344
  """
@@ -346,9 +346,9 @@ class Config(pulumi.CustomResource):
346
346
  """
347
347
  return pulumi.get(self, "parts")
348
348
 
349
- @property
349
+ @_builtins.property
350
350
  @pulumi.getter
351
- def rendered(self) -> pulumi.Output[builtins.str]:
351
+ def rendered(self) -> pulumi.Output[_builtins.str]:
352
352
  """
353
353
  The final rendered multi-part cloud-init config.
354
354
  """
@@ -1,9 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
@@ -49,39 +48,39 @@ class GetConfigResult:
49
48
  raise TypeError("Expected argument 'rendered' to be a str")
50
49
  pulumi.set(__self__, "rendered", rendered)
51
50
 
52
- @property
51
+ @_builtins.property
53
52
  @pulumi.getter(name="base64Encode")
54
- def base64_encode(self) -> builtins.bool:
53
+ def base64_encode(self) -> _builtins.bool:
55
54
  """
56
55
  Specify whether or not to base64 encode the `rendered` output. Defaults to `true`, and cannot be disabled if gzip is `true`.
57
56
  """
58
57
  return pulumi.get(self, "base64_encode")
59
58
 
60
- @property
59
+ @_builtins.property
61
60
  @pulumi.getter
62
- def boundary(self) -> builtins.str:
61
+ def boundary(self) -> _builtins.str:
63
62
  """
64
63
  Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
65
64
  """
66
65
  return pulumi.get(self, "boundary")
67
66
 
68
- @property
67
+ @_builtins.property
69
68
  @pulumi.getter
70
- def gzip(self) -> builtins.bool:
69
+ def gzip(self) -> _builtins.bool:
71
70
  """
72
71
  Specify whether or not to gzip the `rendered` output. Defaults to `true`.
73
72
  """
74
73
  return pulumi.get(self, "gzip")
75
74
 
76
- @property
75
+ @_builtins.property
77
76
  @pulumi.getter
78
- def id(self) -> builtins.str:
77
+ def id(self) -> _builtins.str:
79
78
  """
80
79
  [CRC-32](https://pkg.go.dev/hash/crc32) checksum of `rendered` cloud-init config.
81
80
  """
82
81
  return pulumi.get(self, "id")
83
82
 
84
- @property
83
+ @_builtins.property
85
84
  @pulumi.getter
86
85
  def parts(self) -> Optional[Sequence['outputs.GetConfigPartResult']]:
87
86
  """
@@ -89,9 +88,9 @@ class GetConfigResult:
89
88
  """
90
89
  return pulumi.get(self, "parts")
91
90
 
92
- @property
91
+ @_builtins.property
93
92
  @pulumi.getter
94
- def rendered(self) -> builtins.str:
93
+ def rendered(self) -> _builtins.str:
95
94
  """
96
95
  The final rendered multi-part cloud-init config.
97
96
  """
@@ -112,9 +111,9 @@ class AwaitableGetConfigResult(GetConfigResult):
112
111
  rendered=self.rendered)
113
112
 
114
113
 
115
- def get_config(base64_encode: Optional[builtins.bool] = None,
116
- boundary: Optional[builtins.str] = None,
117
- gzip: Optional[builtins.bool] = None,
114
+ def get_config(base64_encode: Optional[_builtins.bool] = None,
115
+ boundary: Optional[_builtins.str] = None,
116
+ gzip: Optional[_builtins.bool] = None,
118
117
  parts: Optional[Sequence[Union['GetConfigPartArgs', 'GetConfigPartArgsDict']]] = None,
119
118
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConfigResult:
120
119
  """
@@ -135,9 +134,9 @@ def get_config(base64_encode: Optional[builtins.bool] = None,
135
134
  <!-- This schema was originally generated with tfplugindocs, then modified manually to ensure `part` block list is noted as Required -->
136
135
 
137
136
 
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`.
137
+ :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`.
138
+ :param _builtins.str boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
139
+ :param _builtins.bool gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
141
140
  :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.
142
141
  """
143
142
  __args__ = dict()
@@ -155,9 +154,9 @@ def get_config(base64_encode: Optional[builtins.bool] = None,
155
154
  id=pulumi.get(__ret__, 'id'),
156
155
  parts=pulumi.get(__ret__, 'parts'),
157
156
  rendered=pulumi.get(__ret__, 'rendered'))
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,
157
+ def get_config_output(base64_encode: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
158
+ boundary: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
159
+ gzip: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
161
160
  parts: Optional[pulumi.Input[Optional[Sequence[Union['GetConfigPartArgs', 'GetConfigPartArgsDict']]]]] = None,
162
161
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetConfigResult]:
163
162
  """
@@ -178,9 +177,9 @@ def get_config_output(base64_encode: Optional[pulumi.Input[Optional[builtins.boo
178
177
  <!-- This schema was originally generated with tfplugindocs, then modified manually to ensure `part` block list is noted as Required -->
179
178
 
180
179
 
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`.
180
+ :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`.
181
+ :param _builtins.str boundary: Specify the Writer's default boundary separator. Defaults to `MIMEBOUNDARY`.
182
+ :param _builtins.bool gzip: Specify whether or not to gzip the `rendered` output. Defaults to `true`.
184
183
  :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.
185
184
  """
186
185
  __args__ = dict()
@@ -1,9 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
@@ -42,15 +41,15 @@ class ConfigPart(dict):
42
41
  return super().get(key, default)
43
42
 
44
43
  def __init__(__self__, *,
45
- content: builtins.str,
46
- content_type: Optional[builtins.str] = None,
47
- filename: Optional[builtins.str] = None,
48
- merge_type: Optional[builtins.str] = None):
44
+ content: _builtins.str,
45
+ content_type: Optional[_builtins.str] = None,
46
+ filename: Optional[_builtins.str] = None,
47
+ merge_type: Optional[_builtins.str] = None):
49
48
  """
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).
49
+ :param _builtins.str content: Body content for the part.
50
+ :param _builtins.str content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
51
+ :param _builtins.str filename: A filename to report in the header for the part.
52
+ :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).
54
53
  """
55
54
  pulumi.set(__self__, "content", content)
56
55
  if content_type is not None:
@@ -60,33 +59,33 @@ class ConfigPart(dict):
60
59
  if merge_type is not None:
61
60
  pulumi.set(__self__, "merge_type", merge_type)
62
61
 
63
- @property
62
+ @_builtins.property
64
63
  @pulumi.getter
65
- def content(self) -> builtins.str:
64
+ def content(self) -> _builtins.str:
66
65
  """
67
66
  Body content for the part.
68
67
  """
69
68
  return pulumi.get(self, "content")
70
69
 
71
- @property
70
+ @_builtins.property
72
71
  @pulumi.getter(name="contentType")
73
- def content_type(self) -> Optional[builtins.str]:
72
+ def content_type(self) -> Optional[_builtins.str]:
74
73
  """
75
74
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
76
75
  """
77
76
  return pulumi.get(self, "content_type")
78
77
 
79
- @property
78
+ @_builtins.property
80
79
  @pulumi.getter
81
- def filename(self) -> Optional[builtins.str]:
80
+ def filename(self) -> Optional[_builtins.str]:
82
81
  """
83
82
  A filename to report in the header for the part.
84
83
  """
85
84
  return pulumi.get(self, "filename")
86
85
 
87
- @property
86
+ @_builtins.property
88
87
  @pulumi.getter(name="mergeType")
89
- def merge_type(self) -> Optional[builtins.str]:
88
+ def merge_type(self) -> Optional[_builtins.str]:
90
89
  """
91
90
  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).
92
91
  """
@@ -96,15 +95,15 @@ class ConfigPart(dict):
96
95
  @pulumi.output_type
97
96
  class GetConfigPartResult(dict):
98
97
  def __init__(__self__, *,
99
- content: builtins.str,
100
- content_type: Optional[builtins.str] = None,
101
- filename: Optional[builtins.str] = None,
102
- merge_type: Optional[builtins.str] = None):
98
+ content: _builtins.str,
99
+ content_type: Optional[_builtins.str] = None,
100
+ filename: Optional[_builtins.str] = None,
101
+ merge_type: Optional[_builtins.str] = None):
103
102
  """
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).
103
+ :param _builtins.str content: Body content for the part.
104
+ :param _builtins.str content_type: A MIME-style content type to report in the header for the part. Defaults to `text/plain`
105
+ :param _builtins.str filename: A filename to report in the header for the part.
106
+ :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).
108
107
  """
109
108
  pulumi.set(__self__, "content", content)
110
109
  if content_type is None:
@@ -116,33 +115,33 @@ class GetConfigPartResult(dict):
116
115
  if merge_type is not None:
117
116
  pulumi.set(__self__, "merge_type", merge_type)
118
117
 
119
- @property
118
+ @_builtins.property
120
119
  @pulumi.getter
121
- def content(self) -> builtins.str:
120
+ def content(self) -> _builtins.str:
122
121
  """
123
122
  Body content for the part.
124
123
  """
125
124
  return pulumi.get(self, "content")
126
125
 
127
- @property
126
+ @_builtins.property
128
127
  @pulumi.getter(name="contentType")
129
- def content_type(self) -> Optional[builtins.str]:
128
+ def content_type(self) -> Optional[_builtins.str]:
130
129
  """
131
130
  A MIME-style content type to report in the header for the part. Defaults to `text/plain`
132
131
  """
133
132
  return pulumi.get(self, "content_type")
134
133
 
135
- @property
134
+ @_builtins.property
136
135
  @pulumi.getter
137
- def filename(self) -> Optional[builtins.str]:
136
+ def filename(self) -> Optional[_builtins.str]:
138
137
  """
139
138
  A filename to report in the header for the part.
140
139
  """
141
140
  return pulumi.get(self, "filename")
142
141
 
143
- @property
142
+ @_builtins.property
144
143
  @pulumi.getter(name="mergeType")
145
- def merge_type(self) -> Optional[builtins.str]:
144
+ def merge_type(self) -> Optional[_builtins.str]:
146
145
  """
147
146
  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).
148
147
  """
@@ -1,9 +1,8 @@
1
1
  # coding=utf-8
2
- # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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
@@ -26,6 +25,7 @@ class ProviderArgs:
26
25
  pass
27
26
 
28
27
 
28
+ @pulumi.type_token("pulumi:providers:cloudinit")
29
29
  class Provider(pulumi.ProviderResource):
30
30
  @overload
31
31
  def __init__(__self__,
@@ -83,3 +83,23 @@ class Provider(pulumi.ProviderResource):
83
83
  __props__,
84
84
  opts)
85
85
 
86
+ @pulumi.output_type
87
+ class TerraformConfigResult:
88
+ def __init__(__self__, result=None):
89
+ if result and not isinstance(result, dict):
90
+ raise TypeError("Expected argument 'result' to be a dict")
91
+ pulumi.set(__self__, "result", result)
92
+
93
+ @_builtins.property
94
+ @pulumi.getter
95
+ def result(self) -> Mapping[str, Any]:
96
+ return pulumi.get(self, "result")
97
+
98
+ def terraform_config(__self__) -> pulumi.Output['Provider.TerraformConfigResult']:
99
+ """
100
+ This function returns a Terraform config object with terraform-namecased keys,to be used with the Terraform Module Provider.
101
+ """
102
+ __args__ = dict()
103
+ __args__['__self__'] = __self__
104
+ return pulumi.runtime.call('pulumi:providers:cloudinit/terraformConfig', __args__, res=__self__, typ=Provider.TerraformConfigResult)
105
+
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "cloudinit",
4
- "version": "1.5.0-alpha.1744262796"
4
+ "version": "1.5.0-alpha.1766467727"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_cloudinit
3
- Version: 1.5.0a1744262796
3
+ Version: 1.5.0a1766467727
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
@@ -9,9 +9,9 @@ Keywords: pulumi,cloudinit
9
9
  Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
11
  Requires-Dist: parver>=0.2.1
12
- Requires-Dist: pulumi<4.0.0,>=3.142.0
12
+ Requires-Dist: pulumi<4.0.0,>=3.165.0
13
13
  Requires-Dist: semver>=2.8.1
14
- Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
14
+ Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
15
15
 
16
16
  [![Actions Status](https://github.com/pulumi/pulumi-cloudinit/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-cloudinit/actions)
17
17
  [![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
@@ -0,0 +1,13 @@
1
+ pulumi_cloudinit/__init__.py,sha256=dCbR8UDUSFxRBZ3PwqgyGL9mYvc0dgcnHCooaKSpHNs,753
2
+ pulumi_cloudinit/_inputs.py,sha256=ZFzu_1amwJEgAXGX3qVq1ce1vALKJWdKvo3rRXFyvTQ,7860
3
+ pulumi_cloudinit/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
+ pulumi_cloudinit/config.py,sha256=5APVFdPvhfvFq1brIq3weupt-bZWcYrHtuu1kMK1h9o,17797
5
+ pulumi_cloudinit/get_config.py,sha256=C0QMUmrOEt0XIocggs2fhM-K8PiJjKPW9XWX9sP8d7s,9668
6
+ pulumi_cloudinit/outputs.py,sha256=cRqYd_SKgB2bvA0EazBLB7e-dBTrbm5O_mnk1UAiLmM,5657
7
+ pulumi_cloudinit/provider.py,sha256=pB_GQp3QWjjmTYmrAJTYCPR8EkAA3Elk1nmTi7BR9ak,4533
8
+ pulumi_cloudinit/pulumi-plugin.json,sha256=mTeFxBYqqBKaRob9PN-5OQJ-NKmmZrIwkEWjHUSZ3Z8,85
9
+ pulumi_cloudinit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ pulumi_cloudinit-1.5.0a1766467727.dist-info/METADATA,sha256=YUDVWlZBwuL9bifYi386YuaaE1v7jWhp95ldhRg2mFM,2369
11
+ pulumi_cloudinit-1.5.0a1766467727.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
+ pulumi_cloudinit-1.5.0a1766467727.dist-info/top_level.txt,sha256=r4QYaTIAq7VhHfjPgOmRvtkrHwZffd3a78VTmuaWcg8,17
13
+ pulumi_cloudinit-1.5.0a1766467727.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,13 +0,0 @@
1
- pulumi_cloudinit/__init__.py,sha256=425_ypo3fISOjZgNl7w65tWF8kWjXPEmvCVww6_Bl_g,758
2
- pulumi_cloudinit/_inputs.py,sha256=mq6GpHZR_1zQsJiJ0ry912eKG0JuRcx75MdUee7o0eM,7757
3
- pulumi_cloudinit/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
- pulumi_cloudinit/config.py,sha256=ke235UVqfzXSZo_KWIX_Iny2x64jzA79gqwv1TtDhh8,17573
5
- pulumi_cloudinit/get_config.py,sha256=olYGwU8I2GEIQusiuVWf0QxQy3MASoXhZq5qVZo_PZ8,9608
6
- pulumi_cloudinit/outputs.py,sha256=Ui5Z6TiYx97XK1iUtcyR839qj5fIJBy0ZLof2ckW1Zo,5570
7
- pulumi_cloudinit/provider.py,sha256=4bqKNztClIYV2UROX1y4tGmFK21e9YvRqPfNKnQVjEQ,3619
8
- pulumi_cloudinit/pulumi-plugin.json,sha256=BAWfOvfERsMuXdOZLvrMcT3GQ-MLJ6nId3JXBWNUgkw,85
9
- pulumi_cloudinit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- pulumi_cloudinit-1.5.0a1744262796.dist-info/METADATA,sha256=YpnepAGON3phK8liV6GtFuEp2r6942pz5Ql-Bs2R2EI,2366
11
- pulumi_cloudinit-1.5.0a1744262796.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
12
- pulumi_cloudinit-1.5.0a1744262796.dist-info/top_level.txt,sha256=r4QYaTIAq7VhHfjPgOmRvtkrHwZffd3a78VTmuaWcg8,17
13
- pulumi_cloudinit-1.5.0a1744262796.dist-info/RECORD,,