@pulumi/mongodbatlas 3.18.0-alpha.1726033906 → 3.18.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 +15 -3
- package/advancedCluster.js +2 -0
- package/advancedCluster.js.map +1 -1
- package/cluster.d.ts +3 -3
- package/encryptionAtRest.d.ts +30 -13
- package/encryptionAtRest.js +0 -10
- package/encryptionAtRest.js.map +1 -1
- package/encryptionAtRestPrivateEndpoint.d.ts +161 -0
- package/encryptionAtRestPrivateEndpoint.js +133 -0
- package/encryptionAtRestPrivateEndpoint.js.map +1 -0
- package/getAdvancedCluster.d.ts +5 -1
- package/getAdvancedCluster.js.map +1 -1
- package/getCluster.d.ts +1 -1
- package/getEncryptionAtRest.d.ts +275 -0
- package/getEncryptionAtRest.js +247 -0
- package/getEncryptionAtRest.js.map +1 -0
- package/getEncryptionAtRestPrivateEndpoint.d.ts +122 -0
- package/getEncryptionAtRestPrivateEndpoint.js +73 -0
- package/getEncryptionAtRestPrivateEndpoint.js.map +1 -0
- package/getEncryptionAtRestPrivateEndpoints.d.ts +101 -0
- package/getEncryptionAtRestPrivateEndpoints.js +70 -0
- package/getEncryptionAtRestPrivateEndpoints.js.map +1 -0
- package/getProject.d.ts +3 -1
- package/getProject.js.map +1 -1
- package/getProjectIpAddresses.d.ts +75 -0
- package/getProjectIpAddresses.js +55 -0
- package/getProjectIpAddresses.js.map +1 -0
- package/getStreamProcessor.d.ts +74 -0
- package/getStreamProcessor.js +35 -0
- package/getStreamProcessor.js.map +1 -0
- package/getStreamProcessors.d.ts +62 -0
- package/getStreamProcessors.js +34 -0
- package/getStreamProcessors.js.map +1 -0
- package/index.d.ts +24 -0
- package/index.js +34 -5
- package/index.js.map +1 -1
- package/onlineArchive.d.ts +9 -0
- package/onlineArchive.js.map +1 -1
- package/package.json +2 -2
- package/project.d.ts +6 -2
- package/project.js.map +1 -1
- package/streamProcessor.d.ts +137 -0
- package/streamProcessor.js +76 -0
- package/streamProcessor.js.map +1 -0
- package/types/input.d.ts +66 -16
- package/types/output.d.ts +304 -19
package/types/output.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as outputs from "../types/output";
|
|
2
2
|
export interface AdvancedClusterAdvancedConfiguration {
|
|
3
|
+
/**
|
|
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.
|
|
5
|
+
*/
|
|
6
|
+
changeStreamOptionsPreAndPostImagesExpireAfterSeconds?: number;
|
|
3
7
|
/**
|
|
4
8
|
* [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/). **(DEPRECATED)** MongoDB 5.0 and later clusters default to `local`. To use a custom read concern level, please refer to your driver documentation.
|
|
5
9
|
*
|
|
@@ -856,6 +860,10 @@ export interface CloudProviderAccessSetupAzureConfig {
|
|
|
856
860
|
tenantId: string;
|
|
857
861
|
}
|
|
858
862
|
export interface ClusterAdvancedConfiguration {
|
|
863
|
+
/**
|
|
864
|
+
* 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.
|
|
865
|
+
*/
|
|
866
|
+
changeStreamOptionsPreAndPostImagesExpireAfterSeconds?: number;
|
|
859
867
|
/**
|
|
860
868
|
* [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/).
|
|
861
869
|
*
|
|
@@ -1271,76 +1279,98 @@ export interface DatabaseUserScope {
|
|
|
1271
1279
|
type?: string;
|
|
1272
1280
|
}
|
|
1273
1281
|
export interface EncryptionAtRestAwsKmsConfig {
|
|
1282
|
+
/**
|
|
1283
|
+
* Unique alphanumeric string that identifies an Identity and Access Management (IAM) access key with permissions required to access your Amazon Web Services (AWS) Customer Master Key (CMK).
|
|
1284
|
+
*/
|
|
1274
1285
|
accessKeyId?: string;
|
|
1275
1286
|
/**
|
|
1276
|
-
*
|
|
1287
|
+
* Unique alphanumeric string that identifies the Amazon Web Services (AWS) Customer Master Key (CMK) you used to encrypt and decrypt the MongoDB master keys.
|
|
1277
1288
|
*/
|
|
1278
1289
|
customerMasterKeyId?: string;
|
|
1279
1290
|
/**
|
|
1280
|
-
*
|
|
1291
|
+
* Flag that indicates whether someone enabled encryption at rest for the specified project through Amazon Web Services (AWS) Key Management Service (KMS). To disable encryption at rest using customer key management and remove the configuration details, pass only this parameter with a value of `false`.
|
|
1281
1292
|
*/
|
|
1282
1293
|
enabled: boolean;
|
|
1283
1294
|
/**
|
|
1284
|
-
*
|
|
1295
|
+
* Physical location where MongoDB Atlas deploys your AWS-hosted MongoDB cluster nodes. The region you choose can affect network latency for clients accessing your databases. When MongoDB Cloud deploys a dedicated cluster, it checks if a VPC or VPC connection exists for that provider and region. If not, MongoDB Atlas creates them as part of the deployment. MongoDB Atlas assigns the VPC a CIDR block. To limit a new VPC peering connection to one CIDR block and region, create the connection first. Deploy the cluster after the connection starts.
|
|
1285
1296
|
*/
|
|
1286
1297
|
region?: string;
|
|
1287
1298
|
/**
|
|
1288
|
-
*
|
|
1299
|
+
* Unique 24-hexadecimal digit string that identifies an Amazon Web Services (AWS) Identity and Access Management (IAM) role. This IAM role has the permissions required to manage your AWS customer master key.
|
|
1289
1300
|
*/
|
|
1290
1301
|
roleId?: string;
|
|
1302
|
+
/**
|
|
1303
|
+
* Human-readable label of the Identity and Access Management (IAM) secret access key with permissions required to access your Amazon Web Services (AWS) customer master key.
|
|
1304
|
+
*/
|
|
1291
1305
|
secretAccessKey?: string;
|
|
1306
|
+
/**
|
|
1307
|
+
* Flag that indicates whether the Amazon Web Services (AWS) Key Management Service (KMS) encryption key can encrypt and decrypt data.
|
|
1308
|
+
*/
|
|
1309
|
+
valid: boolean;
|
|
1292
1310
|
}
|
|
1293
1311
|
export interface EncryptionAtRestAzureKeyVaultConfig {
|
|
1294
1312
|
/**
|
|
1295
|
-
*
|
|
1313
|
+
* Azure environment in which your account credentials reside.
|
|
1296
1314
|
*/
|
|
1297
1315
|
azureEnvironment?: string;
|
|
1298
1316
|
/**
|
|
1299
|
-
*
|
|
1317
|
+
* Unique 36-hexadecimal character string that identifies an Azure application associated with your Azure Active Directory tenant.
|
|
1300
1318
|
*/
|
|
1301
1319
|
clientId?: string;
|
|
1302
1320
|
/**
|
|
1303
|
-
*
|
|
1321
|
+
* Flag that indicates whether someone enabled encryption at rest for the specified project. To disable encryption at rest using customer key management and remove the configuration details, pass only this parameter with a value of `false`.
|
|
1304
1322
|
*/
|
|
1305
1323
|
enabled: boolean;
|
|
1306
1324
|
/**
|
|
1307
|
-
*
|
|
1325
|
+
* Web address with a unique key that identifies for your Azure Key Vault.
|
|
1308
1326
|
*/
|
|
1309
1327
|
keyIdentifier?: string;
|
|
1310
1328
|
/**
|
|
1311
|
-
*
|
|
1329
|
+
* Unique string that identifies the Azure Key Vault that contains your key.
|
|
1312
1330
|
*/
|
|
1313
1331
|
keyVaultName?: string;
|
|
1314
1332
|
/**
|
|
1315
|
-
*
|
|
1333
|
+
* Enable connection to your Azure Key Vault over private networking.
|
|
1334
|
+
*/
|
|
1335
|
+
requirePrivateNetworking: boolean;
|
|
1336
|
+
/**
|
|
1337
|
+
* Name of the Azure resource group that contains your Azure Key Vault.
|
|
1316
1338
|
*/
|
|
1317
1339
|
resourceGroupName?: string;
|
|
1318
1340
|
/**
|
|
1319
|
-
*
|
|
1341
|
+
* Private data that you need secured and that belongs to the specified Azure Key Vault (AKV) tenant (**azureKeyVault.tenantID**). This data can include any type of sensitive data such as passwords, database connection strings, API keys, and the like. AKV stores this information as encrypted binary data.
|
|
1320
1342
|
*/
|
|
1321
1343
|
secret?: string;
|
|
1322
1344
|
/**
|
|
1323
|
-
*
|
|
1345
|
+
* Unique 36-hexadecimal character string that identifies your Azure subscription.
|
|
1324
1346
|
*/
|
|
1325
1347
|
subscriptionId?: string;
|
|
1326
1348
|
/**
|
|
1327
|
-
*
|
|
1349
|
+
* Unique 36-hexadecimal character string that identifies the Azure Active Directory tenant within your Azure subscription.
|
|
1328
1350
|
*/
|
|
1329
1351
|
tenantId?: string;
|
|
1352
|
+
/**
|
|
1353
|
+
* Flag that indicates whether the Azure encryption key can encrypt and decrypt data.
|
|
1354
|
+
*/
|
|
1355
|
+
valid: boolean;
|
|
1330
1356
|
}
|
|
1331
1357
|
export interface EncryptionAtRestGoogleCloudKmsConfig {
|
|
1332
1358
|
/**
|
|
1333
|
-
*
|
|
1359
|
+
* Flag that indicates whether someone enabled encryption at rest for the specified project. To disable encryption at rest using customer key management and remove the configuration details, pass only this parameter with a value of `false`.
|
|
1334
1360
|
*/
|
|
1335
1361
|
enabled: boolean;
|
|
1336
1362
|
/**
|
|
1337
|
-
*
|
|
1363
|
+
* Resource path that displays the key version resource ID for your Google Cloud KMS.
|
|
1338
1364
|
*/
|
|
1339
1365
|
keyVersionResourceId?: string;
|
|
1340
1366
|
/**
|
|
1341
|
-
*
|
|
1367
|
+
* JavaScript Object Notation (JSON) object that contains the Google Cloud Key Management Service (KMS). Format the JSON as a string and not as an object.
|
|
1342
1368
|
*/
|
|
1343
1369
|
serviceAccountKey?: string;
|
|
1370
|
+
/**
|
|
1371
|
+
* Flag that indicates whether the Google Cloud Key Management Service (KMS) encryption key can encrypt and decrypt data.
|
|
1372
|
+
*/
|
|
1373
|
+
valid: boolean;
|
|
1344
1374
|
}
|
|
1345
1375
|
export interface EventTriggerEventProcessors {
|
|
1346
1376
|
awsEventbridge?: outputs.EventTriggerEventProcessorsAwsEventbridge;
|
|
@@ -1516,6 +1546,10 @@ export interface GetAccessListApiKeysResult {
|
|
|
1516
1546
|
lastUsedAddress: string;
|
|
1517
1547
|
}
|
|
1518
1548
|
export interface GetAdvancedClusterAdvancedConfiguration {
|
|
1549
|
+
/**
|
|
1550
|
+
* (Optional) The minimum pre- and post-image retention time in seconds.
|
|
1551
|
+
*/
|
|
1552
|
+
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
1519
1553
|
/**
|
|
1520
1554
|
* [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/). **(DEPRECATED.)** MongoDB 5.0 and later clusters default to `local`. To use a custom read concern level, please refer to your driver documentation.
|
|
1521
1555
|
*
|
|
@@ -1863,7 +1897,7 @@ export interface GetAdvancedClustersResult {
|
|
|
1863
1897
|
/**
|
|
1864
1898
|
* Set that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. See below.
|
|
1865
1899
|
*
|
|
1866
|
-
* @deprecated This parameter is deprecated and will be removed
|
|
1900
|
+
* @deprecated This parameter is deprecated and will be removed in the future. Please transition to tags
|
|
1867
1901
|
*/
|
|
1868
1902
|
labels: outputs.GetAdvancedClustersResultLabel[];
|
|
1869
1903
|
/**
|
|
@@ -1883,6 +1917,10 @@ export interface GetAdvancedClustersResult {
|
|
|
1883
1917
|
* Flag that indicates if the cluster uses Continuous Cloud Backup.
|
|
1884
1918
|
*/
|
|
1885
1919
|
pitEnabled: boolean;
|
|
1920
|
+
/**
|
|
1921
|
+
* (Optional) Replica set scaling mode for your cluster.
|
|
1922
|
+
*/
|
|
1923
|
+
replicaSetScalingStrategy: string;
|
|
1886
1924
|
/**
|
|
1887
1925
|
* List of settings that configure your cluster regions. If `useReplicationSpecPerShard = true`, this array has one object per shard representing node configurations in each shard. For replica sets there is only one object representing node configurations. See below
|
|
1888
1926
|
*/
|
|
@@ -1909,6 +1947,10 @@ export interface GetAdvancedClustersResult {
|
|
|
1909
1947
|
versionReleaseSystem: string;
|
|
1910
1948
|
}
|
|
1911
1949
|
export interface GetAdvancedClustersResultAdvancedConfiguration {
|
|
1950
|
+
/**
|
|
1951
|
+
* (Optional) The minimum pre- and post-image retention time in seconds.
|
|
1952
|
+
*/
|
|
1953
|
+
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
1912
1954
|
/**
|
|
1913
1955
|
* [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/). **(DEPRECATED.)** MongoDB 5.0 and later clusters default to `local`. To use a custom read concern level, please refer to your driver documentation.
|
|
1914
1956
|
*
|
|
@@ -1953,6 +1995,9 @@ export interface GetAdvancedClustersResultAdvancedConfiguration {
|
|
|
1953
1995
|
* 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.
|
|
1954
1996
|
*/
|
|
1955
1997
|
sampleSizeBiConnector: number;
|
|
1998
|
+
/**
|
|
1999
|
+
* (Optional) Lifetime, in seconds, of multi-document transactions. Defaults to 60 seconds.
|
|
2000
|
+
*/
|
|
1956
2001
|
transactionLifetimeLimitSeconds: number;
|
|
1957
2002
|
}
|
|
1958
2003
|
export interface GetAdvancedClustersResultBiConnectorConfig {
|
|
@@ -3310,6 +3355,10 @@ export interface GetCloudProviderAccessSetupAzureConfig {
|
|
|
3310
3355
|
tenantId: string;
|
|
3311
3356
|
}
|
|
3312
3357
|
export interface GetClusterAdvancedConfiguration {
|
|
3358
|
+
/**
|
|
3359
|
+
* (Optional) The minimum pre- and post-image retention time in seconds.
|
|
3360
|
+
*/
|
|
3361
|
+
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
3313
3362
|
/**
|
|
3314
3363
|
* [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/).
|
|
3315
3364
|
*
|
|
@@ -3574,7 +3623,7 @@ export interface GetClustersResult {
|
|
|
3574
3623
|
/**
|
|
3575
3624
|
* Set that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. See below. **DEPRECATED** Use `tags` instead.
|
|
3576
3625
|
*
|
|
3577
|
-
* @deprecated This parameter is deprecated and will be removed
|
|
3626
|
+
* @deprecated This parameter is deprecated and will be removed in the future. Please transition to tags
|
|
3578
3627
|
*/
|
|
3579
3628
|
labels: outputs.GetClustersResultLabel[];
|
|
3580
3629
|
/**
|
|
@@ -3694,6 +3743,10 @@ export interface GetClustersResult {
|
|
|
3694
3743
|
versionReleaseSystem: string;
|
|
3695
3744
|
}
|
|
3696
3745
|
export interface GetClustersResultAdvancedConfiguration {
|
|
3746
|
+
/**
|
|
3747
|
+
* (Optional) The minimum pre- and post-image retention time in seconds.
|
|
3748
|
+
*/
|
|
3749
|
+
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
3697
3750
|
/**
|
|
3698
3751
|
* [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/).
|
|
3699
3752
|
*
|
|
@@ -4331,6 +4384,130 @@ export interface GetDatabaseUsersResultScope {
|
|
|
4331
4384
|
*/
|
|
4332
4385
|
type: string;
|
|
4333
4386
|
}
|
|
4387
|
+
export interface GetEncryptionAtRestAwsKmsConfig {
|
|
4388
|
+
/**
|
|
4389
|
+
* Unique alphanumeric string that identifies an Identity and Access Management (IAM) access key with permissions required to access your Amazon Web Services (AWS) Customer Master Key (CMK).
|
|
4390
|
+
*/
|
|
4391
|
+
accessKeyId: string;
|
|
4392
|
+
/**
|
|
4393
|
+
* Unique alphanumeric string that identifies the Amazon Web Services (AWS) Customer Master Key (CMK) you used to encrypt and decrypt the MongoDB master keys.
|
|
4394
|
+
*/
|
|
4395
|
+
customerMasterKeyId: string;
|
|
4396
|
+
/**
|
|
4397
|
+
* Flag that indicates whether someone enabled encryption at rest for the specified project through Amazon Web Services (AWS) Key Management Service (KMS). To disable encryption at rest using customer key management and remove the configuration details, pass only this parameter with a value of `false`.
|
|
4398
|
+
*/
|
|
4399
|
+
enabled: boolean;
|
|
4400
|
+
/**
|
|
4401
|
+
* Physical location where MongoDB Atlas deploys your AWS-hosted MongoDB cluster nodes. The region you choose can affect network latency for clients accessing your databases. When MongoDB Atlas deploys a dedicated cluster, it checks if a VPC or VPC connection exists for that provider and region. If not, MongoDB Atlas creates them as part of the deployment. MongoDB Atlas assigns the VPC a CIDR block. To limit a new VPC peering connection to one CIDR block and region, create the connection first. Deploy the cluster after the connection starts.
|
|
4402
|
+
*/
|
|
4403
|
+
region: string;
|
|
4404
|
+
/**
|
|
4405
|
+
* Unique 24-hexadecimal digit string that identifies an Amazon Web Services (AWS) Identity and Access Management (IAM) role. This IAM role has the permissions required to manage your AWS customer master key.
|
|
4406
|
+
*/
|
|
4407
|
+
roleId: string;
|
|
4408
|
+
/**
|
|
4409
|
+
* Human-readable label of the Identity and Access Management (IAM) secret access key with permissions required to access your Amazon Web Services (AWS) customer master key.
|
|
4410
|
+
*/
|
|
4411
|
+
secretAccessKey: string;
|
|
4412
|
+
/**
|
|
4413
|
+
* Flag that indicates whether the Amazon Web Services (AWS) Key Management Service (KMS) encryption key can encrypt and decrypt data.
|
|
4414
|
+
*/
|
|
4415
|
+
valid: boolean;
|
|
4416
|
+
}
|
|
4417
|
+
export interface GetEncryptionAtRestAzureKeyVaultConfig {
|
|
4418
|
+
/**
|
|
4419
|
+
* Azure environment in which your account credentials reside.
|
|
4420
|
+
*/
|
|
4421
|
+
azureEnvironment: string;
|
|
4422
|
+
/**
|
|
4423
|
+
* Unique 36-hexadecimal character string that identifies an Azure application associated with your Azure Active Directory tenant.
|
|
4424
|
+
*/
|
|
4425
|
+
clientId: string;
|
|
4426
|
+
/**
|
|
4427
|
+
* Flag that indicates whether someone enabled encryption at rest for the specified project. To disable encryption at rest using customer key management and remove the configuration details, pass only this parameter with a value of `false`.
|
|
4428
|
+
*/
|
|
4429
|
+
enabled: boolean;
|
|
4430
|
+
/**
|
|
4431
|
+
* Web address with a unique key that identifies for your Azure Key Vault.
|
|
4432
|
+
*/
|
|
4433
|
+
keyIdentifier: string;
|
|
4434
|
+
/**
|
|
4435
|
+
* Unique string that identifies the Azure Key Vault that contains your key.
|
|
4436
|
+
*/
|
|
4437
|
+
keyVaultName: string;
|
|
4438
|
+
/**
|
|
4439
|
+
* Enable connection to your Azure Key Vault over private networking.
|
|
4440
|
+
*/
|
|
4441
|
+
requirePrivateNetworking: boolean;
|
|
4442
|
+
/**
|
|
4443
|
+
* Name of the Azure resource group that contains your Azure Key Vault.
|
|
4444
|
+
*/
|
|
4445
|
+
resourceGroupName: string;
|
|
4446
|
+
/**
|
|
4447
|
+
* Private data that you need secured and that belongs to the specified Azure Key Vault (AKV) tenant (**azureKeyVault.tenantID**). This data can include any type of sensitive data such as passwords, database connection strings, API keys, and the like. AKV stores this information as encrypted binary data.
|
|
4448
|
+
*/
|
|
4449
|
+
secret: string;
|
|
4450
|
+
/**
|
|
4451
|
+
* Unique 36-hexadecimal character string that identifies your Azure subscription.
|
|
4452
|
+
*/
|
|
4453
|
+
subscriptionId: string;
|
|
4454
|
+
/**
|
|
4455
|
+
* Unique 36-hexadecimal character string that identifies the Azure Active Directory tenant within your Azure subscription.
|
|
4456
|
+
*/
|
|
4457
|
+
tenantId: string;
|
|
4458
|
+
/**
|
|
4459
|
+
* Flag that indicates whether the Azure encryption key can encrypt and decrypt data.
|
|
4460
|
+
*/
|
|
4461
|
+
valid: boolean;
|
|
4462
|
+
}
|
|
4463
|
+
export interface GetEncryptionAtRestGoogleCloudKmsConfig {
|
|
4464
|
+
/**
|
|
4465
|
+
* Flag that indicates whether someone enabled encryption at rest for the specified project. To disable encryption at rest using customer key management and remove the configuration details, pass only this parameter with a value of `false`.
|
|
4466
|
+
*/
|
|
4467
|
+
enabled: boolean;
|
|
4468
|
+
/**
|
|
4469
|
+
* Resource path that displays the key version resource ID for your Google Cloud KMS.
|
|
4470
|
+
*/
|
|
4471
|
+
keyVersionResourceId: string;
|
|
4472
|
+
/**
|
|
4473
|
+
* JavaScript Object Notation (JSON) object that contains the Google Cloud Key Management Service (KMS). Format the JSON as a string and not as an object.
|
|
4474
|
+
*/
|
|
4475
|
+
serviceAccountKey: string;
|
|
4476
|
+
/**
|
|
4477
|
+
* Flag that indicates whether the Google Cloud Key Management Service (KMS) encryption key can encrypt and decrypt data.
|
|
4478
|
+
*/
|
|
4479
|
+
valid: boolean;
|
|
4480
|
+
}
|
|
4481
|
+
export interface GetEncryptionAtRestPrivateEndpointsResult {
|
|
4482
|
+
/**
|
|
4483
|
+
* Label that identifies the cloud provider of the private endpoint.
|
|
4484
|
+
*/
|
|
4485
|
+
cloudProvider: string;
|
|
4486
|
+
/**
|
|
4487
|
+
* Error message for failures associated with the Encryption At Rest private endpoint.
|
|
4488
|
+
*/
|
|
4489
|
+
errorMessage: string;
|
|
4490
|
+
/**
|
|
4491
|
+
* Unique 24-hexadecimal digit string that identifies the Private Endpoint Service.
|
|
4492
|
+
*/
|
|
4493
|
+
id: string;
|
|
4494
|
+
/**
|
|
4495
|
+
* Connection name of the Azure Private Endpoint.
|
|
4496
|
+
*/
|
|
4497
|
+
privateEndpointConnectionName: string;
|
|
4498
|
+
/**
|
|
4499
|
+
* Unique 24-hexadecimal digit string that identifies your project.
|
|
4500
|
+
*/
|
|
4501
|
+
projectId: string;
|
|
4502
|
+
/**
|
|
4503
|
+
* Cloud provider region in which the Encryption At Rest private endpoint is located.
|
|
4504
|
+
*/
|
|
4505
|
+
regionName: string;
|
|
4506
|
+
/**
|
|
4507
|
+
* State of the Encryption At Rest private endpoint.
|
|
4508
|
+
*/
|
|
4509
|
+
status: string;
|
|
4510
|
+
}
|
|
4334
4511
|
export interface GetEventTriggerEventProcessor {
|
|
4335
4512
|
awsEventbridges: outputs.GetEventTriggerEventProcessorAwsEventbridge[];
|
|
4336
4513
|
}
|
|
@@ -5593,11 +5770,23 @@ export interface GetProjectIpAddresses {
|
|
|
5593
5770
|
services: outputs.GetProjectIpAddressesServices;
|
|
5594
5771
|
}
|
|
5595
5772
|
export interface GetProjectIpAddressesServices {
|
|
5773
|
+
/**
|
|
5774
|
+
* IP addresses of clusters.
|
|
5775
|
+
*/
|
|
5596
5776
|
clusters: outputs.GetProjectIpAddressesServicesCluster[];
|
|
5597
5777
|
}
|
|
5598
5778
|
export interface GetProjectIpAddressesServicesCluster {
|
|
5779
|
+
/**
|
|
5780
|
+
* Human-readable label that identifies the cluster.
|
|
5781
|
+
*/
|
|
5599
5782
|
clusterName: string;
|
|
5783
|
+
/**
|
|
5784
|
+
* List of inbound IP addresses associated with the cluster. If your network allows outbound HTTP requests only to specific IP addresses, you must allow access to the following IP addresses so that your application can connect to your Atlas cluster.
|
|
5785
|
+
*/
|
|
5600
5786
|
inbounds: string[];
|
|
5787
|
+
/**
|
|
5788
|
+
* List of outbound IP addresses associated with the cluster. If your network allows inbound HTTP requests only from specific IP addresses, you must allow access from the following IP addresses so that your Atlas cluster can communicate with your webhooks and KMS.
|
|
5789
|
+
*/
|
|
5601
5790
|
outbounds: string[];
|
|
5602
5791
|
}
|
|
5603
5792
|
export interface GetProjectLimit {
|
|
@@ -5648,7 +5837,9 @@ export interface GetProjectsResult {
|
|
|
5648
5837
|
*/
|
|
5649
5838
|
id: string;
|
|
5650
5839
|
/**
|
|
5651
|
-
* IP addresses in a project categorized by services. See IP Addresses.
|
|
5840
|
+
* IP addresses in a project categorized by services. See IP Addresses. **WARNING:** this attribute is deprecated and will be removed in version 1.21.0. Use the `mongodbatlas.getProjectIpAddresses` data source instead.
|
|
5841
|
+
*
|
|
5842
|
+
* @deprecated This parameter is deprecated and will be removed by 1.21.0. Please transition to mongodbatlas.getProjectIpAddresses data source.
|
|
5652
5843
|
*/
|
|
5653
5844
|
ipAddresses: outputs.GetProjectsResultIpAddresses;
|
|
5654
5845
|
/**
|
|
@@ -6113,6 +6304,80 @@ export interface GetStreamInstancesResultStreamConfig {
|
|
|
6113
6304
|
*/
|
|
6114
6305
|
tier: string;
|
|
6115
6306
|
}
|
|
6307
|
+
export interface GetStreamProcessorOptions {
|
|
6308
|
+
/**
|
|
6309
|
+
* Dead letter queue for the stream processor. Refer to the [MongoDB Atlas Docs](https://www.mongodb.com/docs/atlas/reference/glossary/#std-term-dead-letter-queue) for more information.
|
|
6310
|
+
*/
|
|
6311
|
+
dlq: outputs.GetStreamProcessorOptionsDlq;
|
|
6312
|
+
}
|
|
6313
|
+
export interface GetStreamProcessorOptionsDlq {
|
|
6314
|
+
/**
|
|
6315
|
+
* Name of the collection to use for the DLQ.
|
|
6316
|
+
*/
|
|
6317
|
+
coll: string;
|
|
6318
|
+
/**
|
|
6319
|
+
* Name of the connection to write DLQ messages to. Must be an Atlas connection.
|
|
6320
|
+
*/
|
|
6321
|
+
connectionName: string;
|
|
6322
|
+
/**
|
|
6323
|
+
* Name of the database to use for the DLQ.
|
|
6324
|
+
*/
|
|
6325
|
+
db: string;
|
|
6326
|
+
}
|
|
6327
|
+
export interface GetStreamProcessorsResult {
|
|
6328
|
+
/**
|
|
6329
|
+
* Unique 24-hexadecimal character string that identifies the stream processor.
|
|
6330
|
+
*/
|
|
6331
|
+
id: string;
|
|
6332
|
+
/**
|
|
6333
|
+
* Human-readable label that identifies the stream instance.
|
|
6334
|
+
*/
|
|
6335
|
+
instanceName: string;
|
|
6336
|
+
/**
|
|
6337
|
+
* Optional configuration for the stream processor.
|
|
6338
|
+
*/
|
|
6339
|
+
options: outputs.GetStreamProcessorsResultOptions;
|
|
6340
|
+
/**
|
|
6341
|
+
* Stream aggregation pipeline you want to apply to your streaming data.
|
|
6342
|
+
*/
|
|
6343
|
+
pipeline: string;
|
|
6344
|
+
/**
|
|
6345
|
+
* Human-readable label that identifies the stream processor.
|
|
6346
|
+
*/
|
|
6347
|
+
processorName: string;
|
|
6348
|
+
/**
|
|
6349
|
+
* Unique 24-hexadecimal digit string that identifies your project. Use the /groups endpoint to retrieve all projects to which the authenticated user has access.
|
|
6350
|
+
*/
|
|
6351
|
+
projectId: string;
|
|
6352
|
+
/**
|
|
6353
|
+
* The state of the stream processor.
|
|
6354
|
+
*/
|
|
6355
|
+
state: string;
|
|
6356
|
+
/**
|
|
6357
|
+
* The stats associated with the stream processor.
|
|
6358
|
+
*/
|
|
6359
|
+
stats: string;
|
|
6360
|
+
}
|
|
6361
|
+
export interface GetStreamProcessorsResultOptions {
|
|
6362
|
+
/**
|
|
6363
|
+
* Dead letter queue for the stream processor. Refer to the [MongoDB Atlas Docs](https://www.mongodb.com/docs/atlas/reference/glossary/#std-term-dead-letter-queue) for more information.
|
|
6364
|
+
*/
|
|
6365
|
+
dlq: outputs.GetStreamProcessorsResultOptionsDlq;
|
|
6366
|
+
}
|
|
6367
|
+
export interface GetStreamProcessorsResultOptionsDlq {
|
|
6368
|
+
/**
|
|
6369
|
+
* Name of the collection to use for the DLQ.
|
|
6370
|
+
*/
|
|
6371
|
+
coll: string;
|
|
6372
|
+
/**
|
|
6373
|
+
* Name of the connection to write DLQ messages to. Must be an Atlas connection.
|
|
6374
|
+
*/
|
|
6375
|
+
connectionName: string;
|
|
6376
|
+
/**
|
|
6377
|
+
* Name of the database to use for the DLQ.
|
|
6378
|
+
*/
|
|
6379
|
+
db: string;
|
|
6380
|
+
}
|
|
6116
6381
|
export interface GetThirdPartyIntegrationsResult {
|
|
6117
6382
|
accountId: string;
|
|
6118
6383
|
/**
|
|
@@ -6506,6 +6771,26 @@ export interface StreamInstanceStreamConfig {
|
|
|
6506
6771
|
*/
|
|
6507
6772
|
tier: string;
|
|
6508
6773
|
}
|
|
6774
|
+
export interface StreamProcessorOptions {
|
|
6775
|
+
/**
|
|
6776
|
+
* Dead letter queue for the stream processor. Refer to the [MongoDB Atlas Docs](https://www.mongodb.com/docs/atlas/reference/glossary/#std-term-dead-letter-queue) for more information.
|
|
6777
|
+
*/
|
|
6778
|
+
dlq: outputs.StreamProcessorOptionsDlq;
|
|
6779
|
+
}
|
|
6780
|
+
export interface StreamProcessorOptionsDlq {
|
|
6781
|
+
/**
|
|
6782
|
+
* Name of the collection to use for the DLQ.
|
|
6783
|
+
*/
|
|
6784
|
+
coll: string;
|
|
6785
|
+
/**
|
|
6786
|
+
* Name of the connection to write DLQ messages to. Must be an Atlas connection.
|
|
6787
|
+
*/
|
|
6788
|
+
connectionName: string;
|
|
6789
|
+
/**
|
|
6790
|
+
* Name of the database to use for the DLQ.
|
|
6791
|
+
*/
|
|
6792
|
+
db: string;
|
|
6793
|
+
}
|
|
6509
6794
|
export interface X509AuthenticationDatabaseUserCertificate {
|
|
6510
6795
|
createdAt: string;
|
|
6511
6796
|
groupId: string;
|