pulumi-linode 5.2.0a1753337355__py3-none-any.whl → 5.2.0a1753397983__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-linode might be problematic. Click here for more details.
- pulumi_linode/__init__.py +1 -1
- pulumi_linode/_inputs.py +5169 -5170
- pulumi_linode/account_settings.py +70 -71
- pulumi_linode/config/__init__.py +1 -1
- pulumi_linode/config/__init__.pyi +1 -2
- pulumi_linode/config/vars.py +21 -22
- pulumi_linode/database_access_controls.py +52 -53
- pulumi_linode/database_mysql.py +247 -248
- pulumi_linode/database_mysql_v2.py +782 -783
- pulumi_linode/database_postgresql.py +273 -274
- pulumi_linode/database_postgresql_v2.py +1105 -1106
- pulumi_linode/domain.py +222 -223
- pulumi_linode/domain_record.py +188 -189
- pulumi_linode/firewall.py +155 -156
- pulumi_linode/firewall_device.py +70 -71
- pulumi_linode/get_account.py +33 -34
- pulumi_linode/get_account_availabilities.py +5 -6
- pulumi_linode/get_account_availability.py +13 -14
- pulumi_linode/get_account_login.py +17 -18
- pulumi_linode/get_account_logins.py +5 -6
- pulumi_linode/get_account_settings.py +13 -14
- pulumi_linode/get_child_account.py +37 -38
- pulumi_linode/get_child_accounts.py +5 -6
- pulumi_linode/get_database_backups.py +35 -36
- pulumi_linode/get_database_engines.py +23 -24
- pulumi_linode/get_database_mysql.py +52 -53
- pulumi_linode/get_database_mysql_backups.py +29 -30
- pulumi_linode/get_database_mysql_config.py +5 -6
- pulumi_linode/get_database_mysql_v2.py +115 -116
- pulumi_linode/get_database_postgresql.py +56 -57
- pulumi_linode/get_database_postgresql_config.py +7 -8
- pulumi_linode/get_database_postgresql_v2.py +153 -154
- pulumi_linode/get_databases.py +17 -18
- pulumi_linode/get_domain.py +37 -38
- pulumi_linode/get_domain_record.py +37 -38
- pulumi_linode/get_domain_zonefile.py +11 -12
- pulumi_linode/get_domains.py +17 -18
- pulumi_linode/get_firewall.py +30 -31
- pulumi_linode/get_firewalls.py +17 -18
- pulumi_linode/get_image.py +36 -37
- pulumi_linode/get_images.py +23 -24
- pulumi_linode/get_instance_backups.py +12 -13
- pulumi_linode/get_instance_networking.py +11 -12
- pulumi_linode/get_instance_type.py +30 -31
- pulumi_linode/get_instance_types.py +17 -18
- pulumi_linode/get_instances.py +17 -18
- pulumi_linode/get_ipv6_range.py +17 -18
- pulumi_linode/get_ipv6_ranges.py +5 -6
- pulumi_linode/get_kernel.py +23 -24
- pulumi_linode/get_kernels.py +17 -18
- pulumi_linode/get_linode_object_storage_bucket.py +33 -34
- pulumi_linode/get_lke_cluster.py +33 -34
- pulumi_linode/get_lke_clusters.py +17 -18
- pulumi_linode/get_lke_types.py +17 -18
- pulumi_linode/get_lke_version.py +13 -14
- pulumi_linode/get_lke_versions.py +10 -11
- pulumi_linode/get_nb_types.py +13 -14
- pulumi_linode/get_network_transfer_prices.py +17 -18
- pulumi_linode/get_networking_ip.py +28 -29
- pulumi_linode/get_networking_ips.py +17 -18
- pulumi_linode/get_node_balancer.py +29 -30
- pulumi_linode/get_node_balancer_config.py +48 -49
- pulumi_linode/get_node_balancer_node.py +29 -30
- pulumi_linode/get_nodebalancer_configs.py +23 -24
- pulumi_linode/get_nodebalancers.py +17 -18
- pulumi_linode/get_object_storage_cluster.py +15 -16
- pulumi_linode/get_object_storage_endpoints.py +17 -18
- pulumi_linode/get_object_storage_quota.py +22 -23
- pulumi_linode/get_object_storage_quotas.py +5 -6
- pulumi_linode/get_placement_group.py +19 -20
- pulumi_linode/get_placement_groups.py +13 -14
- pulumi_linode/get_profile.py +22 -23
- pulumi_linode/get_region.py +19 -20
- pulumi_linode/get_regions.py +5 -6
- pulumi_linode/get_ssh_key.py +17 -18
- pulumi_linode/get_sshkeys.py +17 -18
- pulumi_linode/get_stack_script.py +32 -33
- pulumi_linode/get_stack_scripts.py +23 -24
- pulumi_linode/get_user.py +35 -36
- pulumi_linode/get_users.py +17 -18
- pulumi_linode/get_vlans.py +17 -18
- pulumi_linode/get_volume.py +27 -28
- pulumi_linode/get_volume_types.py +17 -18
- pulumi_linode/get_volumes.py +17 -18
- pulumi_linode/get_vpc.py +17 -18
- pulumi_linode/get_vpc_ips.py +11 -12
- pulumi_linode/get_vpc_subnet.py +22 -23
- pulumi_linode/get_vpc_subnets.py +11 -12
- pulumi_linode/get_vpcs.py +5 -6
- pulumi_linode/image.py +292 -293
- pulumi_linode/instance.py +520 -521
- pulumi_linode/instance_config.py +166 -167
- pulumi_linode/instance_disk.py +210 -211
- pulumi_linode/instance_ip.py +125 -126
- pulumi_linode/instance_shared_ips.py +35 -36
- pulumi_linode/ipv6_range.py +88 -89
- pulumi_linode/lke_cluster.py +162 -163
- pulumi_linode/lke_node_pool.py +137 -138
- pulumi_linode/networking_ip.py +133 -134
- pulumi_linode/networking_ip_assignment.py +21 -22
- pulumi_linode/node_balancer.py +152 -153
- pulumi_linode/node_balancer_config.py +319 -320
- pulumi_linode/node_balancer_node.py +112 -113
- pulumi_linode/object_storage_bucket.py +195 -196
- pulumi_linode/object_storage_key.py +67 -68
- pulumi_linode/object_storage_object.py +350 -351
- pulumi_linode/outputs.py +5305 -5306
- pulumi_linode/placement_group.py +80 -81
- pulumi_linode/placement_group_assignment.py +48 -49
- pulumi_linode/provider.py +180 -181
- pulumi_linode/pulumi-plugin.json +1 -1
- pulumi_linode/rdns.py +55 -56
- pulumi_linode/reserved_ip_assignment.py +142 -143
- pulumi_linode/ssh_key.py +44 -45
- pulumi_linode/stack_script.py +159 -160
- pulumi_linode/token.py +70 -71
- pulumi_linode/user.py +112 -113
- pulumi_linode/volume.py +141 -142
- pulumi_linode/vpc.py +70 -71
- pulumi_linode/vpc_subnet.py +72 -73
- {pulumi_linode-5.2.0a1753337355.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/METADATA +1 -1
- pulumi_linode-5.2.0a1753397983.dist-info/RECORD +126 -0
- pulumi_linode-5.2.0a1753337355.dist-info/RECORD +0 -126
- {pulumi_linode-5.2.0a1753337355.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/WHEEL +0 -0
- {pulumi_linode-5.2.0a1753337355.dist-info → pulumi_linode-5.2.0a1753397983.dist-info}/top_level.txt +0 -0
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -102,182 +101,182 @@ class GetDatabasePostgresqlResult:
|
|
|
102
101
|
raise TypeError("Expected argument 'version' to be a str")
|
|
103
102
|
pulumi.set(__self__, "version", version)
|
|
104
103
|
|
|
105
|
-
@property
|
|
104
|
+
@_builtins.property
|
|
106
105
|
@pulumi.getter(name="allowLists")
|
|
107
|
-
def allow_lists(self) -> Sequence[
|
|
106
|
+
def allow_lists(self) -> Sequence[_builtins.str]:
|
|
108
107
|
"""
|
|
109
108
|
A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format.
|
|
110
109
|
"""
|
|
111
110
|
return pulumi.get(self, "allow_lists")
|
|
112
111
|
|
|
113
|
-
@property
|
|
112
|
+
@_builtins.property
|
|
114
113
|
@pulumi.getter(name="caCert")
|
|
115
|
-
def ca_cert(self) ->
|
|
114
|
+
def ca_cert(self) -> _builtins.str:
|
|
116
115
|
"""
|
|
117
116
|
The base64-encoded SSL CA certificate for the Managed Database instance.
|
|
118
117
|
"""
|
|
119
118
|
return pulumi.get(self, "ca_cert")
|
|
120
119
|
|
|
121
|
-
@property
|
|
120
|
+
@_builtins.property
|
|
122
121
|
@pulumi.getter(name="clusterSize")
|
|
123
|
-
def cluster_size(self) ->
|
|
122
|
+
def cluster_size(self) -> _builtins.int:
|
|
124
123
|
"""
|
|
125
124
|
The number of Linode Instance nodes deployed to the Managed Database.
|
|
126
125
|
"""
|
|
127
126
|
return pulumi.get(self, "cluster_size")
|
|
128
127
|
|
|
129
|
-
@property
|
|
128
|
+
@_builtins.property
|
|
130
129
|
@pulumi.getter
|
|
131
|
-
def created(self) ->
|
|
130
|
+
def created(self) -> _builtins.str:
|
|
132
131
|
"""
|
|
133
132
|
When this Managed Database was created.
|
|
134
133
|
"""
|
|
135
134
|
return pulumi.get(self, "created")
|
|
136
135
|
|
|
137
|
-
@property
|
|
136
|
+
@_builtins.property
|
|
138
137
|
@pulumi.getter(name="databaseId")
|
|
139
138
|
@_utilities.deprecated("""Configure `id` instead. This attribute will be removed in the next major version of the provider.""")
|
|
140
|
-
def database_id(self) -> Optional[
|
|
139
|
+
def database_id(self) -> Optional[_builtins.int]:
|
|
141
140
|
return pulumi.get(self, "database_id")
|
|
142
141
|
|
|
143
|
-
@property
|
|
142
|
+
@_builtins.property
|
|
144
143
|
@pulumi.getter
|
|
145
|
-
def encrypted(self) ->
|
|
144
|
+
def encrypted(self) -> _builtins.bool:
|
|
146
145
|
"""
|
|
147
146
|
Whether the Managed Databases is encrypted.
|
|
148
147
|
"""
|
|
149
148
|
return pulumi.get(self, "encrypted")
|
|
150
149
|
|
|
151
|
-
@property
|
|
150
|
+
@_builtins.property
|
|
152
151
|
@pulumi.getter
|
|
153
|
-
def engine(self) ->
|
|
152
|
+
def engine(self) -> _builtins.str:
|
|
154
153
|
"""
|
|
155
154
|
The Managed Database engine. (e.g. `postgresql`)
|
|
156
155
|
"""
|
|
157
156
|
return pulumi.get(self, "engine")
|
|
158
157
|
|
|
159
|
-
@property
|
|
158
|
+
@_builtins.property
|
|
160
159
|
@pulumi.getter(name="engineId")
|
|
161
|
-
def engine_id(self) ->
|
|
160
|
+
def engine_id(self) -> _builtins.str:
|
|
162
161
|
"""
|
|
163
162
|
The Managed Database engine in engine/version format. (e.g. `postgresql/13.2`)
|
|
164
163
|
"""
|
|
165
164
|
return pulumi.get(self, "engine_id")
|
|
166
165
|
|
|
167
|
-
@property
|
|
166
|
+
@_builtins.property
|
|
168
167
|
@pulumi.getter(name="hostPrimary")
|
|
169
|
-
def host_primary(self) ->
|
|
168
|
+
def host_primary(self) -> _builtins.str:
|
|
170
169
|
"""
|
|
171
170
|
The primary host for the Managed Database.
|
|
172
171
|
"""
|
|
173
172
|
return pulumi.get(self, "host_primary")
|
|
174
173
|
|
|
175
|
-
@property
|
|
174
|
+
@_builtins.property
|
|
176
175
|
@pulumi.getter(name="hostSecondary")
|
|
177
|
-
def host_secondary(self) ->
|
|
176
|
+
def host_secondary(self) -> _builtins.str:
|
|
178
177
|
"""
|
|
179
178
|
The secondary/private network host for the Managed Database.
|
|
180
179
|
"""
|
|
181
180
|
return pulumi.get(self, "host_secondary")
|
|
182
181
|
|
|
183
|
-
@property
|
|
182
|
+
@_builtins.property
|
|
184
183
|
@pulumi.getter
|
|
185
|
-
def id(self) -> Optional[
|
|
184
|
+
def id(self) -> Optional[_builtins.int]:
|
|
186
185
|
return pulumi.get(self, "id")
|
|
187
186
|
|
|
188
|
-
@property
|
|
187
|
+
@_builtins.property
|
|
189
188
|
@pulumi.getter
|
|
190
|
-
def label(self) ->
|
|
189
|
+
def label(self) -> _builtins.str:
|
|
191
190
|
"""
|
|
192
191
|
A unique, user-defined string referring to the Managed Database.
|
|
193
192
|
"""
|
|
194
193
|
return pulumi.get(self, "label")
|
|
195
194
|
|
|
196
|
-
@property
|
|
195
|
+
@_builtins.property
|
|
197
196
|
@pulumi.getter
|
|
198
|
-
def port(self) ->
|
|
197
|
+
def port(self) -> _builtins.int:
|
|
199
198
|
return pulumi.get(self, "port")
|
|
200
199
|
|
|
201
|
-
@property
|
|
200
|
+
@_builtins.property
|
|
202
201
|
@pulumi.getter
|
|
203
|
-
def region(self) ->
|
|
202
|
+
def region(self) -> _builtins.str:
|
|
204
203
|
"""
|
|
205
204
|
The region that hosts this Linode Managed Database.
|
|
206
205
|
"""
|
|
207
206
|
return pulumi.get(self, "region")
|
|
208
207
|
|
|
209
|
-
@property
|
|
208
|
+
@_builtins.property
|
|
210
209
|
@pulumi.getter(name="replicationCommitType")
|
|
211
|
-
def replication_commit_type(self) ->
|
|
210
|
+
def replication_commit_type(self) -> _builtins.str:
|
|
212
211
|
"""
|
|
213
212
|
(Optional) The synchronization level of the replicating server. (`on`, `local`, `remote_write`, `remote_apply`, `off`)
|
|
214
213
|
"""
|
|
215
214
|
return pulumi.get(self, "replication_commit_type")
|
|
216
215
|
|
|
217
|
-
@property
|
|
216
|
+
@_builtins.property
|
|
218
217
|
@pulumi.getter(name="replicationType")
|
|
219
|
-
def replication_type(self) ->
|
|
218
|
+
def replication_type(self) -> _builtins.str:
|
|
220
219
|
"""
|
|
221
220
|
The replication method used for the Managed Database. (`none`, `asynch`, `semi_synch`)
|
|
222
221
|
"""
|
|
223
222
|
return pulumi.get(self, "replication_type")
|
|
224
223
|
|
|
225
|
-
@property
|
|
224
|
+
@_builtins.property
|
|
226
225
|
@pulumi.getter(name="rootPassword")
|
|
227
|
-
def root_password(self) ->
|
|
226
|
+
def root_password(self) -> _builtins.str:
|
|
228
227
|
"""
|
|
229
228
|
The randomly-generated root password for the Managed Database instance.
|
|
230
229
|
"""
|
|
231
230
|
return pulumi.get(self, "root_password")
|
|
232
231
|
|
|
233
|
-
@property
|
|
232
|
+
@_builtins.property
|
|
234
233
|
@pulumi.getter(name="rootUsername")
|
|
235
|
-
def root_username(self) ->
|
|
234
|
+
def root_username(self) -> _builtins.str:
|
|
236
235
|
"""
|
|
237
236
|
The root username for the Managed Database instance.
|
|
238
237
|
"""
|
|
239
238
|
return pulumi.get(self, "root_username")
|
|
240
239
|
|
|
241
|
-
@property
|
|
240
|
+
@_builtins.property
|
|
242
241
|
@pulumi.getter(name="sslConnection")
|
|
243
|
-
def ssl_connection(self) ->
|
|
242
|
+
def ssl_connection(self) -> _builtins.bool:
|
|
244
243
|
"""
|
|
245
244
|
Whether to require SSL credentials to establish a connection to the Managed Database.
|
|
246
245
|
"""
|
|
247
246
|
return pulumi.get(self, "ssl_connection")
|
|
248
247
|
|
|
249
|
-
@property
|
|
248
|
+
@_builtins.property
|
|
250
249
|
@pulumi.getter
|
|
251
|
-
def status(self) ->
|
|
250
|
+
def status(self) -> _builtins.str:
|
|
252
251
|
"""
|
|
253
252
|
The operating status of the Managed Database.
|
|
254
253
|
"""
|
|
255
254
|
return pulumi.get(self, "status")
|
|
256
255
|
|
|
257
|
-
@property
|
|
256
|
+
@_builtins.property
|
|
258
257
|
@pulumi.getter
|
|
259
|
-
def type(self) ->
|
|
258
|
+
def type(self) -> _builtins.str:
|
|
260
259
|
"""
|
|
261
260
|
The Linode Instance type used for the nodes of the Managed Database instance.
|
|
262
261
|
"""
|
|
263
262
|
return pulumi.get(self, "type")
|
|
264
263
|
|
|
265
|
-
@property
|
|
264
|
+
@_builtins.property
|
|
266
265
|
@pulumi.getter
|
|
267
|
-
def updated(self) ->
|
|
266
|
+
def updated(self) -> _builtins.str:
|
|
268
267
|
"""
|
|
269
268
|
When this Managed Database was last updated.
|
|
270
269
|
"""
|
|
271
270
|
return pulumi.get(self, "updated")
|
|
272
271
|
|
|
273
|
-
@property
|
|
272
|
+
@_builtins.property
|
|
274
273
|
@pulumi.getter
|
|
275
274
|
def updates(self) -> Sequence['outputs.GetDatabasePostgresqlUpdateResult']:
|
|
276
275
|
return pulumi.get(self, "updates")
|
|
277
276
|
|
|
278
|
-
@property
|
|
277
|
+
@_builtins.property
|
|
279
278
|
@pulumi.getter
|
|
280
|
-
def version(self) ->
|
|
279
|
+
def version(self) -> _builtins.str:
|
|
281
280
|
"""
|
|
282
281
|
The Managed Database engine version. (e.g. `v8.0.26`)
|
|
283
282
|
"""
|
|
@@ -316,8 +315,8 @@ class AwaitableGetDatabasePostgresqlResult(GetDatabasePostgresqlResult):
|
|
|
316
315
|
version=self.version)
|
|
317
316
|
|
|
318
317
|
|
|
319
|
-
def get_database_postgresql(database_id: Optional[
|
|
320
|
-
id: Optional[
|
|
318
|
+
def get_database_postgresql(database_id: Optional[_builtins.int] = None,
|
|
319
|
+
id: Optional[_builtins.int] = None,
|
|
321
320
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDatabasePostgresqlResult:
|
|
322
321
|
"""
|
|
323
322
|
> **DEPRECATION NOTICE:** This data source has been deprecated. Please use DatabasePostgresqlV2 for all future implementations.
|
|
@@ -351,8 +350,8 @@ def get_database_postgresql(database_id: Optional[builtins.int] = None,
|
|
|
351
350
|
* `week_of_month` - The week of the month to perform monthly frequency updates. Required for `monthly` frequency updates. (`1`..`4`)
|
|
352
351
|
|
|
353
352
|
|
|
354
|
-
:param
|
|
355
|
-
:param
|
|
353
|
+
:param _builtins.int database_id: The ID of the PostgreSQL database. Deprecated: Use id instead.
|
|
354
|
+
:param _builtins.int id: The ID of the PostgreSQL database. Mutually exclusive with `database_id`.
|
|
356
355
|
"""
|
|
357
356
|
__args__ = dict()
|
|
358
357
|
__args__['databaseId'] = database_id
|
|
@@ -385,8 +384,8 @@ def get_database_postgresql(database_id: Optional[builtins.int] = None,
|
|
|
385
384
|
updated=pulumi.get(__ret__, 'updated'),
|
|
386
385
|
updates=pulumi.get(__ret__, 'updates'),
|
|
387
386
|
version=pulumi.get(__ret__, 'version'))
|
|
388
|
-
def get_database_postgresql_output(database_id: Optional[pulumi.Input[Optional[
|
|
389
|
-
id: Optional[pulumi.Input[Optional[
|
|
387
|
+
def get_database_postgresql_output(database_id: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
388
|
+
id: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
390
389
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDatabasePostgresqlResult]:
|
|
391
390
|
"""
|
|
392
391
|
> **DEPRECATION NOTICE:** This data source has been deprecated. Please use DatabasePostgresqlV2 for all future implementations.
|
|
@@ -420,8 +419,8 @@ def get_database_postgresql_output(database_id: Optional[pulumi.Input[Optional[b
|
|
|
420
419
|
* `week_of_month` - The week of the month to perform monthly frequency updates. Required for `monthly` frequency updates. (`1`..`4`)
|
|
421
420
|
|
|
422
421
|
|
|
423
|
-
:param
|
|
424
|
-
:param
|
|
422
|
+
:param _builtins.int database_id: The ID of the PostgreSQL database. Deprecated: Use id instead.
|
|
423
|
+
:param _builtins.int id: The ID of the PostgreSQL database. Mutually exclusive with `database_id`.
|
|
425
424
|
"""
|
|
426
425
|
__args__ = dict()
|
|
427
426
|
__args__['databaseId'] = database_id
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -45,27 +44,27 @@ class GetDatabasePostgresqlConfigResult:
|
|
|
45
44
|
raise TypeError("Expected argument 'work_mems' to be a list")
|
|
46
45
|
pulumi.set(__self__, "work_mems", work_mems)
|
|
47
46
|
|
|
48
|
-
@property
|
|
47
|
+
@_builtins.property
|
|
49
48
|
@pulumi.getter
|
|
50
|
-
def id(self) ->
|
|
49
|
+
def id(self) -> _builtins.str:
|
|
51
50
|
return pulumi.get(self, "id")
|
|
52
51
|
|
|
53
|
-
@property
|
|
52
|
+
@_builtins.property
|
|
54
53
|
@pulumi.getter(name="pgStatMonitorEnables")
|
|
55
54
|
def pg_stat_monitor_enables(self) -> Sequence['outputs.GetDatabasePostgresqlConfigPgStatMonitorEnableResult']:
|
|
56
55
|
return pulumi.get(self, "pg_stat_monitor_enables")
|
|
57
56
|
|
|
58
|
-
@property
|
|
57
|
+
@_builtins.property
|
|
59
58
|
@pulumi.getter
|
|
60
59
|
def pglookouts(self) -> Sequence['outputs.GetDatabasePostgresqlConfigPglookoutResult']:
|
|
61
60
|
return pulumi.get(self, "pglookouts")
|
|
62
61
|
|
|
63
|
-
@property
|
|
62
|
+
@_builtins.property
|
|
64
63
|
@pulumi.getter(name="sharedBuffersPercentages")
|
|
65
64
|
def shared_buffers_percentages(self) -> Sequence['outputs.GetDatabasePostgresqlConfigSharedBuffersPercentageResult']:
|
|
66
65
|
return pulumi.get(self, "shared_buffers_percentages")
|
|
67
66
|
|
|
68
|
-
@property
|
|
67
|
+
@_builtins.property
|
|
69
68
|
@pulumi.getter(name="workMems")
|
|
70
69
|
def work_mems(self) -> Sequence['outputs.GetDatabasePostgresqlConfigWorkMemResult']:
|
|
71
70
|
return pulumi.get(self, "work_mems")
|