@pulumi/mongodbatlas 3.15.0 → 3.15.1
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 -0
- package/advancedCluster.js.map +1 -1
- package/apiKey.d.ts +27 -0
- package/apiKey.js.map +1 -1
- package/cloudBackupSnapshotExportJob.d.ts +8 -0
- package/cloudBackupSnapshotExportJob.js.map +1 -1
- package/cloudBackupSnapshotRestoreJob.d.ts +32 -0
- package/cloudBackupSnapshotRestoreJob.js.map +1 -1
- package/cluster.d.ts +30 -0
- package/cluster.js.map +1 -1
- package/clusterOutageSimulation.d.ts +12 -0
- package/clusterOutageSimulation.js.map +1 -1
- package/databaseUser.d.ts +33 -0
- package/databaseUser.js.map +1 -1
- package/federatedDatabaseInstance.d.ts +20 -0
- package/federatedDatabaseInstance.js +16 -0
- package/federatedDatabaseInstance.js.map +1 -1
- package/federatedQueryLimit.d.ts +6 -0
- package/federatedQueryLimit.js.map +1 -1
- package/federatedSettingsOrgRoleMapping.d.ts +8 -0
- package/federatedSettingsOrgRoleMapping.js +2 -0
- package/federatedSettingsOrgRoleMapping.js.map +1 -1
- package/getApiKey.d.ts +5 -0
- package/getApiKey.js.map +1 -1
- package/getCloudBackupSnapshotExportBucket.d.ts +11 -2
- package/getCloudBackupSnapshotExportBucket.js.map +1 -1
- package/getCloudBackupSnapshotExportBuckets.d.ts +1 -0
- package/getCloudBackupSnapshotExportBuckets.js.map +1 -1
- package/getCloudBackupSnapshotExportJob.d.ts +15 -2
- package/getCloudBackupSnapshotExportJob.js.map +1 -1
- package/getCloudBackupSnapshotExportJobs.d.ts +1 -0
- package/getCloudBackupSnapshotExportJobs.js.map +1 -1
- package/getCloudBackupSnapshotRestoreJob.d.ts +26 -5
- package/getCloudBackupSnapshotRestoreJob.js +1 -0
- package/getCloudBackupSnapshotRestoreJob.js.map +1 -1
- package/getCloudBackupSnapshotRestoreJobs.d.ts +1 -0
- package/getCloudBackupSnapshotRestoreJobs.js.map +1 -1
- package/getCloudBackupSnapshots.d.ts +1 -0
- package/getCloudBackupSnapshots.js.map +1 -1
- package/getClusterOutageSimulation.d.ts +6 -0
- package/getClusterOutageSimulation.js.map +1 -1
- package/getDataLakePipeline.d.ts +1 -0
- package/getDataLakePipeline.js.map +1 -1
- package/getDataLakePipelines.d.ts +1 -0
- package/getDataLakePipelines.js.map +1 -1
- package/getDatabaseUser.d.ts +2 -0
- package/getDatabaseUser.js.map +1 -1
- package/getFederatedDatabaseInstance.d.ts +2 -0
- package/getFederatedDatabaseInstance.js.map +1 -1
- package/getFederatedQueryLimit.d.ts +2 -0
- package/getFederatedQueryLimit.js.map +1 -1
- package/getFederatedSettingsIdentityProviders.d.ts +1 -0
- package/getFederatedSettingsIdentityProviders.js.map +1 -1
- package/getFederatedSettingsOrgConfigs.d.ts +1 -0
- package/getFederatedSettingsOrgConfigs.js.map +1 -1
- package/getFederatedSettingsOrgRoleMappings.d.ts +1 -0
- package/getFederatedSettingsOrgRoleMappings.js.map +1 -1
- package/getPrivateLinkEndpoint.d.ts +5 -0
- package/getPrivateLinkEndpoint.js.map +1 -1
- package/getPrivateLinkEndpointService.d.ts +14 -0
- package/getPrivateLinkEndpointService.js.map +1 -1
- package/getThirdPartyIntegration.d.ts +7 -0
- package/getThirdPartyIntegration.js.map +1 -1
- package/globalClusterConfig.d.ts +2 -0
- package/globalClusterConfig.js +2 -0
- package/globalClusterConfig.js.map +1 -1
- package/package.json +3 -2
- package/privateLinkEndpoint.d.ts +28 -0
- package/privateLinkEndpoint.js.map +1 -1
- package/privateLinkEndpointService.d.ts +28 -0
- package/privateLinkEndpointService.js.map +1 -1
- package/project.d.ts +1 -1
- package/thirdPartyIntegration.d.ts +9 -0
- package/thirdPartyIntegration.js.map +1 -1
- package/types/input.d.ts +32 -3
- package/types/output.d.ts +116 -3
- package/package.json.bak +0 -27
package/types/output.d.ts
CHANGED
|
@@ -134,6 +134,11 @@ export interface AdvancedClusterReplicationSpecRegionConfig {
|
|
|
134
134
|
/**
|
|
135
135
|
* Cloud service provider on which the servers are provisioned.
|
|
136
136
|
* The possible values are:
|
|
137
|
+
*
|
|
138
|
+
* - `AWS` - Amazon AWS
|
|
139
|
+
* - `GCP` - Google Cloud Platform
|
|
140
|
+
* - `AZURE` - Microsoft Azure
|
|
141
|
+
* - `TENANT` - M2 or M5 multi-tenant cluster. Use `replication_specs.#.region_configs.#.backing_provider_name` to set the cloud service provider.
|
|
137
142
|
*/
|
|
138
143
|
providerName: string;
|
|
139
144
|
/**
|
|
@@ -171,6 +176,8 @@ export interface AdvancedClusterReplicationSpecRegionConfigAnalyticsSpecs {
|
|
|
171
176
|
diskIops: number;
|
|
172
177
|
/**
|
|
173
178
|
* 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:
|
|
179
|
+
* * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
|
|
180
|
+
* * `PROVISIONED` volume types must fall within the allowable IOPS range for the selected volume size.
|
|
174
181
|
*/
|
|
175
182
|
ebsVolumeType?: string;
|
|
176
183
|
/**
|
|
@@ -205,6 +212,8 @@ export interface AdvancedClusterReplicationSpecRegionConfigElectableSpecs {
|
|
|
205
212
|
diskIops: number;
|
|
206
213
|
/**
|
|
207
214
|
* 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:
|
|
215
|
+
* * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
|
|
216
|
+
* * `PROVISIONED` volume types must fall within the allowable IOPS range for the selected volume size.
|
|
208
217
|
*/
|
|
209
218
|
ebsVolumeType?: string;
|
|
210
219
|
/**
|
|
@@ -223,6 +232,8 @@ export interface AdvancedClusterReplicationSpecRegionConfigReadOnlySpecs {
|
|
|
223
232
|
diskIops: number;
|
|
224
233
|
/**
|
|
225
234
|
* 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:
|
|
235
|
+
* * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
|
|
236
|
+
* * `PROVISIONED` volume types must fall within the allowable IOPS range for the selected volume size.
|
|
226
237
|
*/
|
|
227
238
|
ebsVolumeType?: string;
|
|
228
239
|
/**
|
|
@@ -682,6 +693,11 @@ export interface ClusterConnectionStringPrivateEndpointEndpoint {
|
|
|
682
693
|
* Cloud service provider on which the servers are provisioned.
|
|
683
694
|
*
|
|
684
695
|
* The possible values are:
|
|
696
|
+
*
|
|
697
|
+
* - `AWS` - Amazon AWS
|
|
698
|
+
* - `GCP` - Google Cloud Platform
|
|
699
|
+
* - `AZURE` - Microsoft Azure
|
|
700
|
+
* - `TENANT` - A multi-tenant deployment on one of the supported cloud service providers. Only valid when providerSettings.instanceSizeName is either M2 or M5.
|
|
685
701
|
*/
|
|
686
702
|
providerName: string;
|
|
687
703
|
region: string;
|
|
@@ -701,6 +717,9 @@ export interface ClusterLabel {
|
|
|
701
717
|
export interface ClusterOutageSimulationOutageFilter {
|
|
702
718
|
/**
|
|
703
719
|
* The cloud provider of the region that undergoes the outage simulation. Following values are supported:
|
|
720
|
+
* * `AWS`
|
|
721
|
+
* * `GCP`
|
|
722
|
+
* * `AZURE`
|
|
704
723
|
*/
|
|
705
724
|
cloudProvider: string;
|
|
706
725
|
/**
|
|
@@ -709,6 +728,7 @@ export interface ClusterOutageSimulationOutageFilter {
|
|
|
709
728
|
regionName: string;
|
|
710
729
|
/**
|
|
711
730
|
* The type of cluster outage simulation. Following values are supported:
|
|
731
|
+
* * `REGION` - Simulates a cluster outage for a region
|
|
712
732
|
*/
|
|
713
733
|
type: string;
|
|
714
734
|
}
|
|
@@ -1028,9 +1048,6 @@ export interface FederatedDatabaseInstanceCloudProviderConfigAws {
|
|
|
1028
1048
|
* Amazon Resource Name (ARN) of the user that the Federated Database Instance assumes when accessing S3 Bucket data stores.
|
|
1029
1049
|
*/
|
|
1030
1050
|
iamUserArn: string;
|
|
1031
|
-
/**
|
|
1032
|
-
* Unique identifier of the role that the data lake can use to access the data stores.
|
|
1033
|
-
*/
|
|
1034
1051
|
roleId: string;
|
|
1035
1052
|
testS3Bucket: string;
|
|
1036
1053
|
}
|
|
@@ -1347,6 +1364,8 @@ export interface GetAdvancedClusterReplicationSpecRegionConfigAnalyticsSpecs {
|
|
|
1347
1364
|
diskIops: number;
|
|
1348
1365
|
/**
|
|
1349
1366
|
* Type of storage you want to attach to your AWS-provisioned cluster.
|
|
1367
|
+
* * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
|
|
1368
|
+
* * `PROVISIONED` volume types must fall within the allowable IOPS range for the selected volume size.
|
|
1350
1369
|
*/
|
|
1351
1370
|
ebsVolumeType?: string;
|
|
1352
1371
|
/**
|
|
@@ -1388,6 +1407,8 @@ export interface GetAdvancedClusterReplicationSpecRegionConfigElectableSpecs {
|
|
|
1388
1407
|
diskIops: number;
|
|
1389
1408
|
/**
|
|
1390
1409
|
* Type of storage you want to attach to your AWS-provisioned cluster.
|
|
1410
|
+
* * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
|
|
1411
|
+
* * `PROVISIONED` volume types must fall within the allowable IOPS range for the selected volume size.
|
|
1391
1412
|
*/
|
|
1392
1413
|
ebsVolumeType?: string;
|
|
1393
1414
|
/**
|
|
@@ -1406,6 +1427,8 @@ export interface GetAdvancedClusterReplicationSpecRegionConfigReadOnlySpecs {
|
|
|
1406
1427
|
diskIops: number;
|
|
1407
1428
|
/**
|
|
1408
1429
|
* Type of storage you want to attach to your AWS-provisioned cluster.
|
|
1430
|
+
* * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
|
|
1431
|
+
* * `PROVISIONED` volume types must fall within the allowable IOPS range for the selected volume size.
|
|
1409
1432
|
*/
|
|
1410
1433
|
ebsVolumeType?: string;
|
|
1411
1434
|
/**
|
|
@@ -1698,6 +1721,8 @@ export interface GetAdvancedClustersResultReplicationSpecRegionConfigAnalyticsSp
|
|
|
1698
1721
|
diskIops: number;
|
|
1699
1722
|
/**
|
|
1700
1723
|
* Type of storage you want to attach to your AWS-provisioned cluster.
|
|
1724
|
+
* * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
|
|
1725
|
+
* * `PROVISIONED` volume types must fall within the allowable IOPS range for the selected volume size.
|
|
1701
1726
|
*/
|
|
1702
1727
|
ebsVolumeType?: string;
|
|
1703
1728
|
/**
|
|
@@ -1738,6 +1763,8 @@ export interface GetAdvancedClustersResultReplicationSpecRegionConfigElectableSp
|
|
|
1738
1763
|
diskIops: number;
|
|
1739
1764
|
/**
|
|
1740
1765
|
* Type of storage you want to attach to your AWS-provisioned cluster.
|
|
1766
|
+
* * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
|
|
1767
|
+
* * `PROVISIONED` volume types must fall within the allowable IOPS range for the selected volume size.
|
|
1741
1768
|
*/
|
|
1742
1769
|
ebsVolumeType?: string;
|
|
1743
1770
|
/**
|
|
@@ -1756,6 +1783,8 @@ export interface GetAdvancedClustersResultReplicationSpecRegionConfigReadOnlySpe
|
|
|
1756
1783
|
diskIops: number;
|
|
1757
1784
|
/**
|
|
1758
1785
|
* Type of storage you want to attach to your AWS-provisioned cluster.
|
|
1786
|
+
* * `STANDARD` volume types can't exceed the default IOPS rate for the selected volume size.
|
|
1787
|
+
* * `PROVISIONED` volume types must fall within the allowable IOPS range for the selected volume size.
|
|
1759
1788
|
*/
|
|
1760
1789
|
ebsVolumeType?: string;
|
|
1761
1790
|
/**
|
|
@@ -1785,10 +1814,17 @@ export interface GetAlertConfigurationMatcher {
|
|
|
1785
1814
|
/**
|
|
1786
1815
|
* The operator to apply when checking the current metric value against the threshold value.
|
|
1787
1816
|
* Accepted values are:
|
|
1817
|
+
* - `GREATER_THAN`
|
|
1818
|
+
* - `LESS_THAN`
|
|
1788
1819
|
*/
|
|
1789
1820
|
operator: string;
|
|
1790
1821
|
/**
|
|
1791
1822
|
* Value to test with the specified operator. If `fieldName` is set to TYPE_NAME, you can match on the following values:
|
|
1823
|
+
* - `PRIMARY`
|
|
1824
|
+
* - `SECONDARY`
|
|
1825
|
+
* - `STANDALONE`
|
|
1826
|
+
* - `CONFIG`
|
|
1827
|
+
* - `MONGOS`
|
|
1792
1828
|
*/
|
|
1793
1829
|
value: string;
|
|
1794
1830
|
}
|
|
@@ -1804,6 +1840,8 @@ export interface GetAlertConfigurationMetricThresholdConfig {
|
|
|
1804
1840
|
/**
|
|
1805
1841
|
* The operator to apply when checking the current metric value against the threshold value.
|
|
1806
1842
|
* Accepted values are:
|
|
1843
|
+
* - `GREATER_THAN`
|
|
1844
|
+
* - `LESS_THAN`
|
|
1807
1845
|
*/
|
|
1808
1846
|
operator: string;
|
|
1809
1847
|
/**
|
|
@@ -1896,6 +1934,19 @@ export interface GetAlertConfigurationNotification {
|
|
|
1896
1934
|
/**
|
|
1897
1935
|
* Type of alert notification.
|
|
1898
1936
|
* Accepted values are:
|
|
1937
|
+
* - `DATADOG`
|
|
1938
|
+
* - `EMAIL`
|
|
1939
|
+
* - `GROUP` (Project)
|
|
1940
|
+
* - `OPS_GENIE`
|
|
1941
|
+
* - `ORG`
|
|
1942
|
+
* - `PAGER_DUTY`
|
|
1943
|
+
* - `SLACK`
|
|
1944
|
+
* - `SMS`
|
|
1945
|
+
* - `TEAM`
|
|
1946
|
+
* - `USER`
|
|
1947
|
+
* - `VICTOR_OPS`
|
|
1948
|
+
* - `WEBHOOK`
|
|
1949
|
+
* - `MICROSOFT_TEAMS`
|
|
1899
1950
|
*/
|
|
1900
1951
|
typeName: string;
|
|
1901
1952
|
/**
|
|
@@ -1924,6 +1975,11 @@ export interface GetAlertConfigurationOutput {
|
|
|
1924
1975
|
type: string;
|
|
1925
1976
|
/**
|
|
1926
1977
|
* Value to test with the specified operator. If `fieldName` is set to TYPE_NAME, you can match on the following values:
|
|
1978
|
+
* - `PRIMARY`
|
|
1979
|
+
* - `SECONDARY`
|
|
1980
|
+
* - `STANDALONE`
|
|
1981
|
+
* - `CONFIG`
|
|
1982
|
+
* - `MONGOS`
|
|
1927
1983
|
*/
|
|
1928
1984
|
value: string;
|
|
1929
1985
|
}
|
|
@@ -1931,6 +1987,8 @@ export interface GetAlertConfigurationThresholdConfig {
|
|
|
1931
1987
|
/**
|
|
1932
1988
|
* The operator to apply when checking the current metric value against the threshold value.
|
|
1933
1989
|
* Accepted values are:
|
|
1990
|
+
* - `GREATER_THAN`
|
|
1991
|
+
* - `LESS_THAN`
|
|
1934
1992
|
*/
|
|
1935
1993
|
operator: string;
|
|
1936
1994
|
/**
|
|
@@ -2000,10 +2058,17 @@ export interface GetAlertConfigurationsResultMatcher {
|
|
|
2000
2058
|
/**
|
|
2001
2059
|
* The operator to apply when checking the current metric value against the threshold value.
|
|
2002
2060
|
* Accepted values are:
|
|
2061
|
+
* - `GREATER_THAN`
|
|
2062
|
+
* - `LESS_THAN`
|
|
2003
2063
|
*/
|
|
2004
2064
|
operator: string;
|
|
2005
2065
|
/**
|
|
2006
2066
|
* Value to test with the specified operator. If `fieldName` is set to TYPE_NAME, you can match on the following values:
|
|
2067
|
+
* - `PRIMARY`
|
|
2068
|
+
* - `SECONDARY`
|
|
2069
|
+
* - `STANDALONE`
|
|
2070
|
+
* - `CONFIG`
|
|
2071
|
+
* - `MONGOS`
|
|
2007
2072
|
*/
|
|
2008
2073
|
value: string;
|
|
2009
2074
|
}
|
|
@@ -2019,6 +2084,8 @@ export interface GetAlertConfigurationsResultMetricThresholdConfig {
|
|
|
2019
2084
|
/**
|
|
2020
2085
|
* The operator to apply when checking the current metric value against the threshold value.
|
|
2021
2086
|
* Accepted values are:
|
|
2087
|
+
* - `GREATER_THAN`
|
|
2088
|
+
* - `LESS_THAN`
|
|
2022
2089
|
*/
|
|
2023
2090
|
operator: string;
|
|
2024
2091
|
/**
|
|
@@ -2111,6 +2178,19 @@ export interface GetAlertConfigurationsResultNotification {
|
|
|
2111
2178
|
/**
|
|
2112
2179
|
* Type of alert notification.
|
|
2113
2180
|
* Accepted values are:
|
|
2181
|
+
* - `DATADOG`
|
|
2182
|
+
* - `EMAIL`
|
|
2183
|
+
* - `GROUP` (Project)
|
|
2184
|
+
* - `OPS_GENIE`
|
|
2185
|
+
* - `ORG`
|
|
2186
|
+
* - `PAGER_DUTY`
|
|
2187
|
+
* - `SLACK`
|
|
2188
|
+
* - `SMS`
|
|
2189
|
+
* - `TEAM`
|
|
2190
|
+
* - `USER`
|
|
2191
|
+
* - `VICTOR_OPS`
|
|
2192
|
+
* - `WEBHOOK`
|
|
2193
|
+
* - `MICROSOFT_TEAMS`
|
|
2114
2194
|
*/
|
|
2115
2195
|
typeName: string;
|
|
2116
2196
|
/**
|
|
@@ -2139,6 +2219,11 @@ export interface GetAlertConfigurationsResultOutput {
|
|
|
2139
2219
|
type: string;
|
|
2140
2220
|
/**
|
|
2141
2221
|
* Value to test with the specified operator. If `fieldName` is set to TYPE_NAME, you can match on the following values:
|
|
2222
|
+
* - `PRIMARY`
|
|
2223
|
+
* - `SECONDARY`
|
|
2224
|
+
* - `STANDALONE`
|
|
2225
|
+
* - `CONFIG`
|
|
2226
|
+
* - `MONGOS`
|
|
2142
2227
|
*/
|
|
2143
2228
|
value: string;
|
|
2144
2229
|
}
|
|
@@ -2146,6 +2231,8 @@ export interface GetAlertConfigurationsResultThresholdConfig {
|
|
|
2146
2231
|
/**
|
|
2147
2232
|
* The operator to apply when checking the current metric value against the threshold value.
|
|
2148
2233
|
* Accepted values are:
|
|
2234
|
+
* - `GREATER_THAN`
|
|
2235
|
+
* - `LESS_THAN`
|
|
2149
2236
|
*/
|
|
2150
2237
|
operator: string;
|
|
2151
2238
|
/**
|
|
@@ -2586,6 +2673,10 @@ export interface GetCloudBackupSnapshotExportJobsResult {
|
|
|
2586
2673
|
snapshotId: string;
|
|
2587
2674
|
/**
|
|
2588
2675
|
* Status of the export job. Value can be one of the following:
|
|
2676
|
+
* * `Queued` - indicates that the export job is queued
|
|
2677
|
+
* * `InProgress` - indicates that the snapshot is being exported
|
|
2678
|
+
* * `Successful` - indicates that the export job has completed successfully
|
|
2679
|
+
* * `Failed` - indicates that the export job has failed
|
|
2589
2680
|
*/
|
|
2590
2681
|
state: string;
|
|
2591
2682
|
}
|
|
@@ -2630,6 +2721,8 @@ export interface GetCloudBackupSnapshotRestoreJobsResult {
|
|
|
2630
2721
|
cancelled: boolean;
|
|
2631
2722
|
/**
|
|
2632
2723
|
* UTC ISO 8601 formatted point in time when Atlas created the restore job.
|
|
2724
|
+
*
|
|
2725
|
+
* @deprecated This parameter is deprecated and will be removed in version 1.18.0.
|
|
2633
2726
|
*/
|
|
2634
2727
|
createdAt: string;
|
|
2635
2728
|
/**
|
|
@@ -2673,6 +2766,9 @@ export interface GetCloudBackupSnapshotRestoreJobsResult {
|
|
|
2673
2766
|
targetProjectId: string;
|
|
2674
2767
|
/**
|
|
2675
2768
|
* Timestamp in ISO 8601 date and time format in UTC when the snapshot associated to snapshotId was taken.
|
|
2769
|
+
* * `oplogTs` - Timestamp in the number of seconds that have elapsed since the UNIX epoch.
|
|
2770
|
+
* * `oplogInc` - Oplog operation number from which to you want to restore this snapshot.
|
|
2771
|
+
* * `pointInTimeUTCSeconds` - Timestamp in the number of seconds that have elapsed since the UNIX epoch.
|
|
2676
2772
|
*/
|
|
2677
2773
|
timestamp: string;
|
|
2678
2774
|
}
|
|
@@ -2889,6 +2985,9 @@ export interface GetClusterLabel {
|
|
|
2889
2985
|
export interface GetClusterOutageSimulationOutageFilter {
|
|
2890
2986
|
/**
|
|
2891
2987
|
* The cloud provider of the region that undergoes the outage simulation. Following values are supported:
|
|
2988
|
+
* * `AWS`
|
|
2989
|
+
* * `GCP`
|
|
2990
|
+
* * `AZURE`
|
|
2892
2991
|
*/
|
|
2893
2992
|
cloudProvider: string;
|
|
2894
2993
|
/**
|
|
@@ -2897,6 +2996,7 @@ export interface GetClusterOutageSimulationOutageFilter {
|
|
|
2897
2996
|
regionName: string;
|
|
2898
2997
|
/**
|
|
2899
2998
|
* The type of cluster outage simulation. Following values are supported:
|
|
2999
|
+
* * `REGION` (Simulates a cluster outage for a region)
|
|
2900
3000
|
*/
|
|
2901
3001
|
type: string;
|
|
2902
3002
|
}
|
|
@@ -3685,6 +3785,8 @@ export interface GetDatabaseUsersResult {
|
|
|
3685
3785
|
ldapAuthType: string;
|
|
3686
3786
|
/**
|
|
3687
3787
|
* (Optional) Human-readable label that indicates whether the new database user authenticates with OIDC (OpenID Connect) federated authentication. If no value is given, Atlas uses the default value of `NONE`. The accepted types are:
|
|
3788
|
+
* * `NONE` - The user does not use OIDC federated authentication.
|
|
3789
|
+
* * `IDP_GROUP` - Create a OIDC federated authentication user. To learn more about OIDC federated authentication, see [Set up Workforce Identity Federation with OIDC](https://www.mongodb.com/docs/atlas/security-oidc/).
|
|
3688
3790
|
*/
|
|
3689
3791
|
oidcAuthType: string;
|
|
3690
3792
|
/**
|
|
@@ -3969,6 +4071,8 @@ export interface GetFederatedDatabaseInstancesResult {
|
|
|
3969
4071
|
projectId: string;
|
|
3970
4072
|
/**
|
|
3971
4073
|
* Current state of the Federated Database Instance:
|
|
4074
|
+
* * `ACTIVE` - The Federated Database Instance is active and verified. You can query the data stores associated with the Federated Database Instance.
|
|
4075
|
+
* * `DELETED` - The Federated Database Instance was deleted.
|
|
3972
4076
|
*/
|
|
3973
4077
|
state: string;
|
|
3974
4078
|
/**
|
|
@@ -4130,6 +4234,8 @@ export interface GetFederatedQueryLimitsResult {
|
|
|
4130
4234
|
currentUsage: number;
|
|
4131
4235
|
/**
|
|
4132
4236
|
* Default value of the limit.
|
|
4237
|
+
* * `lastModifiedDate` - Only used for Data Federation limits. Timestamp that indicates when this usage limit was last modified. This field uses the ISO 8601 timestamp format in UTC.
|
|
4238
|
+
* * `maximumLimit` - Maximum value of the limit.
|
|
4133
4239
|
*/
|
|
4134
4240
|
defaultLimit: number;
|
|
4135
4241
|
lastModifiedDate: string;
|
|
@@ -5449,6 +5555,7 @@ export interface GetThirdPartyIntegrationsResult {
|
|
|
5449
5555
|
id: string;
|
|
5450
5556
|
/**
|
|
5451
5557
|
* Your Microsoft Teams incoming webhook URL.
|
|
5558
|
+
* * `PROMETHEUS`
|
|
5452
5559
|
*/
|
|
5453
5560
|
microsoftTeamsWebhookUrl?: string;
|
|
5454
5561
|
/**
|
|
@@ -5457,10 +5564,12 @@ export interface GetThirdPartyIntegrationsResult {
|
|
|
5457
5564
|
projectId: string;
|
|
5458
5565
|
/**
|
|
5459
5566
|
* Two-letter code that indicates which API URL to use. See the `region` response field of [MongoDB API Third-Party Service Integration documentation](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Third-Party-Integrations/operation/getThirdPartyIntegration) for more details. Opsgenie will use US by default.
|
|
5567
|
+
* * `VICTOR_OPS`
|
|
5460
5568
|
*/
|
|
5461
5569
|
region: string;
|
|
5462
5570
|
/**
|
|
5463
5571
|
* An optional field for your Routing Key.
|
|
5572
|
+
* * `WEBHOOK`
|
|
5464
5573
|
*/
|
|
5465
5574
|
routingKey: string;
|
|
5466
5575
|
/**
|
|
@@ -5471,6 +5580,7 @@ export interface GetThirdPartyIntegrationsResult {
|
|
|
5471
5580
|
scheme?: string;
|
|
5472
5581
|
/**
|
|
5473
5582
|
* An optional field for your webhook secret.
|
|
5583
|
+
* * `MICROSOFT_TEAMS`
|
|
5474
5584
|
*/
|
|
5475
5585
|
secret: string;
|
|
5476
5586
|
/**
|
|
@@ -5479,6 +5589,7 @@ export interface GetThirdPartyIntegrationsResult {
|
|
|
5479
5589
|
serviceDiscovery?: string;
|
|
5480
5590
|
/**
|
|
5481
5591
|
* Your Service Key.
|
|
5592
|
+
* * `DATADOG`
|
|
5482
5593
|
*/
|
|
5483
5594
|
serviceKey: string;
|
|
5484
5595
|
teamName: string;
|
|
@@ -5619,6 +5730,8 @@ export interface PrivateLinkEndpointServiceEndpoint {
|
|
|
5619
5730
|
ipAddress?: string;
|
|
5620
5731
|
/**
|
|
5621
5732
|
* Unique alphanumeric and special character strings that identify the service attachment associated with the endpoint.
|
|
5733
|
+
*
|
|
5734
|
+
* @deprecated This parameter is deprecated and will be removed in version 1.18.0.
|
|
5622
5735
|
*/
|
|
5623
5736
|
serviceAttachmentName: string;
|
|
5624
5737
|
/**
|
package/package.json.bak
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@pulumi/mongodbatlas",
|
|
3
|
-
"version": "${VERSION}",
|
|
4
|
-
"description": "A Pulumi package for creating and managing mongodbatlas cloud resources.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"pulumi",
|
|
7
|
-
"mongodbatlas"
|
|
8
|
-
],
|
|
9
|
-
"homepage": "https://pulumi.io",
|
|
10
|
-
"repository": "https://github.com/pulumi/pulumi-mongodbatlas",
|
|
11
|
-
"license": "Apache-2.0",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build": "tsc"
|
|
14
|
-
},
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"@pulumi/pulumi": "^3.0.0"
|
|
17
|
-
},
|
|
18
|
-
"devDependencies": {
|
|
19
|
-
"@types/mime": "^2.0.0",
|
|
20
|
-
"@types/node": "^10.0.0",
|
|
21
|
-
"typescript": "^4.3.5"
|
|
22
|
-
},
|
|
23
|
-
"pulumi": {
|
|
24
|
-
"resource": true,
|
|
25
|
-
"name": "mongodbatlas"
|
|
26
|
-
}
|
|
27
|
-
}
|