@pulumi/mongodbatlas 3.22.0 → 3.23.0-alpha.1734954661
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/package.json +2 -2
- package/types/input.d.ts +16 -0
- package/types/output.d.ts +48 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/mongodbatlas",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.23.0-alpha.1734954661",
|
|
4
4
|
"description": "A Pulumi package for creating and managing mongodbatlas cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "mongodbatlas",
|
|
26
|
-
"version": "3.
|
|
26
|
+
"version": "3.23.0-alpha.1734954661"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -5,6 +5,10 @@ export interface AdvancedClusterAdvancedConfiguration {
|
|
|
5
5
|
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively. `expireAfterSeconds` controls how long MongoDB retains pre- and post-images. When set to -1 (off), MongoDB uses the default retention policy: pre- and post-images are retained until the corresponding change stream events are removed from the oplog. To set the minimum pre- and post-image retention time, specify an integer value greater than zero. Setting this too low could increase the risk of interrupting Realm sync or triggers processing. This parameter is only supported for MongoDB version 6.0 and above.
|
|
6
6
|
*/
|
|
7
7
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds?: pulumi.Input<number>;
|
|
8
|
+
/**
|
|
9
|
+
* The custom OpenSSL cipher suite list for TLS 1.2. This field is only valid when `tlsCipherConfigMode` is set to `CUSTOM`.
|
|
10
|
+
*/
|
|
11
|
+
customOpensslCipherConfigTls12s?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8
12
|
/**
|
|
9
13
|
* Default time limit in milliseconds for individual read operations to complete. This option corresponds to the [defaultMaxTimeMS(https://www.mongodb.com/docs/upcoming/reference/cluster-parameters/defaultMaxTimeMS/) cluster parameter. This parameter is supported only for MongoDB version 8.0 and above.
|
|
10
14
|
*/
|
|
@@ -58,6 +62,10 @@ export interface AdvancedClusterAdvancedConfiguration {
|
|
|
58
62
|
* Number of documents per database to sample when gathering schema information. Defaults to 100. Available only for Atlas deployments in which BI Connector for Atlas is enabled.
|
|
59
63
|
*/
|
|
60
64
|
sampleSizeBiConnector?: pulumi.Input<number>;
|
|
65
|
+
/**
|
|
66
|
+
* The TLS cipher suite configuration mode. Valid values include `CUSTOM` or `DEFAULT`. The `DEFAULT` mode uses the default cipher suites. The `CUSTOM` mode allows you to specify custom cipher suites for both TLS 1.2 and TLS 1.3. To unset, this should be set back to `DEFAULT`.
|
|
67
|
+
*/
|
|
68
|
+
tlsCipherConfigMode?: pulumi.Input<string>;
|
|
61
69
|
/**
|
|
62
70
|
* Lifetime, in seconds, of multi-document transactions. Defaults to 60 seconds.
|
|
63
71
|
*/
|
|
@@ -887,6 +895,10 @@ export interface ClusterAdvancedConfiguration {
|
|
|
887
895
|
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively.`expireAfterSeconds` controls how long MongoDB retains pre- and post-images. When set to -1 (off), MongoDB uses the default retention policy: pre- and post-images are retained until the corresponding change stream events are removed from the oplog. To set the minimum pre- and post-image retention time, specify an integer value greater than zero. Setting this too low could increase the risk of interrupting Realm sync or triggers processing. This parameter is only supported for MongoDB version 6.0 and above.
|
|
888
896
|
*/
|
|
889
897
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds?: pulumi.Input<number>;
|
|
898
|
+
/**
|
|
899
|
+
* The custom OpenSSL cipher suite list for TLS 1.2. This field is only valid when `tlsCipherConfigMode` is set to `CUSTOM`.
|
|
900
|
+
*/
|
|
901
|
+
customOpensslCipherConfigTls12s?: pulumi.Input<pulumi.Input<string>[]>;
|
|
890
902
|
defaultMaxTimeMs?: pulumi.Input<number>;
|
|
891
903
|
/**
|
|
892
904
|
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. MongoDB 4.4 clusters default to [available](https://docs.mongodb.com/manual/reference/read-concern-available/).
|
|
@@ -937,6 +949,10 @@ export interface ClusterAdvancedConfiguration {
|
|
|
937
949
|
* Number of documents per database to sample when gathering schema information. Defaults to 100. Available only for Atlas deployments in which BI Connector for Atlas is enabled.
|
|
938
950
|
*/
|
|
939
951
|
sampleSizeBiConnector?: pulumi.Input<number>;
|
|
952
|
+
/**
|
|
953
|
+
* The TLS cipher suite configuration mode. Valid values include `CUSTOM` or `DEFAULT`. The `DEFAULT` mode uses the default cipher suites. The `CUSTOM` mode allows you to specify custom cipher suites for both TLS 1.2 and TLS 1.3. To unset, this should be set back to `DEFAULT`.
|
|
954
|
+
*/
|
|
955
|
+
tlsCipherConfigMode?: pulumi.Input<string>;
|
|
940
956
|
/**
|
|
941
957
|
* Lifetime, in seconds, of multi-document transactions. Defaults to 60 seconds.
|
|
942
958
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -4,6 +4,10 @@ export interface AdvancedClusterAdvancedConfiguration {
|
|
|
4
4
|
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively. `expireAfterSeconds` controls how long MongoDB retains pre- and post-images. When set to -1 (off), MongoDB uses the default retention policy: pre- and post-images are retained until the corresponding change stream events are removed from the oplog. To set the minimum pre- and post-image retention time, specify an integer value greater than zero. Setting this too low could increase the risk of interrupting Realm sync or triggers processing. This parameter is only supported for MongoDB version 6.0 and above.
|
|
5
5
|
*/
|
|
6
6
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds?: number;
|
|
7
|
+
/**
|
|
8
|
+
* The custom OpenSSL cipher suite list for TLS 1.2. This field is only valid when `tlsCipherConfigMode` is set to `CUSTOM`.
|
|
9
|
+
*/
|
|
10
|
+
customOpensslCipherConfigTls12s?: string[];
|
|
7
11
|
/**
|
|
8
12
|
* Default time limit in milliseconds for individual read operations to complete. This option corresponds to the [defaultMaxTimeMS(https://www.mongodb.com/docs/upcoming/reference/cluster-parameters/defaultMaxTimeMS/) cluster parameter. This parameter is supported only for MongoDB version 8.0 and above.
|
|
9
13
|
*/
|
|
@@ -57,6 +61,10 @@ export interface AdvancedClusterAdvancedConfiguration {
|
|
|
57
61
|
* Number of documents per database to sample when gathering schema information. Defaults to 100. Available only for Atlas deployments in which BI Connector for Atlas is enabled.
|
|
58
62
|
*/
|
|
59
63
|
sampleSizeBiConnector: number;
|
|
64
|
+
/**
|
|
65
|
+
* The TLS cipher suite configuration mode. Valid values include `CUSTOM` or `DEFAULT`. The `DEFAULT` mode uses the default cipher suites. The `CUSTOM` mode allows you to specify custom cipher suites for both TLS 1.2 and TLS 1.3. To unset, this should be set back to `DEFAULT`.
|
|
66
|
+
*/
|
|
67
|
+
tlsCipherConfigMode: string;
|
|
60
68
|
/**
|
|
61
69
|
* Lifetime, in seconds, of multi-document transactions. Defaults to 60 seconds.
|
|
62
70
|
*/
|
|
@@ -886,6 +894,10 @@ export interface ClusterAdvancedConfiguration {
|
|
|
886
894
|
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively.`expireAfterSeconds` controls how long MongoDB retains pre- and post-images. When set to -1 (off), MongoDB uses the default retention policy: pre- and post-images are retained until the corresponding change stream events are removed from the oplog. To set the minimum pre- and post-image retention time, specify an integer value greater than zero. Setting this too low could increase the risk of interrupting Realm sync or triggers processing. This parameter is only supported for MongoDB version 6.0 and above.
|
|
887
895
|
*/
|
|
888
896
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds?: number;
|
|
897
|
+
/**
|
|
898
|
+
* The custom OpenSSL cipher suite list for TLS 1.2. This field is only valid when `tlsCipherConfigMode` is set to `CUSTOM`.
|
|
899
|
+
*/
|
|
900
|
+
customOpensslCipherConfigTls12s?: string[];
|
|
889
901
|
defaultMaxTimeMs?: number;
|
|
890
902
|
/**
|
|
891
903
|
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. MongoDB 4.4 clusters default to [available](https://docs.mongodb.com/manual/reference/read-concern-available/).
|
|
@@ -936,6 +948,10 @@ export interface ClusterAdvancedConfiguration {
|
|
|
936
948
|
* Number of documents per database to sample when gathering schema information. Defaults to 100. Available only for Atlas deployments in which BI Connector for Atlas is enabled.
|
|
937
949
|
*/
|
|
938
950
|
sampleSizeBiConnector: number;
|
|
951
|
+
/**
|
|
952
|
+
* The TLS cipher suite configuration mode. Valid values include `CUSTOM` or `DEFAULT`. The `DEFAULT` mode uses the default cipher suites. The `CUSTOM` mode allows you to specify custom cipher suites for both TLS 1.2 and TLS 1.3. To unset, this should be set back to `DEFAULT`.
|
|
953
|
+
*/
|
|
954
|
+
tlsCipherConfigMode: string;
|
|
939
955
|
/**
|
|
940
956
|
* Lifetime, in seconds, of multi-document transactions. Defaults to 60 seconds.
|
|
941
957
|
*/
|
|
@@ -1579,6 +1595,10 @@ export interface GetAdvancedClusterAdvancedConfiguration {
|
|
|
1579
1595
|
* (Optional) The minimum pre- and post-image retention time in seconds This parameter is only supported for MongoDB version 6.0 and above. Defaults to `-1`(off).
|
|
1580
1596
|
*/
|
|
1581
1597
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
1598
|
+
/**
|
|
1599
|
+
* The custom OpenSSL cipher suite list for TLS 1.2. This field is only valid when `tlsCipherConfigMode` is set to `CUSTOM`.
|
|
1600
|
+
*/
|
|
1601
|
+
customOpensslCipherConfigTls12s: string[];
|
|
1582
1602
|
/**
|
|
1583
1603
|
* Default time limit in milliseconds for individual read operations to complete. This option corresponds to the [defaultMaxTimeMS(https://www.mongodb.com/docs/upcoming/reference/cluster-parameters/defaultMaxTimeMS/) cluster parameter. This parameter is supported only for MongoDB version 8.0 and above.
|
|
1584
1604
|
*/
|
|
@@ -1627,6 +1647,10 @@ export interface GetAdvancedClusterAdvancedConfiguration {
|
|
|
1627
1647
|
* Number of documents per database to sample when gathering schema information. Defaults to 100. Available only for Atlas deployments in which BI Connector for Atlas is enabled.
|
|
1628
1648
|
*/
|
|
1629
1649
|
sampleSizeBiConnector: number;
|
|
1650
|
+
/**
|
|
1651
|
+
* The TLS cipher suite configuration mode. Valid values include `CUSTOM` or `DEFAULT`. The `DEFAULT` mode uses the default cipher suites. The `CUSTOM` mode allows you to specify custom cipher suites for both TLS 1.2 and TLS 1.3.
|
|
1652
|
+
*/
|
|
1653
|
+
tlsCipherConfigMode: string;
|
|
1630
1654
|
/**
|
|
1631
1655
|
* Lifetime, in seconds, of multi-document transactions. Defaults to 60 seconds.
|
|
1632
1656
|
*/
|
|
@@ -2011,6 +2035,10 @@ export interface GetAdvancedClustersResultAdvancedConfiguration {
|
|
|
2011
2035
|
* (Optional) The minimum pre- and post-image retention time in seconds. This parameter is only supported for MongoDB version 6.0 and above. Defaults to `-1`(off).
|
|
2012
2036
|
*/
|
|
2013
2037
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
2038
|
+
/**
|
|
2039
|
+
* The custom OpenSSL cipher suite list for TLS 1.2. This field is only valid when `tlsCipherConfigMode` is set to `CUSTOM`.
|
|
2040
|
+
*/
|
|
2041
|
+
customOpensslCipherConfigTls12s: string[];
|
|
2014
2042
|
/**
|
|
2015
2043
|
* Default time limit in milliseconds for individual read operations to complete. This option corresponds to the [defaultMaxTimeMS(https://www.mongodb.com/docs/upcoming/reference/cluster-parameters/defaultMaxTimeMS/) cluster parameter. This parameter is supported only for MongoDB version 8.0 and above.
|
|
2016
2044
|
*/
|
|
@@ -2059,6 +2087,10 @@ export interface GetAdvancedClustersResultAdvancedConfiguration {
|
|
|
2059
2087
|
* Number of documents per database to sample when gathering schema information. Defaults to 100. Available only for Atlas deployments in which BI Connector for Atlas is enabled.
|
|
2060
2088
|
*/
|
|
2061
2089
|
sampleSizeBiConnector: number;
|
|
2090
|
+
/**
|
|
2091
|
+
* The TLS cipher suite configuration mode. Valid values include `CUSTOM` or `DEFAULT`. The `DEFAULT` mode uses the default cipher suites. The `CUSTOM` mode allows you to specify custom cipher suites for both TLS 1.2 and TLS 1.3.
|
|
2092
|
+
*/
|
|
2093
|
+
tlsCipherConfigMode: string;
|
|
2062
2094
|
/**
|
|
2063
2095
|
* (Optional) Lifetime, in seconds, of multi-document transactions. Defaults to 60 seconds.
|
|
2064
2096
|
*/
|
|
@@ -3434,6 +3466,10 @@ export interface GetClusterAdvancedConfiguration {
|
|
|
3434
3466
|
* (Optional) The minimum pre- and post-image retention time in seconds. This parameter is only supported for MongoDB version 6.0 and above. Defaults to `-1`(off).
|
|
3435
3467
|
*/
|
|
3436
3468
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
3469
|
+
/**
|
|
3470
|
+
* The custom OpenSSL cipher suite list for TLS 1.2. This field is only valid when `tlsCipherConfigMode` is set to `CUSTOM`.
|
|
3471
|
+
*/
|
|
3472
|
+
customOpensslCipherConfigTls12s: string[];
|
|
3437
3473
|
defaultMaxTimeMs: number;
|
|
3438
3474
|
/**
|
|
3439
3475
|
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. MongoDB 4.4 clusters default to [available](https://docs.mongodb.com/manual/reference/read-concern-available/).
|
|
@@ -3479,6 +3515,10 @@ export interface GetClusterAdvancedConfiguration {
|
|
|
3479
3515
|
* Number of documents per database to sample when gathering schema information. Defaults to 100. Available only for Atlas deployments in which BI Connector for Atlas is enabled.
|
|
3480
3516
|
*/
|
|
3481
3517
|
sampleSizeBiConnector: number;
|
|
3518
|
+
/**
|
|
3519
|
+
* The TLS cipher suite configuration mode. Valid values include `CUSTOM` or `DEFAULT`. The `DEFAULT` mode uses the default cipher suites. The `CUSTOM` mode allows you to specify custom cipher suites for both TLS 1.2 and TLS 1.3.
|
|
3520
|
+
*/
|
|
3521
|
+
tlsCipherConfigMode: string;
|
|
3482
3522
|
/**
|
|
3483
3523
|
* Lifetime, in seconds, of multi-document transactions. Defaults to 60 seconds.
|
|
3484
3524
|
*/
|
|
@@ -3839,6 +3879,10 @@ export interface GetClustersResultAdvancedConfiguration {
|
|
|
3839
3879
|
* (Optional) The minimum pre- and post-image retention time in seconds. This parameter is only supported for MongoDB version 6.0 and above. Defaults to `-1`(off).
|
|
3840
3880
|
*/
|
|
3841
3881
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
3882
|
+
/**
|
|
3883
|
+
* The custom OpenSSL cipher suite list for TLS 1.2. This field is only valid when `tlsCipherConfigMode` is set to `CUSTOM`.
|
|
3884
|
+
*/
|
|
3885
|
+
customOpensslCipherConfigTls12s: string[];
|
|
3842
3886
|
defaultMaxTimeMs: number;
|
|
3843
3887
|
/**
|
|
3844
3888
|
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. MongoDB 4.4 clusters default to [available](https://docs.mongodb.com/manual/reference/read-concern-available/).
|
|
@@ -3884,6 +3928,10 @@ export interface GetClustersResultAdvancedConfiguration {
|
|
|
3884
3928
|
* Number of documents per database to sample when gathering schema information. Defaults to 100. Available only for Atlas deployments in which BI Connector for Atlas is enabled.
|
|
3885
3929
|
*/
|
|
3886
3930
|
sampleSizeBiConnector: number;
|
|
3931
|
+
/**
|
|
3932
|
+
* The TLS cipher suite configuration mode. Valid values include `CUSTOM` or `DEFAULT`. The `DEFAULT` mode uses the default cipher suites. The `CUSTOM` mode allows you to specify custom cipher suites for both TLS 1.2 and TLS 1.3.
|
|
3933
|
+
*/
|
|
3934
|
+
tlsCipherConfigMode: string;
|
|
3887
3935
|
transactionLifetimeLimitSeconds: number;
|
|
3888
3936
|
}
|
|
3889
3937
|
export interface GetClustersResultBiConnectorConfig {
|