@pulumi/mongodbatlas 3.28.0-alpha.1740766387 → 3.28.0-alpha.1740772023

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.
Files changed (59) hide show
  1. package/advancedCluster.d.ts +74 -5
  2. package/advancedCluster.js +71 -2
  3. package/advancedCluster.js.map +1 -1
  4. package/cloudBackupSchedule.d.ts +15 -15
  5. package/cloudBackupSnapshotExportBucket.d.ts +2 -0
  6. package/cloudBackupSnapshotExportBucket.js +2 -0
  7. package/cloudBackupSnapshotExportBucket.js.map +1 -1
  8. package/cluster.d.ts +6 -6
  9. package/encryptionAtRestPrivateEndpoint.d.ts +29 -5
  10. package/encryptionAtRestPrivateEndpoint.js +29 -5
  11. package/encryptionAtRestPrivateEndpoint.js.map +1 -1
  12. package/flexCluster.d.ts +1 -1
  13. package/flexCluster.js +1 -1
  14. package/getAdvancedCluster.d.ts +54 -0
  15. package/getAdvancedCluster.js +54 -0
  16. package/getAdvancedCluster.js.map +1 -1
  17. package/getAdvancedClusters.d.ts +52 -0
  18. package/getAdvancedClusters.js +52 -0
  19. package/getAdvancedClusters.js.map +1 -1
  20. package/getCloudBackupSchedule.d.ts +4 -4
  21. package/getEncryptionAtRest.d.ts +2 -2
  22. package/getEncryptionAtRest.js +2 -2
  23. package/getEncryptionAtRestPrivateEndpoint.d.ts +34 -8
  24. package/getEncryptionAtRestPrivateEndpoint.js +34 -8
  25. package/getEncryptionAtRestPrivateEndpoint.js.map +1 -1
  26. package/getEncryptionAtRestPrivateEndpoints.d.ts +32 -8
  27. package/getEncryptionAtRestPrivateEndpoints.js +32 -8
  28. package/getEncryptionAtRestPrivateEndpoints.js.map +1 -1
  29. package/getFlexCluster.d.ts +2 -2
  30. package/getFlexCluster.js +2 -2
  31. package/getFlexClusters.d.ts +2 -2
  32. package/getFlexClusters.js +2 -2
  33. package/getFlexRestoreJob.d.ts +109 -0
  34. package/getFlexRestoreJob.js +76 -0
  35. package/getFlexRestoreJob.js.map +1 -0
  36. package/getFlexRestoreJobs.d.ts +98 -0
  37. package/getFlexRestoreJobs.js +74 -0
  38. package/getFlexRestoreJobs.js.map +1 -0
  39. package/getFlexSnapshot.d.ts +105 -0
  40. package/getFlexSnapshot.js +76 -0
  41. package/getFlexSnapshot.js.map +1 -0
  42. package/getFlexSnapshots.d.ts +98 -0
  43. package/getFlexSnapshots.js +74 -0
  44. package/getFlexSnapshots.js.map +1 -0
  45. package/getServerlessInstance.d.ts +2 -2
  46. package/getServerlessInstance.js +2 -2
  47. package/getServerlessInstances.d.ts +2 -2
  48. package/getServerlessInstances.js +2 -2
  49. package/globalClusterConfig.d.ts +1 -1
  50. package/globalClusterConfig.js +1 -1
  51. package/index.d.ts +12 -0
  52. package/index.js +16 -4
  53. package/index.js.map +1 -1
  54. package/maintenanceWindow.d.ts +3 -3
  55. package/package.json +2 -2
  56. package/serverlessInstance.d.ts +1 -1
  57. package/serverlessInstance.js +1 -1
  58. package/types/input.d.ts +8 -4
  59. package/types/output.d.ts +104 -4
@@ -11,6 +11,8 @@ import * as outputs from "./types/output";
11
11
  * <br> &#8226; Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
12
12
  * <br> &#8226; If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
13
13
  *
14
+ * > **NOTE:** This data source also includes Flex clusters.
15
+ *
14
16
  * ## Example Usage
15
17
  *
16
18
  * ```typescript
@@ -85,6 +87,31 @@ import * as outputs from "./types/output";
85
87
  * useReplicationSpecPerShard: true,
86
88
  * });
87
89
  * ```
