@upcloud/pulumi-upcloud 0.9.0-alpha.1764174545 → 0.10.0

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.
package/types/output.d.ts CHANGED
@@ -17,30 +17,6 @@ export interface FileStorageNetwork {
17
17
  */
18
18
  uuid: string;
19
19
  }
20
- export interface FileStorageShare {
21
- /**
22
- * Access control entries (1–50).
23
- */
24
- acls?: outputs.FileStorageShareAcl[];
25
- /**
26
- * Unique name of the share (1–64 chars).
27
- */
28
- name: string;
29
- /**
30
- * Absolute path exported by the share (e.g. `/public`).
31
- */
32
- path: string;
33
- }
34
- export interface FileStorageShareAcl {
35
- /**
36
- * Access level: 'ro' or 'rw'.
37
- */
38
- permission: string;
39
- /**
40
- * Target IP/CIDR or '*'.
41
- */
42
- target: string;
43
- }
44
20
  export interface GatewayAddress {
45
21
  /**
46
22
  * IP addresss
@@ -1257,7 +1233,7 @@ export interface LoadbalancerNodeNetworkIpAddress {
1257
1233
  }
1258
1234
  export interface ManagedDatabaseMysqlComponent {
1259
1235
  /**
1260
- * Type of the component
1236
+ * Component name.
1261
1237
  */
1262
1238
  component: string;
1263
1239
  /**
@@ -1305,7 +1281,7 @@ export interface ManagedDatabaseMysqlNodeState {
1305
1281
  */
1306
1282
  role: string;
1307
1283
  /**
1308
- * State of the node
1284
+ * Current state of the node
1309
1285
  */
1310
1286
  state: string;
1311
1287
  }
