@pulumi/mongodbatlas 3.18.0-alpha.1724997109 → 3.18.0-alpha.1725644771
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
CHANGED
|
@@ -9,7 +9,7 @@ import * as outputs from "./types/output";
|
|
|
9
9
|
* More information on considerations for using advanced clusters please see [Considerations](https://docs.atlas.mongodb.com/reference/api/cluster-advanced/create-one-cluster-advanced/#considerations)
|
|
10
10
|
*
|
|
11
11
|
* > **IMPORTANT:**
|
|
12
|
-
* <br> • The primary difference between `mongodbatlas.Cluster` is that `mongodbatlas.AdvancedCluster` supports multi-cloud clusters. We recommend new users start with the `mongodbatlas.AdvancedCluster` resource.
|
|
12
|
+
* <br> • The primary difference between `mongodbatlas.Cluster` and `mongodbatlas.AdvancedCluster` is that `mongodbatlas.AdvancedCluster` supports multi-cloud clusters. We recommend new users start with the `mongodbatlas.AdvancedCluster` resource.
|
|
13
13
|
*
|
|
14
14
|
* > **NOTE:** If Backup Compliance Policy is enabled for the project for which this backup schedule is defined, you cannot modify the backup schedule for an individual cluster below the minimum requirements set in the Backup Compliance Policy. See [Backup Compliance Policy Prohibited Actions and Considerations](https://www.mongodb.com/docs/atlas/backup/cloud-backup/backup-compliance-policy/#configure-a-backup-compliance-policy).
|
|
15
15
|
*
|
package/advancedCluster.js
CHANGED
|
@@ -13,7 +13,7 @@ const utilities = require("./utilities");
|
|
|
13
13
|
* More information on considerations for using advanced clusters please see [Considerations](https://docs.atlas.mongodb.com/reference/api/cluster-advanced/create-one-cluster-advanced/#considerations)
|
|
14
14
|
*
|
|
15
15
|
* > **IMPORTANT:**
|
|
16
|
-
* <br> • The primary difference between `mongodbatlas.Cluster` is that `mongodbatlas.AdvancedCluster` supports multi-cloud clusters. We recommend new users start with the `mongodbatlas.AdvancedCluster` resource.
|
|
16
|
+
* <br> • The primary difference between `mongodbatlas.Cluster` and `mongodbatlas.AdvancedCluster` is that `mongodbatlas.AdvancedCluster` supports multi-cloud clusters. We recommend new users start with the `mongodbatlas.AdvancedCluster` resource.
|
|
17
17
|
*
|
|
18
18
|
* > **NOTE:** If Backup Compliance Policy is enabled for the project for which this backup schedule is defined, you cannot modify the backup schedule for an individual cluster below the minimum requirements set in the Backup Compliance Policy. See [Backup Compliance Policy Prohibited Actions and Considerations](https://www.mongodb.com/docs/atlas/backup/cloud-backup/backup-compliance-policy/#configure-a-backup-compliance-policy).
|
|
19
19
|
*
|
|
@@ -129,7 +129,7 @@ export declare class CloudBackupSnapshotExportJob extends pulumi.CustomResource
|
|
|
129
129
|
*/
|
|
130
130
|
readonly errMsg: pulumi.Output<string>;
|
|
131
131
|
/**
|
|
132
|
-
* Unique identifier of the AWS bucket to export the Cloud Backup snapshot to. If necessary, use the Get All Snapshot Export Buckets
|
|
132
|
+
* Unique identifier of the AWS bucket to export the Cloud Backup snapshot to. If necessary, use the [Get All Snapshot Export Buckets](https://docs.atlas.mongodb.com/reference/api/cloud-backup/export/get-all-export-buckets/) API to retrieve the IDs of all available export buckets for a project or use the data source mongodbatlas_cloud_backup_snapshot_export_buckets
|
|
133
133
|
*/
|
|
134
134
|
readonly exportBucketId: pulumi.Output<string>;
|
|
135
135
|
/**
|
|
@@ -149,7 +149,7 @@ export declare class CloudBackupSnapshotExportJob extends pulumi.CustomResource
|
|
|
149
149
|
*/
|
|
150
150
|
readonly projectId: pulumi.Output<string>;
|
|
151
151
|
/**
|
|
152
|
-
* Unique identifier of the Cloud Backup snapshot to export. If necessary, use the Get All Cloud Backups
|
|
152
|
+
* Unique identifier of the Cloud Backup snapshot to export. If necessary, use the [Get All Cloud Backups](https://docs.atlas.mongodb.com/reference/api/cloud-backup/backup/get-all-backups/) API to retrieve the list of snapshot IDs for a cluster or use the data source mongodbatlas_cloud_cloud_backup_snapshots
|
|
153
153
|
*/
|
|
154
154
|
readonly snapshotId: pulumi.Output<string>;
|
|
155
155
|
/**
|
|
@@ -196,7 +196,7 @@ export interface CloudBackupSnapshotExportJobState {
|
|
|
196
196
|
*/
|
|
197
197
|
errMsg?: pulumi.Input<string>;
|
|
198
198
|
/**
|
|
199
|
-
* Unique identifier of the AWS bucket to export the Cloud Backup snapshot to. If necessary, use the Get All Snapshot Export Buckets
|
|
199
|
+
* Unique identifier of the AWS bucket to export the Cloud Backup snapshot to. If necessary, use the [Get All Snapshot Export Buckets](https://docs.atlas.mongodb.com/reference/api/cloud-backup/export/get-all-export-buckets/) API to retrieve the IDs of all available export buckets for a project or use the data source mongodbatlas_cloud_backup_snapshot_export_buckets
|
|
200
200
|
*/
|
|
201
201
|
exportBucketId?: pulumi.Input<string>;
|
|
202
202
|
/**
|
|
@@ -216,7 +216,7 @@ export interface CloudBackupSnapshotExportJobState {
|
|
|
216
216
|
*/
|
|
217
217
|
projectId?: pulumi.Input<string>;
|
|
218
218
|
/**
|
|
219
|
-
* Unique identifier of the Cloud Backup snapshot to export. If necessary, use the Get All Cloud Backups
|
|
219
|
+
* Unique identifier of the Cloud Backup snapshot to export. If necessary, use the [Get All Cloud Backups](https://docs.atlas.mongodb.com/reference/api/cloud-backup/backup/get-all-backups/) API to retrieve the list of snapshot IDs for a cluster or use the data source mongodbatlas_cloud_cloud_backup_snapshots
|
|
220
220
|
*/
|
|
221
221
|
snapshotId?: pulumi.Input<string>;
|
|
222
222
|
/**
|
|
@@ -241,7 +241,7 @@ export interface CloudBackupSnapshotExportJobArgs {
|
|
|
241
241
|
*/
|
|
242
242
|
customDatas: pulumi.Input<pulumi.Input<inputs.CloudBackupSnapshotExportJobCustomData>[]>;
|
|
243
243
|
/**
|
|
244
|
-
* Unique identifier of the AWS bucket to export the Cloud Backup snapshot to. If necessary, use the Get All Snapshot Export Buckets
|
|
244
|
+
* Unique identifier of the AWS bucket to export the Cloud Backup snapshot to. If necessary, use the [Get All Snapshot Export Buckets](https://docs.atlas.mongodb.com/reference/api/cloud-backup/export/get-all-export-buckets/) API to retrieve the IDs of all available export buckets for a project or use the data source mongodbatlas_cloud_backup_snapshot_export_buckets
|
|
245
245
|
*/
|
|
246
246
|
exportBucketId: pulumi.Input<string>;
|
|
247
247
|
/**
|
|
@@ -249,7 +249,7 @@ export interface CloudBackupSnapshotExportJobArgs {
|
|
|
249
249
|
*/
|
|
250
250
|
projectId: pulumi.Input<string>;
|
|
251
251
|
/**
|
|
252
|
-
* Unique identifier of the Cloud Backup snapshot to export. If necessary, use the Get All Cloud Backups
|
|
252
|
+
* Unique identifier of the Cloud Backup snapshot to export. If necessary, use the [Get All Cloud Backups](https://docs.atlas.mongodb.com/reference/api/cloud-backup/backup/get-all-backups/) API to retrieve the list of snapshot IDs for a cluster or use the data source mongodbatlas_cloud_cloud_backup_snapshots
|
|
253
253
|
*/
|
|
254
254
|
snapshotId: pulumi.Input<string>;
|
|
255
255
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/mongodbatlas",
|
|
3
|
-
"version": "3.18.0-alpha.
|
|
3
|
+
"version": "3.18.0-alpha.1725644771",
|
|
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.18.0-alpha.
|
|
26
|
+
"version": "3.18.0-alpha.1725644771"
|
|
27
27
|
}
|
|
28
28
|
}
|