pulumi-aiven 6.15.0a1715231657__py3-none-any.whl → 6.15.0a1715303637__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-aiven might be problematic. Click here for more details.

@@ -23,9 +23,6 @@ class ClickhouseDatabaseArgs:
23
23
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
24
24
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
25
25
  :param pulumi.Input[str] name: The name of the Clickhouse database. Changing this property forces recreation of the resource.
26
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the Clickhouse database from being deleted by
27
- Terraform. It is recommended to enable this for any production Clickhouse databases containing critical data. The
28
- default value is `false`.
29
26
  """
30
27
  pulumi.set(__self__, "project", project)
31
28
  pulumi.set(__self__, "service_name", service_name)
@@ -73,11 +70,6 @@ class ClickhouseDatabaseArgs:
73
70
  @property
74
71
  @pulumi.getter(name="terminationProtection")
75
72
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
76
- """
77
- It is a Terraform client-side deletion protections, which prevents the Clickhouse database from being deleted by
78
- Terraform. It is recommended to enable this for any production Clickhouse databases containing critical data. The
79
- default value is `false`.
80
- """
81
73
  return pulumi.get(self, "termination_protection")
82
74
 
83
75
  @termination_protection.setter
@@ -97,9 +89,6 @@ class _ClickhouseDatabaseState:
97
89
  :param pulumi.Input[str] name: The name of the Clickhouse database. Changing this property forces recreation of the resource.
98
90
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
99
91
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
100
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the Clickhouse database from being deleted by
101
- Terraform. It is recommended to enable this for any production Clickhouse databases containing critical data. The
102
- default value is `false`.
103
92
  """
104
93
  if name is not None:
105
94
  pulumi.set(__self__, "name", name)
@@ -149,11 +138,6 @@ class _ClickhouseDatabaseState:
149
138
  @property
150
139
  @pulumi.getter(name="terminationProtection")
151
140
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
152
- """
153
- It is a Terraform client-side deletion protections, which prevents the Clickhouse database from being deleted by
154
- Terraform. It is recommended to enable this for any production Clickhouse databases containing critical data. The
155
- default value is `false`.
156
- """
157
141
  return pulumi.get(self, "termination_protection")
158
142
 
159
143
  @termination_protection.setter
@@ -197,9 +181,6 @@ class ClickhouseDatabase(pulumi.CustomResource):
197
181
  :param pulumi.Input[str] name: The name of the Clickhouse database. Changing this property forces recreation of the resource.
198
182
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
199
183
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
200
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the Clickhouse database from being deleted by
201
- Terraform. It is recommended to enable this for any production Clickhouse databases containing critical data. The
202
- default value is `false`.
203
184
  """
204
185
  ...
205
186
  @overload
@@ -288,9 +269,6 @@ class ClickhouseDatabase(pulumi.CustomResource):
288
269
  :param pulumi.Input[str] name: The name of the Clickhouse database. Changing this property forces recreation of the resource.
289
270
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
290
271
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
291
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the Clickhouse database from being deleted by
292
- Terraform. It is recommended to enable this for any production Clickhouse databases containing critical data. The
293
- default value is `false`.
294
272
  """
295
273
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
296
274
 
@@ -329,10 +307,5 @@ class ClickhouseDatabase(pulumi.CustomResource):
329
307
  @property
330
308
  @pulumi.getter(name="terminationProtection")
331
309
  def termination_protection(self) -> pulumi.Output[Optional[bool]]:
332
- """
333
- It is a Terraform client-side deletion protections, which prevents the Clickhouse database from being deleted by
334
- Terraform. It is recommended to enable this for any production Clickhouse databases containing critical data. The
335
- default value is `false`.
336
- """
337
310
  return pulumi.get(self, "termination_protection")
338
311
 
@@ -25,8 +25,6 @@ class InfluxdbDatabaseArgs:
25
25
  reference. Changing this property forces recreation of the resource.
26
26
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
27
27
  reference. Changing this property forces recreation of the resource.