90
+ *
91
+ * ## Example using Flex cluster
92
+ *
93
+ * ```typescript
94
+ * import * as pulumi from "@pulumi/pulumi";
95
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
96
+ *
97
+ * const example_flex = new mongodbatlas.AdvancedCluster("example-flex", {
98
+ * projectId: "<YOUR-PROJECT-ID>",
99
+ * name: "flex-cluster",
100
+ * clusterType: "REPLICASET",
101
+ * replicationSpecs: [{
102
+ * regionConfigs: [{
103
+ * providerName: "FLEX",
104
+ * backingProviderName: "AWS",
105
+ * regionName: "US_EAST_1",
106
+ * priority: 7,
107
+ * }],
108
+ * }],
109
+ * });
110
+ * const example = mongodbatlas.getAdvancedClusterOutput({
111
+ * projectId: example_flex.projectId,
112
+ * name: example_flex.name,
113
+ * });
114
+ * ```
88
115
  */
89
116
  export declare function getAdvancedCluster(args: GetAdvancedClusterArgs, opts?: pulumi.InvokeOptions): Promise<GetAdvancedClusterResult>;
90
117
  /**
@@ -227,6 +254,8 @@ export interface GetAdvancedClusterResult {
227
254
  * <br> &#8226; Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
228
255
  * <br> &#8226; If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
229
256
  *
257
+ * > **NOTE:** This data source also includes Flex clusters.
258
+ *
230
259
  * ## Example Usage
231
260
  *
232
261
  * ```typescript
@@ -301,6 +330,31 @@ export interface GetAdvancedClusterResult {
301
330
  * useReplicationSpecPerShard: true,
302
331
  * });
303
332
  * ```
333
+ *
334
+ * ## Example using Flex cluster
335
+ *
336
+ * ```typescript
337
+ * import * as pulumi from "@pulumi/pulumi";
338
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
339
+ *
340
+ * const example_flex = new mongodbatlas.AdvancedCluster("example-flex", {
341
+ * projectId: "<YOUR-PROJECT-ID>",
342
+ * name: "flex-cluster",
343
+ * clusterType: "REPLICASET",
344
+ * replicationSpecs: [{
345
+ * regionConfigs: [{
346
+ * providerName: "FLEX",
347
+ * backingProviderName: "AWS",
348
+ * regionName: "US_EAST_1",
349
+ * priority: 7,
350
+ * }],
351
+ * }],
352
+ * });
353
+ * const example = mongodbatlas.getAdvancedClusterOutput({
354
+ * projectId: example_flex.projectId,
355
+ * name: example_flex.name,
356
+ * });
357
+ * ```
304
358
  */
