pulumi-digitalocean 4.35.0a1731504482__py3-none-any.whl → 4.35.0a1731510675__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-digitalocean might be problematic. Click here for more details.
- pulumi_digitalocean/database_cluster.py +14 -14
- pulumi_digitalocean/get_database_cluster.py +1 -1
- pulumi_digitalocean/pulumi-plugin.json +1 -1
- {pulumi_digitalocean-4.35.0a1731504482.dist-info → pulumi_digitalocean-4.35.0a1731510675.dist-info}/METADATA +1 -1
- {pulumi_digitalocean-4.35.0a1731504482.dist-info → pulumi_digitalocean-4.35.0a1731510675.dist-info}/RECORD +7 -7
- {pulumi_digitalocean-4.35.0a1731504482.dist-info → pulumi_digitalocean-4.35.0a1731510675.dist-info}/WHEEL +0 -0
- {pulumi_digitalocean-4.35.0a1731504482.dist-info → pulumi_digitalocean-4.35.0a1731510675.dist-info}/top_level.txt +0 -0
|
@@ -38,7 +38,7 @@ class DatabaseClusterArgs:
|
|
|
38
38
|
version: Optional[pulumi.Input[str]] = None):
|
|
39
39
|
"""
|
|
40
40
|
The set of arguments for constructing a DatabaseCluster resource.
|
|
41
|
-
:param pulumi.Input[str] engine: Database engine used by the cluster (ex. `pg` for
|
|
41
|
+
:param pulumi.Input[str] engine: Database engine used by the cluster (ex. `pg` for PostgreSQL, `mysql` for MySQL, `redis` for Redis, `mongodb` for MongoDB, or `kafka` for Kafka).
|
|
42
42
|
:param pulumi.Input[int] node_count: Number of nodes that will be included in the cluster. For `kafka` clusters, this must be 3.
|
|
43
43
|
:param pulumi.Input[Union[str, 'Region']] region: DigitalOcean region where the cluster will reside.
|
|
44
44
|
:param pulumi.Input[Union[str, 'DatabaseSlug']] size: Database Droplet size associated with the cluster (ex. `db-s-1vcpu-1gb`). See here for a [list of valid size slugs](https://docs.digitalocean.com/reference/api/api-reference/#tag/Databases).
|
|
@@ -48,7 +48,7 @@ class DatabaseClusterArgs:
|
|
|
48
48
|
:param pulumi.Input[str] private_network_uuid: The ID of the VPC where the database cluster will be located.
|
|
49
49
|
:param pulumi.Input[str] project_id: The ID of the project that the database cluster is assigned to. If excluded when creating a new database cluster, it will be assigned to your default project.
|
|
50
50
|
:param pulumi.Input[str] sql_mode: A comma separated string specifying the SQL modes for a MySQL cluster.
|
|
51
|
-
:param pulumi.Input[str] storage_size_mib: Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and
|
|
51
|
+
:param pulumi.Input[str] storage_size_mib: Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and PostgreSQL clusters based on predefined ranges for each slug/droplet size.
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag names to be applied to the database cluster.
|
|
53
53
|
:param pulumi.Input[str] version: Engine version used by the cluster (ex. `14` for PostgreSQL 14).
|
|
54
54
|
When this value is changed, a call to the [Upgrade major Version for a Database](https://docs.digitalocean.com/reference/api/api-reference/#operation/databases_update_major_version) API operation is made with the new version.
|
|
@@ -82,7 +82,7 @@ class DatabaseClusterArgs:
|
|
|
82
82
|
@pulumi.getter
|
|
83
83
|
def engine(self) -> pulumi.Input[str]:
|
|
84
84
|
"""
|
|
85
|
-
Database engine used by the cluster (ex. `pg` for
|
|
85
|
+
Database engine used by the cluster (ex. `pg` for PostgreSQL, `mysql` for MySQL, `redis` for Redis, `mongodb` for MongoDB, or `kafka` for Kafka).
|
|
86
86
|
"""
|
|
87
87
|
return pulumi.get(self, "engine")
|
|
88
88
|
|
|
@@ -211,7 +211,7 @@ class DatabaseClusterArgs:
|
|
|
211
211
|
@pulumi.getter(name="storageSizeMib")
|
|
212
212
|
def storage_size_mib(self) -> Optional[pulumi.Input[str]]:
|
|
213
213
|
"""
|
|
214
|
-
Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and
|
|
214
|
+
Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and PostgreSQL clusters based on predefined ranges for each slug/droplet size.
|
|
215
215
|
"""
|
|
216
216
|
return pulumi.get(self, "storage_size_mib")
|
|
217
217
|
|
|
@@ -281,7 +281,7 @@ class _DatabaseClusterState:
|
|
|
281
281
|
Input properties used for looking up and filtering DatabaseCluster resources.
|
|
282
282
|
:param pulumi.Input[str] cluster_urn: The uniform resource name of the database cluster.
|
|
283
283
|
:param pulumi.Input[str] database: Name of the cluster's default database.
|
|
284
|
-
:param pulumi.Input[str] engine: Database engine used by the cluster (ex. `pg` for
|
|
284
|
+
:param pulumi.Input[str] engine: Database engine used by the cluster (ex. `pg` for PostgreSQL, `mysql` for MySQL, `redis` for Redis, `mongodb` for MongoDB, or `kafka` for Kafka).
|
|
285
285
|
:param pulumi.Input[str] eviction_policy: A string specifying the eviction policy for a Redis cluster. Valid values are: `noeviction`, `allkeys_lru`, `allkeys_random`, `volatile_lru`, `volatile_random`, or `volatile_ttl`.
|
|
286
286
|
:param pulumi.Input[str] host: Database cluster's hostname.
|
|
287
287
|
:param pulumi.Input[Sequence[pulumi.Input['DatabaseClusterMaintenanceWindowArgs']]] maintenance_windows: Defines when the automatic maintenance should be performed for the database cluster.
|
|
@@ -296,7 +296,7 @@ class _DatabaseClusterState:
|
|
|
296
296
|
:param pulumi.Input[Union[str, 'Region']] region: DigitalOcean region where the cluster will reside.
|
|
297
297
|
:param pulumi.Input[Union[str, 'DatabaseSlug']] size: Database Droplet size associated with the cluster (ex. `db-s-1vcpu-1gb`). See here for a [list of valid size slugs](https://docs.digitalocean.com/reference/api/api-reference/#tag/Databases).
|
|
298
298
|
:param pulumi.Input[str] sql_mode: A comma separated string specifying the SQL modes for a MySQL cluster.
|
|
299
|
-
:param pulumi.Input[str] storage_size_mib: Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and
|
|
299
|
+
:param pulumi.Input[str] storage_size_mib: Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and PostgreSQL clusters based on predefined ranges for each slug/droplet size.
|
|
300
300
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag names to be applied to the database cluster.
|
|
301
301
|
:param pulumi.Input[str] ui_database: Name of the OpenSearch dashboard db.
|
|
302
302
|
:param pulumi.Input[str] ui_host: Hostname for the OpenSearch dashboard.
|
|
@@ -405,7 +405,7 @@ class _DatabaseClusterState:
|
|
|
405
405
|
@pulumi.getter
|
|
406
406
|
def engine(self) -> Optional[pulumi.Input[str]]:
|
|
407
407
|
"""
|
|
408
|
-
Database engine used by the cluster (ex. `pg` for
|
|
408
|
+
Database engine used by the cluster (ex. `pg` for PostgreSQL, `mysql` for MySQL, `redis` for Redis, `mongodb` for MongoDB, or `kafka` for Kafka).
|
|
409
409
|
"""
|
|
410
410
|
return pulumi.get(self, "engine")
|
|
411
411
|
|
|
@@ -585,7 +585,7 @@ class _DatabaseClusterState:
|
|
|
585
585
|
@pulumi.getter(name="storageSizeMib")
|
|
586
586
|
def storage_size_mib(self) -> Optional[pulumi.Input[str]]:
|
|
587
587
|
"""
|
|
588
|
-
Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and
|
|
588
|
+
Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and PostgreSQL clusters based on predefined ranges for each slug/droplet size.
|
|
589
589
|
"""
|
|
590
590
|
return pulumi.get(self, "storage_size_mib")
|
|
591
591
|
|
|
@@ -862,7 +862,7 @@ class DatabaseCluster(pulumi.CustomResource):
|
|
|
862
862
|
|
|
863
863
|
:param str resource_name: The name of the resource.
|
|
864
864
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
865
|
-
:param pulumi.Input[str] engine: Database engine used by the cluster (ex. `pg` for
|
|
865
|
+
:param pulumi.Input[str] engine: Database engine used by the cluster (ex. `pg` for PostgreSQL, `mysql` for MySQL, `redis` for Redis, `mongodb` for MongoDB, or `kafka` for Kafka).
|
|
866
866
|
:param pulumi.Input[str] eviction_policy: A string specifying the eviction policy for a Redis cluster. Valid values are: `noeviction`, `allkeys_lru`, `allkeys_random`, `volatile_lru`, `volatile_random`, or `volatile_ttl`.
|
|
867
867
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DatabaseClusterMaintenanceWindowArgs', 'DatabaseClusterMaintenanceWindowArgsDict']]]] maintenance_windows: Defines when the automatic maintenance should be performed for the database cluster.
|
|
868
868
|
:param pulumi.Input[str] name: The name of the database cluster.
|
|
@@ -872,7 +872,7 @@ class DatabaseCluster(pulumi.CustomResource):
|
|
|
872
872
|
:param pulumi.Input[Union[str, 'Region']] region: DigitalOcean region where the cluster will reside.
|
|
873
873
|
:param pulumi.Input[Union[str, 'DatabaseSlug']] size: Database Droplet size associated with the cluster (ex. `db-s-1vcpu-1gb`). See here for a [list of valid size slugs](https://docs.digitalocean.com/reference/api/api-reference/#tag/Databases).
|
|
874
874
|
:param pulumi.Input[str] sql_mode: A comma separated string specifying the SQL modes for a MySQL cluster.
|
|
875
|
-
:param pulumi.Input[str] storage_size_mib: Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and
|
|
875
|
+
:param pulumi.Input[str] storage_size_mib: Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and PostgreSQL clusters based on predefined ranges for each slug/droplet size.
|
|
876
876
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag names to be applied to the database cluster.
|
|
877
877
|
:param pulumi.Input[str] version: Engine version used by the cluster (ex. `14` for PostgreSQL 14).
|
|
878
878
|
When this value is changed, a call to the [Upgrade major Version for a Database](https://docs.digitalocean.com/reference/api/api-reference/#operation/databases_update_major_version) API operation is made with the new version.
|
|
@@ -1133,7 +1133,7 @@ class DatabaseCluster(pulumi.CustomResource):
|
|
|
1133
1133
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1134
1134
|
:param pulumi.Input[str] cluster_urn: The uniform resource name of the database cluster.
|
|
1135
1135
|
:param pulumi.Input[str] database: Name of the cluster's default database.
|
|
1136
|
-
:param pulumi.Input[str] engine: Database engine used by the cluster (ex. `pg` for
|
|
1136
|
+
:param pulumi.Input[str] engine: Database engine used by the cluster (ex. `pg` for PostgreSQL, `mysql` for MySQL, `redis` for Redis, `mongodb` for MongoDB, or `kafka` for Kafka).
|
|
1137
1137
|
:param pulumi.Input[str] eviction_policy: A string specifying the eviction policy for a Redis cluster. Valid values are: `noeviction`, `allkeys_lru`, `allkeys_random`, `volatile_lru`, `volatile_random`, or `volatile_ttl`.
|
|
1138
1138
|
:param pulumi.Input[str] host: Database cluster's hostname.
|
|
1139
1139
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DatabaseClusterMaintenanceWindowArgs', 'DatabaseClusterMaintenanceWindowArgsDict']]]] maintenance_windows: Defines when the automatic maintenance should be performed for the database cluster.
|
|
@@ -1148,7 +1148,7 @@ class DatabaseCluster(pulumi.CustomResource):
|
|
|
1148
1148
|
:param pulumi.Input[Union[str, 'Region']] region: DigitalOcean region where the cluster will reside.
|
|
1149
1149
|
:param pulumi.Input[Union[str, 'DatabaseSlug']] size: Database Droplet size associated with the cluster (ex. `db-s-1vcpu-1gb`). See here for a [list of valid size slugs](https://docs.digitalocean.com/reference/api/api-reference/#tag/Databases).
|
|
1150
1150
|
:param pulumi.Input[str] sql_mode: A comma separated string specifying the SQL modes for a MySQL cluster.
|
|
1151
|
-
:param pulumi.Input[str] storage_size_mib: Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and
|
|
1151
|
+
:param pulumi.Input[str] storage_size_mib: Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and PostgreSQL clusters based on predefined ranges for each slug/droplet size.
|
|
1152
1152
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag names to be applied to the database cluster.
|
|
1153
1153
|
:param pulumi.Input[str] ui_database: Name of the OpenSearch dashboard db.
|
|
1154
1154
|
:param pulumi.Input[str] ui_host: Hostname for the OpenSearch dashboard.
|
|
@@ -1221,7 +1221,7 @@ class DatabaseCluster(pulumi.CustomResource):
|
|
|
1221
1221
|
@pulumi.getter
|
|
1222
1222
|
def engine(self) -> pulumi.Output[str]:
|
|
1223
1223
|
"""
|
|
1224
|
-
Database engine used by the cluster (ex. `pg` for
|
|
1224
|
+
Database engine used by the cluster (ex. `pg` for PostgreSQL, `mysql` for MySQL, `redis` for Redis, `mongodb` for MongoDB, or `kafka` for Kafka).
|
|
1225
1225
|
"""
|
|
1226
1226
|
return pulumi.get(self, "engine")
|
|
1227
1227
|
|
|
@@ -1341,7 +1341,7 @@ class DatabaseCluster(pulumi.CustomResource):
|
|
|
1341
1341
|
@pulumi.getter(name="storageSizeMib")
|
|
1342
1342
|
def storage_size_mib(self) -> pulumi.Output[str]:
|
|
1343
1343
|
"""
|
|
1344
|
-
Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and
|
|
1344
|
+
Defines the disk size, in MiB, allocated to the cluster. This can be adjusted on MySQL and PostgreSQL clusters based on predefined ranges for each slug/droplet size.
|
|
1345
1345
|
"""
|
|
1346
1346
|
return pulumi.get(self, "storage_size_mib")
|
|
1347
1347
|
|
|
@@ -122,7 +122,7 @@ class GetDatabaseClusterResult:
|
|
|
122
122
|
@pulumi.getter
|
|
123
123
|
def engine(self) -> str:
|
|
124
124
|
"""
|
|
125
|
-
Database engine used by the cluster (ex. `pg` for
|
|
125
|
+
Database engine used by the cluster (ex. `pg` for PostgreSQL).
|
|
126
126
|
"""
|
|
127
127
|
return pulumi.get(self, "engine")
|
|
128
128
|
|
|
@@ -8,7 +8,7 @@ pulumi_digitalocean/certificate.py,sha256=FUUI94hAjpbxdxVj_inFK0JCEoSlWt4XfVxt_G
|
|
|
8
8
|
pulumi_digitalocean/container_registry.py,sha256=eg8nlPaYdClphz0vh5lt1gOGDtLvKqTZg-uVmkiLUtc,16759
|
|
9
9
|
pulumi_digitalocean/container_registry_docker_credentials.py,sha256=Ru4ib-QtLHzjvgqzXL15iV1QwKda2CAuizeLW5g3JJ0,17461
|
|
10
10
|
pulumi_digitalocean/custom_image.py,sha256=zGXveT8uEu9Y9IQI-K6zc0XAMoW09ajn7EEQCEu2m_Y,27339
|
|
11
|
-
pulumi_digitalocean/database_cluster.py,sha256=
|
|
11
|
+
pulumi_digitalocean/database_cluster.py,sha256=c6wfQOmm7FAWLtBYIl701lxMWwJicCM5TN3gEKlF84E,64127
|
|
12
12
|
pulumi_digitalocean/database_connection_pool.py,sha256=G58uEqpW4AaFdZnY36j3SVB0YSO0Ur5EmZSwOgtt6VA,25355
|
|
13
13
|
pulumi_digitalocean/database_db.py,sha256=DZY751l8-gloMei6opGhVdzVw6G1nKgz0Dx6iFZkCYI,9674
|
|
14
14
|
pulumi_digitalocean/database_firewall.py,sha256=p9HkS72_yJ2lXVXep6ts6VeqiPAjzxNDFr1HNsEZWw8,15564
|
|
@@ -33,7 +33,7 @@ pulumi_digitalocean/get_app.py,sha256=wUzIDFPULfbqG3cvMwmfrh21F64PrrTASxAblkMNSI
|
|
|
33
33
|
pulumi_digitalocean/get_certificate.py,sha256=HXSgCbvQnQ3yNAigq3YL3ssrP6kwjPtBqtwjVB1Fg_k,7237
|
|
34
34
|
pulumi_digitalocean/get_container_registry.py,sha256=upmUeZIVa1sMqJ0lZgJYbAgWXJKGSEfFvz7etN_PwI4,8077
|
|
35
35
|
pulumi_digitalocean/get_database_ca.py,sha256=tEQrNVJRJyu2H6-wQWKMx3ZC5zPpV0XVMDXOU9ccftE,4284
|
|
36
|
-
pulumi_digitalocean/get_database_cluster.py,sha256=
|
|
36
|
+
pulumi_digitalocean/get_database_cluster.py,sha256=K1uCCKsPS1oyUu9Z3om-JuG2xzW6wN7sy0jtvMLXhdg,17477
|
|
37
37
|
pulumi_digitalocean/get_database_connection_pool.py,sha256=hJAdyaZhrskLQakC1XmtPKrYOJcVBImgjoGUWfqRnuU,10077
|
|
38
38
|
pulumi_digitalocean/get_database_replica.py,sha256=tgHtlgEHAmKmEa0yW7NQaAWO4KG1pEUCkDkYL-88XzM,11851
|
|
39
39
|
pulumi_digitalocean/get_database_user.py,sha256=JhnVRK1y4GXBtxcLcaPQMTL0M1qO12_P8n9DYxX1lyU,8090
|
|
@@ -77,7 +77,7 @@ pulumi_digitalocean/outputs.py,sha256=6utveiwdT6eBTV9V1Q1jpcQpw4e_hDpj4bm8QYFz-V
|
|
|
77
77
|
pulumi_digitalocean/project.py,sha256=jZWmhLSY2UMUHVuq9CYBaERJos26o_6j0TO56sPNYkg,24622
|
|
78
78
|
pulumi_digitalocean/project_resources.py,sha256=AYkWlrmdHpwHU2ejGeKIUVxu371J77JcFzdyJ4zeuy8,10445
|
|
79
79
|
pulumi_digitalocean/provider.py,sha256=_s9QkDZle1wCa634xdXzAXN2mJZr4kvb1b-pp1CqHOc,14633
|
|
80
|
-
pulumi_digitalocean/pulumi-plugin.json,sha256=
|
|
80
|
+
pulumi_digitalocean/pulumi-plugin.json,sha256=VRai2Bgc5zbUqtFt3KNONXr2VJrtAYLawPcuCUdox4U,89
|
|
81
81
|
pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
82
|
pulumi_digitalocean/reserved_ip.py,sha256=oPOxhrFp7nqKLv-vG6rpi5az-3P-4vlGAoh9XDQywOc,12833
|
|
83
83
|
pulumi_digitalocean/reserved_ip_assignment.py,sha256=wetSmcYFaI122KO-wDixcJgDP_WG-OF3CW4QYGzK8V8,10357
|
|
@@ -97,7 +97,7 @@ pulumi_digitalocean/vpc_peering.py,sha256=PaVzwhbdORafLdMiYyb66ZuuMUgCq5popHO10Q
|
|
|
97
97
|
pulumi_digitalocean/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
98
98
|
pulumi_digitalocean/config/__init__.pyi,sha256=Ldryf5hmAV_RpYiaKYb8T8MwEqFG-77lHmOOLbJlXR8,1318
|
|
99
99
|
pulumi_digitalocean/config/vars.py,sha256=rTFGUSJ8ymj00a7GZTGgWBk4OoyMW05038qmLb3tMho,2506
|
|
100
|
-
pulumi_digitalocean-4.35.
|
|
101
|
-
pulumi_digitalocean-4.35.
|
|
102
|
-
pulumi_digitalocean-4.35.
|
|
103
|
-
pulumi_digitalocean-4.35.
|
|
100
|
+
pulumi_digitalocean-4.35.0a1731510675.dist-info/METADATA,sha256=d-aXyQGaNX_7PHBApvznJfA_ZexHKh8BIuWkoFhxfyE,3854
|
|
101
|
+
pulumi_digitalocean-4.35.0a1731510675.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
|
102
|
+
pulumi_digitalocean-4.35.0a1731510675.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
|
|
103
|
+
pulumi_digitalocean-4.35.0a1731510675.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|