28
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
29
- recommended to enable this for any production databases containing critical data. The default value is `false`.
30
28
  """
31
29
  pulumi.set(__self__, "database_name", database_name)
32
30
  pulumi.set(__self__, "project", project)
@@ -75,10 +73,6 @@ class InfluxdbDatabaseArgs:
75
73
  @property
76
74
  @pulumi.getter(name="terminationProtection")
77
75
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
78
- """
79
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
80
- recommended to enable this for any production databases containing critical data. The default value is `false`.
81
- """
82
76
  return pulumi.get(self, "termination_protection")
83
77
 
84
78
  @termination_protection.setter
@@ -100,8 +94,6 @@ class _InfluxdbDatabaseState:
100
94
  reference. Changing this property forces recreation of the resource.
101
95
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
102
96
  reference. Changing this property forces recreation of the resource.
103
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
104
- recommended to enable this for any production databases containing critical data. The default value is `false`.
105
97
  """
106
98
  if database_name is not None:
107
99
  pulumi.set(__self__, "database_name", database_name)
@@ -153,10 +145,6 @@ class _InfluxdbDatabaseState:
153
145
  @property
154
146
  @pulumi.getter(name="terminationProtection")
155
147
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
156
- """
157
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
158
- recommended to enable this for any production databases containing critical data. The default value is `false`.
159
- """
160
148
  return pulumi.get(self, "termination_protection")
161
149
 
162
150
  @termination_protection.setter
@@ -183,8 +171,6 @@ class InfluxdbDatabase(pulumi.CustomResource):
183
171
  reference. Changing this property forces recreation of the resource.
184
172
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
185
173
  reference. Changing this property forces recreation of the resource.
186
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
187
- recommended to enable this for any production databases containing critical data. The default value is `false`.
188
174
  """
189
175
  ...
190
176
  @overload
@@ -258,8 +244,6 @@ class InfluxdbDatabase(pulumi.CustomResource):
258
244
  reference. Changing this property forces recreation of the resource.
259
245
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a
260
246
  reference. Changing this property forces recreation of the resource.
261
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
262
- recommended to enable this for any production databases containing critical data. The default value is `false`.
263
247
  """
264
248
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
265
249
 
@@ -300,9 +284,5 @@ class InfluxdbDatabase(pulumi.CustomResource):
300
284
  @property
301
285
  @pulumi.getter(name="terminationProtection")
302
286
  def termination_protection(self) -> pulumi.Output[Optional[bool]]:
303
- """
304
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
305
- recommended to enable this for any production databases containing critical data. The default value is `false`.
306
- """
307
287
  return pulumi.get(self, "termination_protection")
308
288
 
@@ -33,8 +33,6 @@ class KafkaTopicArgs:
33
33
  :param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
34
34
  :param pulumi.Input['KafkaTopicConfigArgs'] config: Kafka topic configuration.
35
35
  :param pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]] tags: Tags for the Kafka topic.
36
- :param pulumi.Input[bool] termination_protection: Prevents topics from being deleted by Terraform. It's recommended for topics containing critical data. **Topics can
37
- still be deleted in the Aiven Console.**
38
36
  """
39
37
  pulumi.set(__self__, "partitions", partitions)
40
38
  pulumi.set(__self__, "project", project)
@@ -135,10 +133,6 @@ class KafkaTopicArgs:
135
133
  @property
136
134
  @pulumi.getter(name="terminationProtection")
137
135
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
138
- """
139
- Prevents topics from being deleted by Terraform. It's recommended for topics containing critical data. **Topics can
140
- still be deleted in the Aiven Console.**
141
- """
142
136
  return pulumi.get(self, "termination_protection")
143
137
 
144
138
  @termination_protection.setter
@@ -165,8 +159,6 @@ class _KafkaTopicState:
165
159
  :param pulumi.Input[int] replication: The replication factor for the topic.
166
160
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
167
161
  :param pulumi.Input[Sequence[pulumi.Input['KafkaTopicTagArgs']]] tags: Tags for the Kafka topic.
168
- :param pulumi.Input[bool] termination_protection: Prevents topics from being deleted by Terraform. It's recommended for topics containing critical data. **Topics can
169
- still be deleted in the Aiven Console.**
170
162
  :param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
171
163
  """
172
164
  if config is not None:
@@ -261,10 +253,6 @@ class _KafkaTopicState:
261
253
  @property
262
254
  @pulumi.getter(name="terminationProtection")
