pulumi-aiven 6.15.0__py3-none-any.whl → 6.15.0a1715059046__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.
- pulumi_aiven/__init__.py +0 -19
- pulumi_aiven/_inputs.py +0 -144
- pulumi_aiven/clickhouse_database.py +27 -0
- pulumi_aiven/clickhouse_role.py +2 -2
- pulumi_aiven/influxdb_database.py +20 -0
- pulumi_aiven/kafka_topic.py +20 -0
- pulumi_aiven/mysql_database.py +20 -0
- pulumi_aiven/outputs.py +0 -112
- pulumi_aiven/pg_database.py +20 -0
- {pulumi_aiven-6.15.0.dist-info → pulumi_aiven-6.15.0a1715059046.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.15.0.dist-info → pulumi_aiven-6.15.0a1715059046.dist-info}/RECORD +13 -16
- pulumi_aiven/get_organization_application_user.py +0 -156
- pulumi_aiven/organization_application_user.py +0 -323
- pulumi_aiven/organization_application_user_token.py +0 -742
- {pulumi_aiven-6.15.0.dist-info → pulumi_aiven-6.15.0a1715059046.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.15.0.dist-info → pulumi_aiven-6.15.0a1715059046.dist-info}/top_level.txt +0 -0
pulumi_aiven/__init__.py
CHANGED
|
@@ -82,7 +82,6 @@ from .get_open_search_acl_rule import *
|
|
|
82
82
|
from .get_opensearch_security_plugin_config import *
|
|
83
83
|
from .get_opensearch_user import *
|
|
84
84
|
from .get_organization import *
|
|
85
|
-
from .get_organization_application_user import *
|
|
86
85
|
from .get_organization_user import *
|
|
87
86
|
from .get_organization_user_group import *
|
|
88
87
|
from .get_organizational_unit import *
|
|
@@ -125,8 +124,6 @@ from .open_search_acl_rule import *
|
|
|
125
124
|
from .opensearch_security_plugin_config import *
|
|
126
125
|
from .opensearch_user import *
|
|
127
126
|
from .organization import *
|
|
128
|
-
from .organization_application_user import *
|
|
129
|
-
from .organization_application_user_token import *
|
|
130
127
|
from .organization_group_project import *
|
|
131
128
|
from .organization_user import *
|
|
132
129
|
from .organization_user_group import *
|
|
@@ -590,22 +587,6 @@ _utilities.register(
|
|
|
590
587
|
"aiven:index/organization:Organization": "Organization"
|
|
591
588
|
}
|
|
592
589
|
},
|
|
593
|
-
{
|
|
594
|
-
"pkg": "aiven",
|
|
595
|
-
"mod": "index/organizationApplicationUser",
|
|
596
|
-
"fqn": "pulumi_aiven",
|
|
597
|
-
"classes": {
|
|
598
|
-
"aiven:index/organizationApplicationUser:OrganizationApplicationUser": "OrganizationApplicationUser"
|
|
599
|
-
}
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
"pkg": "aiven",
|
|
603
|
-
"mod": "index/organizationApplicationUserToken",
|
|
604
|
-
"fqn": "pulumi_aiven",
|
|
605
|
-
"classes": {
|
|
606
|
-
"aiven:index/organizationApplicationUserToken:OrganizationApplicationUserToken": "OrganizationApplicationUserToken"
|
|
607
|
-
}
|
|
608
|
-
},
|
|
609
590
|
{
|
|
610
591
|
"pkg": "aiven",
|
|
611
592
|
"mod": "index/organizationGroupProject",
|
pulumi_aiven/_inputs.py
CHANGED
|
@@ -170,8 +170,6 @@ __all__ = [
|
|
|
170
170
|
'OpenSearchServiceIntegrationArgs',
|
|
171
171
|
'OpenSearchTagArgs',
|
|
172
172
|
'OpenSearchTechEmailArgs',
|
|
173
|
-
'OrganizationApplicationUserTimeoutsArgs',
|
|
174
|
-
'OrganizationApplicationUserTokenTimeoutsArgs',
|
|
175
173
|
'OrganizationGroupProjectTimeoutsArgs',
|
|
176
174
|
'OrganizationTimeoutsArgs',
|
|
177
175
|
'OrganizationUserGroupMemberTimeoutsArgs',
|
|
@@ -15364,148 +15362,6 @@ class OpenSearchTechEmailArgs:
|
|
|
15364
15362
|
pulumi.set(self, "email", value)
|
|
15365
15363
|
|
|
15366
15364
|
|
|
15367
|
-
@pulumi.input_type
|
|
15368
|
-
class OrganizationApplicationUserTimeoutsArgs:
|
|
15369
|
-
def __init__(__self__, *,
|
|
15370
|
-
create: Optional[pulumi.Input[str]] = None,
|
|
15371
|
-
delete: Optional[pulumi.Input[str]] = None,
|
|
15372
|
-
read: Optional[pulumi.Input[str]] = None,
|
|
15373
|
-
update: Optional[pulumi.Input[str]] = None):
|
|
15374
|
-
"""
|
|
15375
|
-
:param pulumi.Input[str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15376
|
-
:param pulumi.Input[str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
15377
|
-
:param pulumi.Input[str] read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
15378
|
-
:param pulumi.Input[str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15379
|
-
"""
|
|
15380
|
-
if create is not None:
|
|
15381
|
-
pulumi.set(__self__, "create", create)
|
|
15382
|
-
if delete is not None:
|
|
15383
|
-
pulumi.set(__self__, "delete", delete)
|
|
15384
|
-
if read is not None:
|
|
15385
|
-
pulumi.set(__self__, "read", read)
|
|
15386
|
-
if update is not None:
|
|
15387
|
-
pulumi.set(__self__, "update", update)
|
|
15388
|
-
|
|
15389
|
-
@property
|
|
15390
|
-
@pulumi.getter
|
|
15391
|
-
def create(self) -> Optional[pulumi.Input[str]]:
|
|
15392
|
-
"""
|
|
15393
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15394
|
-
"""
|
|
15395
|
-
return pulumi.get(self, "create")
|
|
15396
|
-
|
|
15397
|
-
@create.setter
|
|
15398
|
-
def create(self, value: Optional[pulumi.Input[str]]):
|
|
15399
|
-
pulumi.set(self, "create", value)
|
|
15400
|
-
|
|
15401
|
-
@property
|
|
15402
|
-
@pulumi.getter
|
|
15403
|
-
def delete(self) -> Optional[pulumi.Input[str]]:
|
|
15404
|
-
"""
|
|
15405
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
15406
|
-
"""
|
|
15407
|
-
return pulumi.get(self, "delete")
|
|
15408
|
-
|
|
15409
|
-
@delete.setter
|
|
15410
|
-
def delete(self, value: Optional[pulumi.Input[str]]):
|
|
15411
|
-
pulumi.set(self, "delete", value)
|
|
15412
|
-
|
|
15413
|
-
@property
|
|
15414
|
-
@pulumi.getter
|
|
15415
|
-
def read(self) -> Optional[pulumi.Input[str]]:
|
|
15416
|
-
"""
|
|
15417
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
15418
|
-
"""
|
|
15419
|
-
return pulumi.get(self, "read")
|
|
15420
|
-
|
|
15421
|
-
@read.setter
|
|
15422
|
-
def read(self, value: Optional[pulumi.Input[str]]):
|
|
15423
|
-
pulumi.set(self, "read", value)
|
|
15424
|
-
|
|
15425
|
-
@property
|
|
15426
|
-
@pulumi.getter
|
|
15427
|
-
def update(self) -> Optional[pulumi.Input[str]]:
|
|
15428
|
-
"""
|
|
15429
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15430
|
-
"""
|
|
15431
|
-
return pulumi.get(self, "update")
|
|
15432
|
-
|
|
15433
|
-
@update.setter
|
|
15434
|
-
def update(self, value: Optional[pulumi.Input[str]]):
|
|
15435
|
-
pulumi.set(self, "update", value)
|
|
15436
|
-
|
|
15437
|
-
|
|
15438
|
-
@pulumi.input_type
|
|
15439
|
-
class OrganizationApplicationUserTokenTimeoutsArgs:
|
|
15440
|
-
def __init__(__self__, *,
|
|
15441
|
-
create: Optional[pulumi.Input[str]] = None,
|
|
15442
|
-
delete: Optional[pulumi.Input[str]] = None,
|
|
15443
|
-
read: Optional[pulumi.Input[str]] = None,
|
|
15444
|
-
update: Optional[pulumi.Input[str]] = None):
|
|
15445
|
-
"""
|
|
15446
|
-
:param pulumi.Input[str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15447
|
-
:param pulumi.Input[str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
15448
|
-
:param pulumi.Input[str] read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
15449
|
-
:param pulumi.Input[str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15450
|
-
"""
|
|
15451
|
-
if create is not None:
|
|
15452
|
-
pulumi.set(__self__, "create", create)
|
|
15453
|
-
if delete is not None:
|
|
15454
|
-
pulumi.set(__self__, "delete", delete)
|
|
15455
|
-
if read is not None:
|
|
15456
|
-
pulumi.set(__self__, "read", read)
|
|
15457
|
-
if update is not None:
|
|
15458
|
-
pulumi.set(__self__, "update", update)
|
|
15459
|
-
|
|
15460
|
-
@property
|
|
15461
|
-
@pulumi.getter
|
|
15462
|
-
def create(self) -> Optional[pulumi.Input[str]]:
|
|
15463
|
-
"""
|
|
15464
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15465
|
-
"""
|
|
15466
|
-
return pulumi.get(self, "create")
|
|
15467
|
-
|
|
15468
|
-
@create.setter
|
|
15469
|
-
def create(self, value: Optional[pulumi.Input[str]]):
|
|
15470
|
-
pulumi.set(self, "create", value)
|
|
15471
|
-
|
|
15472
|
-
@property
|
|
15473
|
-
@pulumi.getter
|
|
15474
|
-
def delete(self) -> Optional[pulumi.Input[str]]:
|
|
15475
|
-
"""
|
|
15476
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
15477
|
-
"""
|
|
15478
|
-
return pulumi.get(self, "delete")
|
|
15479
|
-
|
|
15480
|
-
@delete.setter
|
|
15481
|
-
def delete(self, value: Optional[pulumi.Input[str]]):
|
|
15482
|
-
pulumi.set(self, "delete", value)
|
|
15483
|
-
|
|
15484
|
-
@property
|
|
15485
|
-
@pulumi.getter
|
|
15486
|
-
def read(self) -> Optional[pulumi.Input[str]]:
|
|
15487
|
-
"""
|
|
15488
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
15489
|
-
"""
|
|
15490
|
-
return pulumi.get(self, "read")
|
|
15491
|
-
|
|
15492
|
-
@read.setter
|
|
15493
|
-
def read(self, value: Optional[pulumi.Input[str]]):
|
|
15494
|
-
pulumi.set(self, "read", value)
|
|
15495
|
-
|
|
15496
|
-
@property
|
|
15497
|
-
@pulumi.getter
|
|
15498
|
-
def update(self) -> Optional[pulumi.Input[str]]:
|
|
15499
|
-
"""
|
|
15500
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15501
|
-
"""
|
|
15502
|
-
return pulumi.get(self, "update")
|
|
15503
|
-
|
|
15504
|
-
@update.setter
|
|
15505
|
-
def update(self, value: Optional[pulumi.Input[str]]):
|
|
15506
|
-
pulumi.set(self, "update", value)
|
|
15507
|
-
|
|
15508
|
-
|
|
15509
15365
|
@pulumi.input_type
|
|
15510
15366
|
class OrganizationGroupProjectTimeoutsArgs:
|
|
15511
15367
|
def __init__(__self__, *,
|
|
@@ -23,6 +23,9 @@ 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`.
|
|
26
29
|
"""
|
|
27
30
|
pulumi.set(__self__, "project", project)
|
|
28
31
|
pulumi.set(__self__, "service_name", service_name)
|
|
@@ -70,6 +73,11 @@ class ClickhouseDatabaseArgs:
|
|
|
70
73
|
@property
|
|
71
74
|
@pulumi.getter(name="terminationProtection")
|
|
72
75
|
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
|
+
"""
|
|
73
81
|
return pulumi.get(self, "termination_protection")
|
|
74
82
|
|
|
75
83
|
@termination_protection.setter
|
|
@@ -89,6 +97,9 @@ class _ClickhouseDatabaseState:
|
|
|
89
97
|
:param pulumi.Input[str] name: The name of the Clickhouse database. Changing this property forces recreation of the resource.
|
|
90
98
|
: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.
|
|
91
99
|
: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`.
|
|
92
103
|
"""
|
|
93
104
|
if name is not None:
|
|
94
105
|
pulumi.set(__self__, "name", name)
|
|
@@ -138,6 +149,11 @@ class _ClickhouseDatabaseState:
|
|
|
138
149
|
@property
|
|
139
150
|
@pulumi.getter(name="terminationProtection")
|
|
140
151
|
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
|
+
"""
|
|
141
157
|
return pulumi.get(self, "termination_protection")
|
|
142
158
|
|
|
143
159
|
@termination_protection.setter
|
|
@@ -181,6 +197,9 @@ class ClickhouseDatabase(pulumi.CustomResource):
|
|
|
181
197
|
:param pulumi.Input[str] name: The name of the Clickhouse database. Changing this property forces recreation of the resource.
|
|
182
198
|
: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.
|
|
183
199
|
: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`.
|
|
184
203
|
"""
|
|
185
204
|
...
|
|
186
205
|
@overload
|
|
@@ -269,6 +288,9 @@ class ClickhouseDatabase(pulumi.CustomResource):
|
|
|
269
288
|
:param pulumi.Input[str] name: The name of the Clickhouse database. Changing this property forces recreation of the resource.
|
|
270
289
|
: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.
|
|
271
290
|
: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`.
|
|
272
294
|
"""
|
|
273
295
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
274
296
|
|
|
@@ -307,5 +329,10 @@ class ClickhouseDatabase(pulumi.CustomResource):
|
|
|
307
329
|
@property
|
|
308
330
|
@pulumi.getter(name="terminationProtection")
|
|
309
331
|
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
|
+
"""
|
|
310
337
|
return pulumi.get(self, "termination_protection")
|
|
311
338
|
|
pulumi_aiven/clickhouse_role.py
CHANGED
|
@@ -141,7 +141,7 @@ class ClickhouseRole(pulumi.CustomResource):
|
|
|
141
141
|
bar = aiven.Clickhouse("bar",
|
|
142
142
|
project="example-project",
|
|
143
143
|
cloud_name="google-europe-west1",
|
|
144
|
-
plan="startup-8",
|
|
144
|
+
plan="startup-beta-8",
|
|
145
145
|
service_name="example-service",
|
|
146
146
|
maintenance_window_dow="monday",
|
|
147
147
|
maintenance_window_time="10:00:00")
|
|
@@ -181,7 +181,7 @@ class ClickhouseRole(pulumi.CustomResource):
|
|
|
181
181
|
bar = aiven.Clickhouse("bar",
|
|
182
182
|
project="example-project",
|
|
183
183
|
cloud_name="google-europe-west1",
|
|
184
|
-
plan="startup-8",
|
|
184
|
+
plan="startup-beta-8",
|
|
185
185
|
service_name="example-service",
|
|
186
186
|
maintenance_window_dow="monday",
|
|
187
187
|
maintenance_window_time="10:00:00")
|
|
@@ -25,6 +25,8 @@ 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`.
|
|
28
30
|
"""
|
|
29
31
|
pulumi.set(__self__, "database_name", database_name)
|
|
30
32
|
pulumi.set(__self__, "project", project)
|
|
@@ -73,6 +75,10 @@ class InfluxdbDatabaseArgs:
|
|
|
73
75
|
@property
|
|
74
76
|
@pulumi.getter(name="terminationProtection")
|
|
75
77
|
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
|
+
"""
|
|
76
82
|
return pulumi.get(self, "termination_protection")
|
|
77
83
|
|
|
78
84
|
@termination_protection.setter
|
|
@@ -94,6 +100,8 @@ class _InfluxdbDatabaseState:
|
|
|
94
100
|
reference. Changing this property forces recreation of the resource.
|
|
95
101
|
: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
|
|
96
102
|
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`.
|
|
97
105
|
"""
|
|
98
106
|
if database_name is not None:
|
|
99
107
|
pulumi.set(__self__, "database_name", database_name)
|
|
@@ -145,6 +153,10 @@ class _InfluxdbDatabaseState:
|
|
|
145
153
|
@property
|
|
146
154
|
@pulumi.getter(name="terminationProtection")
|
|
147
155
|
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
|
+
"""
|
|
148
160
|
return pulumi.get(self, "termination_protection")
|
|
149
161
|
|
|
150
162
|
@termination_protection.setter
|
|
@@ -171,6 +183,8 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
171
183
|
reference. Changing this property forces recreation of the resource.
|
|
172
184
|
: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
|
|
173
185
|
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`.
|
|
174
188
|
"""
|
|
175
189
|
...
|
|
176
190
|
@overload
|
|
@@ -244,6 +258,8 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
244
258
|
reference. Changing this property forces recreation of the resource.
|
|
245
259
|
: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
|
|
246
260
|
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`.
|
|
247
263
|
"""
|
|
248
264
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
249
265
|
|
|
@@ -284,5 +300,9 @@ class InfluxdbDatabase(pulumi.CustomResource):
|
|
|
284
300
|
@property
|
|
285
301
|
@pulumi.getter(name="terminationProtection")
|
|
286
302
|
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
|
+
"""
|
|
287
307
|
return pulumi.get(self, "termination_protection")
|
|
288
308
|
|
pulumi_aiven/kafka_topic.py
CHANGED
|
@@ -33,6 +33,8 @@ 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.**
|
|
36
38
|
"""
|
|
37
39
|
pulumi.set(__self__, "partitions", partitions)
|
|
38
40
|
pulumi.set(__self__, "project", project)
|
|
@@ -133,6 +135,10 @@ class KafkaTopicArgs:
|
|
|
133
135
|
@property
|
|
134
136
|
@pulumi.getter(name="terminationProtection")
|
|
135
137
|
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
|
+
"""
|
|
136
142
|
return pulumi.get(self, "termination_protection")
|
|
137
143
|
|
|
138
144
|
@termination_protection.setter
|
|
@@ -159,6 +165,8 @@ class _KafkaTopicState:
|
|
|
159
165
|
:param pulumi.Input[int] replication: The replication factor for the topic.
|
|
160
166
|
: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.
|
|
161
167
|
: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.**
|
|
162
170
|
:param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
|
|
163
171
|
"""
|
|
164
172
|
if config is not None:
|
|
@@ -253,6 +261,10 @@ class _KafkaTopicState:
|
|
|
253
261
|
@property
|
|
254
262
|
@pulumi.getter(name="terminationProtection")
|
|
255
263
|
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
|
+
"""
|
|
256
268
|
return pulumi.get(self, "termination_protection")
|
|
257
269
|
|
|
258
270
|
@termination_protection.setter
|
|
@@ -322,6 +334,8 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
322
334
|
:param pulumi.Input[int] replication: The replication factor for the topic.
|
|
323
335
|
: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.
|
|
324
336
|
: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.**
|
|
325
339
|
:param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
|
|
326
340
|
"""
|
|
327
341
|
...
|
|
@@ -439,6 +453,8 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
439
453
|
:param pulumi.Input[int] replication: The replication factor for the topic.
|
|
440
454
|
: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.
|
|
441
455
|
: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.**
|
|
442
458
|
:param pulumi.Input[str] topic_name: The name of the topic. Changing this property forces recreation of the resource.
|
|
443
459
|
"""
|
|
444
460
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -506,6 +522,10 @@ class KafkaTopic(pulumi.CustomResource):
|
|
|
506
522
|
@property
|
|
507
523
|
@pulumi.getter(name="terminationProtection")
|
|
508
524
|
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
|
+
"""
|
|
509
529
|
return pulumi.get(self, "termination_protection")
|
|
510
530
|
|
|
511
531
|
@property
|
pulumi_aiven/mysql_database.py
CHANGED
|
@@ -23,6 +23,8 @@ 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`.
|
|
26
28
|
"""
|
|
27
29
|
pulumi.set(__self__, "database_name", database_name)
|
|
28
30
|
pulumi.set(__self__, "project", project)
|
|
@@ -69,6 +71,10 @@ class MysqlDatabaseArgs:
|
|
|
69
71
|
@property
|
|
70
72
|
@pulumi.getter(name="terminationProtection")
|
|
71
73
|
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
|
+
"""
|
|
72
78
|
return pulumi.get(self, "termination_protection")
|
|
73
79
|
|
|
74
80
|
@termination_protection.setter
|
|
@@ -88,6 +94,8 @@ class _MysqlDatabaseState:
|
|
|
88
94
|
:param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
|
|
89
95
|
: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.
|
|
90
96
|
: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`.
|
|
91
99
|
"""
|
|
92
100
|
if database_name is not None:
|
|
93
101
|
pulumi.set(__self__, "database_name", database_name)
|
|
@@ -137,6 +145,10 @@ class _MysqlDatabaseState:
|
|
|
137
145
|
@property
|
|
138
146
|
@pulumi.getter(name="terminationProtection")
|
|
139
147
|
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
|
+
"""
|
|
140
152
|
return pulumi.get(self, "termination_protection")
|
|
141
153
|
|
|
142
154
|
@termination_protection.setter
|
|
@@ -180,6 +192,8 @@ class MysqlDatabase(pulumi.CustomResource):
|
|
|
180
192
|
:param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
|
|
181
193
|
: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.
|
|
182
194
|
: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`.
|
|
183
197
|
"""
|
|
184
198
|
...
|
|
185
199
|
@overload
|
|
@@ -270,6 +284,8 @@ class MysqlDatabase(pulumi.CustomResource):
|
|
|
270
284
|
:param pulumi.Input[str] database_name: The name of the service database. Changing this property forces recreation of the resource.
|
|
271
285
|
: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.
|
|
272
286
|
: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`.
|
|
273
289
|
"""
|
|
274
290
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
275
291
|
|
|
@@ -308,5 +324,9 @@ class MysqlDatabase(pulumi.CustomResource):
|
|
|
308
324
|
@property
|
|
309
325
|
@pulumi.getter(name="terminationProtection")
|
|
310
326
|
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
|
+
"""
|
|
311
331
|
return pulumi.get(self, "termination_protection")
|
|
312
332
|
|
pulumi_aiven/outputs.py
CHANGED
|
@@ -171,8 +171,6 @@ __all__ = [
|
|
|
171
171
|
'OpenSearchServiceIntegration',
|
|
172
172
|
'OpenSearchTag',
|
|
173
173
|
'OpenSearchTechEmail',
|
|
174
|
-
'OrganizationApplicationUserTimeouts',
|
|
175
|
-
'OrganizationApplicationUserTokenTimeouts',
|
|
176
174
|
'OrganizationGroupProjectTimeouts',
|
|
177
175
|
'OrganizationTimeouts',
|
|
178
176
|
'OrganizationUserGroupMemberTimeouts',
|
|
@@ -14671,116 +14669,6 @@ class OpenSearchTechEmail(dict):
|
|
|
14671
14669
|
return pulumi.get(self, "email")
|
|
14672
14670
|
|
|
14673
14671
|
|
|
14674
|
-
@pulumi.output_type
|
|
14675
|
-
class OrganizationApplicationUserTimeouts(dict):
|
|
14676
|
-
def __init__(__self__, *,
|
|
14677
|
-
create: Optional[str] = None,
|
|
14678
|
-
delete: Optional[str] = None,
|
|
14679
|
-
read: Optional[str] = None,
|
|
14680
|
-
update: Optional[str] = None):
|
|
14681
|
-
"""
|
|
14682
|
-
:param str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
14683
|
-
:param str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
14684
|
-
:param str read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
14685
|
-
:param str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
14686
|
-
"""
|
|
14687
|
-
if create is not None:
|
|
14688
|
-
pulumi.set(__self__, "create", create)
|
|
14689
|
-
if delete is not None:
|
|
14690
|
-
pulumi.set(__self__, "delete", delete)
|
|
14691
|
-
if read is not None:
|
|
14692
|
-
pulumi.set(__self__, "read", read)
|
|
14693
|
-
if update is not None:
|
|
14694
|
-
pulumi.set(__self__, "update", update)
|
|
14695
|
-
|
|
14696
|
-
@property
|
|
14697
|
-
@pulumi.getter
|
|
14698
|
-
def create(self) -> Optional[str]:
|
|
14699
|
-
"""
|
|
14700
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
14701
|
-
"""
|
|
14702
|
-
return pulumi.get(self, "create")
|
|
14703
|
-
|
|
14704
|
-
@property
|
|
14705
|
-
@pulumi.getter
|
|
14706
|
-
def delete(self) -> Optional[str]:
|
|
14707
|
-
"""
|
|
14708
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
14709
|
-
"""
|
|
14710
|
-
return pulumi.get(self, "delete")
|
|
14711
|
-
|
|
14712
|
-
@property
|
|
14713
|
-
@pulumi.getter
|
|
14714
|
-
def read(self) -> Optional[str]:
|
|
14715
|
-
"""
|
|
14716
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
14717
|
-
"""
|
|
14718
|
-
return pulumi.get(self, "read")
|
|
14719
|
-
|
|
14720
|
-
@property
|
|
14721
|
-
@pulumi.getter
|
|
14722
|
-
def update(self) -> Optional[str]:
|
|
14723
|
-
"""
|
|
14724
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
14725
|
-
"""
|
|
14726
|
-
return pulumi.get(self, "update")
|
|
14727
|
-
|
|
14728
|
-
|
|
14729
|
-
@pulumi.output_type
|
|
14730
|
-
class OrganizationApplicationUserTokenTimeouts(dict):
|
|
14731
|
-
def __init__(__self__, *,
|
|
14732
|
-
create: Optional[str] = None,
|
|
14733
|
-
delete: Optional[str] = None,
|
|
14734
|
-
read: Optional[str] = None,
|
|
14735
|
-
update: Optional[str] = None):
|
|
14736
|
-
"""
|
|
14737
|
-
:param str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
14738
|
-
:param str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
14739
|
-
:param str read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
14740
|
-
:param str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
14741
|
-
"""
|
|
14742
|
-
if create is not None:
|
|
14743
|
-
pulumi.set(__self__, "create", create)
|
|
14744
|
-
if delete is not None:
|
|
14745
|
-
pulumi.set(__self__, "delete", delete)
|
|
14746
|
-
if read is not None:
|
|
14747
|
-
pulumi.set(__self__, "read", read)
|
|
14748
|
-
if update is not None:
|
|
14749
|
-
pulumi.set(__self__, "update", update)
|
|
14750
|
-
|
|
14751
|
-
@property
|
|
14752
|
-
@pulumi.getter
|
|
14753
|
-
def create(self) -> Optional[str]:
|
|
14754
|
-
"""
|
|
14755
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
14756
|
-
"""
|
|
14757
|
-
return pulumi.get(self, "create")
|
|
14758
|
-
|
|
14759
|
-
@property
|
|
14760
|
-
@pulumi.getter
|
|
14761
|
-
def delete(self) -> Optional[str]:
|
|
14762
|
-
"""
|
|
14763
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
14764
|
-
"""
|
|
14765
|
-
return pulumi.get(self, "delete")
|
|
14766
|
-
|
|
14767
|
-
@property
|
|
14768
|
-
@pulumi.getter
|
|
14769
|
-
def read(self) -> Optional[str]:
|
|
14770
|
-
"""
|
|
14771
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
14772
|
-
"""
|
|
14773
|
-
return pulumi.get(self, "read")
|
|
14774
|
-
|
|
14775
|
-
@property
|
|
14776
|
-
@pulumi.getter
|
|
14777
|
-
def update(self) -> Optional[str]:
|
|
14778
|
-
"""
|
|
14779
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
14780
|
-
"""
|
|
14781
|
-
return pulumi.get(self, "update")
|
|
14782
|
-
|
|
14783
|
-
|
|
14784
14672
|
@pulumi.output_type
|
|
14785
14673
|
class OrganizationGroupProjectTimeouts(dict):
|
|
14786
14674
|
def __init__(__self__, *,
|