@@ -1321,7 +1297,7 @@ export interface ManagedDatabaseMysqlProperties {
1321
1297
  /**
1322
1298
  * Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone.
1323
1299
  */
1324
- automaticUtilityNetworkIpFilter?: boolean;
1300
+ automaticUtilityNetworkIpFilter: boolean;
1325
1301
  /**
1326
1302
  * The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
1327
1303
  */
@@ -1429,11 +1405,11 @@ export interface ManagedDatabaseMysqlProperties {
1429
1405
  /**
1430
1406
  * Migrate data from existing server.
1431
1407
  */
1432
- migration: outputs.ManagedDatabaseMysqlPropertiesMigration;
1408
+ migration?: outputs.ManagedDatabaseMysqlPropertiesMigration;
1433
1409
  /**
1434
1410
  * MySQL incremental backup configuration.
1435
1411
  */
1436
- mysqlIncrementalBackup: outputs.ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup;
1412
+ mysqlIncrementalBackup?: outputs.ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup;
1437
1413
  /**
1438
1414
  * Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service.
1439
1415
  */
@@ -1449,7 +1425,7 @@ export interface ManagedDatabaseMysqlProperties {
1449
1425
  /**
1450
1426
  * Public Access. Allow access to the service from the public Internet.
1451
1427
  */
1452
- publicAccess?: boolean;
1428
+ publicAccess: boolean;
1453
1429
  /**
1454
1430
  * Service logging. Store logs for the service so that they are available in the HTTP API and console.
1455
1431
  */
@@ -1465,7 +1441,7 @@ export interface ManagedDatabaseMysqlProperties {
1465
1441
  /**
1466
1442
  * Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned.
1467
1443
  */
1468
- sqlMode?: string;
1444
+ sqlMode: string;
1469
1445
  /**
1470
1446
  * Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.
1471
1447
  */
@@ -1488,6 +1464,10 @@ export interface ManagedDatabaseMysqlPropertiesMigration {
1488
1464
  * Database name for bootstrapping the initial connection.
1489
1465
  */
1490
1466
  dbname: string;
1467
+ /**
1468
+ * MySQL migration dump tool. Experimental! Tool to use for database dump and restore during migration. Default: mysqldump.
1469
+ */
1470
+ dumpTool: string;
1491
1471
  /**
1492
1472
  * Hostname or IP address of the server where to migrate data from.
1493
1473
  */
@@ -1512,6 +1492,10 @@ export interface ManagedDatabaseMysqlPropertiesMigration {
1512
1492
  * Port number of the server where to migrate data from.
1513
1493
  */
1514
1494
  port: number;
1495
+ /**
1496
+ * Skip dump-restore part and start replication.
1497
+ */
1498
+ reestablishReplication: boolean;
1515
1499
  /**
1516
1500
  * The server where to migrate data from is secured with SSL.
1517
1501
  */
@@ -1533,7 +1517,7 @@ export interface ManagedDatabaseMysqlPropertiesMysqlIncrementalBackup {
1533
1517
  }
1534
1518
  export interface ManagedDatabaseOpensearchComponent {
1535
1519
  /**
1536
- * Type of the component
1520
+ * Component name.
1537
1521
  */
1538
1522
  component: string;
1539
1523
  /**
@@ -1581,7 +1565,7 @@ export interface ManagedDatabaseOpensearchNodeState {
1581
1565
  */
1582
1566
  role: string;
1583
1567
  /**
1584
- * State of the node
1568
+ * Current state of the node
1585
1569
  */
1586
1570
  state: string;
1587
1571
  }
@@ -1597,11 +1581,11 @@ export interface ManagedDatabaseOpensearchProperties {
1597
1581
  /**
1598
1582
  * Opensearch Security Plugin Settings.
1599
1583
  */
1600
- authFailureListeners: outputs.ManagedDatabaseOpensearchPropertiesAuthFailureListeners;
1584
+ authFailureListeners?: outputs.ManagedDatabaseOpensearchPropertiesAuthFailureListeners;
1601
1585
  /**
1602
1586
  * Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone.
1603
1587
  */
1604
- automaticUtilityNetworkIpFilter?: boolean;
1588
+ automaticUtilityNetworkIpFilter: boolean;
1605
1589
  /**
1606
1590
  * The limit of how much total remote data can be referenced. Defines a limit of how much total remote data can be referenced as a ratio of the size of the disk reserved for the file cache. This is designed to be a safeguard to prevent oversubscribing a cluster. Defaults to 0.
1607
1591
  */
@@ -1610,7 +1594,7 @@ export interface ManagedDatabaseOpensearchProperties {
1610
1594
  * Controls the number of shards allowed in the cluster per data node.
1611
1595
  */
1612
1596
  clusterMaxShardsPerNode: number;
1613
- clusterRemoteStore: outputs.ManagedDatabaseOpensearchPropertiesClusterRemoteStore;
1597
+ clusterRemoteStore?: outputs.ManagedDatabaseOpensearchPropertiesClusterRemoteStore;
1614
1598
  /**
1615
1599
  * When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false.
1616
1600
  */
@@ -1619,7 +1603,7 @@ export interface ManagedDatabaseOpensearchProperties {
1619
1603
  * Concurrent incoming/outgoing shard recoveries per node. How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
1620
1604
  */
1621
1605
  clusterRoutingAllocationNodeConcurrentRecoveries: number;
1622
- clusterSearchRequestSlowlog: outputs.ManagedDatabaseOpensearchPropertiesClusterSearchRequestSlowlog;
1606
+ clusterSearchRequestSlowlog?: outputs.ManagedDatabaseOpensearchPropertiesClusterSearchRequestSlowlog;
1623
1607
  /**
1624
1608
  * Custom domain. Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. When you set a custom domain for a service deployed in a VPC, the service certificate is only created for the public-* hostname and the custom domain.
1625
1609
  */
@@ -1635,7 +1619,7 @@ export interface ManagedDatabaseOpensearchProperties {
1635
1619
  /**
1636
1620
  * Watermark settings.
1637
1621
  */
1638
- diskWatermarks: outputs.ManagedDatabaseOpensearchPropertiesDiskWatermarks;
1622
+ diskWatermarks?: outputs.ManagedDatabaseOpensearchPropertiesDiskWatermarks;
1639
1623
  /**
1640
1624
  * Elasticsearch version.
1641
1625
  */
@@ -1687,11 +1671,11 @@ export interface ManagedDatabaseOpensearchProperties {
1687
1671
  /**
1688
1672
  * Index rollup settings.
1689
1673
  */
1690
- indexRollup: outputs.ManagedDatabaseOpensearchPropertiesIndexRollup;
1674
+ indexRollup?: outputs.ManagedDatabaseOpensearchPropertiesIndexRollup;
1691
1675
  /**
1692
1676
  * Template settings for all new indexes.
1693
1677
  */
1694
- indexTemplate: outputs.ManagedDatabaseOpensearchPropertiesIndexTemplate;
1678
+ indexTemplate?: outputs.ManagedDatabaseOpensearchPropertiesIndexTemplate;
1695
1679
  /**
1696
1680
  * Relative amount. Maximum amount of heap memory used for field data cache. This is an expert setting; decreasing the value too much will increase overhead of loading field data; too much memory used for field data cache will decrease amount of heap available for other operations.
1697
1681
  */
@@ -1755,7 +1739,7 @@ export interface ManagedDatabaseOpensearchProperties {
1755
1739
  /**
1756
1740
  * OpenSearch JWT Configuration.
1757
1741
  */
1758
- jwt: outputs.ManagedDatabaseOpensearchPropertiesJwt;
1742
+ jwt?: outputs.ManagedDatabaseOpensearchPropertiesJwt;
1759
1743
  /**
1760
1744
  * Don't reset index.refresh_interval to the default value. Aiven automation resets index.refresh_interval to default value for every index to be sure that indices are always visible to search. If it doesn't fit your case, you can disable this by setting up this flag to true.
1761
1745
  */
@@ -1768,6 +1752,18 @@ export interface ManagedDatabaseOpensearchProperties {
1768
1752
  * Maximum amount of memory in percentage that can be used for the KNN index. Defaults to 50% of the JVM heap size. 0 is used to set it to null which can be used to invalidate caches.
1769
1753
  */
1770
1754
  knnMemoryCircuitBreakerLimit: number;
1755
+ /**
1756
+ * plugins.ml_commons.model_access_control.enabled. Enable or disable model access control for ML Commons. When enabled, access to ML models is controlled by security permissions. Defaults to false.
1757
+ */
1758
+ mlCommonsModelAccessControlEnabled: boolean;
1759
+ /**
1760
+ * plugins.ml_commons.native_memory_threshold. Native memory threshold percentage for ML Commons. Controls the maximum percentage of native memory that can be used by ML Commons operations. Defaults to 90%.
1761
+ */
1762
+ mlCommonsNativeMemoryThreshold: number;
1763
+ /**
1764
+ * plugins.ml_commons.only_run_on_ml_node. Enable or disable running ML Commons tasks only on ML nodes. When enabled, ML tasks will only execute on nodes designated as ML nodes. Defaults to true.
1765
+ */
1766
+ mlCommonsOnlyRunOnMlNode: boolean;
1771
1767
  /**
1772
1768
  * The limit of how much total remote data can be referenced. Defines a limit of how much total remote data can be referenced as a ratio of the size of the disk reserved for the file cache. This is designed to be a safeguard to prevent oversubscribing a cluster. Defaults to 5gb. Requires restarting all OpenSearch nodes.
1773
1769
  */
@@ -1775,11 +1771,11 @@ export interface ManagedDatabaseOpensearchProperties {
1775
1771
  /**
1776
1772
  * OpenSearch OpenID Connect Configuration.
1777
1773
  */
1778
- openid: outputs.ManagedDatabaseOpensearchPropertiesOpenid;
1774
+ openid?: outputs.ManagedDatabaseOpensearchPropertiesOpenid;
1779
1775
  /**
1780
1776
  * OpenSearch Dashboards settings.
1781
1777
  */
1782
- opensearchDashboards: outputs.ManagedDatabaseOpensearchPropertiesOpensearchDashboards;
1778
+ opensearchDashboards?: outputs.ManagedDatabaseOpensearchPropertiesOpensearchDashboards;
1783
1779
  /**
1784
1780
  * Compatibility mode sets OpenSearch to report its version as 7.10 so clients continue to work. Default is false.
1785
1781
  */
@@ -1791,25 +1787,25 @@ export interface ManagedDatabaseOpensearchProperties {
1791
1787
  /**
1792
1788
  * Public Access. Allow access to the service from the public Internet.
1793
1789
  */
1794
- publicAccess?: boolean;
1790
+ publicAccess: boolean;
1795
1791
  /**
1796
1792
  * Whitelisted addresses for reindexing. Changing this value will cause all OpenSearch instances to restart.
1797
1793
  */
1798
1794
  reindexRemoteWhitelists: string[];
1799
- remoteStore: outputs.ManagedDatabaseOpensearchPropertiesRemoteStore;
1795
+ remoteStore?: outputs.ManagedDatabaseOpensearchPropertiesRemoteStore;
1800
1796
  /**
1801
1797
  * OpenSearch SAML configuration.
1802
1798
  */
1803
- saml: outputs.ManagedDatabaseOpensearchPropertiesSaml;
1799
+ saml?: outputs.ManagedDatabaseOpensearchPropertiesSaml;
1804
1800
  /**
1805
1801
  * Script max compilation rate - circuit breaker to prevent/minimize OOMs. Script compilation circuit breaker limits the number of inline script compilations within a period of time. Default is use-context.
1806
1802
  */
1807
- scriptMaxCompilationsRate?: string;
1803
+ scriptMaxCompilationsRate: string;
1808
1804
  /**
1809
1805
  * Search Backpressure Settings.
1810
1806
  */
1811
- searchBackpressure: outputs.ManagedDatabaseOpensearchPropertiesSearchBackpressure;
1812
- searchInsightsTopQueries: outputs.ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueries;
1807
+ searchBackpressure?: outputs.ManagedDatabaseOpensearchPropertiesSearchBackpressure;
1808
+ searchInsightsTopQueries?: outputs.ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueries;
1813
1809
  /**
1814
1810
  * Maximum number of aggregation buckets allowed in a single response. OpenSearch default value is used when this is not defined.
1815
1811
  */
@@ -1817,7 +1813,7 @@ export interface ManagedDatabaseOpensearchProperties {
1817
1813
  /**
1818
1814
  * Segment Replication Backpressure Settings.
1819
1815
  */
1820
- segrep: outputs.ManagedDatabaseOpensearchPropertiesSegrep;
1816
+ segrep?: outputs.ManagedDatabaseOpensearchPropertiesSegrep;
1821
1817
  /**
1822
1818
  * Service logging. Store logs for the service so that they are available in the HTTP API and console.
1823
1819
  */
@@ -1825,7 +1821,7 @@ export interface ManagedDatabaseOpensearchProperties {
1825
1821
  /**
1826
1822
  * Shard indexing back pressure settings.
1827
1823
  */
1828
- shardIndexingPressure: outputs.ManagedDatabaseOpensearchPropertiesShardIndexingPressure;
1824
+ shardIndexingPressure?: outputs.ManagedDatabaseOpensearchPropertiesShardIndexingPressure;
1829
1825
  /**
1830
1826
  * analyze thread pool queue size. Size for the thread pool queue. See documentation for exact details.
1831
1827
  */
@@ -1876,7 +1872,7 @@ export interface ManagedDatabaseOpensearchProperties {
1876
1872
  version: string;
1877
1873
  }
1878
1874
  export interface ManagedDatabaseOpensearchPropertiesAuthFailureListeners {
1879
- internalAuthenticationBackendLimiting: outputs.ManagedDatabaseOpensearchPropertiesAuthFailureListenersInternalAuthenticationBackendLimiting;
1875
+ internalAuthenticationBackendLimiting?: outputs.ManagedDatabaseOpensearchPropertiesAuthFailureListenersInternalAuthenticationBackendLimiting;
1880
1876
  }
1881
1877
  export interface ManagedDatabaseOpensearchPropertiesAuthFailureListenersInternalAuthenticationBackendLimiting {
1882
1878
  /**
@@ -1931,25 +1927,25 @@ export interface ManagedDatabaseOpensearchPropertiesClusterSearchRequestSlowlog
1931
1927
  * Log level.
1932
1928
  */
1933
1929
  level: string;
1934
- threshold: outputs.ManagedDatabaseOpensearchPropertiesClusterSearchRequestSlowlogThreshold;
1930
+ threshold?: outputs.ManagedDatabaseOpensearchPropertiesClusterSearchRequestSlowlogThreshold;
1935
1931
  }
1936
1932
  export interface ManagedDatabaseOpensearchPropertiesClusterSearchRequestSlowlogThreshold {
1937
1933
  /**
1938
1934
  * Debug threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
1939
1935
  */
1940
- debug?: string;
1936
+ debug: string;
1941
1937
  /**
1942
1938
  * Info threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
1943
1939
  */
1944
- info?: string;
1940
+ info: string;
1945
1941
  /**
1946
1942
  * Trace threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
1947
1943
  */
1948
- trace?: string;
1944
+ trace: string;
1949
1945
  /**
1950
1946
  * Warning threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
1951
1947
  */
1952
- warn?: string;
1948
+ warn: string;
1953
1949
  }
1954
1950
  export interface ManagedDatabaseOpensearchPropertiesDiskWatermarks {
1955
1951
  /**
@@ -2051,7 +2047,7 @@ export interface ManagedDatabaseOpensearchPropertiesOpenid {
2051
2047
  /**
2052
2048
  * OpenID Connect metadata/configuration URL. The URL of your IdP where the Security plugin can find the OpenID Connect metadata/configuration settings.
2053
2049
  */
2054
- connectUrl?: string;
2050
+ connectUrl: string;
2055
2051
  /**
2056
2052
  * Enable or disable OpenSearch OpenID Connect authentication. Enables or disables OpenID Connect authentication for OpenSearch. When enabled, users can authenticate using OpenID Connect with an Identity Provider.
2057
2053
  */
@@ -2163,15 +2159,15 @@ export interface ManagedDatabaseOpensearchPropertiesSearchBackpressure {
2163
2159
  /**
2164
2160
  * Node duress settings.
2165
2161
  */
2166
- nodeDuress: outputs.ManagedDatabaseOpensearchPropertiesSearchBackpressureNodeDuress;
2162
+ nodeDuress?: outputs.ManagedDatabaseOpensearchPropertiesSearchBackpressureNodeDuress;
2167
2163
  /**
2168
2164
  * Search shard settings.
2169
2165
  */
2170
- searchShardTask: outputs.ManagedDatabaseOpensearchPropertiesSearchBackpressureSearchShardTask;
2166
+ searchShardTask?: outputs.ManagedDatabaseOpensearchPropertiesSearchBackpressureSearchShardTask;
2171
2167
  /**
2172
2168
  * Search task settings.
2173
2169
  */
2174
- searchTask: outputs.ManagedDatabaseOpensearchPropertiesSearchBackpressureSearchTask;
2170
+ searchTask?: outputs.ManagedDatabaseOpensearchPropertiesSearchBackpressureSearchTask;
2175
2171
  }
2176
2172
  export interface ManagedDatabaseOpensearchPropertiesSearchBackpressureNodeDuress {
2177
2173
  /**
@@ -2267,21 +2263,21 @@ export interface ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueries {
2267
2263
  /**
2268
2264
  * Top N queries monitoring by CPU.
2269
2265
  */
2270
- cpu: outputs.ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesCpu;
2266
+ cpu?: outputs.ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesCpu;
2271
2267
  /**
2272
2268
  * Top N queries monitoring by latency.
2273
2269
  */
2274
- latency: outputs.ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesLatency;
2270
+ latency?: outputs.ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesLatency;
2275
2271
  /**
2276
2272
  * Top N queries monitoring by memory.
2277
2273
  */
2278
- memory: outputs.ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesMemory;
2274
+ memory?: outputs.ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesMemory;
2279
2275
  }
2280
2276
  export interface ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesCpu {
2281
2277
  /**
2282
2278
  * Enable or disable top N query monitoring by the metric. Enable or disable top N query monitoring by the metric.
2283
2279
  */
2284
- enabled?: boolean;
2280
+ enabled: boolean;
2285
2281
  /**
2286
2282
  * Specify the value of N for the top N queries by the metric.
2287
2283
  */
@@ -2289,13 +2285,13 @@ export interface ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesCpu
2289
2285
  /**
2290
2286
  * The window size of the top N queries by the metric. Configure the window size of the top N queries.
2291
2287
  */
2292
- windowSize?: string;
2288
+ windowSize: string;
2293
2289
  }
2294
2290
  export interface ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesLatency {
2295
2291
  /**
2296
2292
  * Enable or disable top N query monitoring by the metric. Enable or disable top N query monitoring by the metric.
2297
2293
  */
2298
- enabled?: boolean;
2294
+ enabled: boolean;
2299
2295
  /**
2300
2296
  * Specify the value of N for the top N queries by the metric.
2301
2297
  */
@@ -2303,13 +2299,13 @@ export interface ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesLate
2303
2299
  /**
2304
2300
  * The window size of the top N queries by the metric. Configure the window size of the top N queries.
2305
2301
  */
2306
- windowSize?: string;
2302
+ windowSize: string;
2307
2303
  }
2308
2304
  export interface ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesMemory {
2309
2305
  /**
2310
2306
  * Enable or disable top N query monitoring by the metric. Enable or disable top N query monitoring by the metric.
2311
2307
  */
2312
- enabled?: boolean;
2308
+ enabled: boolean;
2313
2309
  /**
2314
2310
  * Specify the value of N for the top N queries by the metric.
2315
2311
  */
@@ -2317,7 +2313,7 @@ export interface ManagedDatabaseOpensearchPropertiesSearchInsightsTopQueriesMemo
2317
2313
  /**
2318
2314
  * The window size of the top N queries by the metric. Configure the window size of the top N queries.
2319
2315
  */
2320
- windowSize?: string;
2316
+ windowSize: string;
2321
2317
  }
2322
2318
  export interface ManagedDatabaseOpensearchPropertiesSegrep {
2323
2319
  /**
@@ -2354,11 +2350,11 @@ export interface ManagedDatabaseOpensearchPropertiesShardIndexingPressure {
2354
2350
  /**
2355
2351
  * Operating factor.
2356
2352
  */
2357
- operatingFactor: outputs.ManagedDatabaseOpensearchPropertiesShardIndexingPressureOperatingFactor;
2353
+ operatingFactor?: outputs.ManagedDatabaseOpensearchPropertiesShardIndexingPressureOperatingFactor;
2358
2354
  /**
2359
2355
  * Primary parameter.
2360
2356
  */
2361
- primaryParameter: outputs.ManagedDatabaseOpensearchPropertiesShardIndexingPressurePrimaryParameter;
2357
+ primaryParameter?: outputs.ManagedDatabaseOpensearchPropertiesShardIndexingPressurePrimaryParameter;
2362
2358
  }
2363
2359
  export interface ManagedDatabaseOpensearchPropertiesShardIndexingPressureOperatingFactor {
2364
2360
  /**
@@ -2384,8 +2380,8 @@ export interface ManagedDatabaseOpensearchPropertiesShardIndexingPressureOperati
2384
2380
  upper: number;
2385
2381
  }
2386
2382
  export interface ManagedDatabaseOpensearchPropertiesShardIndexingPressurePrimaryParameter {
2387
- node: outputs.ManagedDatabaseOpensearchPropertiesShardIndexingPressurePrimaryParameterNode;
2388
- shard: outputs.ManagedDatabaseOpensearchPropertiesShardIndexingPressurePrimaryParameterShard;
2383
+ node?: outputs.ManagedDatabaseOpensearchPropertiesShardIndexingPressurePrimaryParameterNode;
2384
+ shard?: outputs.ManagedDatabaseOpensearchPropertiesShardIndexingPressurePrimaryParameterShard;
2389
2385
  }
2390
2386
  export interface ManagedDatabaseOpensearchPropertiesShardIndexingPressurePrimaryParameterNode {
2391
2387
  /**
@@ -2405,7 +2401,7 @@ export interface ManagedDatabaseOpensearchPropertiesShardIndexingPressurePrimary
2405
2401
  }
2406
2402
  export interface ManagedDatabasePostgresqlComponent {
2407
2403
  /**
2408
- * Type of the component
2404
+ * Component name.
2409
2405
  */
2410
2406
  component: string;
2411
2407
  /**
@@ -2453,7 +2449,7 @@ export interface ManagedDatabasePostgresqlNodeState {
2453
2449
  */
2454
2450
  role: string;
2455
2451
  /**
2456
- * State of the node
2452
+ * Current state of the node
2457
2453
  */
2458
2454
  state: string;
2459
2455
  }
@@ -2469,7 +2465,7 @@ export interface ManagedDatabasePostgresqlProperties {
2469
2465
  /**
2470
2466
  * Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone.
2471
2467
  */
2472
- automaticUtilityNetworkIpFilter?: boolean;
2468
+ automaticUtilityNetworkIpFilter: boolean;
2473
2469
  /**
2474
2470
  * Specifies a fraction of the table size to add to autovacuumAnalyzeThreshold when deciding whether to trigger an ANALYZE (e.g. `0.2` for 20% of the table size). The default is `0.2`.
2475
2471
  */
@@ -2538,6 +2534,10 @@ export interface ManagedDatabasePostgresqlProperties {
2538
2534
  * Specifies the default TOAST compression method for values of compressible columns. The default is `lz4`. Only available for PostgreSQL 14+.
2539
2535
  */
2540
2536
  defaultToastCompression: string;
2537
+ /**
2538
+ * Enable HA replica DNS. Creates a dedicated read-only DNS that automatically falls back to the primary if standby nodes are unavailable. It switches back when a standby recovers.
2539
+ */
2540
+ enableHaReplicaDns: boolean;
2541
2541
  /**
2542
2542
  * Time out sessions with open transactions after this number of milliseconds.
2543
2543
  */
@@ -2657,7 +2657,7 @@ export interface ManagedDatabasePostgresqlProperties {
2657
2657
  /**
2658
2658
  * Migrate data from existing server.
2659
2659
  */
2660
- migration: outputs.ManagedDatabasePostgresqlPropertiesMigration;
2660
+ migration?: outputs.ManagedDatabasePostgresqlPropertiesMigration;
2661
2661
  /**
2662
2662
  * Number of nodes for the service.
2663
2663
  */
@@ -2677,7 +2677,7 @@ export interface ManagedDatabasePostgresqlProperties {
2677
2677
  /**
2678
2678
  * Enable pgStatMonitor extension if available for the current cluster. Enable the pgStatMonitor extension. Changing this parameter causes a service restart. When this extension is enabled, pgStatStatements results for utility commands are unreliable.
2679
2679
  */
2680
- pgStatMonitorEnable?: boolean;
2680
+ pgStatMonitorEnable: boolean;
2681
2681
  /**
2682
2682
  * Enables or disables query plan monitoring. Changing this parameter causes a service restart. Only available for PostgreSQL 13+.
2683
2683
  */
@@ -2693,19 +2693,19 @@ export interface ManagedDatabasePostgresqlProperties {
2693
2693
  /**
2694
2694
  * PGAudit settings. System-wide settings for the pgaudit extension.
2695
2695
  */
2696
- pgaudit: outputs.ManagedDatabasePostgresqlPropertiesPgaudit;
2696
+ pgaudit?: outputs.ManagedDatabasePostgresqlPropertiesPgaudit;
2697
2697
  /**
2698
2698
  * PGBouncer connection pooling settings. System-wide settings for pgbouncer.
2699
2699
  */
2700
- pgbouncer: outputs.ManagedDatabasePostgresqlPropertiesPgbouncer;
2700
+ pgbouncer?: outputs.ManagedDatabasePostgresqlPropertiesPgbouncer;
2701
2701
  /**
2702
2702
  * PGLookout settings. System-wide settings for pglookout.
2703
2703
  */
2704
- pglookout: outputs.ManagedDatabasePostgresqlPropertiesPglookout;
2704
+ pglookout?: outputs.ManagedDatabasePostgresqlPropertiesPglookout;
2705
2705
  /**
2706
2706
  * Public Access. Allow access to the service from the public Internet.
2707
2707
  */
2708
- publicAccess?: boolean;
2708
+ publicAccess: boolean;
2709
2709
  /**
2710
2710
  * Service logging. Store logs for the service so that they are available in the HTTP API and console.
2711
2711
  */
@@ -2725,11 +2725,11 @@ export interface ManagedDatabasePostgresqlProperties {
2725
2725
  /**
2726
2726
  * TimescaleDB extension configuration values. System-wide settings for the timescaledb extension.
2727
2727
  */
2728
- timescaledb: outputs.ManagedDatabasePostgresqlPropertiesTimescaledb;
2728
+ timescaledb?: outputs.ManagedDatabasePostgresqlPropertiesTimescaledb;
2729
2729
  /**
2730
2730
  * PostgreSQL service timezone.
2731
2731
  */
2732
- timezone?: string;
2732
+ timezone: string;
2733
2733
  /**
2734
2734
  * Specifies the number of bytes reserved to track the currently executing command for each active session. Changing this parameter causes a service restart.
2735
2735
  */
@@ -2965,7 +2965,7 @@ export interface ManagedDatabaseUserValkeyAccessControl {
2965
2965
  }
2966
2966
  export interface ManagedDatabaseValkeyComponent {
2967
2967
  /**
2968
- * Type of the component
2968
+ * Component name.
2969
2969
  */
2970
2970
  component: string;
2971
2971
  /**
@@ -3013,7 +3013,7 @@ export interface ManagedDatabaseValkeyNodeState {
3013
3013
  */
3014
3014
  role: string;
3015
3015
  /**
3016
- * State of the node
3016
+ * Current state of the node
3017
3017
  */
3018
3018
  state: string;
3019
3019
  }
@@ -3021,7 +3021,7 @@ export interface ManagedDatabaseValkeyProperties {
3021
3021
  /**
3022
3022
  * Automatic utility network IP Filter. Automatically allow connections from servers in the utility network within the same zone.
3023
3023
  */
3024
- automaticUtilityNetworkIpFilter?: boolean;
3024
+ automaticUtilityNetworkIpFilter: boolean;
3025
3025
  /**
3026
3026
  * The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
3027
3027
  */
@@ -3033,7 +3033,7 @@ export interface ManagedDatabaseValkeyProperties {
3033
3033
  /**
3034
3034
  * Frequent RDB snapshots. When enabled, Valkey will create frequent local RDB snapshots. When disabled, Valkey will only take RDB snapshots when a backup is created, based on the backup schedule. This setting is ignored when `valkeyPersistence` is set to `off`.
3035
3035
  */
3036
- frequentSnapshots?: boolean;
3036
+ frequentSnapshots: boolean;
3037
3037
  /**
3038
3038
  * IP filter. Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
3039
3039
  */
@@ -3041,11 +3041,11 @@ export interface ManagedDatabaseValkeyProperties {
3041
3041
  /**
3042
3042
  * Migrate data from existing server.
3043
3043
  */
3044
- migration: outputs.ManagedDatabaseValkeyPropertiesMigration;
3044
+ migration?: outputs.ManagedDatabaseValkeyPropertiesMigration;
3045
3045
  /**
3046
3046
  * Public Access. Allow access to the service from the public Internet.
3047
3047
  */
3048
- publicAccess?: boolean;
3048
+ publicAccess: boolean;
3049
3049
  /**
3050
3050
  * Service logging. Store logs for the service so that they are available in the HTTP API and console.
3051
3051
  */
@@ -3077,7 +3077,7 @@ export interface ManagedDatabaseValkeyProperties {
3077
3077
  /**
3078
3078
  * Set notify-keyspace-events option.
3079
3079
  */
3080
- valkeyNotifyKeyspaceEvents?: string;
3080
+ valkeyNotifyKeyspaceEvents: string;
3081
3081
  /**
3082
3082
  * Number of Valkey databases. Set number of Valkey databases. Changing this will cause a restart of the Valkey service.
3083
3083
  */
@@ -3093,7 +3093,7 @@ export interface ManagedDatabaseValkeyProperties {
3093
3093
  /**
3094
3094
  * Require SSL to access Valkey.
3095
3095
  */
3096
- valkeySsl?: boolean;
3096
+ valkeySsl: boolean;
3097
3097
  /**
3098
3098
  * Valkey idle connection timeout in seconds.
3099
3099
  */