@pulumi/mongodbatlas 3.17.0-alpha.1723454188 → 3.17.0-alpha.1723714844

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 (60) hide show
  1. package/advancedCluster.d.ts +95 -80
  2. package/advancedCluster.js +81 -74
  3. package/advancedCluster.js.map +1 -1
  4. package/cloudBackupSchedule.d.ts +33 -15
  5. package/cloudBackupSchedule.js.map +1 -1
  6. package/cloudBackupSnapshotExportBucket.d.ts +65 -11
  7. package/cloudBackupSnapshotExportBucket.js +24 -3
  8. package/cloudBackupSnapshotExportBucket.js.map +1 -1
  9. package/cloudBackupSnapshotRestoreJob.d.ts +0 -12
  10. package/cloudBackupSnapshotRestoreJob.js +0 -2
  11. package/cloudBackupSnapshotRestoreJob.js.map +1 -1
  12. package/getAdvancedCluster.d.ts +104 -3
  13. package/getAdvancedCluster.js +91 -0
  14. package/getAdvancedCluster.js.map +1 -1
  15. package/getAdvancedClusters.d.ts +99 -0
  16. package/getAdvancedClusters.js +91 -0
  17. package/getAdvancedClusters.js.map +1 -1
  18. package/getCloudBackupSchedule.d.ts +20 -77
  19. package/getCloudBackupSchedule.js +1 -72
  20. package/getCloudBackupSchedule.js.map +1 -1
  21. package/getCloudBackupSnapshotExportBucket.d.ts +15 -14
  22. package/getCloudBackupSnapshotExportBucket.js +0 -1
  23. package/getCloudBackupSnapshotExportBucket.js.map +1 -1
  24. package/getCloudBackupSnapshotExportJob.d.ts +0 -11
  25. package/getCloudBackupSnapshotExportJob.js +0 -1
  26. package/getCloudBackupSnapshotExportJob.js.map +1 -1
  27. package/getCloudBackupSnapshotRestoreJob.d.ts +5 -27
  28. package/getCloudBackupSnapshotRestoreJob.js +0 -1
  29. package/getCloudBackupSnapshotRestoreJob.js.map +1 -1
  30. package/getCluster.d.ts +4 -4
  31. package/getCluster.js +4 -4
  32. package/getClusters.d.ts +4 -4
  33. package/getClusters.js +4 -4
  34. package/getFederatedSettingsIdentityProviders.d.ts +2 -70
  35. package/getFederatedSettingsIdentityProviders.js +2 -40
  36. package/getFederatedSettingsIdentityProviders.js.map +1 -1
  37. package/getGlobalClusterConfig.d.ts +76 -24
  38. package/getGlobalClusterConfig.js +76 -24
  39. package/getGlobalClusterConfig.js.map +1 -1
  40. package/getNetworkPeering.d.ts +0 -4
  41. package/getNetworkPeering.js +0 -4
  42. package/getNetworkPeering.js.map +1 -1
  43. package/getThirdPartyIntegration.d.ts +0 -18
  44. package/getThirdPartyIntegration.js +0 -1
  45. package/getThirdPartyIntegration.js.map +1 -1
  46. package/globalClusterConfig.d.ts +16 -14
  47. package/globalClusterConfig.js +16 -14
  48. package/globalClusterConfig.js.map +1 -1
  49. package/networkContainer.d.ts +0 -2
  50. package/networkContainer.js +0 -2
  51. package/networkContainer.js.map +1 -1
  52. package/networkPeering.d.ts +7 -2
  53. package/networkPeering.js +7 -2
  54. package/networkPeering.js.map +1 -1
  55. package/package.json +2 -2
  56. package/thirdPartyIntegration.d.ts +0 -12
  57. package/thirdPartyIntegration.js +0 -2
  58. package/thirdPartyIntegration.js.map +1 -1
  59. package/types/input.d.ts +48 -18
  60. package/types/output.d.ts +164 -70