263
255
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
264
- """
265
- Prevents topics from being deleted by Terraform. It's recommended for topics containing critical data. **Topics can
266
- still be deleted in the Aiven Console.**
267
- """
268
256
  return pulumi.get(self, "termination_protection")
269
257
 
270
258
  @termination_protection.setter
@@ -334,8 +322,6 @@ class KafkaTopic(pulumi.CustomResource):
334
322
  :param pulumi.Input[int] replication: The replication factor for the topic.
335
323
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
336
324
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTopicTagArgs']]]] tags: Tags for the Kafka topic.
337
- :param pulumi.Input[bool] termination_protection: Prevents topics from being deleted by Terraform. It's recommended for topics containing critical data. **Topics can
338
- still be deleted in the Aiven Console.**
339
325
  :param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
340
326
  """
341
327
  ...
@@ -453,8 +439,6 @@ class KafkaTopic(pulumi.CustomResource):
453
439
  :param pulumi.Input[int] replication: The replication factor for the topic.
454
440
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
455
441
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaTopicTagArgs']]]] tags: Tags for the Kafka topic.
456
- :param pulumi.Input[bool] termination_protection: Prevents topics from being deleted by Terraform. It's recommended for topics containing critical data. **Topics can
457
- still be deleted in the Aiven Console.**
458
442
  :param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
459
443
  """
460
444
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -522,10 +506,6 @@ class KafkaTopic(pulumi.CustomResource):
522
506
  @property
523
507
  @pulumi.getter(name="terminationProtection")
524
508
  def termination_protection(self) -> pulumi.Output[Optional[bool]]:
525
- """
526
- Prevents topics from being deleted by Terraform. It's recommended for topics containing critical data. **Topics can
527
- still be deleted in the Aiven Console.**
528
- """
529
509
  return pulumi.get(self, "termination_protection")
530
510
 
531
511
  @property
@@ -23,8 +23,6 @@ class MysqlDatabaseArgs:
23
23
  :param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
24
24
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
25
25
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
26
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
27
- recommended to enable this for any production databases containing critical data. The default value is `false`.
28
26
  """
29
27
  pulumi.set(__self__, "database_name", database_name)
30
28
  pulumi.set(__self__, "project", project)
@@ -71,10 +69,6 @@ class MysqlDatabaseArgs:
71
69
  @property
72
70
  @pulumi.getter(name="terminationProtection")
73
71
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
74
- """
75
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
76
- recommended to enable this for any production databases containing critical data. The default value is `false`.
77
- """
78
72
  return pulumi.get(self, "termination_protection")
79
73
 
80
74
  @termination_protection.setter
@@ -94,8 +88,6 @@ class _MysqlDatabaseState:
94
88
  :param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
95
89
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
96
90
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
97
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
98
- recommended to enable this for any production databases containing critical data. The default value is `false`.
99
91
  """
100
92
  if database_name is not None:
101
93
  pulumi.set(__self__, "database_name", database_name)
@@ -145,10 +137,6 @@ class _MysqlDatabaseState:
145
137
  @property
146
138
  @pulumi.getter(name="terminationProtection")
147
139
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
148
- """
149
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
150
- recommended to enable this for any production databases containing critical data. The default value is `false`.
151
- """
152
140
  return pulumi.get(self, "termination_protection")
153
141
 
154
142
  @termination_protection.setter
@@ -192,8 +180,6 @@ class MysqlDatabase(pulumi.CustomResource):
192
180
  :param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
193
181
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
194
182
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
195
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
196
- recommended to enable this for any production databases containing critical data. The default value is `false`.
197
183
  """
198
184
  ...
199
185
  @overload
@@ -284,8 +270,6 @@ class MysqlDatabase(pulumi.CustomResource):
284
270
  :param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
285
271
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
286
272
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
287
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
288
- recommended to enable this for any production databases containing critical data. The default value is `false`.
289
273
  """
290
274
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
291
275
 
@@ -324,9 +308,5 @@ class MysqlDatabase(pulumi.CustomResource):
324
308
  @property
325
309
  @pulumi.getter(name="terminationProtection")
326
310
  def termination_protection(self) -> pulumi.Output[Optional[bool]]:
327
- """
328
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
329
- recommended to enable this for any production databases containing critical data. The default value is `false`.
330
- """
331
311
  return pulumi.get(self, "termination_protection")
