@pulumi/mongodbatlas 3.31.0-alpha.1746425655 → 3.31.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/advancedCluster.d.ts +6 -13
- package/advancedCluster.js +0 -1
- package/advancedCluster.js.map +1 -1
- package/cloudBackupSnapshotExportBucket.d.ts +6 -0
- package/cloudBackupSnapshotExportBucket.js.map +1 -1
- package/cluster.d.ts +6 -6
- package/databaseUser.d.ts +14 -2
- package/databaseUser.js +4 -2
- package/databaseUser.js.map +1 -1
- package/encryptionAtRest.d.ts +12 -0
- package/encryptionAtRest.js +2 -0
- package/encryptionAtRest.js.map +1 -1
- package/getAdvancedCluster.d.ts +1 -1
- package/getCloudBackupSnapshotExportBucket.d.ts +2 -0
- package/getCloudBackupSnapshotExportBucket.js.map +1 -1
- package/getDatabaseUser.d.ts +4 -0
- package/getDatabaseUser.js.map +1 -1
- package/getEncryptionAtRest.d.ts +6 -0
- package/getEncryptionAtRest.js +2 -0
- package/getEncryptionAtRest.js.map +1 -1
- package/getGlobalClusterConfig.d.ts +1 -1
- package/getMaintenanceWindow.d.ts +9 -1
- package/getMaintenanceWindow.js.map +1 -1
- package/getOrganization.d.ts +5 -0
- package/getOrganization.js.map +1 -1
- package/getPrivateLinkEndpoint.d.ts +6 -0
- package/getPrivateLinkEndpoint.js +6 -0
- package/getPrivateLinkEndpoint.js.map +1 -1
- package/getProject.d.ts +4 -2
- package/getProject.js.map +1 -1
- package/getResourcePolicies.d.ts +8 -0
- package/getResourcePolicies.js +8 -0
- package/getResourcePolicies.js.map +1 -1
- package/getResourcePolicy.d.ts +12 -0
- package/getResourcePolicy.js +8 -0
- package/getResourcePolicy.js.map +1 -1
- package/getSearchDeployment.d.ts +4 -0
- package/getSearchDeployment.js.map +1 -1
- package/getStreamPrivatelinkEndpoint.d.ts +39 -3
- package/getStreamPrivatelinkEndpoint.js.map +1 -1
- package/getStreamPrivatelinkEndpoints.d.ts +6 -3
- package/getStreamPrivatelinkEndpoints.js.map +1 -1
- package/getThirdPartyIntegration.d.ts +13 -38
- package/getThirdPartyIntegration.js +0 -8
- package/getThirdPartyIntegration.js.map +1 -1
- package/globalClusterConfig.d.ts +2 -2
- package/maintenanceWindow.d.ts +26 -0
- package/maintenanceWindow.js +8 -0
- package/maintenanceWindow.js.map +1 -1
- package/organization.d.ts +15 -0
- package/organization.js +4 -0
- package/organization.js.map +1 -1
- package/package.json +2 -2
- package/project.d.ts +10 -4
- package/project.js.map +1 -1
- package/resourcePolicy.d.ts +16 -0
- package/resourcePolicy.js +6 -0
- package/resourcePolicy.js.map +1 -1
- package/searchDeployment.d.ts +13 -0
- package/searchDeployment.js +6 -0
- package/searchDeployment.js.map +1 -1
- package/streamPrivatelinkEndpoint.d.ts +24 -27
- package/streamPrivatelinkEndpoint.js.map +1 -1
- package/streamProcessor.d.ts +18 -6
- package/streamProcessor.js +9 -0
- package/streamProcessor.js.map +1 -1
- package/thirdPartyIntegration.d.ts +6 -0
- package/thirdPartyIntegration.js +4 -0
- package/thirdPartyIntegration.js.map +1 -1
- package/types/input.d.ts +25 -16
- package/types/output.d.ts +121 -62
package/types/output.d.ts
CHANGED
|
@@ -13,19 +13,19 @@ export interface AdvancedClusterAdvancedConfiguration {
|
|
|
13
13
|
*/
|
|
14
14
|
defaultMaxTimeMs?: number;
|
|
15
15
|
/**
|
|
16
|
-
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster.
|
|
16
|
+
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. **(DEPRECATED)** MongoDB 6.0 and later clusters default to `local`. To use a custom read concern level, please refer to your driver documentation.
|
|
17
17
|
*
|
|
18
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
18
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
19
19
|
*/
|
|
20
20
|
defaultReadConcern: string;
|
|
21
21
|
/**
|
|
22
|
-
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB
|
|
22
|
+
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB 6.0 clusters default to [majority](https://docs.mongodb.com/manual/reference/write-concern/).
|
|
23
23
|
*/
|
|
24
24
|
defaultWriteConcern: string;
|
|
25
25
|
/**
|
|
26
|
-
* When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
26
|
+
* **(DEPRECATED)** (Optional) When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
27
27
|
*
|
|
28
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
28
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
29
29
|
*/
|
|
30
30
|
failIndexKeyTooLong: boolean;
|
|
31
31
|
/**
|
|
@@ -171,14 +171,14 @@ export interface AdvancedClusterReplicationSpec {
|
|
|
171
171
|
/**
|
|
172
172
|
* **(DEPRECATED)** Unique identifer of the replication document for a zone in a Global Cluster. This value corresponds to the legacy sharding schema (no independent shard scaling) and is different from the Shard ID you may see in the Atlas UI. This value is not populated (empty string) when a sharded cluster has independently scaled shards.
|
|
173
173
|
*
|
|
174
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
174
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
175
175
|
*/
|
|
176
176
|
id: string;
|
|
177
177
|
/**
|
|
178
178
|
* Provide this value if you set a `clusterType` of SHARDED or GEOSHARDED. Omit this value if you selected a `clusterType` of REPLICASET. This API resource accepts 1 through 50, inclusive. This parameter defaults to 1. If you specify a `numShards` value of 1 and a `clusterType` of SHARDED, Atlas deploys a single-shard [sharded cluster](https://docs.atlas.mongodb.com/reference/glossary/#std-term-sharded-cluster). Don't create a sharded cluster with a single shard for production environments. Single-shard sharded clusters don't provide the same benefits as multi-shard configurations.
|
|
179
179
|
* If you are upgrading a replica set to a sharded cluster, you cannot increase the number of shards in the same update request. You should wait until after the cluster has completed upgrading to sharded and you have reconnected all application clients to the MongoDB router before adding additional shards. Otherwise, your data might become inconsistent once MongoDB Cloud begins distributing data across shards. To learn more, see [Convert a replica set to a sharded cluster documentation](https://www.mongodb.com/docs/atlas/scale-cluster/#convert-a-replica-set-to-a-sharded-cluster) and [Convert a replica set to a sharded cluster tutorial](https://www.mongodb.com/docs/upcoming/tutorial/convert-replica-set-to-replicated-shard-cluster). **(DEPRECATED)** To learn more, see the 1.18.0 Upgrade Guide.
|
|
180
180
|
*
|
|
181
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
181
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
182
182
|
*/
|
|
183
183
|
numShards?: number;
|
|
184
184
|
/**
|
|
@@ -681,7 +681,7 @@ export interface CloudBackupScheduleCopySetting {
|
|
|
681
681
|
/**
|
|
682
682
|
* Unique 24-hexadecimal digit string that identifies the replication object for a zone in a cluster. For global clusters, there can be multiple zones to choose from. For sharded clusters and replica set clusters, there is only one zone in the cluster. To find the Replication Spec Id, consult the replicationSpecs array returned from [Return One Multi-Cloud Cluster in One Project](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Clusters/operation/getCluster). **(DEPRECATED)** Use `zoneId` instead. To learn more, see the 1.18.0 upgrade guide.
|
|
683
683
|
*
|
|
684
|
-
* @deprecated This parameter is deprecated. Please transition to `copy_settings.#.zone_id`. To learn more, see our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
684
|
+
* @deprecated This parameter is deprecated. Please transition to `copy_settings.#.zone_id`. To learn more, see our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
685
685
|
*/
|
|
686
686
|
replicationSpecId: string;
|
|
687
687
|
/**
|
|
@@ -897,19 +897,19 @@ export interface ClusterAdvancedConfiguration {
|
|
|
897
897
|
customOpensslCipherConfigTls12s?: string[];
|
|
898
898
|
defaultMaxTimeMs?: number;
|
|
899
899
|
/**
|
|
900
|
-
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. MongoDB
|
|
900
|
+
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. **(DEPRECATED)** MongoDB 6.0 and later clusters default to `local`. To use a custom read concern level, please refer to your driver documentation.
|
|
901
901
|
*
|
|
902
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
902
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
903
903
|
*/
|
|
904
904
|
defaultReadConcern: string;
|
|
905
905
|
/**
|
|
906
|
-
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB
|
|
906
|
+
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB 6.0 clusters default to [majority](https://docs.mongodb.com/manual/reference/write-concern/).
|
|
907
907
|
*/
|
|
908
908
|
defaultWriteConcern: string;
|
|
909
909
|
/**
|
|
910
|
-
* When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
910
|
+
* **(DEPRECATED)** (Optional) When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
911
911
|
*
|
|
912
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
912
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
913
913
|
*/
|
|
914
914
|
failIndexKeyTooLong: boolean;
|
|
915
915
|
/**
|
|
@@ -918,7 +918,6 @@ export interface ClusterAdvancedConfiguration {
|
|
|
918
918
|
javascriptEnabled: boolean;
|
|
919
919
|
/**
|
|
920
920
|
* Sets the minimum Transport Layer Security (TLS) version the cluster accepts for incoming connections. Valid values are:
|
|
921
|
-
*
|
|
922
921
|
* - TLS1_0
|
|
923
922
|
* - TLS1_1
|
|
924
923
|
* - TLS1_2
|
|
@@ -1169,7 +1168,7 @@ export interface CustomDbRoleAction {
|
|
|
1169
1168
|
*
|
|
1170
1169
|
* > **NOTE** This field is mutually exclusive with the `actions.resources.cluster` field.
|
|
1171
1170
|
*
|
|
1172
|
-
* * `resources.#.database_name`
|
|
1171
|
+
* * `resources.#.database_name` Database on which the action is granted. Use the empty string ("") to allow an action on all databases.
|
|
1173
1172
|
*
|
|
1174
1173
|
* > **NOTE** This field is mutually exclusive with the `actions.resources.cluster` field.
|
|
1175
1174
|
*
|
|
@@ -1320,7 +1319,7 @@ export interface DatabaseUserScope {
|
|
|
1320
1319
|
*/
|
|
1321
1320
|
name?: string;
|
|
1322
1321
|
/**
|
|
1323
|
-
* Type of resource that the user has access to.
|
|
1322
|
+
* Type of resource that the user has access to. See [Database User API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Database-Users/operation/createDatabaseUser) for the list of valid values.
|
|
1324
1323
|
*/
|
|
1325
1324
|
type?: string;
|
|
1326
1325
|
}
|
|
@@ -1639,19 +1638,19 @@ export interface GetAdvancedClusterAdvancedConfiguration {
|
|
|
1639
1638
|
*/
|
|
1640
1639
|
defaultMaxTimeMs: number;
|
|
1641
1640
|
/**
|
|
1642
|
-
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster.
|
|
1641
|
+
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. **(DEPRECATED)** MongoDB 6.0 and later clusters default to `local`. To use a custom read concern level, please refer to your driver documentation.
|
|
1643
1642
|
*
|
|
1644
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
1643
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
1645
1644
|
*/
|
|
1646
1645
|
defaultReadConcern: string;
|
|
1647
1646
|
/**
|
|
1648
|
-
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB
|
|
1647
|
+
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB 6.0 clusters default to [majority](https://docs.mongodb.com/manual/reference/write-concern/).
|
|
1649
1648
|
*/
|
|
1650
1649
|
defaultWriteConcern: string;
|
|
1651
1650
|
/**
|
|
1652
|
-
* When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
1651
|
+
* **(DEPRECATED)** When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
1653
1652
|
*
|
|
1654
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
1653
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
1655
1654
|
*/
|
|
1656
1655
|
failIndexKeyTooLong: boolean;
|
|
1657
1656
|
/**
|
|
@@ -1660,6 +1659,9 @@ export interface GetAdvancedClusterAdvancedConfiguration {
|
|
|
1660
1659
|
javascriptEnabled: boolean;
|
|
1661
1660
|
/**
|
|
1662
1661
|
* Sets the minimum Transport Layer Security (TLS) version the cluster accepts for incoming connections. Valid values are:
|
|
1662
|
+
* - TLS1_0
|
|
1663
|
+
* - TLS1_1
|
|
1664
|
+
* - TLS1_2
|
|
1663
1665
|
*/
|
|
1664
1666
|
minimumEnabledTlsProtocol: string;
|
|
1665
1667
|
/**
|
|
@@ -1778,13 +1780,13 @@ export interface GetAdvancedClusterReplicationSpec {
|
|
|
1778
1780
|
*/
|
|
1779
1781
|
externalId: string;
|
|
1780
1782
|
/**
|
|
1781
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
1783
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
1782
1784
|
*/
|
|
1783
1785
|
id: string;
|
|
1784
1786
|
/**
|
|
1785
1787
|
* Provide this value if you set a `clusterType` of `SHARDED` or `GEOSHARDED`. **(DEPRECATED)** To learn more, see the Migration Guide.
|
|
1786
1788
|
*
|
|
1787
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
1789
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
1788
1790
|
*/
|
|
1789
1791
|
numShards: number;
|
|
1790
1792
|
/**
|
|
@@ -1993,7 +1995,7 @@ export interface GetAdvancedClustersResult {
|
|
|
1993
1995
|
/**
|
|
1994
1996
|
* Storage capacity that the host's root volume possesses expressed in gigabytes. If disk size specified is below the minimum (10 GB), this parameter defaults to the minimum disk size value. Storage charge calculations depend on whether you choose the default value or a custom value. The maximum value for disk storage cannot exceed 50 times the maximum RAM for the selected cluster. If you require more storage space, consider upgrading your cluster to a higher tier.
|
|
1995
1997
|
*
|
|
1996
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
1998
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
1997
1999
|
*/
|
|
1998
2000
|
diskSizeGb: number;
|
|
1999
2001
|
/**
|
|
@@ -2076,19 +2078,19 @@ export interface GetAdvancedClustersResultAdvancedConfiguration {
|
|
|
2076
2078
|
*/
|
|
2077
2079
|
defaultMaxTimeMs: number;
|
|
2078
2080
|
/**
|
|
2079
|
-
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster.
|
|
2081
|
+
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. **(DEPRECATED)** MongoDB 6.0 and later clusters default to `local`. To use a custom read concern level, please refer to your driver documentation.
|
|
2080
2082
|
*
|
|
2081
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
2083
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
2082
2084
|
*/
|
|
2083
2085
|
defaultReadConcern: string;
|
|
2084
2086
|
/**
|
|
2085
|
-
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB
|
|
2087
|
+
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB 6.0 clusters default to [majority](https://docs.mongodb.com/manual/reference/write-concern/).
|
|
2086
2088
|
*/
|
|
2087
2089
|
defaultWriteConcern: string;
|
|
2088
2090
|
/**
|
|
2089
|
-
* When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
2091
|
+
* **(DEPRECATED)** When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
2090
2092
|
*
|
|
2091
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
2093
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
2092
2094
|
*/
|
|
2093
2095
|
failIndexKeyTooLong: boolean;
|
|
2094
2096
|
/**
|
|
@@ -2097,6 +2099,9 @@ export interface GetAdvancedClustersResultAdvancedConfiguration {
|
|
|
2097
2099
|
javascriptEnabled: boolean;
|
|
2098
2100
|
/**
|
|
2099
2101
|
* Sets the minimum Transport Layer Security (TLS) version the cluster accepts for incoming connections. Valid values are:
|
|
2102
|
+
* - TLS1_0
|
|
2103
|
+
* - TLS1_1
|
|
2104
|
+
* - TLS1_2
|
|
2100
2105
|
*/
|
|
2101
2106
|
minimumEnabledTlsProtocol: string;
|
|
2102
2107
|
/**
|
|
@@ -2215,13 +2220,13 @@ export interface GetAdvancedClustersResultReplicationSpec {
|
|
|
2215
2220
|
*/
|
|
2216
2221
|
externalId: string;
|
|
2217
2222
|
/**
|
|
2218
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
2223
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
2219
2224
|
*/
|
|
2220
2225
|
id: string;
|
|
2221
2226
|
/**
|
|
2222
2227
|
* Provide this value if you set a `clusterType` of SHARDED or GEOSHARDED. **(DEPRECATED)** To learn more, see the Migration Guide for more details.
|
|
2223
2228
|
*
|
|
2224
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
2229
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
2225
2230
|
*/
|
|
2226
2231
|
numShards: number;
|
|
2227
2232
|
/**
|
|
@@ -3083,7 +3088,7 @@ export interface GetCloudBackupScheduleCopySetting {
|
|
|
3083
3088
|
/**
|
|
3084
3089
|
* Unique 24-hexadecimal digit string that identifies the replication object for a zone in a cluster. For global clusters, there can be multiple zones to choose from. For sharded clusters and replica set clusters, there is only one zone in the cluster. To find the Replication Spec Id, consult the replicationSpecs array returned from [Return One Multi-Cloud Cluster in One Project](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Clusters/operation/getCluster). **(DEPRECATED)** Use `zoneId` instead. To learn more, see the 1.18.0 upgrade guide.
|
|
3085
3090
|
*
|
|
3086
|
-
* @deprecated This parameter is deprecated. Please transition to `copy_settings.#.zone_id`. To learn more, see our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
3091
|
+
* @deprecated This parameter is deprecated. Please transition to `copy_settings.#.zone_id`. To learn more, see our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
3087
3092
|
*/
|
|
3088
3093
|
replicationSpecId: string;
|
|
3089
3094
|
/**
|
|
@@ -3242,6 +3247,8 @@ export interface GetCloudBackupSnapshotExportBucketsResult {
|
|
|
3242
3247
|
serviceUrl: string;
|
|
3243
3248
|
/**
|
|
3244
3249
|
* UUID that identifies the Azure Active Directory Tenant ID.
|
|
3250
|
+
*
|
|
3251
|
+
* @deprecated This parameter is deprecated.
|
|
3245
3252
|
*/
|
|
3246
3253
|
tenantId: string;
|
|
3247
3254
|
}
|
|
@@ -3505,19 +3512,19 @@ export interface GetClusterAdvancedConfiguration {
|
|
|
3505
3512
|
customOpensslCipherConfigTls12s: string[];
|
|
3506
3513
|
defaultMaxTimeMs: number;
|
|
3507
3514
|
/**
|
|
3508
|
-
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. MongoDB
|
|
3515
|
+
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. **(DEPRECATED)** MongoDB 6.0 and later clusters default to `local`. To use a custom read concern level, please refer to your driver documentation.
|
|
3509
3516
|
*
|
|
3510
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
3517
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
3511
3518
|
*/
|
|
3512
3519
|
defaultReadConcern: string;
|
|
3513
3520
|
/**
|
|
3514
|
-
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB
|
|
3521
|
+
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB 6.0 clusters default to [majority](https://docs.mongodb.com/manual/reference/write-concern/).
|
|
3515
3522
|
*/
|
|
3516
3523
|
defaultWriteConcern: string;
|
|
3517
3524
|
/**
|
|
3518
|
-
* When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
3525
|
+
* **(DEPRECATED)** When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
3519
3526
|
*
|
|
3520
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
3527
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
3521
3528
|
*/
|
|
3522
3529
|
failIndexKeyTooLong: boolean;
|
|
3523
3530
|
/**
|
|
@@ -3526,6 +3533,9 @@ export interface GetClusterAdvancedConfiguration {
|
|
|
3526
3533
|
javascriptEnabled: boolean;
|
|
3527
3534
|
/**
|
|
3528
3535
|
* Sets the minimum Transport Layer Security (TLS) version the cluster accepts for incoming connections. Valid values are:
|
|
3536
|
+
* - TLS1_0
|
|
3537
|
+
* - TLS1_1
|
|
3538
|
+
* - TLS1_2
|
|
3529
3539
|
*/
|
|
3530
3540
|
minimumEnabledTlsProtocol: string;
|
|
3531
3541
|
/**
|
|
@@ -3918,19 +3928,19 @@ export interface GetClustersResultAdvancedConfiguration {
|
|
|
3918
3928
|
customOpensslCipherConfigTls12s: string[];
|
|
3919
3929
|
defaultMaxTimeMs: number;
|
|
3920
3930
|
/**
|
|
3921
|
-
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. MongoDB
|
|
3931
|
+
* [Default level of acknowledgment requested from MongoDB for read operations](https://docs.mongodb.com/manual/reference/read-concern/) set for this cluster. **(DEPRECATED)** MongoDB 6.0 and later clusters default to `local`. To use a custom read concern level, please refer to your driver documentation.
|
|
3922
3932
|
*
|
|
3923
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
3933
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
3924
3934
|
*/
|
|
3925
3935
|
defaultReadConcern: string;
|
|
3926
3936
|
/**
|
|
3927
|
-
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB
|
|
3937
|
+
* [Default level of acknowledgment requested from MongoDB for write operations](https://docs.mongodb.com/manual/reference/write-concern/) set for this cluster. MongoDB 6.0 clusters default to [majority](https://docs.mongodb.com/manual/reference/write-concern/).
|
|
3928
3938
|
*/
|
|
3929
3939
|
defaultWriteConcern: string;
|
|
3930
3940
|
/**
|
|
3931
|
-
* When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
3941
|
+
* **(DEPRECATED)** When true, documents can only be updated or inserted if, for all indexed fields on the target collection, the corresponding index entries do not exceed 1024 bytes. When false, mongod writes documents that exceed the limit but does not index them.
|
|
3932
3942
|
*
|
|
3933
|
-
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
3943
|
+
* @deprecated This parameter is deprecated. Please refer to our examples, documentation, and 1.18.0 migration guide for more details at https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/guides/1.18.0-upgrade-guide
|
|
3934
3944
|
*/
|
|
3935
3945
|
failIndexKeyTooLong: boolean;
|
|
3936
3946
|
/**
|
|
@@ -3939,6 +3949,9 @@ export interface GetClustersResultAdvancedConfiguration {
|
|
|
3939
3949
|
javascriptEnabled: boolean;
|
|
3940
3950
|
/**
|
|
3941
3951
|
* Sets the minimum Transport Layer Security (TLS) version the cluster accepts for incoming connections. Valid values are:
|
|
3952
|
+
* - TLS1_0
|
|
3953
|
+
* - TLS1_1
|
|
3954
|
+
* - TLS1_2
|
|
3942
3955
|
*/
|
|
3943
3956
|
minimumEnabledTlsProtocol: string;
|
|
3944
3957
|
/**
|
|
@@ -4486,7 +4499,7 @@ export interface GetDatabaseUserScope {
|
|
|
4486
4499
|
*/
|
|
4487
4500
|
name: string;
|
|
4488
4501
|
/**
|
|
4489
|
-
* Type of resource that the user has access to.
|
|
4502
|
+
* Type of resource that the user has access to. See [Database User API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Database-Users/operation/createDatabaseUser) for the list of valid values.
|
|
4490
4503
|
*/
|
|
4491
4504
|
type: string;
|
|
4492
4505
|
}
|
|
@@ -4500,6 +4513,10 @@ export interface GetDatabaseUsersResult {
|
|
|
4500
4513
|
* The new database user authenticates with AWS IAM credentials. Default is `NONE`, `USER` means user has AWS IAM user credentials, `ROLE` - means user has credentials associated with an AWS IAM role.
|
|
4501
4514
|
*/
|
|
4502
4515
|
awsIamType: string;
|
|
4516
|
+
/**
|
|
4517
|
+
* Description of this database user.
|
|
4518
|
+
*/
|
|
4519
|
+
description: string;
|
|
4503
4520
|
/**
|
|
4504
4521
|
* Autogenerated Unique ID for this data source.
|
|
4505
4522
|
*/
|
|
@@ -4564,7 +4581,7 @@ export interface GetDatabaseUsersResultScope {
|
|
|
4564
4581
|
*/
|
|
4565
4582
|
name: string;
|
|
4566
4583
|
/**
|
|
4567
|
-
* Type of resource that the user has access to.
|
|
4584
|
+
* Type of resource that the user has access to. See [Database User API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Database-Users/operation/createDatabaseUser) for the list of valid values.
|
|
4568
4585
|
*/
|
|
4569
4586
|
type: string;
|
|
4570
4587
|
}
|
|
@@ -5813,6 +5830,16 @@ export interface GetLdapVerifyValidation {
|
|
|
5813
5830
|
status: string;
|
|
5814
5831
|
validationType: string;
|
|
5815
5832
|
}
|
|
5833
|
+
export interface GetMaintenanceWindowProtectedHour {
|
|
5834
|
+
/**
|
|
5835
|
+
* Zero-based integer that represents the end hour of the day for the protected hours window.
|
|
5836
|
+
*/
|
|
5837
|
+
endHourOfDay: number;
|
|
5838
|
+
/**
|
|
5839
|
+
* Zero-based integer that represents the beginning hour of the day for the protected hours window.
|
|
5840
|
+
*/
|
|
5841
|
+
startHourOfDay: number;
|
|
5842
|
+
}
|
|
5816
5843
|
export interface GetNetworkContainersResult {
|
|
5817
5844
|
/**
|
|
5818
5845
|
* CIDR block that Atlas uses for your clusters. Atlas uses the specified CIDR block for all other Network Peering connections created in the project. The Atlas CIDR block must be at least a /24 and at most a /21 in one of the following [private networks](https://tools.ietf.org/html/rfc1918.html#section-3).
|
|
@@ -6031,8 +6058,6 @@ export interface GetOrganizationsResult {
|
|
|
6031
6058
|
apiAccessListRequired: boolean;
|
|
6032
6059
|
/**
|
|
6033
6060
|
* Flag that indicates whether this organization has access to generative AI features. This setting only applies to Atlas Commercial and defaults to `true`. With this setting on, Project Owners may be able to enable or disable individual AI features at the project level. To learn more, see https://www.mongodb.com/docs/generative-ai-faq/.
|
|
6034
|
-
*
|
|
6035
|
-
* See [MongoDB Atlas API - Organizations](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Organizations/operation/listOrganizations) Documentation for more information.
|
|
6036
6061
|
*/
|
|
6037
6062
|
genAiFeaturesEnabled: boolean;
|
|
6038
6063
|
/**
|
|
@@ -6056,6 +6081,11 @@ export interface GetOrganizationsResult {
|
|
|
6056
6081
|
* Flag that indicates whether to block MongoDB Support from accessing Atlas infrastructure for any deployment in the specified organization without explicit permission. Once this setting is turned on, you can grant MongoDB Support a 24-hour bypass access to the Atlas deployment to resolve support issues. To learn more, see: https://www.mongodb.com/docs/atlas/security-restrict-support-access/.
|
|
6057
6082
|
*/
|
|
6058
6083
|
restrictEmployeeAccess: boolean;
|
|
6084
|
+
/**
|
|
6085
|
+
* String that specifies a single email address for the specified organization to receive security-related notifications. Specifying a security contact does not grant them authorization or access to Atlas for security decisions or approvals.
|
|
6086
|
+
*/
|
|
6087
|
+
securityContact: string;
|
|
6088
|
+
skipDefaultAlertsSettings: boolean;
|
|
6059
6089
|
}
|
|
6060
6090
|
export interface GetOrganizationsResultLink {
|
|
6061
6091
|
href: string;
|
|
@@ -6244,9 +6274,9 @@ export interface GetProjectsResult {
|
|
|
6244
6274
|
*/
|
|
6245
6275
|
id: string;
|
|
6246
6276
|
/**
|
|
6247
|
-
* IP addresses in a project categorized by services. See IP Addresses. **WARNING:**
|
|
6277
|
+
* IP addresses in a project categorized by services. See IP Addresses. **WARNING:** This attribute is deprecated, use the `mongodbatlas.getProjectIpAddresses` data source instead.
|
|
6248
6278
|
*
|
|
6249
|
-
* @deprecated This parameter is deprecated
|
|
6279
|
+
* @deprecated This parameter is deprecated. Please transition to mongodbatlas.getProjectIpAddresses data source.
|
|
6250
6280
|
*/
|
|
6251
6281
|
ipAddresses: outputs.GetProjectsResultIpAddresses;
|
|
6252
6282
|
/**
|
|
@@ -6275,6 +6305,8 @@ export interface GetProjectsResult {
|
|
|
6275
6305
|
isSchemaAdvisorEnabled: boolean;
|
|
6276
6306
|
/**
|
|
6277
6307
|
* Flag that enables MongoDB Cloud to use its slow operation threshold for the specified project. The threshold determines which operations the Performance Advisor and Query Profiler considers slow. When enabled, MongoDB Cloud uses the average execution time for operations on your cluster to determine slow-running queries. As a result, the threshold is more pertinent to your cluster workload. The slow operation threshold is enabled by default for dedicated clusters (M10+). When disabled, MongoDB Cloud considers any operation that takes longer than 100 milliseconds to be slow. **Note**: To use this attribute, the requesting API Key must have the Project Owner role, if not it will show a warning and will return `false`. If you are not using this field, you don't need to take any action.
|
|
6308
|
+
*
|
|
6309
|
+
* @deprecated This parameter is deprecated.
|
|
6278
6310
|
*/
|
|
6279
6311
|
isSlowOperationThresholdingEnabled: boolean;
|
|
6280
6312
|
/**
|
|
@@ -6354,6 +6386,10 @@ export interface GetResourcePoliciesResourcePolicy {
|
|
|
6354
6386
|
* Date and time in UTC when the Atlas resource policy was created.
|
|
6355
6387
|
*/
|
|
6356
6388
|
createdDate: string;
|
|
6389
|
+
/**
|
|
6390
|
+
* Description of the Atlas resource policy.
|
|
6391
|
+
*/
|
|
6392
|
+
description: string;
|
|
6357
6393
|
/**
|
|
6358
6394
|
* Unique 24-hexadecimal digit string that identifies an Atlas resource policy.
|
|
6359
6395
|
*/
|
|
@@ -6422,6 +6458,10 @@ export interface GetResourcePoliciesResult {
|
|
|
6422
6458
|
* Date and time in UTC when the Atlas resource policy was created.
|
|
6423
6459
|
*/
|
|
6424
6460
|
createdDate: string;
|
|
6461
|
+
/**
|
|
6462
|
+
* Description of the Atlas resource policy.
|
|
6463
|
+
*/
|
|
6464
|
+
description: string;
|
|
6425
6465
|
/**
|
|
6426
6466
|
* Unique 24-hexadecimal digit string that identifies an Atlas resource policy.
|
|
6427
6467
|
*/
|
|
@@ -6949,15 +6989,15 @@ export interface GetStreamInstancesResultStreamConfig {
|
|
|
6949
6989
|
}
|
|
6950
6990
|
export interface GetStreamPrivatelinkEndpointsResult {
|
|
6951
6991
|
/**
|
|
6952
|
-
* Amazon Resource Name (ARN).
|
|
6992
|
+
* Amazon Resource Name (ARN). Required for AWS Provider and MSK vendor.
|
|
6953
6993
|
*/
|
|
6954
6994
|
arn: string;
|
|
6955
6995
|
/**
|
|
6956
|
-
*
|
|
6996
|
+
* The domain hostname. Required for the following provider and vendor combinations:\n\n- AWS provider with CONFLUENT vendor.\n\n- AZURE provider with EVENTHUB or CONFLUENT vendor.
|
|
6957
6997
|
*/
|
|
6958
6998
|
dnsDomain: string;
|
|
6959
6999
|
/**
|
|
6960
|
-
* Sub-Domain name of Confluent cluster. These are typically your availability zones.
|
|
7000
|
+
* Sub-Domain name of Confluent cluster. These are typically your availability zones. Required for AWS Provider and CONFLUENT vendor. If your AWS CONFLUENT cluster doesn't use subdomains, you must set this to the empty array [].
|
|
6961
7001
|
*/
|
|
6962
7002
|
dnsSubDomains: string[];
|
|
6963
7003
|
/**
|
|
@@ -6977,7 +7017,7 @@ export interface GetStreamPrivatelinkEndpointsResult {
|
|
|
6977
7017
|
*/
|
|
6978
7018
|
interfaceEndpointName: string;
|
|
6979
7019
|
/**
|
|
6980
|
-
* Unique 24-hexadecimal digit string that identifies your project. Use the /groups endpoint to retrieve all projects to which the authenticated user has access.
|
|
7020
|
+
* Unique 24-hexadecimal digit string that identifies your project. Use the /groups endpoint to retrieve all projects to which the authenticated user has access.\n\n**NOTE**: Groups and projects are synonymous terms. Your group id is the same as your project id. For existing groups, your group or project id remains the same. The resource and corresponding endpoints use the term groups.
|
|
6981
7021
|
*/
|
|
6982
7022
|
projectId: string;
|
|
6983
7023
|
/**
|
|
@@ -6985,15 +7025,15 @@ export interface GetStreamPrivatelinkEndpointsResult {
|
|
|
6985
7025
|
*/
|
|
6986
7026
|
providerAccountId: string;
|
|
6987
7027
|
/**
|
|
6988
|
-
* Provider where the Kafka cluster is deployed.
|
|
7028
|
+
* Provider where the Kafka cluster is deployed. Valid values are AWS and AZURE.
|
|
6989
7029
|
*/
|
|
6990
7030
|
providerName: string;
|
|
6991
7031
|
/**
|
|
6992
|
-
* When the vendor is `CONFLUENT`, this is the domain name of Confluent cluster. When the vendor is `MSK`, this is computed by the API from the provided `arn`.
|
|
7032
|
+
* The region of the Provider’s cluster. See [AZURE](https://www.mongodb.com/docs/atlas/reference/microsoft-azure/#stream-processing-instances) and [AWS](https://www.mongodb.com/docs/atlas/reference/amazon-aws/#stream-processing-instances) supported regions. When the vendor is `CONFLUENT`, this is the domain name of Confluent cluster. When the vendor is `MSK`, this is computed by the API from the provided `arn`.
|
|
6993
7033
|
*/
|
|
6994
7034
|
region: string;
|
|
6995
7035
|
/**
|
|
6996
|
-
*
|
|
7036
|
+
* For AZURE EVENTHUB, this is the [namespace endpoint ID](https://learn.microsoft.com/en-us/rest/api/eventhub/namespaces/get). For AWS CONFLUENT cluster, this is the [VPC Endpoint service name](https://docs.confluent.io/cloud/current/networking/private-links/aws-privatelink.html).
|
|
6997
7037
|
*/
|
|
6998
7038
|
serviceEndpointId: string;
|
|
6999
7039
|
/**
|
|
@@ -7001,7 +7041,7 @@ export interface GetStreamPrivatelinkEndpointsResult {
|
|
|
7001
7041
|
*/
|
|
7002
7042
|
state: string;
|
|
7003
7043
|
/**
|
|
7004
|
-
* Vendor
|
|
7044
|
+
* Vendor that manages the Kafka cluster. The following are the vendor values per provider:\n\n- MSK and CONFLUENT for the AWS provider.\n\n- EVENTHUB and CONFLUENT for the AZURE provider.
|
|
7005
7045
|
*/
|
|
7006
7046
|
vendor: string;
|
|
7007
7047
|
}
|
|
@@ -7051,9 +7091,9 @@ export interface GetStreamProcessorsResult {
|
|
|
7051
7091
|
*/
|
|
7052
7092
|
projectId: string;
|
|
7053
7093
|
/**
|
|
7054
|
-
* The state of the stream processor. Commonly occurring states are 'CREATED', 'STARTED', 'STOPPED' and 'FAILED'. Used to start or stop the Stream Processor. Valid values are `CREATED`, `STARTED` or `STOPPED`. When a Stream Processor is created without specifying the state, it will default to `CREATED` state.
|
|
7094
|
+
* The state of the stream processor. Commonly occurring states are 'CREATED', 'STARTED', 'STOPPED' and 'FAILED'. Used to start or stop the Stream Processor. Valid values are `CREATED`, `STARTED` or `STOPPED`. When a Stream Processor is created without specifying the state, it will default to `CREATED` state. When a Stream Processor is updated without specifying the state, it will default to the Previous state.
|
|
7055
7095
|
*
|
|
7056
|
-
* **NOTE** When
|
|
7096
|
+
* **NOTE** When a Stream Processor is updated without specifying the state, it is stopped and then restored to previous state upon update completion.
|
|
7057
7097
|
*/
|
|
7058
7098
|
state: string;
|
|
7059
7099
|
/**
|
|
@@ -7091,7 +7131,7 @@ export interface GetThirdPartyIntegrationsResult {
|
|
|
7091
7131
|
/**
|
|
7092
7132
|
* Whether your cluster has Prometheus enabled.
|
|
7093
7133
|
*/
|
|
7094
|
-
enabled
|
|
7134
|
+
enabled: boolean;
|
|
7095
7135
|
/**
|
|
7096
7136
|
* Unique identifier of the integration.
|
|
7097
7137
|
*/
|
|
@@ -7100,7 +7140,7 @@ export interface GetThirdPartyIntegrationsResult {
|
|
|
7100
7140
|
* Your Microsoft Teams incoming webhook URL.
|
|
7101
7141
|
* * `PROMETHEUS`
|
|
7102
7142
|
*/
|
|
7103
|
-
microsoftTeamsWebhookUrl
|
|
7143
|
+
microsoftTeamsWebhookUrl: string;
|
|
7104
7144
|
/**
|
|
7105
7145
|
* The unique ID for the project to get all Third-Party service integrations
|
|
7106
7146
|
*/
|
|
@@ -7120,10 +7160,19 @@ export interface GetThirdPartyIntegrationsResult {
|
|
|
7120
7160
|
* * `MICROSOFT_TEAMS`
|
|
7121
7161
|
*/
|
|
7122
7162
|
secret: string;
|
|
7163
|
+
/**
|
|
7164
|
+
* Toggle sending collection latency metrics that includes database names and collection names and latency metrics on reads, writes, commands, and transactions.
|
|
7165
|
+
*/
|
|
7166
|
+
sendCollectionLatencyMetrics: boolean;
|
|
7167
|
+
/**
|
|
7168
|
+
* Toggle sending database metrics that includes database names and metrics on the number of collections, storage size, and index size.
|
|
7169
|
+
* * `OPS_GENIE`
|
|
7170
|
+
*/
|
|
7171
|
+
sendDatabaseMetrics: boolean;
|
|
7123
7172
|
/**
|
|
7124
7173
|
* Indicates which service discovery method is used, either file or http.
|
|
7125
7174
|
*/
|
|
7126
|
-
serviceDiscovery
|
|
7175
|
+
serviceDiscovery: string;
|
|
7127
7176
|
/**
|
|
7128
7177
|
* Your Service Key.
|
|
7129
7178
|
* * `DATADOG`
|
|
@@ -7141,7 +7190,7 @@ export interface GetThirdPartyIntegrationsResult {
|
|
|
7141
7190
|
/**
|
|
7142
7191
|
* Your Prometheus username.
|
|
7143
7192
|
*/
|
|
7144
|
-
userName
|
|
7193
|
+
userName: string;
|
|
7145
7194
|
}
|
|
7146
7195
|
export interface GetX509AuthenticationDatabaseUserCertificate {
|
|
7147
7196
|
createdAt: string;
|
|
@@ -7198,6 +7247,16 @@ export interface LdapVerifyValidation {
|
|
|
7198
7247
|
status: string;
|
|
7199
7248
|
validationType: string;
|
|
7200
7249
|
}
|
|
7250
|
+
export interface MaintenanceWindowProtectedHours {
|
|
7251
|
+
/**
|
|
7252
|
+
* Zero-based integer that represents the end hour of the day for the protected hours window.
|
|
7253
|
+
*/
|
|
7254
|
+
endHourOfDay: number;
|
|
7255
|
+
/**
|
|
7256
|
+
* Zero-based integer that represents the beginning hour of the day for the protected hours window.
|
|
7257
|
+
*/
|
|
7258
|
+
startHourOfDay: number;
|
|
7259
|
+
}
|
|
7201
7260
|
export interface OnlineArchiveCriteria {
|
|
7202
7261
|
/**
|
|
7203
7262
|
* Indexed database parameter that stores the date that determines when data moves to the online archive. MongoDB Cloud archives the data when the current date exceeds the date in this database parameter plus the number of days specified through the expireAfterDays parameter.
|