@pulumi/digitalocean 4.77.0 → 4.78.0-alpha.1785558518
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/databaseAdvancedMysqlConfig.d.ts +268 -0
- package/databaseAdvancedMysqlConfig.d.ts.map +1 -0
- package/databaseAdvancedMysqlConfig.js +278 -0
- package/databaseAdvancedMysqlConfig.js.map +1 -0
- package/getKubernetesCluster.d.ts +6 -0
- package/getKubernetesCluster.d.ts.map +1 -1
- package/getKubernetesCluster.js +4 -0
- package/getKubernetesCluster.js.map +1 -1
- package/index.d.ts +3 -21
- package/index.d.ts.map +1 -1
- package/index.js +11 -31
- package/index.js.map +1 -1
- package/kubernetesCluster.d.ts +42 -9
- package/kubernetesCluster.d.ts.map +1 -1
- package/kubernetesCluster.js +4 -0
- package/kubernetesCluster.js.map +1 -1
- package/kubernetesNodePool.d.ts +18 -6
- package/kubernetesNodePool.d.ts.map +1 -1
- package/kubernetesNodePool.js +2 -0
- package/kubernetesNodePool.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +30 -182
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +25 -238
- package/types/output.d.ts.map +1 -1
- package/getMicrodroplet.d.ts +0 -92
- package/getMicrodroplet.d.ts.map +0 -1
- package/getMicrodroplet.js +0 -83
- package/getMicrodroplet.js.map +0 -1
- package/getMicrodropletCheckpoints.d.ts +0 -113
- package/getMicrodropletCheckpoints.d.ts.map +0 -1
- package/getMicrodropletCheckpoints.js +0 -103
- package/getMicrodropletCheckpoints.js.map +0 -1
- package/getMicrodropletImage.d.ts +0 -91
- package/getMicrodropletImage.d.ts.map +0 -1
- package/getMicrodropletImage.js +0 -87
- package/getMicrodropletImage.js.map +0 -1
- package/getMicrodropletImages.d.ts +0 -95
- package/getMicrodropletImages.d.ts.map +0 -1
- package/getMicrodropletImages.js +0 -97
- package/getMicrodropletImages.js.map +0 -1
- package/getMicrodroplets.d.ts +0 -113
- package/getMicrodroplets.d.ts.map +0 -1
- package/getMicrodroplets.js +0 -101
- package/getMicrodroplets.js.map +0 -1
- package/microdroplet.d.ts +0 -285
- package/microdroplet.d.ts.map +0 -1
- package/microdroplet.js +0 -165
- package/microdroplet.js.map +0 -1
- package/microdropletImage.d.ts +0 -116
- package/microdropletImage.d.ts.map +0 -1
- package/microdropletImage.js +0 -114
- package/microdropletImage.js.map +0 -1
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a virtual resource that can be used to change advanced configuration
|
|
4
|
+
* options for a DigitalOcean managed MySQL Advanced Edition (`advancedMysql`)
|
|
5
|
+
* database cluster.
|
|
6
|
+
*
|
|
7
|
+
* > **Note** Advanced MySQL configurations are only removed from state when destroyed. The remote configuration is not unset.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as digitalocean from "@pulumi/digitalocean";
|
|
14
|
+
*
|
|
15
|
+
* const exampleDatabaseCluster = new digitalocean.DatabaseCluster("example", {
|
|
16
|
+
* name: "example-advanced-mysql-cluster",
|
|
17
|
+
* engine: "advanced_mysql",
|
|
18
|
+
* version: "8",
|
|
19
|
+
* size: digitalocean.DatabaseSlug.DB_1VPCU1GB,
|
|
20
|
+
* region: digitalocean.Region.NYC1,
|
|
21
|
+
* nodeCount: 1,
|
|
22
|
+
* });
|
|
23
|
+
* const example = new digitalocean.DatabaseAdvancedMysqlConfig("example", {
|
|
24
|
+
* clusterId: exampleDatabaseCluster.id,
|
|
25
|
+
* mysqlParameters: {
|
|
26
|
+
* time_zone: "SYSTEM",
|
|
27
|
+
* connect_timeout: "10",
|
|
28
|
+
* },
|
|
29
|
+
* });
|
|
30
|
+
* ```
|
|
31
|
+
*
|
|
32
|
+
* ## Supported `mysqlParameters`
|
|
33
|
+
*
|
|
34
|
+
* The following MySQL system variables can be set on `advancedMysql` clusters. Default values and restart requirements are returned by the DigitalOcean API and may vary by cluster size.
|
|
35
|
+
*
|
|
36
|
+
* * `backLog` - (Optional) Pending connection queue size. Default: `512`. **Requires restart.**
|
|
37
|
+
* * `binlogCacheSize` - (Optional) Cache for transaction binlog events. Default: `32768`.
|
|
38
|
+
* * `binlogChecksum` - (Optional) Checksum: CRC32 or NONE. Default: `CRC32`.
|
|
39
|
+
* * `binlogExpireLogsSeconds` - (Optional) Seconds before binlogs purged. Default: `2592000`.
|
|
40
|
+
* * `binlogFormat` - (Optional) Format: ROW, STATEMENT, or MIXED. Default: `ROW`.
|
|
41
|
+
* * `binlogGroupCommitSyncDelay` - (Optional) Microseconds delay before sync. Default: `0`.
|
|
42
|
+
* * `binlogGroupCommitSyncNoDelayCount` - (Optional) Max txns to wait before sync. Default: `0`.
|
|
43
|
+
* * `binlogOrderCommits` - (Optional) Commit in binlog write order. Default: `ON`.
|
|
44
|
+
* * `binlogRowImage` - (Optional) Row images: full, minimal, noblob. Default: `full`.
|
|
45
|
+
* * `binlogRowMetadata` - (Optional) Metadata: MINIMAL or FULL. Default: `FULL`.
|
|
46
|
+
* * `binlogStmtCacheSize` - (Optional) Cache for non-transactional binlog events. Default: `32768`.
|
|
47
|
+
* * `binlogTransactionCompression` - (Optional) Enable binlog txn compression. Default: `OFF`.
|
|
48
|
+
* * `binlogTransactionCompressionLevelZstd` - (Optional) zstd level (1-22). Default: `3`.
|
|
49
|
+
* * `characterSetServer` - (Optional) Server character set for new databases. Default: `utf8mb4`. **Requires restart.**
|
|
50
|
+
* * `collationServer` - (Optional) Server default collation for new databases. Default: `utf8mb40900AiCi`. **Requires restart.**
|
|
51
|
+
* * `connectTimeout` - (Optional) Seconds for connection handshake. Default: `10`.
|
|
52
|
+
* * `connectionMemoryChunkSize` - (Optional) Connection memory accounting chunk. Default: `8192`.
|
|
53
|
+
* * `connectionMemoryLimit` - (Optional) Per-connection memory limit. Default: `9223372036854775807`.
|
|
54
|
+
* * `cteMaxRecursionDepth` - (Optional) Max CTE recursion depth. Default: `1000`.
|
|
55
|
+
* * `eqRangeIndexDiveLimit` - (Optional) Ranges before switching to stats. Default: `200`.
|
|
56
|
+
* * `explicitDefaultsForTimestamp` - (Optional) Explicit TIMESTAMP defaults. Default: `ON`.
|
|
57
|
+
* * `generalLog` - (Optional) Enable general query log. Default: `OFF`.
|
|
58
|
+
* * `globalConnectionMemoryLimit` - (Optional) Global memory limit all connections. Default: `9223372036854775807`.
|
|
59
|
+
* * `globalConnectionMemoryTracking` - (Optional) Per-connection memory tracking. Default: `OFF`.
|
|
60
|
+
* * `groupConcatMaxLen` - (Optional) Max GROUP_CONCAT() result length. Default: `1024`.
|
|
61
|
+
* * `groupReplicationCommunicationMaxMessageSize` - (Optional) Max message size for Group Replication. Default: `10485760`. **Requires restart.**
|
|
62
|
+
* * `groupReplicationConsistency` - (Optional) Transaction consistency level for Group Replication. Default: `BEFORE_ON_PRIMARY_FAILOVER`.
|
|
63
|
+
* * `groupReplicationFlowControlMode` - (Optional) Group Replication flow control mode. Default: `QUOTA`.
|
|
64
|
+
* * `groupReplicationFlowControlPeriod` - (Optional) Seconds between flow control quota checks. Default: `1`. **Requires restart.**
|
|
65
|
+
* * `groupReplicationMessageCacheSize` - (Optional) Maximum memory used by Group Replication to cache messages. Default: `1073741824`. **Requires restart.**
|
|
66
|
+
* * `groupReplicationPaxosSingleLeader` - (Optional) Single-leader Paxos mode for Group Replication. Default: `OFF`.
|
|
67
|
+
* * `groupReplicationPollSpinLoops` - (Optional) Spin loops before Group Replication poll. Default: `0`.
|
|
68
|
+
* * `groupReplicationUnreachableMajorityTimeout` - (Optional) Seconds before partitioned member action. Default: `5`.
|
|
69
|
+
* * `informationSchemaStatsExpiry` - (Optional) Seconds before cached schema stats expire. Default: `86400`.
|
|
70
|
+
* * `innodbAdaptiveFlushing` - (Optional) Adaptive flushing of dirty pages. Default: `ON`.
|
|
71
|
+
* * `innodbAdaptiveFlushingLwm` - (Optional) Low water mark % for adaptive flushing. Default: `10`.
|
|
72
|
+
* * `innodbAdaptiveHashIndex` - (Optional) Enable/disable adaptive hash index. Default: `ON`.
|
|
73
|
+
* * `innodbAutoextendIncrement` - (Optional) Tablespace auto-extend increment in MB. Default: `64`.
|
|
74
|
+
* * `innodbBufferPoolSize` - (Optional) Size in bytes of the InnoDB buffer pool. Default: `134217728`.
|
|
75
|
+
* * `innodbChangeBufferMaxSize` - (Optional) Max change buffer as % of pool. Default: `25`.
|
|
76
|
+
* * `innodbChangeBuffering` - (Optional) Types of operations buffered in change buffer. Default: `all`.
|
|
77
|
+
* * `innodbCompressionFailureThresholdPct` - (Optional) Compression failure % before padding. Default: `5`.
|
|
78
|
+
* * `innodbCompressionLevel` - (Optional) zlib compression level (0-9). Default: `6`.
|
|
79
|
+
* * `innodbCompressionPadPctMax` - (Optional) Max % page padding for compressed tables. Default: `50`.
|
|
80
|
+
* * `innodbConcurrencyTickets` - (Optional) Tickets for thread re-entry without concurrency check. Default: `5000`.
|
|
81
|
+
* * `innodbCorruptTableAction` - (Optional) On corrupt table: assert, warn, salvage. Default: `warn`.
|
|
82
|
+
* * `innodbDdlThreads` - (Optional) Threads for DDL sort/build operations. Default: `2`. **Requires restart.**
|
|
83
|
+
* * `innodbDeadlockDetect` - (Optional) Enable/disable deadlock detection. Default: `ON`.
|
|
84
|
+
* * `innodbFillFactor` - (Optional) Fill factor for B-tree bulk load. Default: `100`.
|
|
85
|
+
* * `innodbFlushLogAtTrxCommit` - (Optional) Controls log flushing on transaction commit. Default: `1`.
|
|
86
|
+
* * `innodbFlushMethod` - (Optional) Method for flushing data to disk. Default: `O_DIRECT`. **Requires restart.**
|
|
87
|
+
* * `innodbFlushSync` - (Optional) Ignore ioCapacity during checkpoints. Default: `ON`.
|
|
88
|
+
* * `innodbFsyncThreshold` - (Optional) Bytes threshold for fsync on file create. Default: `0`.
|
|
89
|
+
* * `innodbFtMaxTokenSize` - (Optional) Max word length for full-text index. Default: `84`. **Requires restart.**
|
|
90
|
+
* * `innodbFtMinTokenSize` - (Optional) Min word length for full-text index. Default: `3`. **Requires restart.**
|
|
91
|
+
* * `innodbFtServerStopwordTable` - (Optional) Table for full-text stopwords.
|
|
92
|
+
* * `innodbIoCapacity` - (Optional) Background I/O operations per second. Default: `200`.
|
|
93
|
+
* * `innodbIoCapacityMax` - (Optional) Upper limit for background I/O operations. Default: `2000`.
|
|
94
|
+
* * `innodbLockWaitTimeout` - (Optional) Seconds to wait for a row lock. Default: `50`.
|
|
95
|
+
* * `innodbLogBufferSize` - (Optional) Size of the redo log buffer in memory. Default: `33554432`. **Requires restart.**
|
|
96
|
+
* * `innodbLogCompressedPages` - (Optional) Log re-compressed pages to redo log. Default: `ON`.
|
|
97
|
+
* * `innodbLruScanDepth` - (Optional) How deep page cleaner scans LRU list. Default: `1024`.
|
|
98
|
+
* * `innodbMaxDirtyPagesPct` - (Optional) Max % of dirty pages before flushing. Default: `90.000000`.
|
|
99
|
+
* * `innodbMaxDirtyPagesPctLwm` - (Optional) Low water mark for dirty page % preflushing. Default: `10.000000`.
|
|
100
|
+
* * `innodbMonitorEnable` - (Optional) Enable InnoDB performance schema monitors.
|
|
101
|
+
* * `innodbNumaInterleave` - (Optional) NUMA memory interleaving for buffer pool. Default: `OFF`. **Requires restart.**
|
|
102
|
+
* * `innodbOldBlocksPct` - (Optional) % of buffer pool for old block sublist. Default: `37`.
|
|
103
|
+
* * `innodbOldBlocksTime` - (Optional) ms block stays in old sublist before promotion. Default: `1000`.
|
|
104
|
+
* * `innodbOnlineAlterLogMaxSize` - (Optional) Max log size for online DDL operations. Default: `134217728`.
|
|
105
|
+
* * `innodbOpenFiles` - (Optional) InnoDB open files limit. Default: `4000`. **Requires restart.**
|
|
106
|
+
* * `innodbPageCleaners` - (Optional) Number of page cleaner threads. Default: `1`. **Requires restart.**
|
|
107
|
+
* * `innodbParallelReadThreads` - (Optional) Threads for parallel clustered index reads. Default: `2`. **Requires restart.**
|
|
108
|
+
* * `innodbPrintAllDeadlocks` - (Optional) Print all deadlocks to error log. Default: `OFF`.
|
|
109
|
+
* * `innodbPrintDdlLogs` - (Optional) Print DDL logs to error log. Default: `OFF`.
|
|
110
|
+
* * `innodbPrintLockWaitTimeoutInfo` - (Optional) Extra lock wait timeout info. Default: `OFF`.
|
|
111
|
+
* * `innodbPurgeThreads` - (Optional) Number of background purge threads. Default: `1`. **Requires restart.**
|
|
112
|
+
* * `innodbRandomReadAhead` - (Optional) Enable random read-ahead. Default: `OFF`.
|
|
113
|
+
* * `innodbReadAheadThreshold` - (Optional) Pages to trigger linear read-ahead. Default: `56`.
|
|
114
|
+
* * `innodbReadIoThreads` - (Optional) Number of read I/O threads. Default: `4`. **Requires restart.**
|
|
115
|
+
* * `innodbRedoLogCapacity` - (Optional) Total redo log capacity for InnoDB. Default: `104857600`.
|
|
116
|
+
* * `innodbRollbackOnTimeout` - (Optional) Rollback entire transaction on lock wait timeout. Default: `OFF`. **Requires restart.**
|
|
117
|
+
* * `innodbShowLocksHeld` - (Optional) Max locks shown per txn. Default: `10`.
|
|
118
|
+
* * `innodbSortBufferSize` - (Optional) Sort buffer size for InnoDB online DDL. Default: `1048576`. **Requires restart.**
|
|
119
|
+
* * `innodbSpinWaitDelay` - (Optional) Delay between spin lock polls. Default: `6`.
|
|
120
|
+
* * `innodbStatsAutoRecalc` - (Optional) Auto-recalculate persistent stats. Default: `ON`.
|
|
121
|
+
* * `innodbStatsPersistent` - (Optional) Whether index statistics are persistent. Default: `ON`.
|
|
122
|
+
* * `innodbStatsPersistentSamplePages` - (Optional) Sample pages for persistent statistics. Default: `20`.
|
|
123
|
+
* * `innodbStatsTransientSamplePages` - (Optional) Sample pages for transient statistics. Default: `8`.
|
|
124
|
+
* * `innodbStrictMode` - (Optional) Strict mode (errors vs warnings). Default: `ON`.
|
|
125
|
+
* * `innodbSyncSpinLoops` - (Optional) Spin loops before mutex wait. Default: `30`.
|
|
126
|
+
* * `innodbThreadConcurrency` - (Optional) Max threads inside InnoDB (0=unlimited). Default: `0`.
|
|
127
|
+
* * `innodbUseFdatasync` - (Optional) Use fdatasync() instead of fsync(). Default: `OFF`.
|
|
128
|
+
* * `innodbWriteIoThreads` - (Optional) Number of write I/O threads. Default: `4`. **Requires restart.**
|
|
129
|
+
* * `interactiveTimeout` - (Optional) Seconds the server waits for activity on an interactive connection before closing it. Default: `28800`.
|
|
130
|
+
* * `internalTmpMemStorageEngine` - (Optional) Engine for temp tables: TempTable or MEMORY. Default: `TempTable`.
|
|
131
|
+
* * `joinBufferSize` - (Optional) Per-session buffer for joins. Default: `262144`.
|
|
132
|
+
* * `killIdleTransaction` - (Optional) Seconds before killing idle transactions (Percona; was catalog misspell innodb_kill_idle_transaction). Default: `0`.
|
|
133
|
+
* * `localInfile` - (Optional) Enable LOAD DATA LOCAL INFILE. Default: `OFF`.
|
|
134
|
+
* * `lockWaitTimeout` - (Optional) Seconds for metadata lock wait. Default: `31536000`.
|
|
135
|
+
* * `logErrorVerbosity` - (Optional) Error log verbosity (1-3). Default: `2`.
|
|
136
|
+
* * `logOutput` - (Optional) Log destination: TABLE, FILE, NONE. Default: `FILE`.
|
|
137
|
+
* * `logQueriesNotUsingIndexes` - (Optional) Log no-index queries to slow log. Default: `OFF`.
|
|
138
|
+
* * `logSlowExtra` - (Optional) Extra info in slow query log. Default: `OFF`.
|
|
139
|
+
* * `logSlowFilter` - (Optional) PS 8.4 filter (comma-separated): full_scan, full_join, tmp_table, tmp_table_on_disk, filesort, filesort_on_disk; empty disables.
|
|
140
|
+
* * `logSlowRateLimit` - (Optional) Rate-limit slow log (1=every query). Default: `1`.
|
|
141
|
+
* * `logSlowSpStatements` - (Optional) Log stored proc statements. Default: `OFF`.
|
|
142
|
+
* * `logSlowVerbosity` - (Optional) Detail: microtime, query_plan, innodb.
|
|
143
|
+
* * `logThrottleQueriesNotUsingIndexes` - (Optional) Throttle rate of no-index log entries. Default: `0`.
|
|
144
|
+
* * `logTimestamps` - (Optional) Log timestamps: UTC or SYSTEM. Default: `UTC`.
|
|
145
|
+
* * `longQueryTime` - (Optional) Queries that take longer than this many seconds are logged to the slow query log. Default: `2`.
|
|
146
|
+
* * `maxAllowedPacket` - (Optional) Max client/server packet size. Default: `67108864`.
|
|
147
|
+
* * `maxConnectErrors` - (Optional) Consecutive errors before blocking host. Default: `100`.
|
|
148
|
+
* * `maxConnections` - (Optional) Maximum number of simultaneous client connections. Default: `512`.
|
|
149
|
+
* * `maxHeapTableSize` - (Optional) Maximum size for user-created MEMORY tables and internal in-memory tables. Default: `16777216`.
|
|
150
|
+
* * `maxJoinSize` - (Optional) Max rows for large join protection. Default: `9223372036854775807`.
|
|
151
|
+
* * `maxPreparedStmtCount` - (Optional) Max prepared statements server-wide. Default: `16382`.
|
|
152
|
+
* * `maxSortLength` - (Optional) Bytes sorting BLOB/TEXT values. Default: `1024`.
|
|
153
|
+
* * `maxUserConnections` - (Optional) Max simultaneous connections per user. Default: `0`.
|
|
154
|
+
* * `netBufferLength` - (Optional) Initial connection/result buffer size. Default: `16384`.
|
|
155
|
+
* * `netReadTimeout` - (Optional) Seconds to wait for read data. Default: `30`.
|
|
156
|
+
* * `netWriteTimeout` - (Optional) Seconds to wait for write. Default: `60`.
|
|
157
|
+
* * `optimizerSwitch` - (Optional) Optimizer feature flags (boot_val from PS 8.4.8 live; hypergraph_optimizer=on fails on non-debug builds). Default: `index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,engine_condition_pushdown=on,index_condition_pushdown=on,mrr=on,mrr_cost_based=on,block_nested_loop=on,batched_key_access=off,materialization=on,semijoin=on,loosescan=on,firstmatch=on,duplicateweedout=on,subquery_materialization_cost_based=on,use_index_extensions=on,condition_fanout_filter=on,derived_merge=on,use_invisible_indexes=off,skip_scan=on,hash_join=on,subquery_to_derived=off,prefer_ordering_index=on,hypergraph_optimizer=off,derived_condition_pushdown=on,hash_set_operations=on,favor_range_scan=off`.
|
|
158
|
+
* * `passwordHistory` - (Optional) Passwords tracked for reuse prevention. Default: `0`.
|
|
159
|
+
* * `passwordReuseInterval` - (Optional) Days before password reuse. Default: `0`.
|
|
160
|
+
* * `performanceSchemaMaxDigestLength` - (Optional) Max Performance Schema digest length. Default: `1024`. **Requires restart.**
|
|
161
|
+
* * `performanceSchemaMaxSqlTextLength` - (Optional) Max Performance Schema SQL text length. Default: `1024`. **Requires restart.**
|
|
162
|
+
* * `rangeOptimizerMaxMemSize` - (Optional) Max memory for range optimizer. Default: `8388608`.
|
|
163
|
+
* * `readBufferSize` - (Optional) Buffer for sequential scans. Default: `131072`.
|
|
164
|
+
* * `readRndBufferSize` - (Optional) Buffer for random reads after sort. Default: `262144`.
|
|
165
|
+
* * `replicaCompressedProtocol` - (Optional) Compression for replica protocol. Default: `OFF`.
|
|
166
|
+
* * `replicaExecMode` - (Optional) STRICT or IDEMPOTENT. Default: `STRICT`.
|
|
167
|
+
* * `replicaParallelType` - (Optional) LOGICAL_CLOCK or DATABASE. Default: `LOGICAL_CLOCK`.
|
|
168
|
+
* * `replicaParallelWorkers` - (Optional) Parallel applier workers. Default: `4`.
|
|
169
|
+
* * `replicaPreserveCommitOrder` - (Optional) Preserve commit order on replicas. Default: `ON`.
|
|
170
|
+
* * `requireSecureTransport` - (Optional) Require SSL/TLS. Default: `OFF`.
|
|
171
|
+
* * `slowQueryLog` - (Optional) Whether the slow query log is enabled. Default: `ON`.
|
|
172
|
+
* * `sortBufferSize` - (Optional) Per-session buffer for sorts. Default: `262144`.
|
|
173
|
+
* * `sqlBufferResult` - (Optional) Force results to temp tables. Default: `OFF`.
|
|
174
|
+
* * `sqlMode` - (Optional) SQL modes that control SQL syntax and data validation. Default: `ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION`.
|
|
175
|
+
* * `syncBinlog` - (Optional) Sync binlog every N commits. Default: `1`.
|
|
176
|
+
* * `tableDefinitionCache` - (Optional) Table definitions to cache. Default: `2000`.
|
|
177
|
+
* * `tableOpenCache` - (Optional) Open tables to cache. Default: `4000`.
|
|
178
|
+
* * `tableOpenCacheInstances` - (Optional) Table cache instances. Default: `16`. **Requires restart.**
|
|
179
|
+
* * `tablespaceDefinitionCache` - (Optional) Tablespace definitions to cache. Default: `256`.
|
|
180
|
+
* * `temptableMaxMmap` - (Optional) Max TempTable mmap file size. Default: `1073741824`.
|
|
181
|
+
* * `temptableMaxRam` - (Optional) Max TempTable RAM before spill. Default: `1073741824`.
|
|
182
|
+
* * `temptableUseMmap` - (Optional) Allow TempTable mmap files. Default: `ON`.
|
|
183
|
+
* * `threadCacheSize` - (Optional) Threads cached for reuse. Default: `9`.
|
|
184
|
+
* * `threadPoolIdleTimeout` - (Optional) Seconds before idle pool thread exits. Default: `60`.
|
|
185
|
+
* * `threadPoolMaxThreads` - (Optional) Max threads in thread pool. Default: `100000`.
|
|
186
|
+
* * `threadPoolSize` - (Optional) Thread groups in Percona thread pool. Default: `4`. **Requires restart.**
|
|
187
|
+
* * `threadStack` - (Optional) Stack size per thread. Default: `1048576`. **Requires restart.**
|
|
188
|
+
* * `threadStatistics` - (Optional) Per-thread statistics. Default: `OFF`.
|
|
189
|
+
* * `timeZone` - (Optional) Server default time zone (replaces invalid catalog name default_time_zone). Default: `SYSTEM`.
|
|
190
|
+
* * `tmpTableSize` - (Optional) Maximum size of internal in-memory temporary tables. Default: `16777216`.
|
|
191
|
+
* * `userstat` - (Optional) USER_STATISTICS tables. Default: `OFF`.
|
|
192
|
+
* * `waitTimeout` - (Optional) Seconds the server waits for activity on a noninteractive connection before closing it. Default: `28800`.
|
|
193
|
+
* * `windowingUseHighPrecision` - (Optional) High precision window functions. Default: `ON`.
|
|
194
|
+
*
|
|
195
|
+
* ## Import
|
|
196
|
+
*
|
|
197
|
+
* An advanced MySQL database cluster's configuration can be imported using the `id` of the parent cluster, e.g.
|
|
198
|
+
*
|
|
199
|
+
* ```sh
|
|
200
|
+
* $ pulumi import digitalocean:index/databaseAdvancedMysqlConfig:DatabaseAdvancedMysqlConfig example 52556c07-788e-4d41-b8a7-c796432197d1
|
|
201
|
+
* ```
|
|
202
|
+
*/
|
|
203
|
+
export declare class DatabaseAdvancedMysqlConfig extends pulumi.CustomResource {
|
|
204
|
+
/**
|
|
205
|
+
* Get an existing DatabaseAdvancedMysqlConfig resource's state with the given name, ID, and optional extra
|
|
206
|
+
* properties used to qualify the lookup.
|
|
207
|
+
*
|
|
208
|
+
* @param name The _unique_ name of the resulting resource.
|
|
209
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
210
|
+
* @param state Any extra arguments used during the lookup.
|
|
211
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
212
|
+
*/
|
|
213
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DatabaseAdvancedMysqlConfigState, opts?: pulumi.CustomResourceOptions): DatabaseAdvancedMysqlConfig;
|
|
214
|
+
/**
|
|
215
|
+
* Returns true if the given object is an instance of DatabaseAdvancedMysqlConfig. This is designed to work even
|
|
216
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
217
|
+
*/
|
|
218
|
+
static isInstance(obj: any): obj is DatabaseAdvancedMysqlConfig;
|
|
219
|
+
/**
|
|
220
|
+
* The ID of the target MySQL Advanced Edition cluster.
|
|
221
|
+
*/
|
|
222
|
+
readonly clusterId: pulumi.Output<string>;
|
|
223
|
+
/**
|
|
224
|
+
* A map of MySQL system variable names to their string values. Only parameters included in this map are managed by Terraform.
|
|
225
|
+
*/
|
|
226
|
+
readonly mysqlParameters: pulumi.Output<{
|
|
227
|
+
[key: string]: string;
|
|
228
|
+
} | undefined>;
|
|
229
|
+
/**
|
|
230
|
+
* Create a DatabaseAdvancedMysqlConfig resource with the given unique name, arguments, and options.
|
|
231
|
+
*
|
|
232
|
+
* @param name The _unique_ name of the resource.
|
|
233
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
234
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
235
|
+
*/
|
|
236
|
+
constructor(name: string, args: DatabaseAdvancedMysqlConfigArgs, opts?: pulumi.CustomResourceOptions);
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* Input properties used for looking up and filtering DatabaseAdvancedMysqlConfig resources.
|
|
240
|
+
*/
|
|
241
|
+
export interface DatabaseAdvancedMysqlConfigState {
|
|
242
|
+
/**
|
|
243
|
+
* The ID of the target MySQL Advanced Edition cluster.
|
|
244
|
+
*/
|
|
245
|
+
clusterId?: pulumi.Input<string | undefined>;
|
|
246
|
+
/**
|
|
247
|
+
* A map of MySQL system variable names to their string values. Only parameters included in this map are managed by Terraform.
|
|
248
|
+
*/
|
|
249
|
+
mysqlParameters?: pulumi.Input<{
|
|
250
|
+
[key: string]: pulumi.Input<string>;
|
|
251
|
+
} | undefined>;
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* The set of arguments for constructing a DatabaseAdvancedMysqlConfig resource.
|
|
255
|
+
*/
|
|
256
|
+
export interface DatabaseAdvancedMysqlConfigArgs {
|
|
257
|
+
/**
|
|
258
|
+
* The ID of the target MySQL Advanced Edition cluster.
|
|
259
|
+
*/
|
|
260
|
+
clusterId: pulumi.Input<string>;
|
|
261
|
+
/**
|
|
262
|
+
* A map of MySQL system variable names to their string values. Only parameters included in this map are managed by Terraform.
|
|
263
|
+
*/
|
|
264
|
+
mysqlParameters?: pulumi.Input<{
|
|
265
|
+
[key: string]: pulumi.Input<string>;
|
|
266
|
+
} | undefined>;
|
|
267
|
+
}
|
|
268
|
+
//# sourceMappingURL=databaseAdvancedMysqlConfig.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"databaseAdvancedMysqlConfig.d.ts","sourceRoot":"","sources":["../databaseAdvancedMysqlConfig.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwMG;AACH,qBAAa,2BAA4B,SAAQ,MAAM,CAAC,cAAc;IAClE;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,gCAAgC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,2BAA2B;IAOxK;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,2BAA2B;IAOtE;;OAEG;IACH,SAAwB,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACzD;;OAEG;IACH,SAAwB,eAAe,EAAE,MAAM,CAAC,MAAM,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAC,GAAG,SAAS,CAAC,CAAC;IAE5F;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,+BAA+B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAmBvG;AAED;;GAEG;AACH,MAAM,WAAW,gCAAgC;IAC7C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;KAAC,GAAG,SAAS,CAAC,CAAC;CACrF;AAED;;GAEG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAChC;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;KAAC,GAAG,SAAS,CAAC,CAAC;CACrF"}
|
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.DatabaseAdvancedMysqlConfig = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* Provides a virtual resource that can be used to change advanced configuration
|
|
33
|
+
* options for a DigitalOcean managed MySQL Advanced Edition (`advancedMysql`)
|
|
34
|
+
* database cluster.
|
|
35
|
+
*
|
|
36
|
+
* > **Note** Advanced MySQL configurations are only removed from state when destroyed. The remote configuration is not unset.
|
|
37
|
+
*
|
|
38
|
+
* ## Example Usage
|
|
39
|
+
*
|
|
40
|
+
* ```typescript
|
|
41
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
42
|
+
* import * as digitalocean from "@pulumi/digitalocean";
|
|
43
|
+
*
|
|
44
|
+
* const exampleDatabaseCluster = new digitalocean.DatabaseCluster("example", {
|
|
45
|
+
* name: "example-advanced-mysql-cluster",
|
|
46
|
+
* engine: "advanced_mysql",
|
|
47
|
+
* version: "8",
|
|
48
|
+
* size: digitalocean.DatabaseSlug.DB_1VPCU1GB,
|
|
49
|
+
* region: digitalocean.Region.NYC1,
|
|
50
|
+
* nodeCount: 1,
|
|
51
|
+
* });
|
|
52
|
+
* const example = new digitalocean.DatabaseAdvancedMysqlConfig("example", {
|
|
53
|
+
* clusterId: exampleDatabaseCluster.id,
|
|
54
|
+
* mysqlParameters: {
|
|
55
|
+
* time_zone: "SYSTEM",
|
|
56
|
+
* connect_timeout: "10",
|
|
57
|
+
* },
|
|
58
|
+
* });
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* ## Supported `mysqlParameters`
|
|
62
|
+
*
|
|
63
|
+
* The following MySQL system variables can be set on `advancedMysql` clusters. Default values and restart requirements are returned by the DigitalOcean API and may vary by cluster size.
|
|
64
|
+
*
|
|
65
|
+
* * `backLog` - (Optional) Pending connection queue size. Default: `512`. **Requires restart.**
|
|
66
|
+
* * `binlogCacheSize` - (Optional) Cache for transaction binlog events. Default: `32768`.
|
|
67
|
+
* * `binlogChecksum` - (Optional) Checksum: CRC32 or NONE. Default: `CRC32`.
|
|
68
|
+
* * `binlogExpireLogsSeconds` - (Optional) Seconds before binlogs purged. Default: `2592000`.
|
|
69
|
+
* * `binlogFormat` - (Optional) Format: ROW, STATEMENT, or MIXED. Default: `ROW`.
|
|
70
|
+
* * `binlogGroupCommitSyncDelay` - (Optional) Microseconds delay before sync. Default: `0`.
|
|
71
|
+
* * `binlogGroupCommitSyncNoDelayCount` - (Optional) Max txns to wait before sync. Default: `0`.
|
|
72
|
+
* * `binlogOrderCommits` - (Optional) Commit in binlog write order. Default: `ON`.
|
|
73
|
+
* * `binlogRowImage` - (Optional) Row images: full, minimal, noblob. Default: `full`.
|
|
74
|
+
* * `binlogRowMetadata` - (Optional) Metadata: MINIMAL or FULL. Default: `FULL`.
|
|
75
|
+
* * `binlogStmtCacheSize` - (Optional) Cache for non-transactional binlog events. Default: `32768`.
|
|
76
|
+
* * `binlogTransactionCompression` - (Optional) Enable binlog txn compression. Default: `OFF`.
|
|
77
|
+
* * `binlogTransactionCompressionLevelZstd` - (Optional) zstd level (1-22). Default: `3`.
|
|
78
|
+
* * `characterSetServer` - (Optional) Server character set for new databases. Default: `utf8mb4`. **Requires restart.**
|
|
79
|
+
* * `collationServer` - (Optional) Server default collation for new databases. Default: `utf8mb40900AiCi`. **Requires restart.**
|
|
80
|
+
* * `connectTimeout` - (Optional) Seconds for connection handshake. Default: `10`.
|
|
81
|
+
* * `connectionMemoryChunkSize` - (Optional) Connection memory accounting chunk. Default: `8192`.
|
|
82
|
+
* * `connectionMemoryLimit` - (Optional) Per-connection memory limit. Default: `9223372036854775807`.
|
|
83
|
+
* * `cteMaxRecursionDepth` - (Optional) Max CTE recursion depth. Default: `1000`.
|
|
84
|
+
* * `eqRangeIndexDiveLimit` - (Optional) Ranges before switching to stats. Default: `200`.
|
|
85
|
+
* * `explicitDefaultsForTimestamp` - (Optional) Explicit TIMESTAMP defaults. Default: `ON`.
|
|
86
|
+
* * `generalLog` - (Optional) Enable general query log. Default: `OFF`.
|
|
87
|
+
* * `globalConnectionMemoryLimit` - (Optional) Global memory limit all connections. Default: `9223372036854775807`.
|
|
88
|
+
* * `globalConnectionMemoryTracking` - (Optional) Per-connection memory tracking. Default: `OFF`.
|
|
89
|
+
* * `groupConcatMaxLen` - (Optional) Max GROUP_CONCAT() result length. Default: `1024`.
|
|
90
|
+
* * `groupReplicationCommunicationMaxMessageSize` - (Optional) Max message size for Group Replication. Default: `10485760`. **Requires restart.**
|
|
91
|
+
* * `groupReplicationConsistency` - (Optional) Transaction consistency level for Group Replication. Default: `BEFORE_ON_PRIMARY_FAILOVER`.
|
|
92
|
+
* * `groupReplicationFlowControlMode` - (Optional) Group Replication flow control mode. Default: `QUOTA`.
|
|
93
|
+
* * `groupReplicationFlowControlPeriod` - (Optional) Seconds between flow control quota checks. Default: `1`. **Requires restart.**
|
|
94
|
+
* * `groupReplicationMessageCacheSize` - (Optional) Maximum memory used by Group Replication to cache messages. Default: `1073741824`. **Requires restart.**
|
|
95
|
+
* * `groupReplicationPaxosSingleLeader` - (Optional) Single-leader Paxos mode for Group Replication. Default: `OFF`.
|
|
96
|
+
* * `groupReplicationPollSpinLoops` - (Optional) Spin loops before Group Replication poll. Default: `0`.
|
|
97
|
+
* * `groupReplicationUnreachableMajorityTimeout` - (Optional) Seconds before partitioned member action. Default: `5`.
|
|
98
|
+
* * `informationSchemaStatsExpiry` - (Optional) Seconds before cached schema stats expire. Default: `86400`.
|
|
99
|
+
* * `innodbAdaptiveFlushing` - (Optional) Adaptive flushing of dirty pages. Default: `ON`.
|
|
100
|
+
* * `innodbAdaptiveFlushingLwm` - (Optional) Low water mark % for adaptive flushing. Default: `10`.
|
|
101
|
+
* * `innodbAdaptiveHashIndex` - (Optional) Enable/disable adaptive hash index. Default: `ON`.
|
|
102
|
+
* * `innodbAutoextendIncrement` - (Optional) Tablespace auto-extend increment in MB. Default: `64`.
|
|
103
|
+
* * `innodbBufferPoolSize` - (Optional) Size in bytes of the InnoDB buffer pool. Default: `134217728`.
|
|
104
|
+
* * `innodbChangeBufferMaxSize` - (Optional) Max change buffer as % of pool. Default: `25`.
|
|
105
|
+
* * `innodbChangeBuffering` - (Optional) Types of operations buffered in change buffer. Default: `all`.
|
|
106
|
+
* * `innodbCompressionFailureThresholdPct` - (Optional) Compression failure % before padding. Default: `5`.
|
|
107
|
+
* * `innodbCompressionLevel` - (Optional) zlib compression level (0-9). Default: `6`.
|
|
108
|
+
* * `innodbCompressionPadPctMax` - (Optional) Max % page padding for compressed tables. Default: `50`.
|
|
109
|
+
* * `innodbConcurrencyTickets` - (Optional) Tickets for thread re-entry without concurrency check. Default: `5000`.
|
|
110
|
+
* * `innodbCorruptTableAction` - (Optional) On corrupt table: assert, warn, salvage. Default: `warn`.
|
|
111
|
+
* * `innodbDdlThreads` - (Optional) Threads for DDL sort/build operations. Default: `2`. **Requires restart.**
|
|
112
|
+
* * `innodbDeadlockDetect` - (Optional) Enable/disable deadlock detection. Default: `ON`.
|
|
113
|
+
* * `innodbFillFactor` - (Optional) Fill factor for B-tree bulk load. Default: `100`.
|
|
114
|
+
* * `innodbFlushLogAtTrxCommit` - (Optional) Controls log flushing on transaction commit. Default: `1`.
|
|
115
|
+
* * `innodbFlushMethod` - (Optional) Method for flushing data to disk. Default: `O_DIRECT`. **Requires restart.**
|
|
116
|
+
* * `innodbFlushSync` - (Optional) Ignore ioCapacity during checkpoints. Default: `ON`.
|
|
117
|
+
* * `innodbFsyncThreshold` - (Optional) Bytes threshold for fsync on file create. Default: `0`.
|
|
118
|
+
* * `innodbFtMaxTokenSize` - (Optional) Max word length for full-text index. Default: `84`. **Requires restart.**
|
|
119
|
+
* * `innodbFtMinTokenSize` - (Optional) Min word length for full-text index. Default: `3`. **Requires restart.**
|
|
120
|
+
* * `innodbFtServerStopwordTable` - (Optional) Table for full-text stopwords.
|
|
121
|
+
* * `innodbIoCapacity` - (Optional) Background I/O operations per second. Default: `200`.
|
|
122
|
+
* * `innodbIoCapacityMax` - (Optional) Upper limit for background I/O operations. Default: `2000`.
|
|
123
|
+
* * `innodbLockWaitTimeout` - (Optional) Seconds to wait for a row lock. Default: `50`.
|
|
124
|
+
* * `innodbLogBufferSize` - (Optional) Size of the redo log buffer in memory. Default: `33554432`. **Requires restart.**
|
|
125
|
+
* * `innodbLogCompressedPages` - (Optional) Log re-compressed pages to redo log. Default: `ON`.
|
|
126
|
+
* * `innodbLruScanDepth` - (Optional) How deep page cleaner scans LRU list. Default: `1024`.
|
|
127
|
+
* * `innodbMaxDirtyPagesPct` - (Optional) Max % of dirty pages before flushing. Default: `90.000000`.
|
|
128
|
+
* * `innodbMaxDirtyPagesPctLwm` - (Optional) Low water mark for dirty page % preflushing. Default: `10.000000`.
|
|
129
|
+
* * `innodbMonitorEnable` - (Optional) Enable InnoDB performance schema monitors.
|
|
130
|
+
* * `innodbNumaInterleave` - (Optional) NUMA memory interleaving for buffer pool. Default: `OFF`. **Requires restart.**
|
|
131
|
+
* * `innodbOldBlocksPct` - (Optional) % of buffer pool for old block sublist. Default: `37`.
|
|
132
|
+
* * `innodbOldBlocksTime` - (Optional) ms block stays in old sublist before promotion. Default: `1000`.
|
|
133
|
+
* * `innodbOnlineAlterLogMaxSize` - (Optional) Max log size for online DDL operations. Default: `134217728`.
|
|
134
|
+
* * `innodbOpenFiles` - (Optional) InnoDB open files limit. Default: `4000`. **Requires restart.**
|
|
135
|
+
* * `innodbPageCleaners` - (Optional) Number of page cleaner threads. Default: `1`. **Requires restart.**
|
|
136
|
+
* * `innodbParallelReadThreads` - (Optional) Threads for parallel clustered index reads. Default: `2`. **Requires restart.**
|
|
137
|
+
* * `innodbPrintAllDeadlocks` - (Optional) Print all deadlocks to error log. Default: `OFF`.
|
|
138
|
+
* * `innodbPrintDdlLogs` - (Optional) Print DDL logs to error log. Default: `OFF`.
|
|
139
|
+
* * `innodbPrintLockWaitTimeoutInfo` - (Optional) Extra lock wait timeout info. Default: `OFF`.
|
|
140
|
+
* * `innodbPurgeThreads` - (Optional) Number of background purge threads. Default: `1`. **Requires restart.**
|
|
141
|
+
* * `innodbRandomReadAhead` - (Optional) Enable random read-ahead. Default: `OFF`.
|
|
142
|
+
* * `innodbReadAheadThreshold` - (Optional) Pages to trigger linear read-ahead. Default: `56`.
|
|
143
|
+
* * `innodbReadIoThreads` - (Optional) Number of read I/O threads. Default: `4`. **Requires restart.**
|
|
144
|
+
* * `innodbRedoLogCapacity` - (Optional) Total redo log capacity for InnoDB. Default: `104857600`.
|
|
145
|
+
* * `innodbRollbackOnTimeout` - (Optional) Rollback entire transaction on lock wait timeout. Default: `OFF`. **Requires restart.**
|
|
146
|
+
* * `innodbShowLocksHeld` - (Optional) Max locks shown per txn. Default: `10`.
|
|
147
|
+
* * `innodbSortBufferSize` - (Optional) Sort buffer size for InnoDB online DDL. Default: `1048576`. **Requires restart.**
|
|
148
|
+
* * `innodbSpinWaitDelay` - (Optional) Delay between spin lock polls. Default: `6`.
|
|
149
|
+
* * `innodbStatsAutoRecalc` - (Optional) Auto-recalculate persistent stats. Default: `ON`.
|
|
150
|
+
* * `innodbStatsPersistent` - (Optional) Whether index statistics are persistent. Default: `ON`.
|
|
151
|
+
* * `innodbStatsPersistentSamplePages` - (Optional) Sample pages for persistent statistics. Default: `20`.
|
|
152
|
+
* * `innodbStatsTransientSamplePages` - (Optional) Sample pages for transient statistics. Default: `8`.
|
|
153
|
+
* * `innodbStrictMode` - (Optional) Strict mode (errors vs warnings). Default: `ON`.
|
|
154
|
+
* * `innodbSyncSpinLoops` - (Optional) Spin loops before mutex wait. Default: `30`.
|
|
155
|
+
* * `innodbThreadConcurrency` - (Optional) Max threads inside InnoDB (0=unlimited). Default: `0`.
|
|
156
|
+
* * `innodbUseFdatasync` - (Optional) Use fdatasync() instead of fsync(). Default: `OFF`.
|
|
157
|
+
* * `innodbWriteIoThreads` - (Optional) Number of write I/O threads. Default: `4`. **Requires restart.**
|
|
158
|
+
* * `interactiveTimeout` - (Optional) Seconds the server waits for activity on an interactive connection before closing it. Default: `28800`.
|
|
159
|
+
* * `internalTmpMemStorageEngine` - (Optional) Engine for temp tables: TempTable or MEMORY. Default: `TempTable`.
|
|
160
|
+
* * `joinBufferSize` - (Optional) Per-session buffer for joins. Default: `262144`.
|
|
161
|
+
* * `killIdleTransaction` - (Optional) Seconds before killing idle transactions (Percona; was catalog misspell innodb_kill_idle_transaction). Default: `0`.
|
|
162
|
+
* * `localInfile` - (Optional) Enable LOAD DATA LOCAL INFILE. Default: `OFF`.
|
|
163
|
+
* * `lockWaitTimeout` - (Optional) Seconds for metadata lock wait. Default: `31536000`.
|
|
164
|
+
* * `logErrorVerbosity` - (Optional) Error log verbosity (1-3). Default: `2`.
|
|
165
|
+
* * `logOutput` - (Optional) Log destination: TABLE, FILE, NONE. Default: `FILE`.
|
|
166
|
+
* * `logQueriesNotUsingIndexes` - (Optional) Log no-index queries to slow log. Default: `OFF`.
|
|
167
|
+
* * `logSlowExtra` - (Optional) Extra info in slow query log. Default: `OFF`.
|
|
168
|
+
* * `logSlowFilter` - (Optional) PS 8.4 filter (comma-separated): full_scan, full_join, tmp_table, tmp_table_on_disk, filesort, filesort_on_disk; empty disables.
|
|
169
|
+
* * `logSlowRateLimit` - (Optional) Rate-limit slow log (1=every query). Default: `1`.
|
|
170
|
+
* * `logSlowSpStatements` - (Optional) Log stored proc statements. Default: `OFF`.
|
|
171
|
+
* * `logSlowVerbosity` - (Optional) Detail: microtime, query_plan, innodb.
|
|
172
|
+
* * `logThrottleQueriesNotUsingIndexes` - (Optional) Throttle rate of no-index log entries. Default: `0`.
|
|
173
|
+
* * `logTimestamps` - (Optional) Log timestamps: UTC or SYSTEM. Default: `UTC`.
|
|
174
|
+
* * `longQueryTime` - (Optional) Queries that take longer than this many seconds are logged to the slow query log. Default: `2`.
|
|
175
|
+
* * `maxAllowedPacket` - (Optional) Max client/server packet size. Default: `67108864`.
|
|
176
|
+
* * `maxConnectErrors` - (Optional) Consecutive errors before blocking host. Default: `100`.
|
|
177
|
+
* * `maxConnections` - (Optional) Maximum number of simultaneous client connections. Default: `512`.
|
|
178
|
+
* * `maxHeapTableSize` - (Optional) Maximum size for user-created MEMORY tables and internal in-memory tables. Default: `16777216`.
|
|
179
|
+
* * `maxJoinSize` - (Optional) Max rows for large join protection. Default: `9223372036854775807`.
|
|
180
|
+
* * `maxPreparedStmtCount` - (Optional) Max prepared statements server-wide. Default: `16382`.
|
|
181
|
+
* * `maxSortLength` - (Optional) Bytes sorting BLOB/TEXT values. Default: `1024`.
|
|
182
|
+
* * `maxUserConnections` - (Optional) Max simultaneous connections per user. Default: `0`.
|
|
183
|
+
* * `netBufferLength` - (Optional) Initial connection/result buffer size. Default: `16384`.
|
|
184
|
+
* * `netReadTimeout` - (Optional) Seconds to wait for read data. Default: `30`.
|
|
185
|
+
* * `netWriteTimeout` - (Optional) Seconds to wait for write. Default: `60`.
|
|
186
|
+
* * `optimizerSwitch` - (Optional) Optimizer feature flags (boot_val from PS 8.4.8 live; hypergraph_optimizer=on fails on non-debug builds). Default: `index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,engine_condition_pushdown=on,index_condition_pushdown=on,mrr=on,mrr_cost_based=on,block_nested_loop=on,batched_key_access=off,materialization=on,semijoin=on,loosescan=on,firstmatch=on,duplicateweedout=on,subquery_materialization_cost_based=on,use_index_extensions=on,condition_fanout_filter=on,derived_merge=on,use_invisible_indexes=off,skip_scan=on,hash_join=on,subquery_to_derived=off,prefer_ordering_index=on,hypergraph_optimizer=off,derived_condition_pushdown=on,hash_set_operations=on,favor_range_scan=off`.
|
|
187
|
+
* * `passwordHistory` - (Optional) Passwords tracked for reuse prevention. Default: `0`.
|
|
188
|
+
* * `passwordReuseInterval` - (Optional) Days before password reuse. Default: `0`.
|
|
189
|
+
* * `performanceSchemaMaxDigestLength` - (Optional) Max Performance Schema digest length. Default: `1024`. **Requires restart.**
|
|
190
|
+
* * `performanceSchemaMaxSqlTextLength` - (Optional) Max Performance Schema SQL text length. Default: `1024`. **Requires restart.**
|
|
191
|
+
* * `rangeOptimizerMaxMemSize` - (Optional) Max memory for range optimizer. Default: `8388608`.
|
|
192
|
+
* * `readBufferSize` - (Optional) Buffer for sequential scans. Default: `131072`.
|
|
193
|
+
* * `readRndBufferSize` - (Optional) Buffer for random reads after sort. Default: `262144`.
|
|
194
|
+
* * `replicaCompressedProtocol` - (Optional) Compression for replica protocol. Default: `OFF`.
|
|
195
|
+
* * `replicaExecMode` - (Optional) STRICT or IDEMPOTENT. Default: `STRICT`.
|
|
196
|
+
* * `replicaParallelType` - (Optional) LOGICAL_CLOCK or DATABASE. Default: `LOGICAL_CLOCK`.
|
|
197
|
+
* * `replicaParallelWorkers` - (Optional) Parallel applier workers. Default: `4`.
|
|
198
|
+
* * `replicaPreserveCommitOrder` - (Optional) Preserve commit order on replicas. Default: `ON`.
|
|
199
|
+
* * `requireSecureTransport` - (Optional) Require SSL/TLS. Default: `OFF`.
|
|
200
|
+
* * `slowQueryLog` - (Optional) Whether the slow query log is enabled. Default: `ON`.
|
|
201
|
+
* * `sortBufferSize` - (Optional) Per-session buffer for sorts. Default: `262144`.
|
|
202
|
+
* * `sqlBufferResult` - (Optional) Force results to temp tables. Default: `OFF`.
|
|
203
|
+
* * `sqlMode` - (Optional) SQL modes that control SQL syntax and data validation. Default: `ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION`.
|
|
204
|
+
* * `syncBinlog` - (Optional) Sync binlog every N commits. Default: `1`.
|
|
205
|
+
* * `tableDefinitionCache` - (Optional) Table definitions to cache. Default: `2000`.
|
|
206
|
+
* * `tableOpenCache` - (Optional) Open tables to cache. Default: `4000`.
|
|
207
|
+
* * `tableOpenCacheInstances` - (Optional) Table cache instances. Default: `16`. **Requires restart.**
|
|
208
|
+
* * `tablespaceDefinitionCache` - (Optional) Tablespace definitions to cache. Default: `256`.
|
|
209
|
+
* * `temptableMaxMmap` - (Optional) Max TempTable mmap file size. Default: `1073741824`.
|
|
210
|
+
* * `temptableMaxRam` - (Optional) Max TempTable RAM before spill. Default: `1073741824`.
|
|
211
|
+
* * `temptableUseMmap` - (Optional) Allow TempTable mmap files. Default: `ON`.
|
|
212
|
+
* * `threadCacheSize` - (Optional) Threads cached for reuse. Default: `9`.
|
|
213
|
+
* * `threadPoolIdleTimeout` - (Optional) Seconds before idle pool thread exits. Default: `60`.
|
|
214
|
+
* * `threadPoolMaxThreads` - (Optional) Max threads in thread pool. Default: `100000`.
|
|
215
|
+
* * `threadPoolSize` - (Optional) Thread groups in Percona thread pool. Default: `4`. **Requires restart.**
|
|
216
|
+
* * `threadStack` - (Optional) Stack size per thread. Default: `1048576`. **Requires restart.**
|
|
217
|
+
* * `threadStatistics` - (Optional) Per-thread statistics. Default: `OFF`.
|
|
218
|
+
* * `timeZone` - (Optional) Server default time zone (replaces invalid catalog name default_time_zone). Default: `SYSTEM`.
|
|
219
|
+
* * `tmpTableSize` - (Optional) Maximum size of internal in-memory temporary tables. Default: `16777216`.
|
|
220
|
+
* * `userstat` - (Optional) USER_STATISTICS tables. Default: `OFF`.
|
|
221
|
+
* * `waitTimeout` - (Optional) Seconds the server waits for activity on a noninteractive connection before closing it. Default: `28800`.
|
|
222
|
+
* * `windowingUseHighPrecision` - (Optional) High precision window functions. Default: `ON`.
|
|
223
|
+
*
|
|
224
|
+
* ## Import
|
|
225
|
+
*
|
|
226
|
+
* An advanced MySQL database cluster's configuration can be imported using the `id` of the parent cluster, e.g.
|
|
227
|
+
*
|
|
228
|
+
* ```sh
|
|
229
|
+
* $ pulumi import digitalocean:index/databaseAdvancedMysqlConfig:DatabaseAdvancedMysqlConfig example 52556c07-788e-4d41-b8a7-c796432197d1
|
|
230
|
+
* ```
|
|
231
|
+
*/
|
|
232
|
+
class DatabaseAdvancedMysqlConfig extends pulumi.CustomResource {
|
|
233
|
+
/**
|
|
234
|
+
* Get an existing DatabaseAdvancedMysqlConfig resource's state with the given name, ID, and optional extra
|
|
235
|
+
* properties used to qualify the lookup.
|
|
236
|
+
*
|
|
237
|
+
* @param name The _unique_ name of the resulting resource.
|
|
238
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
239
|
+
* @param state Any extra arguments used during the lookup.
|
|
240
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
241
|
+
*/
|
|
242
|
+
static get(name, id, state, opts) {
|
|
243
|
+
return new DatabaseAdvancedMysqlConfig(name, state, { ...opts, id: id });
|
|
244
|
+
}
|
|
245
|
+
/** @internal */
|
|
246
|
+
static __pulumiType = 'digitalocean:index/databaseAdvancedMysqlConfig:DatabaseAdvancedMysqlConfig';
|
|
247
|
+
/**
|
|
248
|
+
* Returns true if the given object is an instance of DatabaseAdvancedMysqlConfig. This is designed to work even
|
|
249
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
250
|
+
*/
|
|
251
|
+
static isInstance(obj) {
|
|
252
|
+
if (obj === undefined || obj === null) {
|
|
253
|
+
return false;
|
|
254
|
+
}
|
|
255
|
+
return obj['__pulumiType'] === DatabaseAdvancedMysqlConfig.__pulumiType;
|
|
256
|
+
}
|
|
257
|
+
constructor(name, argsOrState, opts) {
|
|
258
|
+
let resourceInputs = {};
|
|
259
|
+
opts = opts || {};
|
|
260
|
+
if (opts.id) {
|
|
261
|
+
const state = argsOrState;
|
|
262
|
+
resourceInputs["clusterId"] = state?.clusterId;
|
|
263
|
+
resourceInputs["mysqlParameters"] = state?.mysqlParameters;
|
|
264
|
+
}
|
|
265
|
+
else {
|
|
266
|
+
const args = argsOrState;
|
|
267
|
+
if (args?.clusterId === undefined && !opts.urn) {
|
|
268
|
+
throw new Error("Missing required property 'clusterId'");
|
|
269
|
+
}
|
|
270
|
+
resourceInputs["clusterId"] = args?.clusterId;
|
|
271
|
+
resourceInputs["mysqlParameters"] = args?.mysqlParameters;
|
|
272
|
+
}
|
|
273
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
274
|
+
super(DatabaseAdvancedMysqlConfig.__pulumiType, name, resourceInputs, opts);
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
exports.DatabaseAdvancedMysqlConfig = DatabaseAdvancedMysqlConfig;
|
|
278
|
+
//# sourceMappingURL=databaseAdvancedMysqlConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"databaseAdvancedMysqlConfig.js","sourceRoot":"","sources":["../databaseAdvancedMysqlConfig.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwMG;AACH,MAAa,2BAA4B,SAAQ,MAAM,CAAC,cAAc;IAClE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwC,EAAE,IAAmC;QACtI,OAAO,IAAI,2BAA2B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClF,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,4EAA4E,CAAC;IAEnH;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,2BAA2B,CAAC,YAAY,CAAC;IAC5E,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAgF,EAAE,IAAmC;QAC3I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2D,CAAC;YAC1E,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;SAC9D;aAAM;YACH,MAAM,IAAI,GAAG,WAA0D,CAAC;YACxE,IAAI,IAAI,EAAE,SAAS,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5C,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;SAC7D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,2BAA2B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChF,CAAC;;AA9DL,kEA+DC"}
|
|
@@ -22,6 +22,7 @@ export declare function getKubernetesCluster(args: GetKubernetesClusterArgs, opt
|
|
|
22
22
|
export interface GetKubernetesClusterArgs {
|
|
23
23
|
amdGpuDeviceMetricsExporterPlugin?: inputs.GetKubernetesClusterAmdGpuDeviceMetricsExporterPlugin;
|
|
24
24
|
amdGpuDevicePlugin?: inputs.GetKubernetesClusterAmdGpuDevicePlugin;
|
|
25
|
+
amdGpuDraDriver?: inputs.GetKubernetesClusterAmdGpuDraDriver;
|
|
25
26
|
clusterAutoscalerConfigurations?: inputs.GetKubernetesClusterClusterAutoscalerConfiguration[];
|
|
26
27
|
corednsAutoscaler?: inputs.GetKubernetesClusterCorednsAutoscaler;
|
|
27
28
|
kubeconfigExpireSeconds?: number;
|
|
@@ -30,6 +31,7 @@ export interface GetKubernetesClusterArgs {
|
|
|
30
31
|
*/
|
|
31
32
|
name: string;
|
|
32
33
|
nvidiaGpuDevicePlugin?: inputs.GetKubernetesClusterNvidiaGpuDevicePlugin;
|
|
34
|
+
nvidiaGpuDraDriver?: inputs.GetKubernetesClusterNvidiaGpuDraDriver;
|
|
33
35
|
p2pOciRegistryPlugin?: inputs.GetKubernetesClusterP2pOciRegistryPlugin;
|
|
34
36
|
rdmaSharedDevicePlugin?: inputs.GetKubernetesClusterRdmaSharedDevicePlugin;
|
|
35
37
|
routingAgent?: inputs.GetKubernetesClusterRoutingAgent;
|
|
@@ -45,6 +47,7 @@ export interface GetKubernetesClusterArgs {
|
|
|
45
47
|
export interface GetKubernetesClusterResult {
|
|
46
48
|
readonly amdGpuDeviceMetricsExporterPlugin: outputs.GetKubernetesClusterAmdGpuDeviceMetricsExporterPlugin;
|
|
47
49
|
readonly amdGpuDevicePlugin: outputs.GetKubernetesClusterAmdGpuDevicePlugin;
|
|
50
|
+
readonly amdGpuDraDriver: outputs.GetKubernetesClusterAmdGpuDraDriver;
|
|
48
51
|
/**
|
|
49
52
|
* A boolean value indicating whether the cluster will be automatically upgraded to new patch releases during its maintenance window.
|
|
50
53
|
*/
|
|
@@ -91,6 +94,7 @@ export interface GetKubernetesClusterResult {
|
|
|
91
94
|
*/
|
|
92
95
|
readonly nodePools: outputs.GetKubernetesClusterNodePool[];
|
|
93
96
|
readonly nvidiaGpuDevicePlugin: outputs.GetKubernetesClusterNvidiaGpuDevicePlugin;
|
|
97
|
+
readonly nvidiaGpuDraDriver: outputs.GetKubernetesClusterNvidiaGpuDraDriver;
|
|
94
98
|
readonly p2pOciRegistryPlugin: outputs.GetKubernetesClusterP2pOciRegistryPlugin;
|
|
95
99
|
readonly rdmaSharedDevicePlugin: outputs.GetKubernetesClusterRdmaSharedDevicePlugin;
|
|
96
100
|
/**
|
|
@@ -151,6 +155,7 @@ export declare function getKubernetesClusterOutput(args: GetKubernetesClusterOut
|
|
|
151
155
|
export interface GetKubernetesClusterOutputArgs {
|
|
152
156
|
amdGpuDeviceMetricsExporterPlugin?: pulumi.Input<inputs.GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs | undefined>;
|
|
153
157
|
amdGpuDevicePlugin?: pulumi.Input<inputs.GetKubernetesClusterAmdGpuDevicePluginArgs | undefined>;
|
|
158
|
+
amdGpuDraDriver?: pulumi.Input<inputs.GetKubernetesClusterAmdGpuDraDriverArgs | undefined>;
|
|
154
159
|
clusterAutoscalerConfigurations?: pulumi.Input<pulumi.Input<inputs.GetKubernetesClusterClusterAutoscalerConfigurationArgs>[] | undefined>;
|
|
155
160
|
corednsAutoscaler?: pulumi.Input<inputs.GetKubernetesClusterCorednsAutoscalerArgs | undefined>;
|
|
156
161
|
kubeconfigExpireSeconds?: pulumi.Input<number | undefined>;
|
|
@@ -159,6 +164,7 @@ export interface GetKubernetesClusterOutputArgs {
|
|
|
159
164
|
*/
|
|
160
165
|
name: pulumi.Input<string>;
|
|
161
166
|
nvidiaGpuDevicePlugin?: pulumi.Input<inputs.GetKubernetesClusterNvidiaGpuDevicePluginArgs | undefined>;
|
|
167
|
+
nvidiaGpuDraDriver?: pulumi.Input<inputs.GetKubernetesClusterNvidiaGpuDraDriverArgs | undefined>;
|
|
162
168
|
p2pOciRegistryPlugin?: pulumi.Input<inputs.GetKubernetesClusterP2pOciRegistryPluginArgs | undefined>;
|
|
163
169
|
rdmaSharedDevicePlugin?: pulumi.Input<inputs.GetKubernetesClusterRdmaSharedDevicePluginArgs | undefined>;
|
|
164
170
|
routingAgent?: pulumi.Input<inputs.GetKubernetesClusterRoutingAgentArgs | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getKubernetesCluster.d.ts","sourceRoot":"","sources":["../getKubernetesCluster.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAI1C;;;;;;;;;;;;;GAaG;AACH,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,wBAAwB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,0BAA0B,CAAC,
|
|
1
|
+
{"version":3,"file":"getKubernetesCluster.d.ts","sourceRoot":"","sources":["../getKubernetesCluster.ts"],"names":[],"mappings":"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"}
|