332
312
 
@@ -27,8 +27,6 @@ class PgDatabaseArgs:
27
27
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
28
28
  :param pulumi.Input[str] lc_collate: Default string sort order (`LC_COLLATE`) of the database. The default value is `en_US.UTF-8`. Changing this property forces recreation of the resource.
29
29
  :param pulumi.Input[str] lc_ctype: Default character classification (`LC_CTYPE`) of the database. The default value is `en_US.UTF-8`. Changing this property forces recreation of the resource.
30
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
31
- recommended to enable this for any production databases containing critical data. The default value is `false`.
32
30
  """
33
31
  pulumi.set(__self__, "database_name", database_name)
34
32
  pulumi.set(__self__, "project", project)
@@ -103,10 +101,6 @@ class PgDatabaseArgs:
103
101
  @property
104
102
  @pulumi.getter(name="terminationProtection")
105
103
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
106
- """
107
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
108
- recommended to enable this for any production databases containing critical data. The default value is `false`.
109
- """
110
104
  return pulumi.get(self, "termination_protection")
111
105
 
112
106
  @termination_protection.setter
@@ -130,8 +124,6 @@ class _PgDatabaseState:
130
124
  :param pulumi.Input[str] lc_ctype: Default character classification (`LC_CTYPE`) of the database. The default value is `en_US.UTF-8`. Changing this property forces recreation of the resource.
131
125
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
132
126
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
133
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
134
- recommended to enable this for any production databases containing critical data. The default value is `false`.
135
127
  """
136
128
  if database_name is not None:
137
129
  pulumi.set(__self__, "database_name", database_name)
@@ -209,10 +201,6 @@ class _PgDatabaseState:
209
201
  @property
210
202
  @pulumi.getter(name="terminationProtection")
211
203
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
212
- """
213
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
214
- recommended to enable this for any production databases containing critical data. The default value is `false`.
215
- """
216
204
  return pulumi.get(self, "termination_protection")
217
205
 
218
206
  @termination_protection.setter
@@ -260,8 +248,6 @@ class PgDatabase(pulumi.CustomResource):
260
248
  :param pulumi.Input[str] lc_ctype: Default character classification (`LC_CTYPE`) of the database. The default value is `en_US.UTF-8`. Changing this property forces recreation of the resource.
261
249
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
262
250
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
263
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
264
- recommended to enable this for any production databases containing critical data. The default value is `false`.
265
251
  """
266
252
  ...
267
253
  @overload
@@ -360,8 +346,6 @@ class PgDatabase(pulumi.CustomResource):
360
346
  :param pulumi.Input[str] lc_ctype: Default character classification (`LC_CTYPE`) of the database. The default value is `en_US.UTF-8`. Changing this property forces recreation of the resource.
361
347
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
362
348
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
363
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
364
- recommended to enable this for any production databases containing critical data. The default value is `false`.
365
349
  """
366
350
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
367
351
 
@@ -418,9 +402,5 @@ class PgDatabase(pulumi.CustomResource):
418
402
  @property
419
403
  @pulumi.getter(name="terminationProtection")
420
404
  def termination_protection(self) -> pulumi.Output[Optional[bool]]:
421
- """
422
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
423
- recommended to enable this for any production databases containing critical data. The default value is `false`.
424
- """
425
405
  return pulumi.get(self, "termination_protection")
426
406
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_aiven
3
- Version: 6.15.0a1715231657
3
+ Version: 6.15.0a1715303637
4
4
  Summary: A Pulumi package for creating and managing Aiven cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -15,7 +15,7 @@ pulumi_aiven/billing_group.py,sha256=32WUU61rJV4hMMho2xdZ6FT4mQBarzhUDHCcRDhvGpU
15
15
  pulumi_aiven/cassandra.py,sha256=7LK6JdNlAnJKudT-Ebo4kvyl4DT14AOJCW-svh1Doto,78026
16
16
  pulumi_aiven/cassandra_user.py,sha256=oD7ArA3pybc68ND_tQL4lG3YxVk37OSkpnp-c2-2MCs,18922
17
17
  pulumi_aiven/clickhouse.py,sha256=2N403DQENgGri5RIVLglZAvhm0nCNVgTu6pguB6BaPg,77668