305
359
  export declare function getAdvancedClusterOutput(args: GetAdvancedClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAdvancedClusterResult>;
306
360
  /**
@@ -16,6 +16,8 @@ const utilities = require("./utilities");
16
16
  * <br> &#8226; Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
17
17
  * <br> &#8226; If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
18
18
  *
19
+ * > **NOTE:** This data source also includes Flex clusters.
20
+ *
19
21
  * ## Example Usage
20
22
  *
21
23
  * ```typescript
@@ -90,6 +92,31 @@ const utilities = require("./utilities");
90
92
  * useReplicationSpecPerShard: true,
91
93
  * });
92
94
  * ```
95
+ *
96
+ * ## Example using Flex cluster
97
+ *
98
+ * ```typescript
99
+ * import * as pulumi from "@pulumi/pulumi";
100
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
101
+ *
102
+ * const example_flex = new mongodbatlas.AdvancedCluster("example-flex", {
103
+ * projectId: "<YOUR-PROJECT-ID>",
104
+ * name: "flex-cluster",
105
+ * clusterType: "REPLICASET",
106
+ * replicationSpecs: [{
107
+ * regionConfigs: [{
108
+ * providerName: "FLEX",
109
+ * backingProviderName: "AWS",
110
+ * regionName: "US_EAST_1",
111
+ * priority: 7,
112
+ * }],
113
+ * }],
114
+ * });
115
+ * const example = mongodbatlas.getAdvancedClusterOutput({
116
+ * projectId: example_flex.projectId,
117
+ * name: example_flex.name,
118
+ * });
119
+ * ```
93
120
  */
94
121
  function getAdvancedCluster(args, opts) {
95
122
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -112,6 +139,8 @@ exports.getAdvancedCluster = getAdvancedCluster;
112
139
  * <br> &#8226; Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
113
140
  * <br> &#8226; If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
114
141
  *
142
+ * > **NOTE:** This data source also includes Flex clusters.
143
+ *
115
144
  * ## Example Usage
116
145
  *
117
146
  * ```typescript
@@ -186,6 +215,31 @@ exports.getAdvancedCluster = getAdvancedCluster;
186
215
  * useReplicationSpecPerShard: true,
187
216
  * });
188
217
  * ```
218
+ *
219
+ * ## Example using Flex cluster
220
+ *
221
+ * ```typescript
222
+ * import * as pulumi from "@pulumi/pulumi";
223
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
224
+ *
225
+ * const example_flex = new mongodbatlas.AdvancedCluster("example-flex", {
226
+ * projectId: "<YOUR-PROJECT-ID>",
227
+ * name: "flex-cluster",
228
+ * clusterType: "REPLICASET",
229
+ * replicationSpecs: [{
230
+ * regionConfigs: [{
231
+ * providerName: "FLEX",
232
+ * backingProviderName: "AWS",
233
+ * regionName: "US_EAST_1",
234
+ * priority: 7,
235
+ * }],
236
+ * }],
237
+ * });
238
+ * const example = mongodbatlas.getAdvancedClusterOutput({
239
+ * projectId: example_flex.projectId,
240
+ * name: example_flex.name,
241
+ * });
242
+ * ```
189
243
  */
190
244
  function getAdvancedClusterOutput(args, opts) {
191
245
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -1 +1 @@
1
- {"version":3,"file":"getAdvancedCluster.js","sourceRoot":"","sources":["../getAdvancedCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqFG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;KAChE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gDAQC;AAoID;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqFG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAAiC;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0DAA0D,EAAE;QAC3F,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;KAChE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,4DAQC"}
1
+ {"version":3,"file":"getAdvancedCluster.js","sourceRoot":"","sources":["../getAdvancedCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgHG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;KAChE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gDAQC;AAoID;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgHG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAAiC;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0DAA0D,EAAE;QAC3F,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;KAChE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,4DAQC"}
@@ -11,6 +11,8 @@ import * as outputs from "./types/output";
11
11
  * <br> &#8226; Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
12
12
  * <br> &#8226; If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
13
13
  *
14
+ * > **NOTE:** This data source also includes Flex clusters.
15
+ *
14
16
  * ## Example Usage
15
17
  *
16
18
  * ```typescript
@@ -84,6 +86,30 @@ import * as outputs from "./types/output";
84
86
  * useReplicationSpecPerShard: true,
85
87
  * });
86
88
  * ```
89
+ *
90
+ * ## Example using Flex cluster
91
+ *
92
+ * ```typescript
93
+ * import * as pulumi from "@pulumi/pulumi";
94
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
95
+ *
96
+ * const example_flex = new mongodbatlas.AdvancedCluster("example-flex", {
97
+ * projectId: "<YOUR-PROJECT-ID>",
98
+ * name: "flex-cluster",
99
+ * clusterType: "REPLICASET",
100
+ * replicationSpecs: [{
101
+ * regionConfigs: [{
102
+ * providerName: "FLEX",
103
+ * backingProviderName: "AWS",
104
+ * regionName: "US_EAST_1",
105
+ * priority: 7,
106
+ * }],
107
+ * }],
108
+ * });
109
+ * const example = mongodbatlas.getAdvancedClustersOutput({
110
+ * projectId: example_flex.projectId,
111
+ * });
112
+ * ```
87
113
  */
88
114
  export declare function getAdvancedClusters(args: GetAdvancedClustersArgs, opts?: pulumi.InvokeOptions): Promise<GetAdvancedClustersResult>;
89
115
  /**
@@ -125,6 +151,8 @@ export interface GetAdvancedClustersResult {
125
151
  * <br> &#8226; Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
126
152
  * <br> &#8226; If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
127
153
  *
154
+ * > **NOTE:** This data source also includes Flex clusters.
155
+ *
128
156
  * ## Example Usage
129
157
  *
130
158
  * ```typescript
@@ -198,6 +226,30 @@ export interface GetAdvancedClustersResult {
198
226
  * useReplicationSpecPerShard: true,
199
227
  * });
200
228
  * ```
229
+ *
230
+ * ## Example using Flex cluster
231
+ *
232
+ * ```typescript
233
+ * import * as pulumi from "@pulumi/pulumi";
234
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
235
+ *
236
+ * const example_flex = new mongodbatlas.AdvancedCluster("example-flex", {
237
+ * projectId: "<YOUR-PROJECT-ID>",
238
+ * name: "flex-cluster",
239
+ * clusterType: "REPLICASET",
240
+ * replicationSpecs: [{
241
+ * regionConfigs: [{
242
+ * providerName: "FLEX",
243
+ * backingProviderName: "AWS",
244
+ * regionName: "US_EAST_1",
245
+ * priority: 7,
246
+ * }],
247
+ * }],
248
+ * });
249
+ * const example = mongodbatlas.getAdvancedClustersOutput({
250
+ * projectId: example_flex.projectId,
251
+ * });
252
+ * ```
201
253
  */
202
254
  export declare function getAdvancedClustersOutput(args: GetAdvancedClustersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAdvancedClustersResult>;
203
255
  /**
@@ -16,6 +16,8 @@ const utilities = require("./utilities");
16
16
  * <br> &#8226; Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
17
17
  * <br> &#8226; If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
18
18
  *
19
+ * > **NOTE:** This data source also includes Flex clusters.
20
+ *
19
21
  * ## Example Usage
20
22
  *
21
23
  * ```typescript
@@ -89,6 +91,30 @@ const utilities = require("./utilities");
89
91
  * useReplicationSpecPerShard: true,
90
92
  * });
91
93
  * ```
94
+ *
95
+ * ## Example using Flex cluster
96
+ *
97
+ * ```typescript
98
+ * import * as pulumi from "@pulumi/pulumi";
99
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
100
+ *
101
+ * const example_flex = new mongodbatlas.AdvancedCluster("example-flex", {
102
+ * projectId: "<YOUR-PROJECT-ID>",
103
+ * name: "flex-cluster",
104
+ * clusterType: "REPLICASET",
105
+ * replicationSpecs: [{
106
+ * regionConfigs: [{
107
+ * providerName: "FLEX",
108
+ * backingProviderName: "AWS",
109
+ * regionName: "US_EAST_1",
110
+ * priority: 7,
111
+ * }],
112
+ * }],
113
+ * });
114
+ * const example = mongodbatlas.getAdvancedClustersOutput({
115
+ * projectId: example_flex.projectId,
116
+ * });
117
+ * ```
92
118
  */
93
119
  function getAdvancedClusters(args, opts) {
94
120
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -109,6 +135,8 @@ exports.getAdvancedClusters = getAdvancedClusters;
109
135
  * <br> &#8226; Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
110
136
  * <br> &#8226; If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
111
137
  *
138
+ * > **NOTE:** This data source also includes Flex clusters.
139
+ *
112
140
  * ## Example Usage
113
141
  *
114
142
  * ```typescript
@@ -182,6 +210,30 @@ exports.getAdvancedClusters = getAdvancedClusters;
182
210
  * useReplicationSpecPerShard: true,
183
211
  * });
184
212
  * ```
213
+ *
214
+ * ## Example using Flex cluster
215
+ *
216
+ * ```typescript
217
+ * import * as pulumi from "@pulumi/pulumi";
218
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
219
+ *
220
+ * const example_flex = new mongodbatlas.AdvancedCluster("example-flex", {
221
+ * projectId: "<YOUR-PROJECT-ID>",
222
+ * name: "flex-cluster",
223
+ * clusterType: "REPLICASET",
224
+ * replicationSpecs: [{
225
+ * regionConfigs: [{
226
+ * providerName: "FLEX",
227
+ * backingProviderName: "AWS",
228
+ * regionName: "US_EAST_1",
229
+ * priority: 7,
230
+ * }],
231
+ * }],
232
+ * });
233
+ * const example = mongodbatlas.getAdvancedClustersOutput({
234
+ * projectId: example_flex.projectId,
235
+ * });
236
+ * ```
185
237
  */
186
238
  function getAdvancedClustersOutput(args, opts) {
187
239
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -1 +1 @@
1
- {"version":3,"file":"getAdvancedClusters.js","sourceRoot":"","sources":["../getAdvancedClusters.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoFG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;KAChE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC;AA+BD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoFG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAAiC;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4DAA4D,EAAE;QAC7F,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;KAChE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8DAMC"}
1
+ {"version":3,"file":"getAdvancedClusters.js","sourceRoot":"","sources":["../getAdvancedClusters.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8GG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;KAChE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC;AA+BD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8GG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAAiC;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4DAA4D,EAAE;QAC7F,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;KAChE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8DAMC"}
@@ -30,9 +30,9 @@ export interface GetCloudBackupScheduleArgs {
30
30
  */
31
31
  export interface GetCloudBackupScheduleResult {
32
32
  /**
33
- * Flag that indicates whether automatic export of cloud backup snapshots to the AWS bucket is enabled. Value can be one of the following:
34
- * * true - enables automatic export of cloud backup snapshots to the AWS bucket
35
- * * false - disables automatic export of cloud backup snapshots to the AWS bucket (default)
33
+ * Flag that indicates whether MongoDB Cloud automatically exports Cloud Backup Snapshots to the Export Bucket. Value can be one of the following:
34
+ * * true - Enables automatic export of cloud backup snapshots to the Export Bucket.
35
+ * * false - Disables automatic export of cloud backup snapshots to the Export Bucket. (default)
36
36
  */
37
37
  readonly autoExportEnabled: boolean;
38
38
  /**
@@ -94,7 +94,7 @@ export interface GetCloudBackupScheduleResult {
94
94
  */
95
95
  readonly restoreWindowDays: number;
96
96
  /**
97
- * Specify true to use organization and project names instead of organization and project UUIDs in the path for the metadata files that Atlas uploads to your S3 bucket after it finishes exporting the snapshots. To learn more about the metadata files that Atlas uploads, see [Export Cloud Backup Snapshot](https://www.mongodb.com/docs/atlas/backup/cloud-backup/export/#std-label-cloud-provider-snapshot-export).
97
+ * Specify true to use organization and project names instead of organization and project UUIDs in the path for the metadata files that Atlas uploads to your bucket after it finishes exporting the snapshots. To learn more about the metadata files that Atlas uploads, see [Export Cloud Backup Snapshot](https://www.mongodb.com/docs/atlas/backup/cloud-backup/export/#std-label-cloud-provider-snapshot-export).
98
98
  */
99
99
  readonly useOrgAndGroupNamesInExportPrefix: boolean;
100
100
  readonly useZoneIdForCopySettings?: boolean;
@@ -93,7 +93,7 @@ import * as outputs from "./types/output";
93
93
  * export const isAzureEncryptionAtRestValid = test.apply(test => test.azureKeyVaultConfig?.valid);
94
94
  * ```
95
95
  *
96
- * > **NOTE:** It is possible to configure Atlas Encryption at Rest to communicate with Azure Key Vault using Azure Private Link, ensuring that all traffic between Atlas and Key Vault takes place over Azure’s private network interfaces. Please review `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource for details.
96
+ * > **NOTE:** It is possible to configure Atlas Encryption at Rest to communicate with Customer Managed Keys (Azure Key Vault or AWS KMS) over private network interfaces (Azure Private Link or AWS PrivateLink). This requires enabling the `azure_key_vault_config.require_private_networking` or the `aws_kms_config.require_private_networking` attribute, together with the configuration of the `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource. Please review the `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource for details.
97
97
  *
98
98
  * ### Configuring encryption at rest using customer key management in GCP
99
99
  * ```typescript
@@ -242,7 +242,7 @@ export interface GetEncryptionAtRestResult {
242
242
  * export const isAzureEncryptionAtRestValid = test.apply(test => test.azureKeyVaultConfig?.valid);
243
243
  * ```
244
244
  *
245
- * > **NOTE:** It is possible to configure Atlas Encryption at Rest to communicate with Azure Key Vault using Azure Private Link, ensuring that all traffic between Atlas and Key Vault takes place over Azure’s private network interfaces. Please review `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource for details.
245
+ * > **NOTE:** It is possible to configure Atlas Encryption at Rest to communicate with Customer Managed Keys (Azure Key Vault or AWS KMS) over private network interfaces (Azure Private Link or AWS PrivateLink). This requires enabling the `azure_key_vault_config.require_private_networking` or the `aws_kms_config.require_private_networking` attribute, together with the configuration of the `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource. Please review the `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource for details.
246
246
  *
247
247
  * ### Configuring encryption at rest using customer key management in GCP
248
248
  * ```typescript
@@ -98,7 +98,7 @@ const utilities = require("./utilities");
98
98
  * export const isAzureEncryptionAtRestValid = test.apply(test => test.azureKeyVaultConfig?.valid);
99
99
  * ```
100
100
  *
101
- * > **NOTE:** It is possible to configure Atlas Encryption at Rest to communicate with Azure Key Vault using Azure Private Link, ensuring that all traffic between Atlas and Key Vault takes place over Azure’s private network interfaces. Please review `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource for details.
101
+ * > **NOTE:** It is possible to configure Atlas Encryption at Rest to communicate with Customer Managed Keys (Azure Key Vault or AWS KMS) over private network interfaces (Azure Private Link or AWS PrivateLink). This requires enabling the `azure_key_vault_config.require_private_networking` or the `aws_kms_config.require_private_networking` attribute, together with the configuration of the `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource. Please review the `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource for details.
102
102
  *
103
103
  * ### Configuring encryption at rest using customer key management in GCP
104
104
  * ```typescript
@@ -219,7 +219,7 @@ exports.getEncryptionAtRest = getEncryptionAtRest;
219
219
  * export const isAzureEncryptionAtRestValid = test.apply(test => test.azureKeyVaultConfig?.valid);
220
220
  * ```
221
221
  *
222
- * > **NOTE:** It is possible to configure Atlas Encryption at Rest to communicate with Azure Key Vault using Azure Private Link, ensuring that all traffic between Atlas and Key Vault takes place over Azure’s private network interfaces. Please review `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource for details.
222
+ * > **NOTE:** It is possible to configure Atlas Encryption at Rest to communicate with Customer Managed Keys (Azure Key Vault or AWS KMS) over private network interfaces (Azure Private Link or AWS PrivateLink). This requires enabling the `azure_key_vault_config.require_private_networking` or the `aws_kms_config.require_private_networking` attribute, together with the configuration of the `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource. Please review the `mongodbatlas.EncryptionAtRestPrivateEndpoint` resource for details.
223
223
  *
224
224
  * ### Configuring encryption at rest using customer key management in GCP
225
225
  * ```typescript
@@ -4,14 +4,14 @@ import * as pulumi from "@pulumi/pulumi";
4
4
  *
5
5
  * `mongodbatlas.EncryptionAtRestPrivateEndpoint` describes a private endpoint used for encryption at rest using customer-managed keys.
6
6
  *
7
- * > **IMPORTANT** The Encryption at Rest using Azure Key Vault over Private Endpoints feature is available by request. To request this functionality for your Atlas deployments, contact your Account Manager.
8
- * To learn more about existing limitations, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
9
- *
10
7
  * ## Example Usage
11
8
  *
12
9
  * ### S
13
10
  *
14
- * > **NOTE:** Only Azure Key Vault with Azure Private Link is supported at this time.
11
+ * > **NOTE:** Only Azure Key Vault with Azure Private Link and AWS KMS over AWS PrivateLink is supported at this time.
12
+ *
13
+ * ### Encryption At Rest Azure Key Vault Private Endpoint
14
+ * To learn more, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
15
15
  *
16
16
  * ```typescript
17
17
  * import * as pulumi from "@pulumi/pulumi";
@@ -24,6 +24,19 @@ import * as pulumi from "@pulumi/pulumi";
24
24
  * });
25
25
  * export const endpointConnectionName = single.then(single => single.privateEndpointConnectionName);
26
26
  * ```
27
+ *
28
+ * ### Encryption At Rest AWS KMS Private Endpoint
29
+ * ```typescript
30
+ * import * as pulumi from "@pulumi/pulumi";
31
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
32
+ *
33
+ * const single = mongodbatlas.getEncryptionAtRestPrivateEndpoint({
34
+ * projectId: atlasProjectId,
35
+ * cloudProvider: "AWS",
36
+ * id: endpoint.id,
37
+ * });
38
+ * export const status = single.then(single => single.status);
39
+ * ```
27
40
  */
28
41
  export declare function getEncryptionAtRestPrivateEndpoint(args: GetEncryptionAtRestPrivateEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetEncryptionAtRestPrivateEndpointResult>;
29
42
  /**
@@ -81,14 +94,14 @@ export interface GetEncryptionAtRestPrivateEndpointResult {
81
94
  *
82
95
  * `mongodbatlas.EncryptionAtRestPrivateEndpoint` describes a private endpoint used for encryption at rest using customer-managed keys.
83
96
  *
84
- * > **IMPORTANT** The Encryption at Rest using Azure Key Vault over Private Endpoints feature is available by request. To request this functionality for your Atlas deployments, contact your Account Manager.
85
- * To learn more about existing limitations, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
86
- *
87
97
  * ## Example Usage
88
98
  *
89
99
  * ### S
90
100
  *
91
- * > **NOTE:** Only Azure Key Vault with Azure Private Link is supported at this time.
101
+ * > **NOTE:** Only Azure Key Vault with Azure Private Link and AWS KMS over AWS PrivateLink is supported at this time.
102
+ *
103
+ * ### Encryption At Rest Azure Key Vault Private Endpoint
104
+ * To learn more, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
92
105
  *
93
106
  * ```typescript
94
107
  * import * as pulumi from "@pulumi/pulumi";
@@ -101,6 +114,19 @@ export interface GetEncryptionAtRestPrivateEndpointResult {
101
114
  * });
102
115
  * export const endpointConnectionName = single.then(single => single.privateEndpointConnectionName);
103
116
  * ```
117
+ *
118
+ * ### Encryption At Rest AWS KMS Private Endpoint
119
+ * ```typescript
120
+ * import * as pulumi from "@pulumi/pulumi";
121
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
122
+ *
123
+ * const single = mongodbatlas.getEncryptionAtRestPrivateEndpoint({
124
+ * projectId: atlasProjectId,
125
+ * cloudProvider: "AWS",
126
+ * id: endpoint.id,
127
+ * });
128
+ * export const status = single.then(single => single.status);
129
+ * ```
104
130
  */
105
131
  export declare function getEncryptionAtRestPrivateEndpointOutput(args: GetEncryptionAtRestPrivateEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEncryptionAtRestPrivateEndpointResult>;
106
132
  /**
@@ -10,14 +10,14 @@ const utilities = require("./utilities");
10
10
  *
11
11
  * `mongodbatlas.EncryptionAtRestPrivateEndpoint` describes a private endpoint used for encryption at rest using customer-managed keys.
12
12
  *
13
- * > **IMPORTANT** The Encryption at Rest using Azure Key Vault over Private Endpoints feature is available by request. To request this functionality for your Atlas deployments, contact your Account Manager.
14
- * To learn more about existing limitations, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
15
- *
16
13
  * ## Example Usage
17
14
  *
18
15
  * ### S
19
16
  *
20
- * > **NOTE:** Only Azure Key Vault with Azure Private Link is supported at this time.
17
+ * > **NOTE:** Only Azure Key Vault with Azure Private Link and AWS KMS over AWS PrivateLink is supported at this time.
18
+ *
19
+ * ### Encryption At Rest Azure Key Vault Private Endpoint
20
+ * To learn more, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
21
21
  *
22
22
  * ```typescript
23
23
  * import * as pulumi from "@pulumi/pulumi";
@@ -30,6 +30,19 @@ const utilities = require("./utilities");
30
30
  * });
31
31
  * export const endpointConnectionName = single.then(single => single.privateEndpointConnectionName);
32
32
  * ```
33
+ *
34
+ * ### Encryption At Rest AWS KMS Private Endpoint
35
+ * ```typescript
36
+ * import * as pulumi from "@pulumi/pulumi";
37
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
38
+ *
39
+ * const single = mongodbatlas.getEncryptionAtRestPrivateEndpoint({
40
+ * projectId: atlasProjectId,
41
+ * cloudProvider: "AWS",
42
+ * id: endpoint.id,
43
+ * });
44
+ * export const status = single.then(single => single.status);
45
+ * ```
33
46
  */
34
47
  function getEncryptionAtRestPrivateEndpoint(args, opts) {
35
48
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -45,14 +58,14 @@ exports.getEncryptionAtRestPrivateEndpoint = getEncryptionAtRestPrivateEndpoint;
45
58
  *
46
59
  * `mongodbatlas.EncryptionAtRestPrivateEndpoint` describes a private endpoint used for encryption at rest using customer-managed keys.
47
60
  *
48
- * > **IMPORTANT** The Encryption at Rest using Azure Key Vault over Private Endpoints feature is available by request. To request this functionality for your Atlas deployments, contact your Account Manager.
49
- * To learn more about existing limitations, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
50
- *
51
61
  * ## Example Usage
52
62
  *
53
63
  * ### S
54
64
  *
55
- * > **NOTE:** Only Azure Key Vault with Azure Private Link is supported at this time.
65
+ * > **NOTE:** Only Azure Key Vault with Azure Private Link and AWS KMS over AWS PrivateLink is supported at this time.
66
+ *
67
+ * ### Encryption At Rest Azure Key Vault Private Endpoint
68
+ * To learn more, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
56
69
  *
57
70
  * ```typescript
58
71
  * import * as pulumi from "@pulumi/pulumi";
@@ -65,6 +78,19 @@ exports.getEncryptionAtRestPrivateEndpoint = getEncryptionAtRestPrivateEndpoint;
65
78
  * });
66
79
  * export const endpointConnectionName = single.then(single => single.privateEndpointConnectionName);
67
80
  * ```
81
+ *
82
+ * ### Encryption At Rest AWS KMS Private Endpoint
83
+ * ```typescript
84
+ * import * as pulumi from "@pulumi/pulumi";
85
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
86
+ *
87
+ * const single = mongodbatlas.getEncryptionAtRestPrivateEndpoint({
88
+ * projectId: atlasProjectId,
89
+ * cloudProvider: "AWS",
90
+ * id: endpoint.id,
91
+ * });
92
+ * export const status = single.then(single => single.status);
93
+ * ```
68
94
  */
69
95
  function getEncryptionAtRestPrivateEndpointOutput(args, opts) {
70
96
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
@@ -1 +1 @@
1
- {"version":3,"file":"getEncryptionAtRestPrivateEndpoint.js","sourceRoot":"","sources":["../getEncryptionAtRestPrivateEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAA2B;IACxH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0FAA0F,EAAE;QACrH,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gFAOC;AAqDD;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,wCAAwC,CAAC,IAAkD,EAAE,IAAiC;IAC1I,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0FAA0F,EAAE;QAC3H,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4FAOC"}
1
+ {"version":3,"file":"getEncryptionAtRestPrivateEndpoint.js","sourceRoot":"","sources":["../getEncryptionAtRestPrivateEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAA2B;IACxH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0FAA0F,EAAE;QACrH,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gFAOC;AAqDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,SAAgB,wCAAwC,CAAC,IAAkD,EAAE,IAAiC;IAC1I,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0FAA0F,EAAE;QAC3H,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4FAOC"}
@@ -5,14 +5,14 @@ import * as outputs from "./types/output";
5
5
  *
6
6
  * `mongodbatlas.getEncryptionAtRestPrivateEndpoints` describes private endpoints of a particular cloud provider used for encryption at rest using customer-managed keys.
7
7
  *
8
- * > **IMPORTANT** The Encryption at Rest using Azure Key Vault over Private Endpoints feature is available by request. To request this functionality for your Atlas deployments, contact your Account Manager.
9
- * To learn more about existing limitations, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
10
- *
11
8
  * ## Example Usage
12
9
  *
13
10
  * ### S
14
11
  *
15
- * > **NOTE:** Only Azure Key Vault with Azure Private Link is supported at this time.
12
+ * > **NOTE:** Only Azure Key Vault with Azure Private Link and AWS KMS over AWS PrivateLink is supported at this time.
13
+ *
14
+ * ### Encryption At Rest Azure Key Vault Private Endpoint
15
+ * To learn more about existing limitations, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
16
16
  *
17
17
  * ```typescript
18
18
  * import * as pulumi from "@pulumi/pulumi";
@@ -24,6 +24,18 @@ import * as outputs from "./types/output";
24
24
  * });
25
25
  * export const numberOfEndpoints = plural.then(plural => plural.results).length;
26
26
  * ```
27
+ *
28
+ * ### Encryption At Rest AWS KMS Private Endpoint
29
+ * ```typescript
30
+ * import * as pulumi from "@pulumi/pulumi";
31
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
32
+ *
33
+ * const plural = mongodbatlas.getEncryptionAtRestPrivateEndpoints({
34
+ * projectId: atlasProjectId,
35
+ * cloudProvider: "AWS",
36
+ * });
37
+ * export const numberOfEndpoints = plural.then(plural => plural.results).length;
38
+ * ```
27
39
  */
28
40
  export declare function getEncryptionAtRestPrivateEndpoints(args: GetEncryptionAtRestPrivateEndpointsArgs, opts?: pulumi.InvokeOptions): Promise<GetEncryptionAtRestPrivateEndpointsResult>;
29
41
  /**
@@ -65,14 +77,14 @@ export interface GetEncryptionAtRestPrivateEndpointsResult {
65
77
  *
66
78
  * `mongodbatlas.getEncryptionAtRestPrivateEndpoints` describes private endpoints of a particular cloud provider used for encryption at rest using customer-managed keys.
67
79
  *
68
- * > **IMPORTANT** The Encryption at Rest using Azure Key Vault over Private Endpoints feature is available by request. To request this functionality for your Atlas deployments, contact your Account Manager.
69
- * To learn more about existing limitations, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
70
- *
71
80
  * ## Example Usage
72
81
  *
73
82
  * ### S
74
83
  *
75
- * > **NOTE:** Only Azure Key Vault with Azure Private Link is supported at this time.
84
+ * > **NOTE:** Only Azure Key Vault with Azure Private Link and AWS KMS over AWS PrivateLink is supported at this time.
85
+ *
86
+ * ### Encryption At Rest Azure Key Vault Private Endpoint
87
+ * To learn more about existing limitations, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
76
88
  *
77
89
  * ```typescript
78
90
  * import * as pulumi from "@pulumi/pulumi";
@@ -84,6 +96,18 @@ export interface GetEncryptionAtRestPrivateEndpointsResult {
84
96
  * });
85
97
  * export const numberOfEndpoints = plural.then(plural => plural.results).length;
86
98
  * ```
99
+ *
100
+ * ### Encryption At Rest AWS KMS Private Endpoint
101
+ * ```typescript
102
+ * import * as pulumi from "@pulumi/pulumi";
103
+ * import * as mongodbatlas from "@pulumi/mongodbatlas";
104
+ *
105
+ * const plural = mongodbatlas.getEncryptionAtRestPrivateEndpoints({
106
+ * projectId: atlasProjectId,
107
+ * cloudProvider: "AWS",
108
+ * });
109
+ * export const numberOfEndpoints = plural.then(plural => plural.results).length;
110
+ * ```
87
111
  */
88
112
  export declare function getEncryptionAtRestPrivateEndpointsOutput(args: GetEncryptionAtRestPrivateEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEncryptionAtRestPrivateEndpointsResult>;
89
113
  /**