package/types/input.d.ts CHANGED
@@ -2,7 +2,9 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "../types/input";
3
3
  export interface AdvancedClusterAdvancedConfiguration {
4
4
  /**
5
- * [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/).
5
+ * [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.
6
+ *
7
+ * @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.html.markdown
6
8
  */
7
9
  defaultReadConcern?: pulumi.Input<string>;
8
10
  /**
@@ -10,7 +12,9 @@ export interface AdvancedClusterAdvancedConfiguration {
10
12
  */
11
13
  defaultWriteConcern?: pulumi.Input<string>;
12
14
  /**
13
- * 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.
15
+ * 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. **(DEPRECATED)** This parameter has been removed as of [MongoDB 4.4](https://www.mongodb.com/docs/manual/reference/parameters/#mongodb-parameter-param.failIndexKeyTooLong).
16
+ *
17
+ * @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.html.markdown
14
18
  */
15
19
  failIndexKeyTooLong?: pulumi.Input<boolean>;
16
20
  /**
@@ -137,16 +141,26 @@ export interface AdvancedClusterReplicationSpec {
137
141
  containerId?: pulumi.Input<{
138
142
  [key: string]: pulumi.Input<string>;
139
143
  }>;
144
+ externalId?: pulumi.Input<string>;
145
+ /**
146
+ * @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.html.markdown
147
+ */
140
148
  id?: pulumi.Input<string>;
141
149
  /**
142
150
  * 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.
143
- * 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).
151
+ * 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.
152
+ *
153
+ * @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.html.markdown
144
154
  */
145
155
  numShards?: pulumi.Input<number>;
146
156
  /**
147
157
  * Configuration for the hardware specifications for nodes set for a given regionEach `regionConfigs` object describes the region's priority in elections and the number and type of MongoDB nodes that Atlas deploys to the region. Each `regionConfigs` object must have either an `analyticsSpecs` object, `electableSpecs` object, or `readOnlySpecs` object. See below
148
158
  */
149
159
  regionConfigs: pulumi.Input<pulumi.Input<inputs.AdvancedClusterReplicationSpecRegionConfig>[]>;
160
+ /**
161
+ * Unique 24-hexadecimal digit string that identifies the zone in a Global Cluster. If clusterType is GEOSHARDED, this value indicates the zone that the given shard belongs to and can be used to configure Global Cluster backup policies.
162
+ */
163
+ zoneId?: pulumi.Input<string>;
150
164
  /**
151
165
  * Name for the zone in a Global Cluster.
152
166
  */
@@ -154,7 +168,7 @@ export interface AdvancedClusterReplicationSpec {
154
168
  }
155
169
  export interface AdvancedClusterReplicationSpecRegionConfig {
156
170
  /**
157
- * Configuration for the Collection of settings that configures analytics-auto-scaling information for the cluster. The values for the `analyticsAutoScaling` parameter must be the same for every item in the `replicationSpecs` array. See below
171
+ * Configuration for the Collection of settings that configures analytics-auto-scaling information for the cluster. The values for the `analyticsAutoScaling` parameter must be the same for all `regionConfigs` in all `replicationSpecs`. See below
158
172
  */
159
173
  analyticsAutoScaling?: pulumi.Input<inputs.AdvancedClusterReplicationSpecRegionConfigAnalyticsAutoScaling>;
160
174
  /**
@@ -162,7 +176,7 @@ export interface AdvancedClusterReplicationSpecRegionConfig {
162
176
  */
163
177
  analyticsSpecs?: pulumi.Input<inputs.AdvancedClusterReplicationSpecRegionConfigAnalyticsSpecs>;
164
178
  /**
165
- * Configuration for the Collection of settings that configures auto-scaling information for the cluster. The values for the `autoScaling` parameter must be the same for every item in the `replicationSpecs` array. See below
179
+ * Configuration for the Collection of settings that configures auto-scaling information for the cluster. The values for the `autoScaling` parameter must be the same for all `regionConfigs` in all `replicationSpecs`. See below
166
180
  */
167
181
  autoScaling?: pulumi.Input<inputs.AdvancedClusterReplicationSpecRegionConfigAutoScaling>;
168
182
  /**
@@ -219,9 +233,13 @@ export interface AdvancedClusterReplicationSpecRegionConfigAnalyticsAutoScaling
219
233
  }
220
234
  export interface AdvancedClusterReplicationSpecRegionConfigAnalyticsSpecs {
221
235
  /**
222
- * Target throughput (IOPS) desired for AWS storage attached to your cluster. Set only if you selected AWS as your cloud service provider. You can't set this parameter for a multi-cloud cluster.
236
+ * Target IOPS (Input/Output Operations Per Second) desired for storage attached to this hardware. Define this attribute only if you selected AWS as your cloud service provider, `instanceSize` is set to "M30" or greater (not including "Mxx_NVME" tiers), and `ebsVolumeType` is "PROVISIONED". You can't set this attribute for a multi-cloud cluster.
223
237
  */
224
238
  diskIops?: pulumi.Input<number>;
239
+ /**
240
+ * Storage capacity that the host's root volume possesses expressed in gigabytes. This value must be equal for all shards and node types. 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. **Note:** Using `diskSizeGb` with Standard IOPS could lead to errors and configuration issues. Therefore, it should be used only with the Provisioned IOPS volume type. When using Provisioned IOPS, the diskSizeGb parameter specifies the storage capacity, but the IOPS are set independently. Ensuring that `diskSizeGb` is used exclusively with Provisioned IOPS will help avoid these issues.
241
+ */
242
+ diskSizeGb?: pulumi.Input<number>;
225
243
  /**
226
244
  * Type of storage you want to attach to your AWS-provisioned cluster. Set only if you selected AWS as your cloud service provider. You can't set this parameter for a multi-cloud cluster. Valid values are:
227
245
  * * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
@@ -229,7 +247,7 @@ export interface AdvancedClusterReplicationSpecRegionConfigAnalyticsSpecs {
229
247
  */
230
248
  ebsVolumeType?: pulumi.Input<string>;
231
249
  /**
232
- * Hardware specification for the instance sizes in this region. Each instance size has a default storage and memory capacity. The instance size you select applies to all the data-bearing hosts in your instance size.
250
+ * Hardware specification for the instance sizes in this region. Each instance size has a default storage and memory capacity. The instance size you select applies to all the data-bearing hosts in your instance size. Electable nodes and read-only nodes (known as "base nodes") within a single shard must use the same instance size. Analytics nodes can scale independently from base nodes within a shard. Both base nodes and analytics nodes can scale independently from their equivalents in other shards.
233
251
  */
234
252
  instanceSize: pulumi.Input<string>;
235
253
  /**
@@ -255,9 +273,13 @@ export interface AdvancedClusterReplicationSpecRegionConfigAutoScaling {
255
273
  }
256
274
  export interface AdvancedClusterReplicationSpecRegionConfigElectableSpecs {
257
275
  /**
258
- * Target throughput (IOPS) desired for AWS storage attached to your cluster. Set only if you selected AWS as your cloud service provider. You can't set this parameter for a multi-cloud cluster.
276
+ * Target IOPS (Input/Output Operations Per Second) desired for storage attached to this hardware. Define this attribute only if you selected AWS as your cloud service provider, `instanceSize` is set to "M30" or greater (not including "Mxx_NVME" tiers), and `ebsVolumeType` is "PROVISIONED". You can't set this attribute for a multi-cloud cluster.
259
277
  */
260
278
  diskIops?: pulumi.Input<number>;
279
+ /**
280
+ * Storage capacity that the host's root volume possesses expressed in gigabytes. This value must be equal for all shards and node types. 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. **Note:** Using `diskSizeGb` with Standard IOPS could lead to errors and configuration issues. Therefore, it should be used only with the Provisioned IOPS volume type. When using Provisioned IOPS, the diskSizeGb parameter specifies the storage capacity, but the IOPS are set independently. Ensuring that `diskSizeGb` is used exclusively with Provisioned IOPS will help avoid these issues.
281
+ */
282
+ diskSizeGb?: pulumi.Input<number>;
261
283
  /**
262
284
  * Type of storage you want to attach to your AWS-provisioned cluster. Set only if you selected AWS as your cloud service provider. You can't set this parameter for a multi-cloud cluster. Valid values are:
263
285
  * * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
@@ -265,7 +287,7 @@ export interface AdvancedClusterReplicationSpecRegionConfigElectableSpecs {
265
287
  */
266
288
  ebsVolumeType?: pulumi.Input<string>;
267
289
  /**
268
- * Hardware specification for the instance sizes in this region. Each instance size has a default storage and memory capacity. The instance size you select applies to all the data-bearing hosts in your instance size.
290
+ * Hardware specification for the instance sizes in this region. Each instance size has a default storage and memory capacity. The instance size you select applies to all the data-bearing hosts in your instance size. Electable nodes and read-only nodes (known as "base nodes") within a single shard must use the same instance size. Analytics nodes can scale independently from base nodes within a shard. Both base nodes and analytics nodes can scale independently from their equivalents in other shards.
269
291
  */
270
292
  instanceSize: pulumi.Input<string>;
271
293
  /**
@@ -275,9 +297,13 @@ export interface AdvancedClusterReplicationSpecRegionConfigElectableSpecs {
275
297
  }
276
298
  export interface AdvancedClusterReplicationSpecRegionConfigReadOnlySpecs {
277
299
  /**
278
- * Target throughput (IOPS) desired for AWS storage attached to your cluster. Set only if you selected AWS as your cloud service provider. You can't set this parameter for a multi-cloud cluster.
300
+ * Target IOPS (Input/Output Operations Per Second) desired for storage attached to this hardware. Define this attribute only if you selected AWS as your cloud service provider, `instanceSize` is set to "M30" or greater (not including "Mxx_NVME" tiers), and `ebsVolumeType` is "PROVISIONED". You can't set this attribute for a multi-cloud cluster. This parameter defaults to the cluster tier's standard IOPS value.
279
301
  */
280
302
  diskIops?: pulumi.Input<number>;
303
+ /**
304
+ * Storage capacity that the host's root volume possesses expressed in gigabytes. This value must be equal for all shards and node types. 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. **Note:** Using `diskSizeGb` with Standard IOPS could lead to errors and configuration issues. Therefore, it should be used only with the Provisioned IOPS volume type. When using Provisioned IOPS, the diskSizeGb parameter specifies the storage capacity, but the IOPS are set independently. Ensuring that `diskSizeGb` is used exclusively with Provisioned IOPS will help avoid these issues.
305
+ */
306
+ diskSizeGb?: pulumi.Input<number>;
281
307
  /**
282
308
  * Type of storage you want to attach to your AWS-provisioned cluster. Set only if you selected AWS as your cloud service provider. You can't set this parameter for a multi-cloud cluster. Valid values are:
283
309
  * * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
@@ -285,7 +311,7 @@ export interface AdvancedClusterReplicationSpecRegionConfigReadOnlySpecs {
285
311
  */
286
312
  ebsVolumeType?: pulumi.Input<string>;
287
313
  /**
288
- * Hardware specification for the instance sizes in this region. Each instance size has a default storage and memory capacity. The instance size you select applies to all the data-bearing hosts in your instance size.
314
+ * Hardware specification for the instance sizes in this region. Each instance size has a default storage and memory capacity. The instance size you select applies to all the data-bearing hosts in your instance size. Electable nodes and read-only nodes (known as "base nodes") within a single shard must use the same instance size. Analytics nodes can scale independently from base nodes within a shard. Both base nodes and analytics nodes can scale independently from their equivalents in other shards.
289
315
  */
290
316
  instanceSize: pulumi.Input<string>;
291
317
  /**
@@ -623,13 +649,19 @@ export interface CloudBackupScheduleCopySetting {
623
649
  */
624
650
  regionName?: pulumi.Input<string>;
625
651
  /**
626
- * 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).
652
+ * 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.
653
+ *
654
+ * @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.html.markdown
627
655
  */
628
656
  replicationSpecId?: pulumi.Input<string>;
629
657
  /**
630
658
  * Flag that indicates whether to copy the oplogs to the target region. You can use the oplogs to perform point-in-time restores.
631
659
  */
632
660
  shouldCopyOplogs?: pulumi.Input<boolean>;
661
+ /**
662
+ * Unique 24-hexadecimal digit string that identifies the 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 appropriate value for `zoneId`, do a GET request to Return One Cluster from One Project and consult the replicationSpecs array Return One Cluster From One Project. Alternately, use `mongodbatlas.AdvancedCluster` data source or resource and reference `replication_specs.#.zone_id`.
663
+ */
664
+ zoneId?: pulumi.Input<string>;
633
665
  }
634
666
  export interface CloudBackupScheduleExport {
635
667
  /**
@@ -827,6 +859,8 @@ export interface CloudProviderAccessSetupAzureConfig {
827
859
  export interface ClusterAdvancedConfiguration {
828
860
  /**
829
861
  * [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/).
862
+ *
863
+ * @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.html.markdown
830
864
  */
831
865
  defaultReadConcern?: pulumi.Input<string>;
832
866
  /**
@@ -835,6 +869,8 @@ export interface ClusterAdvancedConfiguration {
835
869
  defaultWriteConcern?: pulumi.Input<string>;
836
870
  /**
837
871
  * 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.
872
+ *
873
+ * @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.html.markdown
838
874
  */
839
875
  failIndexKeyTooLong?: pulumi.Input<boolean>;
840
876
  /**
@@ -1790,12 +1826,6 @@ export interface PrivateLinkEndpointServiceEndpoint {
1790
1826
  * Private IP address of the endpoint you created in GCP.
1791
1827
  */
1792
1828
  ipAddress?: pulumi.Input<string>;
1793
- /**
1794
- * Unique alphanumeric and special character strings that identify the service attachment associated with the endpoint.
1795
- *
1796
- * @deprecated This parameter is deprecated and will be removed in version 1.18.0.
1797
- */
1798
- serviceAttachmentName?: pulumi.Input<string>;
1799
1829
  /**
1800
1830
  * Status of the endpoint. Atlas returns one of the [values shown above](https://docs.atlas.mongodb.com/reference/api/private-endpoints-endpoint-create-one/#std-label-ref-status-field).
1801
1831
  */