18
- pulumi_aiven/clickhouse_database.py,sha256=wIumRQnXk9RudW2ieaIDYFVYCfI8Uvxi6iYGZezRmdQ,16741
18
+ pulumi_aiven/clickhouse_database.py,sha256=Z16_Ddf9zKLCV16iO4S_9Wk5TEawdYJyO9nQq5IznxQ,14474
19
19
  pulumi_aiven/clickhouse_grant.py,sha256=G52gABm-fNtzio74wy3ASxG9p0qCRFhBkyVA03uNVpw,25857
20
20
  pulumi_aiven/clickhouse_role.py,sha256=VsWUTH_cS0VOXZt3RmDfHzHaPpjl0q0dPe_9FHyiokY,13185
21
21
  pulumi_aiven/clickhouse_user.py,sha256=v4XaOVURXHPJ8FWww6IRKaXSTMGlmKznplNWK78ksb0,15886
@@ -95,7 +95,7 @@ pulumi_aiven/get_service_integration_endpoint.py,sha256=lq4NjVNKEJzVE2qIey3OypQu
95
95
  pulumi_aiven/get_transit_gateway_vpc_attachment.py,sha256=7KYmjS-lxR5ipZNCkfLQMm0j8AFfRFe-TiTB9kzWY9s,9117
96
96
  pulumi_aiven/grafana.py,sha256=YMBstRgct1Y8Dou5dDuIrgja34ixPSyQYtBC0TqT_Xc,77620
97
97
  pulumi_aiven/influx_db.py,sha256=Umimggf7YJXJy-bT85RblUtAgf6n62s2VYIdPbDbQXs,79426
98
- pulumi_aiven/influxdb_database.py,sha256=DUJquUNzU81LkOwMDvecHaAaK2KOcYXO9ToDCPBsRqg,16069
98
+ pulumi_aiven/influxdb_database.py,sha256=-W78tVLUInwbQS0iHcBC5uToGVOQykTl3WlmO8HAUBQ,14040
99
99
  pulumi_aiven/influxdb_user.py,sha256=SptXu0v0R8S_pFs-veNOZkeIvTrCWnCsAZMHb0Z3rjY,18226
100
100
  pulumi_aiven/kafka.py,sha256=VDbez_3PeMw9Gs-FP9pFh0CBD8fh-8nuNaqDp-33ftw,84657
101
101
  pulumi_aiven/kafka_acl.py,sha256=GLGuq8vGGI55_rjZ6Op6bZcAPTc1Iejgzr0DjS_S2sw,18524
@@ -105,14 +105,14 @@ pulumi_aiven/kafka_mirror_maker.py,sha256=nQTPFV-zIhwyokmQbzuaJTnUyC0y6E_kMC66Dt
105
105
  pulumi_aiven/kafka_schema.py,sha256=dzVrDdWK7QzIlVTSKrRpemuYo0SmDeuygkiVHRWlnnc,22597
106
106
  pulumi_aiven/kafka_schema_configuration.py,sha256=kJVMjKWs19pf0m16wtUnTboIkHj5-5Mqo7yvD6qHUwk,14026
107
107
  pulumi_aiven/kafka_schema_registry_acl.py,sha256=unoLvRS6Xx7oaKmYlyN3_laQrHAmMD4pj7SkZDlxqIE,19435
108
- pulumi_aiven/kafka_topic.py,sha256=Hge8XdymVan3iCnfzqNwkWedjYcWyHAbSCKC9jend6o,24550
108
+ pulumi_aiven/kafka_topic.py,sha256=elP1YmNuQUBtvdYrJPiEJDpHJq8jtmpMCDo96SY36t8,23039
109
109
  pulumi_aiven/kafka_user.py,sha256=EmDWeof7mZkmvaqEUXyX3Movvun9Tjzq3-zyM_qi7C0,18410
110
110
  pulumi_aiven/m3_aggregator.py,sha256=R3tJboDK4DBedihqQtqPIQhFzzW6QMPu3Kz7eAAFSa4,78198
111
111
  pulumi_aiven/m3_db.py,sha256=s1OgStCLeFTlimSbNHTYxXtil3lAC3VBsSDAtQdHnhI,77264
112
112
  pulumi_aiven/m3db_user.py,sha256=5svsu5nO-CwdR3Cp-OHej55L19fERWCjMFe3BUi9Zbg,16224
113
113
  pulumi_aiven/mirror_maker_replication_flow.py,sha256=54VhbUgpBfpI57LT5iU7PgaISAh-su5Bhun0NKQeBnQ,40172
114
114
  pulumi_aiven/my_sql.py,sha256=KY0K4FLYM7kTWibJMbcxkOtvz4XE53B2hfi1SeN-2Qg,77858
115
- pulumi_aiven/mysql_database.py,sha256=2ppKNtTVGnZUcIo2MtQ5f8CxNkdrx4LJXl-RiwaBDis,16783
115
+ pulumi_aiven/mysql_database.py,sha256=V-PIDNBgrVHMCko7rVqi57vvoIjL8304E2RgawjrgHE,14754
116
116
  pulumi_aiven/mysql_user.py,sha256=oiWZ0B1KJYCSl21uB61I-hB2gdmhzGiXNXx7xqLjs8M,21065
117
117
  pulumi_aiven/open_search.py,sha256=Zed1LfajTCo5w9wTDM3BWovZRTVLLuOH5JZ1DLP1H0s,80065
118
118
  pulumi_aiven/open_search_acl_config.py,sha256=t5lPy7nN2_08a9LK-4H-hwNS1PpS8aRoujLAoEbT_-o,17912
@@ -127,7 +127,7 @@ pulumi_aiven/organization_user_group_member.py,sha256=hQNwloGq0KpEuSb0RCirDyA0by
127
127
  pulumi_aiven/organizational_unit.py,sha256=dgHOIJKfjAhuLeRsOI9vLYRwVfteIFrWKXe_kTBU-JU,11475
128
128
  pulumi_aiven/outputs.py,sha256=qQFHbTc3nLoyAA5n5SiMBd1E0R2VnFcphjNk7cUCTc0,1645406
129
129
  pulumi_aiven/pg.py,sha256=pOsirgL0ryQZmRHSfeTydDcXAxhTyI4AJXzsRn_cz0I,77421
130
- pulumi_aiven/pg_database.py,sha256=SsLBisN7zYYy_jRXgS3Yc_ojEbNI5WqvqWKiYg4x4SQ,22050
130
+ pulumi_aiven/pg_database.py,sha256=qsYKZAioLzv2bzYAFVxLumkEV-2e031ysC77h9HkqLA,20021
131
131
  pulumi_aiven/pg_user.py,sha256=O25YPH3N19lRc_QoLgw9NK9i8W2jys0dejq37f3EaXo,20775
132
132
  pulumi_aiven/project.py,sha256=ArAEa2FDbKM-PkMxzPJascIcYq7BzSs5L0HPjAw7CAw,47105
133
133
  pulumi_aiven/project_user.py,sha256=CAxxa2QCsyk1Apm-Mf7BZv5YeFbKbx8LxUEjtG5NUJA,13182
@@ -144,7 +144,7 @@ pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=CCP3cTy2oJVGieXjKEXi44-MFF
144
144
  pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
145
145
  pulumi_aiven/config/__init__.pyi,sha256=i0kRcMqRhHZqXZfs-7cXU-bEhaP2QAJDGjuUhIMDgqY,465
146
146
  pulumi_aiven/config/vars.py,sha256=hQgM94csEU3YnUsOUTPc-JvxssBTpi2DURZx6QWdLUk,658
147
- pulumi_aiven-6.15.0a1715231657.dist-info/METADATA,sha256=9DbJfAxJihtjEbIQA9z_aVRYKeFiQXXrEN46fHJuu3A,2532
148
- pulumi_aiven-6.15.0a1715231657.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
149
- pulumi_aiven-6.15.0a1715231657.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
150
- pulumi_aiven-6.15.0a1715231657.dist-info/RECORD,,
147
+ pulumi_aiven-6.15.0a1715303637.dist-info/METADATA,sha256=JS0vLDbaCOM8y0ZMK5XSpegB8exMAvG9gbZlbWyy9Fk,2532
148
+ pulumi_aiven-6.15.0a1715303637.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
149
+ pulumi_aiven-6.15.0a1715303637.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
150
+ pulumi_aiven-6.15.0a1715303637.dist-info/RECORD,,