mongodb-mcp-server 0.1.1 → 0.1.3
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/.dockerignore +11 -0
- package/.github/pull_request_template.md +5 -0
- package/.github/workflows/check-pr-title.yml +29 -0
- package/.github/workflows/code_health.yaml +3 -3
- package/.github/workflows/docker.yaml +57 -0
- package/.github/workflows/stale.yml +32 -0
- package/.smithery/Dockerfile +30 -0
- package/.smithery/smithery.yaml +73 -0
- package/CONTRIBUTING.md +1 -1
- package/Dockerfile +10 -0
- package/README.md +150 -15
- package/dist/common/atlas/apiClient.js +10 -1
- package/dist/common/atlas/apiClient.js.map +1 -1
- package/dist/common/atlas/cluster.js +1 -1
- package/dist/common/atlas/cluster.js.map +1 -1
- package/dist/config.js +1 -0
- package/dist/config.js.map +1 -1
- package/dist/errors.js +1 -0
- package/dist/errors.js.map +1 -1
- package/dist/helpers/indexCheck.js +63 -0
- package/dist/helpers/indexCheck.js.map +1 -0
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -1
- package/dist/logger.js +4 -0
- package/dist/logger.js.map +1 -1
- package/dist/tools/atlas/create/createProject.js +5 -1
- package/dist/tools/atlas/create/createProject.js.map +1 -1
- package/dist/tools/atlas/read/listAlerts.js +41 -0
- package/dist/tools/atlas/read/listAlerts.js.map +1 -0
- package/dist/tools/atlas/read/listProjects.js +3 -1
- package/dist/tools/atlas/read/listProjects.js.map +1 -1
- package/dist/tools/atlas/tools.js +2 -0
- package/dist/tools/atlas/tools.js.map +1 -1
- package/dist/tools/mongodb/delete/deleteMany.js +18 -0
- package/dist/tools/mongodb/delete/deleteMany.js.map +1 -1
- package/dist/tools/mongodb/metadata/explain.js +1 -1
- package/dist/tools/mongodb/metadata/explain.js.map +1 -1
- package/dist/tools/mongodb/metadata/listDatabases.js.map +1 -1
- package/dist/tools/mongodb/mongodbTool.js +10 -0
- package/dist/tools/mongodb/mongodbTool.js.map +1 -1
- package/dist/tools/mongodb/read/aggregate.js +9 -0
- package/dist/tools/mongodb/read/aggregate.js.map +1 -1
- package/dist/tools/mongodb/read/count.js +15 -2
- package/dist/tools/mongodb/read/count.js.map +1 -1
- package/dist/tools/mongodb/read/find.js +7 -0
- package/dist/tools/mongodb/read/find.js.map +1 -1
- package/dist/tools/mongodb/update/updateMany.js +20 -0
- package/dist/tools/mongodb/update/updateMany.js.map +1 -1
- package/dist/tools/tool.js +34 -2
- package/dist/tools/tool.js.map +1 -1
- package/package.json +9 -9
- package/scripts/apply.ts +4 -4
- package/scripts/filter.ts +1 -0
- package/src/common/atlas/apiClient.ts +11 -1
- package/src/common/atlas/cluster.ts +1 -2
- package/src/common/atlas/openapi.d.ts +1242 -28
- package/src/config.ts +2 -0
- package/src/errors.ts +1 -0
- package/src/helpers/indexCheck.ts +83 -0
- package/src/index.ts +20 -0
- package/src/logger.ts +5 -0
- package/src/tools/atlas/create/createProject.ts +7 -1
- package/src/tools/atlas/read/listAlerts.ts +45 -0
- package/src/tools/atlas/read/listProjects.ts +4 -2
- package/src/tools/atlas/tools.ts +2 -0
- package/src/tools/mongodb/delete/deleteMany.ts +20 -0
- package/src/tools/mongodb/metadata/explain.ts +1 -1
- package/src/tools/mongodb/metadata/listDatabases.ts +0 -1
- package/src/tools/mongodb/mongodbTool.ts +10 -0
- package/src/tools/mongodb/read/aggregate.ts +11 -0
- package/src/tools/mongodb/read/count.ts +18 -2
- package/src/tools/mongodb/read/find.ts +9 -0
- package/src/tools/mongodb/update/updateMany.ts +22 -0
- package/src/tools/tool.ts +40 -3
- package/tests/integration/helpers.ts +23 -0
- package/tests/integration/indexCheck.test.ts +463 -0
- package/tests/integration/server.test.ts +5 -4
- package/tests/integration/tools/atlas/accessLists.test.ts +2 -2
- package/tests/integration/tools/atlas/alerts.test.ts +42 -0
- package/tests/integration/tools/atlas/atlasHelpers.ts +5 -3
- package/tests/integration/tools/atlas/clusters.test.ts +4 -4
- package/tests/integration/tools/atlas/dbUsers.test.ts +7 -7
- package/tests/integration/tools/atlas/orgs.test.ts +2 -2
- package/tests/integration/tools/atlas/projects.test.ts +3 -3
- package/tests/integration/tools/mongodb/create/createCollection.test.ts +2 -2
- package/tests/integration/tools/mongodb/create/createIndex.test.ts +2 -2
- package/tests/integration/tools/mongodb/create/insertMany.test.ts +1 -1
- package/tests/integration/tools/mongodb/delete/dropCollection.test.ts +1 -1
- package/tests/integration/tools/mongodb/metadata/collectionSchema.test.ts +2 -2
- package/tests/integration/tools/mongodb/metadata/dbStats.test.ts +4 -4
- package/tests/integration/tools/mongodb/metadata/explain.test.ts +10 -10
- package/tests/integration/tools/mongodb/metadata/listCollections.test.ts +1 -1
- package/tests/integration/tools/mongodb/metadata/listDatabases.test.ts +9 -5
- package/tests/integration/tools/mongodb/metadata/logs.test.ts +4 -4
- package/tests/integration/tools/mongodb/mongodbHelpers.ts +1 -0
- package/tests/integration/tools/mongodb/read/aggregate.test.ts +22 -7
- package/tests/integration/tools/mongodb/read/collectionIndexes.test.ts +5 -5
- package/tests/integration/tools/mongodb/read/count.test.ts +15 -10
- package/tests/integration/tools/mongodb/read/find.test.ts +6 -6
- package/tests/integration/tools/mongodb/update/renameCollection.test.ts +4 -4
- package/tests/unit/EJsonTransport.test.ts +1 -1
- package/tests/unit/indexCheck.test.ts +149 -0
- package/tests/unit/session.test.ts +1 -1
- package/tsconfig.build.json +1 -0
|
@@ -116,6 +116,28 @@ export interface paths {
|
|
|
116
116
|
patch?: never;
|
|
117
117
|
trace?: never;
|
|
118
118
|
};
|
|
119
|
+
"/api/atlas/v2/groups/{groupId}/alerts": {
|
|
120
|
+
parameters: {
|
|
121
|
+
query?: never;
|
|
122
|
+
header?: never;
|
|
123
|
+
path?: never;
|
|
124
|
+
cookie?: never;
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* Return All Alerts from One Project
|
|
128
|
+
* @description Returns all alerts. These alerts apply to all components in one project. You receive an alert when a monitored component meets or exceeds a value you set. To use this resource, the requesting Service Account or API Key must have the Project Read Only role.
|
|
129
|
+
*
|
|
130
|
+
* This resource remains under revision and may change.
|
|
131
|
+
*/
|
|
132
|
+
get: operations["listAlerts"];
|
|
133
|
+
put?: never;
|
|
134
|
+
post?: never;
|
|
135
|
+
delete?: never;
|
|
136
|
+
options?: never;
|
|
137
|
+
head?: never;
|
|
138
|
+
patch?: never;
|
|
139
|
+
trace?: never;
|
|
140
|
+
};
|
|
119
141
|
"/api/atlas/v2/groups/{groupId}/clusters": {
|
|
120
142
|
parameters: {
|
|
121
143
|
query?: never;
|
|
@@ -628,6 +650,7 @@ export interface components {
|
|
|
628
650
|
/** @description Flag that indicates whether the instance size may scale down via reactive auto-scaling. MongoDB Cloud requires this parameter if **replicationSpecs[n].regionConfigs[m].autoScaling.compute.enabled** is `true`. If you enable this option, specify a value for **replicationSpecs[n].regionConfigs[m].autoScaling.compute.minInstanceSize**. */
|
|
629
651
|
scaleDownEnabled?: boolean;
|
|
630
652
|
};
|
|
653
|
+
AlertViewForNdsGroup: components["schemas"]["AppServiceAlertView"] | components["schemas"]["ClusterAlertView"] | components["schemas"]["HostAlertViewForNdsGroup"] | components["schemas"]["HostMetricAlert"] | components["schemas"]["ReplicaSetAlertViewForNdsGroup"] | components["schemas"]["StreamProcessorAlertViewForNdsGroup"] | components["schemas"]["DefaultAlertViewForNdsGroup"];
|
|
631
654
|
/** @description Object that contains the identifying characteristics of the Amazon Web Services (AWS) Key Management Service (KMS). This field always returns a null value. */
|
|
632
655
|
ApiAtlasCloudProviderAccessFeatureUsageFeatureIdView: Record<string, never> | null;
|
|
633
656
|
/** @description Group of settings that configures a subset of the advanced configuration details. */
|
|
@@ -697,6 +720,87 @@ export interface components {
|
|
|
697
720
|
/** @description Application error message returned with this error. */
|
|
698
721
|
readonly reason?: string;
|
|
699
722
|
};
|
|
723
|
+
/**
|
|
724
|
+
* App Services Alerts
|
|
725
|
+
* @description App Services alert notifies different activities about a BAAS application.
|
|
726
|
+
*/
|
|
727
|
+
AppServiceAlertView: {
|
|
728
|
+
/**
|
|
729
|
+
* Format: date-time
|
|
730
|
+
* @description Date and time until which this alert has been acknowledged. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if a MongoDB User previously acknowledged this alert.
|
|
731
|
+
*
|
|
732
|
+
* - To acknowledge this alert forever, set the parameter value to 100 years in the future.
|
|
733
|
+
*
|
|
734
|
+
* - To unacknowledge a previously acknowledged alert, do not set this parameter value.
|
|
735
|
+
*/
|
|
736
|
+
acknowledgedUntil?: string;
|
|
737
|
+
/**
|
|
738
|
+
* @description Comment that a MongoDB Cloud user submitted when acknowledging the alert.
|
|
739
|
+
* @example Expiration on 3/19. Silencing for 7days.
|
|
740
|
+
*/
|
|
741
|
+
acknowledgementComment?: string;
|
|
742
|
+
/**
|
|
743
|
+
* Format: email
|
|
744
|
+
* @description MongoDB Cloud username of the person who acknowledged the alert. The response returns this parameter if a MongoDB Cloud user previously acknowledged this alert.
|
|
745
|
+
*/
|
|
746
|
+
readonly acknowledgingUsername?: string;
|
|
747
|
+
/**
|
|
748
|
+
* @description Unique 24-hexadecimal digit string that identifies the alert configuration that sets this alert.
|
|
749
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
750
|
+
*/
|
|
751
|
+
readonly alertConfigId: string;
|
|
752
|
+
/**
|
|
753
|
+
* Format: date-time
|
|
754
|
+
* @description Date and time when MongoDB Cloud created this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
755
|
+
*/
|
|
756
|
+
readonly created: string;
|
|
757
|
+
eventTypeName: components["schemas"]["AppServiceEventTypeViewAlertable"];
|
|
758
|
+
/**
|
|
759
|
+
* @description Unique 24-hexadecimal digit string that identifies the project that owns this alert.
|
|
760
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
761
|
+
*/
|
|
762
|
+
readonly groupId?: string;
|
|
763
|
+
/**
|
|
764
|
+
* @description Unique 24-hexadecimal digit string that identifies this alert.
|
|
765
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
766
|
+
*/
|
|
767
|
+
readonly id: string;
|
|
768
|
+
/**
|
|
769
|
+
* Format: date-time
|
|
770
|
+
* @description Date and time that any notifications were last sent for this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if MongoDB Cloud has sent notifications for this alert.
|
|
771
|
+
*/
|
|
772
|
+
readonly lastNotified?: string;
|
|
773
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
774
|
+
readonly links?: components["schemas"]["Link"][];
|
|
775
|
+
/**
|
|
776
|
+
* @description Unique 24-hexadecimal character string that identifies the organization that owns the project to which this alert applies.
|
|
777
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
778
|
+
*/
|
|
779
|
+
readonly orgId?: string;
|
|
780
|
+
/**
|
|
781
|
+
* Format: date-time
|
|
782
|
+
* @description Date and time that this alert changed to `"status" : "CLOSED"`. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter once `"status" : "CLOSED"`.
|
|
783
|
+
*/
|
|
784
|
+
readonly resolved?: string;
|
|
785
|
+
/**
|
|
786
|
+
* @description State of this alert at the time you requested its details.
|
|
787
|
+
* @example OPEN
|
|
788
|
+
* @enum {string}
|
|
789
|
+
*/
|
|
790
|
+
readonly status: "CANCELLED" | "CLOSED" | "OPEN" | "TRACKING";
|
|
791
|
+
/**
|
|
792
|
+
* Format: date-time
|
|
793
|
+
* @description Date and time when someone last updated this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
794
|
+
*/
|
|
795
|
+
readonly updated: string;
|
|
796
|
+
};
|
|
797
|
+
/**
|
|
798
|
+
* App Services Event Types
|
|
799
|
+
* @description Incident that triggered this alert.
|
|
800
|
+
* @example DEPLOYMENT_FAILURE
|
|
801
|
+
* @enum {string}
|
|
802
|
+
*/
|
|
803
|
+
AppServiceEventTypeViewAlertable: "URL_CONFIRMATION" | "SUCCESSFUL_DEPLOY" | "DEPLOYMENT_FAILURE" | "DEPLOYMENT_MODEL_CHANGE_SUCCESS" | "DEPLOYMENT_MODEL_CHANGE_FAILURE" | "REQUEST_RATE_LIMIT" | "LOG_FORWARDER_FAILURE" | "OUTSIDE_REALM_METRIC_THRESHOLD" | "SYNC_FAILURE" | "TRIGGER_FAILURE" | "TRIGGER_AUTO_RESUMED";
|
|
700
804
|
/** @description Details that describe the organization. */
|
|
701
805
|
AtlasOrganization: {
|
|
702
806
|
/**
|
|
@@ -1737,6 +1841,85 @@ export interface components {
|
|
|
1737
1841
|
/** @description Physical location of your MongoDB cluster nodes. The region you choose can affect network latency for clients accessing your databases. The region name is only returned in the response for single-region clusters. When MongoDB Cloud deploys a dedicated cluster, it checks if a VPC or VPC connection exists for that provider and region. If not, MongoDB Cloud creates them as part of the deployment. It assigns the VPC a Classless Inter-Domain Routing (CIDR) block. To limit a new VPC peering connection to one Classless Inter-Domain Routing (CIDR) block and region, create the connection first. Deploy the cluster after the connection starts. GCP Clusters and Multi-region clusters require one VPC peering connection for each region. MongoDB nodes can use only the peering connection that resides in the same region as the nodes to communicate with the peered VPC. */
|
|
1738
1842
|
regionName?: ("US_GOV_WEST_1" | "US_GOV_EAST_1" | "US_EAST_1" | "US_EAST_2" | "US_WEST_1" | "US_WEST_2" | "CA_CENTRAL_1" | "EU_NORTH_1" | "EU_WEST_1" | "EU_WEST_2" | "EU_WEST_3" | "EU_CENTRAL_1" | "EU_CENTRAL_2" | "AP_EAST_1" | "AP_NORTHEAST_1" | "AP_NORTHEAST_2" | "AP_NORTHEAST_3" | "AP_SOUTHEAST_1" | "AP_SOUTHEAST_2" | "AP_SOUTHEAST_3" | "AP_SOUTHEAST_4" | "AP_SOUTH_1" | "AP_SOUTH_2" | "SA_EAST_1" | "CN_NORTH_1" | "CN_NORTHWEST_1" | "ME_SOUTH_1" | "ME_CENTRAL_1" | "AF_SOUTH_1" | "EU_SOUTH_1" | "EU_SOUTH_2" | "IL_CENTRAL_1" | "CA_WEST_1" | "AP_SOUTHEAST_5" | "AP_SOUTHEAST_7" | "MX_CENTRAL_1" | "GLOBAL") | ("US_CENTRAL" | "US_EAST" | "US_EAST_2" | "US_NORTH_CENTRAL" | "US_WEST" | "US_SOUTH_CENTRAL" | "EUROPE_NORTH" | "EUROPE_WEST" | "US_WEST_CENTRAL" | "US_WEST_2" | "US_WEST_3" | "CANADA_EAST" | "CANADA_CENTRAL" | "BRAZIL_SOUTH" | "BRAZIL_SOUTHEAST" | "AUSTRALIA_CENTRAL" | "AUSTRALIA_CENTRAL_2" | "AUSTRALIA_EAST" | "AUSTRALIA_SOUTH_EAST" | "GERMANY_WEST_CENTRAL" | "GERMANY_NORTH" | "SWEDEN_CENTRAL" | "SWEDEN_SOUTH" | "SWITZERLAND_NORTH" | "SWITZERLAND_WEST" | "UK_SOUTH" | "UK_WEST" | "NORWAY_EAST" | "NORWAY_WEST" | "INDIA_CENTRAL" | "INDIA_SOUTH" | "INDIA_WEST" | "CHINA_EAST" | "CHINA_NORTH" | "ASIA_EAST" | "JAPAN_EAST" | "JAPAN_WEST" | "ASIA_SOUTH_EAST" | "KOREA_CENTRAL" | "KOREA_SOUTH" | "FRANCE_CENTRAL" | "FRANCE_SOUTH" | "SOUTH_AFRICA_NORTH" | "SOUTH_AFRICA_WEST" | "UAE_CENTRAL" | "UAE_NORTH" | "QATAR_CENTRAL") | ("EASTERN_US" | "EASTERN_US_AW" | "US_EAST_4" | "US_EAST_4_AW" | "US_EAST_5" | "US_EAST_5_AW" | "US_WEST_2" | "US_WEST_2_AW" | "US_WEST_3" | "US_WEST_3_AW" | "US_WEST_4" | "US_WEST_4_AW" | "US_SOUTH_1" | "US_SOUTH_1_AW" | "CENTRAL_US" | "CENTRAL_US_AW" | "WESTERN_US" | "WESTERN_US_AW" | "NORTH_AMERICA_NORTHEAST_1" | "NORTH_AMERICA_NORTHEAST_2" | "NORTH_AMERICA_SOUTH_1" | "SOUTH_AMERICA_EAST_1" | "SOUTH_AMERICA_WEST_1" | "WESTERN_EUROPE" | "EUROPE_NORTH_1" | "EUROPE_WEST_2" | "EUROPE_WEST_3" | "EUROPE_WEST_4" | "EUROPE_WEST_6" | "EUROPE_WEST_8" | "EUROPE_WEST_9" | "EUROPE_WEST_10" | "EUROPE_WEST_12" | "EUROPE_SOUTHWEST_1" | "EUROPE_CENTRAL_2" | "MIDDLE_EAST_CENTRAL_1" | "MIDDLE_EAST_CENTRAL_2" | "MIDDLE_EAST_WEST_1" | "AUSTRALIA_SOUTHEAST_1" | "AUSTRALIA_SOUTHEAST_2" | "AFRICA_SOUTH_1" | "EASTERN_ASIA_PACIFIC" | "NORTHEASTERN_ASIA_PACIFIC" | "SOUTHEASTERN_ASIA_PACIFIC" | "ASIA_EAST_2" | "ASIA_NORTHEAST_2" | "ASIA_NORTHEAST_3" | "ASIA_SOUTH_1" | "ASIA_SOUTH_2" | "ASIA_SOUTHEAST_2");
|
|
1739
1843
|
} & (components["schemas"]["AWSRegionConfig20240805"] | components["schemas"]["AzureRegionConfig20240805"] | components["schemas"]["GCPRegionConfig20240805"] | components["schemas"]["TenantRegionConfig20240805"]);
|
|
1844
|
+
/**
|
|
1845
|
+
* Cluster Alerts
|
|
1846
|
+
* @description Cluster alert notifies different activities and conditions about cluster of mongod hosts.
|
|
1847
|
+
*/
|
|
1848
|
+
ClusterAlertView: {
|
|
1849
|
+
/**
|
|
1850
|
+
* Format: date-time
|
|
1851
|
+
* @description Date and time until which this alert has been acknowledged. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if a MongoDB User previously acknowledged this alert.
|
|
1852
|
+
*
|
|
1853
|
+
* - To acknowledge this alert forever, set the parameter value to 100 years in the future.
|
|
1854
|
+
*
|
|
1855
|
+
* - To unacknowledge a previously acknowledged alert, do not set this parameter value.
|
|
1856
|
+
*/
|
|
1857
|
+
acknowledgedUntil?: string;
|
|
1858
|
+
/**
|
|
1859
|
+
* @description Comment that a MongoDB Cloud user submitted when acknowledging the alert.
|
|
1860
|
+
* @example Expiration on 3/19. Silencing for 7days.
|
|
1861
|
+
*/
|
|
1862
|
+
acknowledgementComment?: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* Format: email
|
|
1865
|
+
* @description MongoDB Cloud username of the person who acknowledged the alert. The response returns this parameter if a MongoDB Cloud user previously acknowledged this alert.
|
|
1866
|
+
*/
|
|
1867
|
+
readonly acknowledgingUsername?: string;
|
|
1868
|
+
/**
|
|
1869
|
+
* @description Unique 24-hexadecimal digit string that identifies the alert configuration that sets this alert.
|
|
1870
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
1871
|
+
*/
|
|
1872
|
+
readonly alertConfigId: string;
|
|
1873
|
+
/**
|
|
1874
|
+
* @description Human-readable label that identifies the cluster to which this alert applies. This resource returns this parameter for alerts of events impacting backups, replica sets, or sharded clusters.
|
|
1875
|
+
* @example cluster1
|
|
1876
|
+
*/
|
|
1877
|
+
readonly clusterName?: string;
|
|
1878
|
+
/**
|
|
1879
|
+
* Format: date-time
|
|
1880
|
+
* @description Date and time when MongoDB Cloud created this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
1881
|
+
*/
|
|
1882
|
+
readonly created: string;
|
|
1883
|
+
eventTypeName: components["schemas"]["ClusterEventTypeViewAlertable"];
|
|
1884
|
+
/**
|
|
1885
|
+
* @description Unique 24-hexadecimal digit string that identifies the project that owns this alert.
|
|
1886
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
1887
|
+
*/
|
|
1888
|
+
readonly groupId?: string;
|
|
1889
|
+
/**
|
|
1890
|
+
* @description Unique 24-hexadecimal digit string that identifies this alert.
|
|
1891
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
1892
|
+
*/
|
|
1893
|
+
readonly id: string;
|
|
1894
|
+
/**
|
|
1895
|
+
* Format: date-time
|
|
1896
|
+
* @description Date and time that any notifications were last sent for this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if MongoDB Cloud has sent notifications for this alert.
|
|
1897
|
+
*/
|
|
1898
|
+
readonly lastNotified?: string;
|
|
1899
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
1900
|
+
readonly links?: components["schemas"]["Link"][];
|
|
1901
|
+
/**
|
|
1902
|
+
* @description Unique 24-hexadecimal character string that identifies the organization that owns the project to which this alert applies.
|
|
1903
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
1904
|
+
*/
|
|
1905
|
+
readonly orgId?: string;
|
|
1906
|
+
/**
|
|
1907
|
+
* Format: date-time
|
|
1908
|
+
* @description Date and time that this alert changed to `"status" : "CLOSED"`. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter once `"status" : "CLOSED"`.
|
|
1909
|
+
*/
|
|
1910
|
+
readonly resolved?: string;
|
|
1911
|
+
/**
|
|
1912
|
+
* @description State of this alert at the time you requested its details.
|
|
1913
|
+
* @example OPEN
|
|
1914
|
+
* @enum {string}
|
|
1915
|
+
*/
|
|
1916
|
+
readonly status: "CANCELLED" | "CLOSED" | "OPEN" | "TRACKING";
|
|
1917
|
+
/**
|
|
1918
|
+
* Format: date-time
|
|
1919
|
+
* @description Date and time when someone last updated this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
1920
|
+
*/
|
|
1921
|
+
readonly updated: string;
|
|
1922
|
+
};
|
|
1740
1923
|
/**
|
|
1741
1924
|
* Cluster Connection Strings
|
|
1742
1925
|
* @description Collection of Uniform Resource Locators that point to the MongoDB database.
|
|
@@ -1941,6 +2124,13 @@ export interface components {
|
|
|
1941
2124
|
/** @description Region where the private endpoint is deployed. */
|
|
1942
2125
|
readonly region?: string;
|
|
1943
2126
|
};
|
|
2127
|
+
/**
|
|
2128
|
+
* Cluster Event Types
|
|
2129
|
+
* @description Event type that triggers an alert.
|
|
2130
|
+
* @example CLUSTER_MONGOS_IS_MISSING
|
|
2131
|
+
* @enum {string}
|
|
2132
|
+
*/
|
|
2133
|
+
ClusterEventTypeViewAlertable: "CLUSTER_MONGOS_IS_MISSING" | "CLUSTER_AGENT_IN_CRASH_LOOP";
|
|
1944
2134
|
ClusterFlexProviderSettings: Omit<components["schemas"]["ClusterProviderSettings"], "providerName"> & {
|
|
1945
2135
|
/**
|
|
1946
2136
|
* @description Cloud service provider on which MongoDB Cloud provisioned the multi-tenant host. The resource returns this parameter when **providerSettings.providerName** is `FLEX` and **providerSetting.instanceSizeName** is `FLEX`.
|
|
@@ -2468,6 +2658,120 @@ export interface components {
|
|
|
2468
2658
|
name?: string;
|
|
2469
2659
|
provider: string;
|
|
2470
2660
|
} & (components["schemas"]["DataLakeS3StoreSettings"] | components["schemas"]["DataLakeDLSAWSStore"] | components["schemas"]["DataLakeDLSAzureStore"] | components["schemas"]["DataLakeDLSGCPStore"] | components["schemas"]["DataLakeAtlasStoreInstance"] | components["schemas"]["DataLakeHTTPStore"] | components["schemas"]["DataLakeAzureBlobStore"] | components["schemas"]["DataLakeGoogleCloudStorageStore"]);
|
|
2661
|
+
DataMetricAlertView: {
|
|
2662
|
+
/**
|
|
2663
|
+
* Format: date-time
|
|
2664
|
+
* @description Date and time until which this alert has been acknowledged. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if a MongoDB User previously acknowledged this alert.
|
|
2665
|
+
*
|
|
2666
|
+
* - To acknowledge this alert forever, set the parameter value to 100 years in the future.
|
|
2667
|
+
*
|
|
2668
|
+
* - To unacknowledge a previously acknowledged alert, do not set this parameter value.
|
|
2669
|
+
*/
|
|
2670
|
+
acknowledgedUntil?: string;
|
|
2671
|
+
/**
|
|
2672
|
+
* @description Comment that a MongoDB Cloud user submitted when acknowledging the alert.
|
|
2673
|
+
* @example Expiration on 3/19. Silencing for 7days.
|
|
2674
|
+
*/
|
|
2675
|
+
acknowledgementComment?: string;
|
|
2676
|
+
/**
|
|
2677
|
+
* Format: email
|
|
2678
|
+
* @description MongoDB Cloud username of the person who acknowledged the alert. The response returns this parameter if a MongoDB Cloud user previously acknowledged this alert.
|
|
2679
|
+
*/
|
|
2680
|
+
readonly acknowledgingUsername?: string;
|
|
2681
|
+
/**
|
|
2682
|
+
* @description Unique 24-hexadecimal digit string that identifies the alert configuration that sets this alert.
|
|
2683
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
2684
|
+
*/
|
|
2685
|
+
readonly alertConfigId: string;
|
|
2686
|
+
/**
|
|
2687
|
+
* @description Human-readable label that identifies the cluster to which this alert applies. This resource returns this parameter for alerts of events impacting backups, replica sets, or sharded clusters.
|
|
2688
|
+
* @example cluster1
|
|
2689
|
+
*/
|
|
2690
|
+
readonly clusterName?: string;
|
|
2691
|
+
/**
|
|
2692
|
+
* Format: date-time
|
|
2693
|
+
* @description Date and time when MongoDB Cloud created this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
2694
|
+
*/
|
|
2695
|
+
readonly created: string;
|
|
2696
|
+
currentValue?: components["schemas"]["DataMetricValueView"];
|
|
2697
|
+
eventTypeName: components["schemas"]["HostMetricEventTypeViewAlertable"];
|
|
2698
|
+
/**
|
|
2699
|
+
* @description Unique 24-hexadecimal digit string that identifies the project that owns this alert.
|
|
2700
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
2701
|
+
*/
|
|
2702
|
+
readonly groupId?: string;
|
|
2703
|
+
/**
|
|
2704
|
+
* @description Hostname and port of the host to which this alert applies. The resource returns this parameter for alerts of events impacting hosts or replica sets.
|
|
2705
|
+
* @example cloud-test.mongodb.com:27017
|
|
2706
|
+
*/
|
|
2707
|
+
readonly hostnameAndPort?: string;
|
|
2708
|
+
/**
|
|
2709
|
+
* @description Unique 24-hexadecimal digit string that identifies this alert.
|
|
2710
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
2711
|
+
*/
|
|
2712
|
+
readonly id: string;
|
|
2713
|
+
/**
|
|
2714
|
+
* Format: date-time
|
|
2715
|
+
* @description Date and time that any notifications were last sent for this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if MongoDB Cloud has sent notifications for this alert.
|
|
2716
|
+
*/
|
|
2717
|
+
readonly lastNotified?: string;
|
|
2718
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
2719
|
+
readonly links?: components["schemas"]["Link"][];
|
|
2720
|
+
/**
|
|
2721
|
+
* @description Name of the metric against which Atlas checks the configured `metricThreshold.threshold`.
|
|
2722
|
+
*
|
|
2723
|
+
* To learn more about the available metrics, see <a href="https://www.mongodb.com/docs/atlas/reference/alert-host-metrics/#std-label-measurement-types" target="_blank">Host Metrics</a>.
|
|
2724
|
+
*
|
|
2725
|
+
* **NOTE**: If you set eventTypeName to OUTSIDE_SERVERLESS_METRIC_THRESHOLD, you can specify only metrics available for serverless. To learn more, see <a href="https://dochub.mongodb.org/core/alert-config-serverless-measurements" target="_blank">Serverless Measurements</a>.
|
|
2726
|
+
* @example ASSERT_USER
|
|
2727
|
+
*/
|
|
2728
|
+
readonly metricName?: string;
|
|
2729
|
+
/**
|
|
2730
|
+
* @description Unique 24-hexadecimal character string that identifies the organization that owns the project to which this alert applies.
|
|
2731
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
2732
|
+
*/
|
|
2733
|
+
readonly orgId?: string;
|
|
2734
|
+
/**
|
|
2735
|
+
* @description Name of the replica set to which this alert applies. The response returns this parameter for alerts of events impacting backups, hosts, or replica sets.
|
|
2736
|
+
* @example event-replica-set
|
|
2737
|
+
*/
|
|
2738
|
+
readonly replicaSetName?: string;
|
|
2739
|
+
/**
|
|
2740
|
+
* Format: date-time
|
|
2741
|
+
* @description Date and time that this alert changed to `"status" : "CLOSED"`. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter once `"status" : "CLOSED"`.
|
|
2742
|
+
*/
|
|
2743
|
+
readonly resolved?: string;
|
|
2744
|
+
/**
|
|
2745
|
+
* @description State of this alert at the time you requested its details.
|
|
2746
|
+
* @example OPEN
|
|
2747
|
+
* @enum {string}
|
|
2748
|
+
*/
|
|
2749
|
+
readonly status: "CANCELLED" | "CLOSED" | "OPEN" | "TRACKING";
|
|
2750
|
+
/**
|
|
2751
|
+
* Format: date-time
|
|
2752
|
+
* @description Date and time when someone last updated this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
2753
|
+
*/
|
|
2754
|
+
readonly updated: string;
|
|
2755
|
+
};
|
|
2756
|
+
/**
|
|
2757
|
+
* Data Metric Units
|
|
2758
|
+
* @description Element used to express the quantity. This can be an element of time, storage capacity, and the like.
|
|
2759
|
+
* @example BYTES
|
|
2760
|
+
* @enum {string}
|
|
2761
|
+
*/
|
|
2762
|
+
DataMetricUnits: "BITS" | "KILOBITS" | "MEGABITS" | "GIGABITS" | "BYTES" | "KILOBYTES" | "MEGABYTES" | "GIGABYTES" | "TERABYTES" | "PETABYTES";
|
|
2763
|
+
/**
|
|
2764
|
+
* Data Metric Value
|
|
2765
|
+
* @description Measurement of the **metricName** recorded at the time of the event.
|
|
2766
|
+
*/
|
|
2767
|
+
DataMetricValueView: {
|
|
2768
|
+
/**
|
|
2769
|
+
* Format: double
|
|
2770
|
+
* @description Amount of the **metricName** recorded at the time of the event. This value triggered the alert.
|
|
2771
|
+
*/
|
|
2772
|
+
readonly number?: number;
|
|
2773
|
+
units?: components["schemas"]["DataMetricUnits"];
|
|
2774
|
+
};
|
|
2471
2775
|
/** @description Settings to configure the region where you wish to store your archived data. */
|
|
2472
2776
|
DataProcessRegionView: {
|
|
2473
2777
|
/**
|
|
@@ -2550,6 +2854,81 @@ export interface components {
|
|
|
2550
2854
|
*/
|
|
2551
2855
|
nodeCount?: number;
|
|
2552
2856
|
} & (components["schemas"]["AWSHardwareSpec20240805"] | components["schemas"]["AzureHardwareSpec20240805"] | components["schemas"]["GCPHardwareSpec20240805"]);
|
|
2857
|
+
/**
|
|
2858
|
+
* Any Other Alerts
|
|
2859
|
+
* @description Other alerts which don't have extra details beside of basic one.
|
|
2860
|
+
*/
|
|
2861
|
+
DefaultAlertViewForNdsGroup: {
|
|
2862
|
+
/**
|
|
2863
|
+
* Format: date-time
|
|
2864
|
+
* @description Date and time until which this alert has been acknowledged. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if a MongoDB User previously acknowledged this alert.
|
|
2865
|
+
*
|
|
2866
|
+
* - To acknowledge this alert forever, set the parameter value to 100 years in the future.
|
|
2867
|
+
*
|
|
2868
|
+
* - To unacknowledge a previously acknowledged alert, do not set this parameter value.
|
|
2869
|
+
*/
|
|
2870
|
+
acknowledgedUntil?: string;
|
|
2871
|
+
/**
|
|
2872
|
+
* @description Comment that a MongoDB Cloud user submitted when acknowledging the alert.
|
|
2873
|
+
* @example Expiration on 3/19. Silencing for 7days.
|
|
2874
|
+
*/
|
|
2875
|
+
acknowledgementComment?: string;
|
|
2876
|
+
/**
|
|
2877
|
+
* Format: email
|
|
2878
|
+
* @description MongoDB Cloud username of the person who acknowledged the alert. The response returns this parameter if a MongoDB Cloud user previously acknowledged this alert.
|
|
2879
|
+
*/
|
|
2880
|
+
readonly acknowledgingUsername?: string;
|
|
2881
|
+
/**
|
|
2882
|
+
* @description Unique 24-hexadecimal digit string that identifies the alert configuration that sets this alert.
|
|
2883
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
2884
|
+
*/
|
|
2885
|
+
readonly alertConfigId: string;
|
|
2886
|
+
/**
|
|
2887
|
+
* Format: date-time
|
|
2888
|
+
* @description Date and time when MongoDB Cloud created this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
2889
|
+
*/
|
|
2890
|
+
readonly created: string;
|
|
2891
|
+
/** @description Incident that triggered this alert. */
|
|
2892
|
+
readonly eventTypeName: ("CREDIT_CARD_ABOUT_TO_EXPIRE" | "PENDING_INVOICE_OVER_THRESHOLD" | "DAILY_BILL_OVER_THRESHOLD") | ("CPS_SNAPSHOT_STARTED" | "CPS_SNAPSHOT_SUCCESSFUL" | "CPS_SNAPSHOT_FAILED" | "CPS_CONCURRENT_SNAPSHOT_FAILED_WILL_RETRY" | "CPS_SNAPSHOT_BEHIND" | "CPS_COPY_SNAPSHOT_STARTED" | "CPS_COPY_SNAPSHOT_FAILED" | "CPS_COPY_SNAPSHOT_FAILED_WILL_RETRY" | "CPS_COPY_SNAPSHOT_SUCCESSFUL" | "CPS_PREV_SNAPSHOT_OLD" | "CPS_SNAPSHOT_FALLBACK_SUCCESSFUL" | "CPS_SNAPSHOT_FALLBACK_FAILED" | "CPS_RESTORE_SUCCESSFUL" | "CPS_EXPORT_SUCCESSFUL" | "CPS_RESTORE_FAILED" | "CPS_EXPORT_FAILED" | "CPS_AUTO_EXPORT_FAILED" | "CPS_SNAPSHOT_DOWNLOAD_REQUEST_FAILED" | "CPS_OPLOG_BEHIND" | "CPS_OPLOG_CAUGHT_UP") | ("AWS_ENCRYPTION_KEY_NEEDS_ROTATION" | "AZURE_ENCRYPTION_KEY_NEEDS_ROTATION" | "GCP_ENCRYPTION_KEY_NEEDS_ROTATION" | "AWS_ENCRYPTION_KEY_INVALID" | "AZURE_ENCRYPTION_KEY_INVALID" | "GCP_ENCRYPTION_KEY_INVALID") | ("FTS_INDEX_DELETION_FAILED" | "FTS_INDEX_BUILD_COMPLETE" | "FTS_INDEX_BUILD_FAILED" | "FTS_INDEXES_RESTORE_FAILED" | "FTS_INDEXES_SYNONYM_MAPPING_INVALID") | ("USERS_WITHOUT_MULTI_FACTOR_AUTH" | "ENCRYPTION_AT_REST_KMS_NETWORK_ACCESS_DENIED" | "ENCRYPTION_AT_REST_CONFIG_NO_LONGER_VALID") | ("CLUSTER_INSTANCE_STOP_START" | "CLUSTER_INSTANCE_RESYNC_REQUESTED" | "CLUSTER_INSTANCE_UPDATE_REQUESTED" | "SAMPLE_DATASET_LOAD_REQUESTED" | "TENANT_UPGRADE_TO_SERVERLESS_SUCCESSFUL" | "TENANT_UPGRADE_TO_SERVERLESS_FAILED" | "NETWORK_PERMISSION_ENTRY_ADDED" | "NETWORK_PERMISSION_ENTRY_REMOVED" | "NETWORK_PERMISSION_ENTRY_UPDATED") | ("MAINTENANCE_IN_ADVANCED" | "MAINTENANCE_AUTO_DEFERRED" | "MAINTENANCE_STARTED" | "MAINTENANCE_NO_LONGER_NEEDED") | ("NDS_X509_USER_AUTHENTICATION_CUSTOMER_CA_EXPIRATION_CHECK" | "NDS_X509_USER_AUTHENTICATION_CUSTOMER_CRL_EXPIRATION_CHECK" | "NDS_X509_USER_AUTHENTICATION_MANAGED_USER_CERTS_EXPIRATION_CHECK") | ("ONLINE_ARCHIVE_INSUFFICIENT_INDEXES_CHECK" | "ONLINE_ARCHIVE_MAX_CONSECUTIVE_OFFLOAD_WINDOWS_CHECK") | "OUTSIDE_SERVERLESS_METRIC_THRESHOLD" | "OUTSIDE_FLEX_METRIC_THRESHOLD" | ("JOINED_GROUP" | "REMOVED_FROM_GROUP" | "USER_ROLES_CHANGED_AUDIT") | ("TAGS_MODIFIED" | "CLUSTER_TAGS_MODIFIED" | "GROUP_TAGS_MODIFIED") | ("STREAM_PROCESSOR_STATE_IS_FAILED" | "OUTSIDE_STREAM_PROCESSOR_METRIC_THRESHOLD") | ("COMPUTE_AUTO_SCALE_INITIATED_BASE" | "COMPUTE_AUTO_SCALE_INITIATED_ANALYTICS" | "COMPUTE_AUTO_SCALE_SCALE_DOWN_FAIL_BASE" | "COMPUTE_AUTO_SCALE_SCALE_DOWN_FAIL_ANALYTICS" | "COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_BASE" | "COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_ANALYTICS" | "COMPUTE_AUTO_SCALE_OPLOG_FAIL_BASE" | "COMPUTE_AUTO_SCALE_OPLOG_FAIL_ANALYTICS" | "DISK_AUTO_SCALE_INITIATED" | "DISK_AUTO_SCALE_MAX_DISK_SIZE_FAIL" | "DISK_AUTO_SCALE_OPLOG_FAIL" | "PREDICTIVE_COMPUTE_AUTO_SCALE_INITIATED_BASE" | "PREDICTIVE_COMPUTE_AUTO_SCALE_MAX_INSTANCE_SIZE_FAIL_BASE" | "PREDICTIVE_COMPUTE_AUTO_SCALE_OPLOG_FAIL_BASE") | ("CPS_DATA_PROTECTION_ENABLE_REQUESTED" | "CPS_DATA_PROTECTION_ENABLED" | "CPS_DATA_PROTECTION_UPDATE_REQUESTED" | "CPS_DATA_PROTECTION_UPDATED" | "CPS_DATA_PROTECTION_DISABLE_REQUESTED" | "CPS_DATA_PROTECTION_DISABLED" | "CPS_DATA_PROTECTION_APPROVED_FOR_DISABLEMENT") | "RESOURCE_POLICY_VIOLATED";
|
|
2893
|
+
/**
|
|
2894
|
+
* @description Unique 24-hexadecimal digit string that identifies the project that owns this alert.
|
|
2895
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
2896
|
+
*/
|
|
2897
|
+
readonly groupId?: string;
|
|
2898
|
+
/**
|
|
2899
|
+
* @description Unique 24-hexadecimal digit string that identifies this alert.
|
|
2900
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
2901
|
+
*/
|
|
2902
|
+
readonly id: string;
|
|
2903
|
+
/**
|
|
2904
|
+
* Format: date-time
|
|
2905
|
+
* @description Date and time that any notifications were last sent for this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if MongoDB Cloud has sent notifications for this alert.
|
|
2906
|
+
*/
|
|
2907
|
+
readonly lastNotified?: string;
|
|
2908
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
2909
|
+
readonly links?: components["schemas"]["Link"][];
|
|
2910
|
+
/**
|
|
2911
|
+
* @description Unique 24-hexadecimal character string that identifies the organization that owns the project to which this alert applies.
|
|
2912
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
2913
|
+
*/
|
|
2914
|
+
readonly orgId?: string;
|
|
2915
|
+
/**
|
|
2916
|
+
* Format: date-time
|
|
2917
|
+
* @description Date and time that this alert changed to `"status" : "CLOSED"`. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter once `"status" : "CLOSED"`.
|
|
2918
|
+
*/
|
|
2919
|
+
readonly resolved?: string;
|
|
2920
|
+
/**
|
|
2921
|
+
* @description State of this alert at the time you requested its details.
|
|
2922
|
+
* @example OPEN
|
|
2923
|
+
* @enum {string}
|
|
2924
|
+
*/
|
|
2925
|
+
readonly status: "CANCELLED" | "CLOSED" | "OPEN" | "TRACKING";
|
|
2926
|
+
/**
|
|
2927
|
+
* Format: date-time
|
|
2928
|
+
* @description Date and time when someone last updated this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
2929
|
+
*/
|
|
2930
|
+
readonly updated: string;
|
|
2931
|
+
};
|
|
2553
2932
|
DefaultScheduleView: Omit<WithRequired<components["schemas"]["OnlineArchiveSchedule"], "type">, "type"> & {
|
|
2554
2933
|
/**
|
|
2555
2934
|
* @description discriminator enum property added by openapi-typescript
|
|
@@ -3240,41 +3619,256 @@ export interface components {
|
|
|
3240
3619
|
diskSizeGB?: number;
|
|
3241
3620
|
} & (components["schemas"]["AWSHardwareSpec20240805"] | components["schemas"]["AzureHardwareSpec20240805"] | components["schemas"]["GCPHardwareSpec20240805"] | components["schemas"]["TenantHardwareSpec20240805"]);
|
|
3242
3621
|
/**
|
|
3243
|
-
*
|
|
3244
|
-
* @description
|
|
3622
|
+
* Host Alerts
|
|
3623
|
+
* @description Host alert notifies about activities on mongod host.
|
|
3245
3624
|
*/
|
|
3246
|
-
|
|
3625
|
+
HostAlertViewForNdsGroup: {
|
|
3247
3626
|
/**
|
|
3248
|
-
*
|
|
3249
|
-
* @
|
|
3627
|
+
* Format: date-time
|
|
3628
|
+
* @description Date and time until which this alert has been acknowledged. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if a MongoDB User previously acknowledged this alert.
|
|
3629
|
+
*
|
|
3630
|
+
* - To acknowledge this alert forever, set the parameter value to 100 years in the future.
|
|
3631
|
+
*
|
|
3632
|
+
* - To unacknowledge a previously acknowledged alert, do not set this parameter value.
|
|
3250
3633
|
*/
|
|
3251
|
-
|
|
3252
|
-
};
|
|
3253
|
-
/**
|
|
3254
|
-
* Ingestion Source
|
|
3255
|
-
* @description Ingestion Source of a Data Lake Pipeline.
|
|
3256
|
-
*/
|
|
3257
|
-
IngestionSource: {
|
|
3634
|
+
acknowledgedUntil?: string;
|
|
3258
3635
|
/**
|
|
3259
|
-
* @description
|
|
3260
|
-
* @
|
|
3636
|
+
* @description Comment that a MongoDB Cloud user submitted when acknowledging the alert.
|
|
3637
|
+
* @example Expiration on 3/19. Silencing for 7days.
|
|
3261
3638
|
*/
|
|
3262
|
-
|
|
3263
|
-
};
|
|
3264
|
-
/**
|
|
3265
|
-
* Line Item
|
|
3266
|
-
* @description One service included in this invoice.
|
|
3267
|
-
*/
|
|
3268
|
-
InvoiceLineItem: {
|
|
3269
|
-
/** @description Human-readable label that identifies the cluster that incurred the charge. */
|
|
3270
|
-
readonly clusterName?: string;
|
|
3639
|
+
acknowledgementComment?: string;
|
|
3271
3640
|
/**
|
|
3272
|
-
* Format:
|
|
3273
|
-
* @description
|
|
3641
|
+
* Format: email
|
|
3642
|
+
* @description MongoDB Cloud username of the person who acknowledged the alert. The response returns this parameter if a MongoDB Cloud user previously acknowledged this alert.
|
|
3274
3643
|
*/
|
|
3275
|
-
readonly
|
|
3644
|
+
readonly acknowledgingUsername?: string;
|
|
3276
3645
|
/**
|
|
3277
|
-
*
|
|
3646
|
+
* @description Unique 24-hexadecimal digit string that identifies the alert configuration that sets this alert.
|
|
3647
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
3648
|
+
*/
|
|
3649
|
+
readonly alertConfigId: string;
|
|
3650
|
+
/**
|
|
3651
|
+
* @description Human-readable label that identifies the cluster to which this alert applies. This resource returns this parameter for alerts of events impacting backups, replica sets, or sharded clusters.
|
|
3652
|
+
* @example cluster1
|
|
3653
|
+
*/
|
|
3654
|
+
readonly clusterName?: string;
|
|
3655
|
+
/**
|
|
3656
|
+
* Format: date-time
|
|
3657
|
+
* @description Date and time when MongoDB Cloud created this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
3658
|
+
*/
|
|
3659
|
+
readonly created: string;
|
|
3660
|
+
eventTypeName: components["schemas"]["HostEventTypeViewForNdsGroupAlertable"];
|
|
3661
|
+
/**
|
|
3662
|
+
* @description Unique 24-hexadecimal digit string that identifies the project that owns this alert.
|
|
3663
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
3664
|
+
*/
|
|
3665
|
+
readonly groupId?: string;
|
|
3666
|
+
/**
|
|
3667
|
+
* @description Hostname and port of the host to which this alert applies. The resource returns this parameter for alerts of events impacting hosts or replica sets.
|
|
3668
|
+
* @example cloud-test.mongodb.com:27017
|
|
3669
|
+
*/
|
|
3670
|
+
readonly hostnameAndPort?: string;
|
|
3671
|
+
/**
|
|
3672
|
+
* @description Unique 24-hexadecimal digit string that identifies this alert.
|
|
3673
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
3674
|
+
*/
|
|
3675
|
+
readonly id: string;
|
|
3676
|
+
/**
|
|
3677
|
+
* Format: date-time
|
|
3678
|
+
* @description Date and time that any notifications were last sent for this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if MongoDB Cloud has sent notifications for this alert.
|
|
3679
|
+
*/
|
|
3680
|
+
readonly lastNotified?: string;
|
|
3681
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
3682
|
+
readonly links?: components["schemas"]["Link"][];
|
|
3683
|
+
/**
|
|
3684
|
+
* @description Unique 24-hexadecimal character string that identifies the organization that owns the project to which this alert applies.
|
|
3685
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
3686
|
+
*/
|
|
3687
|
+
readonly orgId?: string;
|
|
3688
|
+
/**
|
|
3689
|
+
* @description Name of the replica set to which this alert applies. The response returns this parameter for alerts of events impacting backups, hosts, or replica sets.
|
|
3690
|
+
* @example event-replica-set
|
|
3691
|
+
*/
|
|
3692
|
+
readonly replicaSetName?: string;
|
|
3693
|
+
/**
|
|
3694
|
+
* Format: date-time
|
|
3695
|
+
* @description Date and time that this alert changed to `"status" : "CLOSED"`. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter once `"status" : "CLOSED"`.
|
|
3696
|
+
*/
|
|
3697
|
+
readonly resolved?: string;
|
|
3698
|
+
/**
|
|
3699
|
+
* @description State of this alert at the time you requested its details.
|
|
3700
|
+
* @example OPEN
|
|
3701
|
+
* @enum {string}
|
|
3702
|
+
*/
|
|
3703
|
+
readonly status: "CANCELLED" | "CLOSED" | "OPEN" | "TRACKING";
|
|
3704
|
+
/**
|
|
3705
|
+
* Format: date-time
|
|
3706
|
+
* @description Date and time when someone last updated this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
3707
|
+
*/
|
|
3708
|
+
readonly updated: string;
|
|
3709
|
+
};
|
|
3710
|
+
/**
|
|
3711
|
+
* Host Event Types
|
|
3712
|
+
* @description Event type that triggers an alert.
|
|
3713
|
+
* @example HOST_DOWN
|
|
3714
|
+
* @enum {string}
|
|
3715
|
+
*/
|
|
3716
|
+
HostEventTypeViewForNdsGroupAlertable: "HOST_DOWN" | "HOST_HAS_INDEX_SUGGESTIONS" | "HOST_MONGOT_CRASHING_OOM" | "HOST_MONGOT_STOP_REPLICATION" | "HOST_NOT_ENOUGH_DISK_SPACE" | "SSH_KEY_NDS_HOST_ACCESS_REQUESTED" | "SSH_KEY_NDS_HOST_ACCESS_REFRESHED" | "PUSH_BASED_LOG_EXPORT_STOPPED" | "PUSH_BASED_LOG_EXPORT_DROPPED_LOG" | "HOST_VERSION_BEHIND" | "VERSION_BEHIND" | "HOST_EXPOSED" | "HOST_SSL_CERTIFICATE_STALE" | "HOST_SECURITY_CHECKUP_NOT_MET";
|
|
3717
|
+
/**
|
|
3718
|
+
* Host Metric Alerts
|
|
3719
|
+
* @description Host Metric Alert notifies about changes of measurements or metrics for mongod host.
|
|
3720
|
+
*/
|
|
3721
|
+
HostMetricAlert: {
|
|
3722
|
+
/**
|
|
3723
|
+
* Format: date-time
|
|
3724
|
+
* @description Date and time until which this alert has been acknowledged. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if a MongoDB User previously acknowledged this alert.
|
|
3725
|
+
*
|
|
3726
|
+
* - To acknowledge this alert forever, set the parameter value to 100 years in the future.
|
|
3727
|
+
*
|
|
3728
|
+
* - To unacknowledge a previously acknowledged alert, do not set this parameter value.
|
|
3729
|
+
*/
|
|
3730
|
+
acknowledgedUntil?: string;
|
|
3731
|
+
/**
|
|
3732
|
+
* @description Comment that a MongoDB Cloud user submitted when acknowledging the alert.
|
|
3733
|
+
* @example Expiration on 3/19. Silencing for 7days.
|
|
3734
|
+
*/
|
|
3735
|
+
acknowledgementComment?: string;
|
|
3736
|
+
/**
|
|
3737
|
+
* Format: email
|
|
3738
|
+
* @description MongoDB Cloud username of the person who acknowledged the alert. The response returns this parameter if a MongoDB Cloud user previously acknowledged this alert.
|
|
3739
|
+
*/
|
|
3740
|
+
readonly acknowledgingUsername?: string;
|
|
3741
|
+
/**
|
|
3742
|
+
* @description Unique 24-hexadecimal digit string that identifies the alert configuration that sets this alert.
|
|
3743
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
3744
|
+
*/
|
|
3745
|
+
readonly alertConfigId: string;
|
|
3746
|
+
/**
|
|
3747
|
+
* @description Human-readable label that identifies the cluster to which this alert applies. This resource returns this parameter for alerts of events impacting backups, replica sets, or sharded clusters.
|
|
3748
|
+
* @example cluster1
|
|
3749
|
+
*/
|
|
3750
|
+
readonly clusterName?: string;
|
|
3751
|
+
/**
|
|
3752
|
+
* Format: date-time
|
|
3753
|
+
* @description Date and time when MongoDB Cloud created this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
3754
|
+
*/
|
|
3755
|
+
readonly created: string;
|
|
3756
|
+
currentValue?: components["schemas"]["HostMetricValue"];
|
|
3757
|
+
eventTypeName: components["schemas"]["HostMetricEventTypeViewAlertable"];
|
|
3758
|
+
/**
|
|
3759
|
+
* @description Unique 24-hexadecimal digit string that identifies the project that owns this alert.
|
|
3760
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
3761
|
+
*/
|
|
3762
|
+
readonly groupId?: string;
|
|
3763
|
+
/**
|
|
3764
|
+
* @description Hostname and port of the host to which this alert applies. The resource returns this parameter for alerts of events impacting hosts or replica sets.
|
|
3765
|
+
* @example cloud-test.mongodb.com:27017
|
|
3766
|
+
*/
|
|
3767
|
+
readonly hostnameAndPort?: string;
|
|
3768
|
+
/**
|
|
3769
|
+
* @description Unique 24-hexadecimal digit string that identifies this alert.
|
|
3770
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
3771
|
+
*/
|
|
3772
|
+
readonly id: string;
|
|
3773
|
+
/**
|
|
3774
|
+
* Format: date-time
|
|
3775
|
+
* @description Date and time that any notifications were last sent for this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if MongoDB Cloud has sent notifications for this alert.
|
|
3776
|
+
*/
|
|
3777
|
+
readonly lastNotified?: string;
|
|
3778
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
3779
|
+
readonly links?: components["schemas"]["Link"][];
|
|
3780
|
+
/**
|
|
3781
|
+
* @description Name of the metric against which Atlas checks the configured `metricThreshold.threshold`.
|
|
3782
|
+
*
|
|
3783
|
+
* To learn more about the available metrics, see <a href="https://www.mongodb.com/docs/atlas/reference/alert-host-metrics/#std-label-measurement-types" target="_blank">Host Metrics</a>.
|
|
3784
|
+
*
|
|
3785
|
+
* **NOTE**: If you set eventTypeName to OUTSIDE_SERVERLESS_METRIC_THRESHOLD, you can specify only metrics available for serverless. To learn more, see <a href="https://dochub.mongodb.org/core/alert-config-serverless-measurements" target="_blank">Serverless Measurements</a>.
|
|
3786
|
+
* @example ASSERT_USER
|
|
3787
|
+
*/
|
|
3788
|
+
readonly metricName?: string;
|
|
3789
|
+
/**
|
|
3790
|
+
* @description Unique 24-hexadecimal character string that identifies the organization that owns the project to which this alert applies.
|
|
3791
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
3792
|
+
*/
|
|
3793
|
+
readonly orgId?: string;
|
|
3794
|
+
/**
|
|
3795
|
+
* @description Name of the replica set to which this alert applies. The response returns this parameter for alerts of events impacting backups, hosts, or replica sets.
|
|
3796
|
+
* @example event-replica-set
|
|
3797
|
+
*/
|
|
3798
|
+
readonly replicaSetName?: string;
|
|
3799
|
+
/**
|
|
3800
|
+
* Format: date-time
|
|
3801
|
+
* @description Date and time that this alert changed to `"status" : "CLOSED"`. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter once `"status" : "CLOSED"`.
|
|
3802
|
+
*/
|
|
3803
|
+
readonly resolved?: string;
|
|
3804
|
+
/**
|
|
3805
|
+
* @description State of this alert at the time you requested its details.
|
|
3806
|
+
* @example OPEN
|
|
3807
|
+
* @enum {string}
|
|
3808
|
+
*/
|
|
3809
|
+
readonly status: "CANCELLED" | "CLOSED" | "OPEN" | "TRACKING";
|
|
3810
|
+
/**
|
|
3811
|
+
* Format: date-time
|
|
3812
|
+
* @description Date and time when someone last updated this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
3813
|
+
*/
|
|
3814
|
+
readonly updated: string;
|
|
3815
|
+
};
|
|
3816
|
+
/**
|
|
3817
|
+
* Host Metric Event Types
|
|
3818
|
+
* @description Event type that triggers an alert.
|
|
3819
|
+
* @example OUTSIDE_METRIC_THRESHOLD
|
|
3820
|
+
* @enum {string}
|
|
3821
|
+
*/
|
|
3822
|
+
HostMetricEventTypeViewAlertable: "OUTSIDE_METRIC_THRESHOLD";
|
|
3823
|
+
/** @description Value of the metric that triggered the alert. The resource returns this parameter for alerts of events impacting hosts. */
|
|
3824
|
+
HostMetricValue: {
|
|
3825
|
+
/**
|
|
3826
|
+
* Format: double
|
|
3827
|
+
* @description Amount of the **metricName** recorded at the time of the event. This value triggered the alert.
|
|
3828
|
+
*/
|
|
3829
|
+
readonly number?: number;
|
|
3830
|
+
/**
|
|
3831
|
+
* @description Element used to express the quantity in **currentValue.number**. This can be an element of time, storage capacity, and the like. This metric triggered the alert.
|
|
3832
|
+
* @enum {string}
|
|
3833
|
+
*/
|
|
3834
|
+
readonly units?: "bits" | "Kbits" | "Mbits" | "Gbits" | "bytes" | "KB" | "MB" | "GB" | "TB" | "PB" | "nsec" | "msec" | "sec" | "min" | "hours" | "million minutes" | "days" | "requests" | "1000 requests" | "GB seconds" | "GB hours" | "GB days" | "RPU" | "thousand RPU" | "million RPU" | "WPU" | "thousand WPU" | "million WPU" | "count" | "thousand" | "million" | "billion";
|
|
3835
|
+
};
|
|
3836
|
+
/**
|
|
3837
|
+
* Ingestion Destination
|
|
3838
|
+
* @description Ingestion destination of a Data Lake Pipeline.
|
|
3839
|
+
*/
|
|
3840
|
+
IngestionSink: {
|
|
3841
|
+
/**
|
|
3842
|
+
* @description Type of ingestion destination of this Data Lake Pipeline.
|
|
3843
|
+
* @enum {string}
|
|
3844
|
+
*/
|
|
3845
|
+
readonly type?: "DLS";
|
|
3846
|
+
};
|
|
3847
|
+
/**
|
|
3848
|
+
* Ingestion Source
|
|
3849
|
+
* @description Ingestion Source of a Data Lake Pipeline.
|
|
3850
|
+
*/
|
|
3851
|
+
IngestionSource: {
|
|
3852
|
+
/**
|
|
3853
|
+
* @description Type of ingestion source of this Data Lake Pipeline.
|
|
3854
|
+
* @enum {string}
|
|
3855
|
+
*/
|
|
3856
|
+
type?: "PERIODIC_CPS" | "ON_DEMAND_CPS";
|
|
3857
|
+
};
|
|
3858
|
+
/**
|
|
3859
|
+
* Line Item
|
|
3860
|
+
* @description One service included in this invoice.
|
|
3861
|
+
*/
|
|
3862
|
+
InvoiceLineItem: {
|
|
3863
|
+
/** @description Human-readable label that identifies the cluster that incurred the charge. */
|
|
3864
|
+
readonly clusterName?: string;
|
|
3865
|
+
/**
|
|
3866
|
+
* Format: date-time
|
|
3867
|
+
* @description Date and time when MongoDB Cloud created this line item. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
3868
|
+
*/
|
|
3869
|
+
readonly created?: string;
|
|
3870
|
+
/**
|
|
3871
|
+
* Format: int64
|
|
3278
3872
|
* @description Sum by which MongoDB discounted this line item. MongoDB Cloud expresses this value in cents (100ths of one US Dollar). The resource returns this parameter when a discount applies.
|
|
3279
3873
|
*/
|
|
3280
3874
|
readonly discountCents?: number;
|
|
@@ -3306,7 +3900,7 @@ export interface components {
|
|
|
3306
3900
|
* @description Human-readable description of the service that this line item provided. This Stock Keeping Unit (SKU) could be the instance type, a support charge, advanced security, or another service.
|
|
3307
3901
|
* @enum {string}
|
|
3308
3902
|
*/
|
|
3309
|
-
readonly sku?: "CLASSIC_BACKUP_OPLOG" | "CLASSIC_BACKUP_STORAGE" | "CLASSIC_BACKUP_SNAPSHOT_CREATE" | "CLASSIC_BACKUP_DAILY_MINIMUM" | "CLASSIC_BACKUP_FREE_TIER" | "CLASSIC_COUPON" | "BACKUP_STORAGE_FREE_TIER" | "BACKUP_STORAGE" | "FLEX_CONSULTING" | "CLOUD_MANAGER_CLASSIC" | "CLOUD_MANAGER_BASIC_FREE_TIER" | "CLOUD_MANAGER_BASIC" | "CLOUD_MANAGER_PREMIUM" | "CLOUD_MANAGER_FREE_TIER" | "CLOUD_MANAGER_STANDARD_FREE_TIER" | "CLOUD_MANAGER_STANDARD_ANNUAL" | "CLOUD_MANAGER_STANDARD" | "CLOUD_MANAGER_FREE_TRIAL" | "ATLAS_INSTANCE_M0" | "ATLAS_INSTANCE_M2" | "ATLAS_INSTANCE_M5" | "ATLAS_AWS_INSTANCE_M10" | "ATLAS_AWS_INSTANCE_M20" | "ATLAS_AWS_INSTANCE_M30" | "ATLAS_AWS_INSTANCE_M40" | "ATLAS_AWS_INSTANCE_M50" | "ATLAS_AWS_INSTANCE_M60" | "ATLAS_AWS_INSTANCE_M80" | "ATLAS_AWS_INSTANCE_M100" | "ATLAS_AWS_INSTANCE_M140" | "ATLAS_AWS_INSTANCE_M200" | "ATLAS_AWS_INSTANCE_M300" | "ATLAS_AWS_INSTANCE_M40_LOW_CPU" | "ATLAS_AWS_INSTANCE_M50_LOW_CPU" | "ATLAS_AWS_INSTANCE_M60_LOW_CPU" | "ATLAS_AWS_INSTANCE_M80_LOW_CPU" | "ATLAS_AWS_INSTANCE_M200_LOW_CPU" | "ATLAS_AWS_INSTANCE_M300_LOW_CPU" | "ATLAS_AWS_INSTANCE_M400_LOW_CPU" | "ATLAS_AWS_INSTANCE_M700_LOW_CPU" | "ATLAS_AWS_INSTANCE_M40_NVME" | "ATLAS_AWS_INSTANCE_M50_NVME" | "ATLAS_AWS_INSTANCE_M60_NVME" | "ATLAS_AWS_INSTANCE_M80_NVME" | "ATLAS_AWS_INSTANCE_M200_NVME" | "ATLAS_AWS_INSTANCE_M400_NVME" | "ATLAS_AWS_INSTANCE_M10_PAUSED" | "ATLAS_AWS_INSTANCE_M20_PAUSED" | "ATLAS_AWS_INSTANCE_M30_PAUSED" | "ATLAS_AWS_INSTANCE_M40_PAUSED" | "ATLAS_AWS_INSTANCE_M50_PAUSED" | "ATLAS_AWS_INSTANCE_M60_PAUSED" | "ATLAS_AWS_INSTANCE_M80_PAUSED" | "ATLAS_AWS_INSTANCE_M100_PAUSED" | "ATLAS_AWS_INSTANCE_M140_PAUSED" | "ATLAS_AWS_INSTANCE_M200_PAUSED" | "ATLAS_AWS_INSTANCE_M300_PAUSED" | "ATLAS_AWS_INSTANCE_M40_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M50_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M60_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M80_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M200_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M300_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M400_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M700_LOW_CPU_PAUSED" | "ATLAS_AWS_SEARCH_INSTANCE_S20_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S30_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S40_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S50_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S60_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S70_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S80_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S30_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S40_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S50_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S60_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S80_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S90_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S100_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S110_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S40_STORAGE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S50_STORAGE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S60_STORAGE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S80_STORAGE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S90_STORAGE_NVME" | "ATLAS_AWS_STORAGE_PROVISIONED" | "ATLAS_AWS_STORAGE_STANDARD" | "ATLAS_AWS_STORAGE_STANDARD_GP3" | "ATLAS_AWS_STORAGE_IOPS" | "ATLAS_AWS_DATA_TRANSFER_SAME_REGION" | "ATLAS_AWS_DATA_TRANSFER_DIFFERENT_REGION" | "ATLAS_AWS_DATA_TRANSFER_INTERNET" | "ATLAS_AWS_BACKUP_SNAPSHOT_STORAGE" | "ATLAS_AWS_BACKUP_DOWNLOAD_VM" | "ATLAS_AWS_BACKUP_DOWNLOAD_VM_STORAGE" | "ATLAS_AWS_BACKUP_DOWNLOAD_VM_STORAGE_IOPS" | "ATLAS_AWS_PRIVATE_ENDPOINT" | "ATLAS_AWS_PRIVATE_ENDPOINT_CAPACITY_UNITS" | "ATLAS_GCP_SEARCH_INSTANCE_S20_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S30_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S40_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S50_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S60_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S70_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S80_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S30_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S40_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S50_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S60_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S70_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S80_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S90_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S100_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S110_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S120_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S130_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S140_MEMORY_LOCALSSD" | "ATLAS_GCP_INSTANCE_M10" | "ATLAS_GCP_INSTANCE_M20" | "ATLAS_GCP_INSTANCE_M30" | "ATLAS_GCP_INSTANCE_M40" | "ATLAS_GCP_INSTANCE_M50" | "ATLAS_GCP_INSTANCE_M60" | "ATLAS_GCP_INSTANCE_M80" | "ATLAS_GCP_INSTANCE_M140" | "ATLAS_GCP_INSTANCE_M200" | "ATLAS_GCP_INSTANCE_M250" | "ATLAS_GCP_INSTANCE_M300" | "ATLAS_GCP_INSTANCE_M400" | "ATLAS_GCP_INSTANCE_M40_LOW_CPU" | "ATLAS_GCP_INSTANCE_M50_LOW_CPU" | "ATLAS_GCP_INSTANCE_M60_LOW_CPU" | "ATLAS_GCP_INSTANCE_M80_LOW_CPU" | "ATLAS_GCP_INSTANCE_M200_LOW_CPU" | "ATLAS_GCP_INSTANCE_M300_LOW_CPU" | "ATLAS_GCP_INSTANCE_M400_LOW_CPU" | "ATLAS_GCP_INSTANCE_M600_LOW_CPU" | "ATLAS_GCP_INSTANCE_M10_PAUSED" | "ATLAS_GCP_INSTANCE_M20_PAUSED" | "ATLAS_GCP_INSTANCE_M30_PAUSED" | "ATLAS_GCP_INSTANCE_M40_PAUSED" | "ATLAS_GCP_INSTANCE_M50_PAUSED" | "ATLAS_GCP_INSTANCE_M60_PAUSED" | "ATLAS_GCP_INSTANCE_M80_PAUSED" | "ATLAS_GCP_INSTANCE_M140_PAUSED" | "ATLAS_GCP_INSTANCE_M200_PAUSED" | "ATLAS_GCP_INSTANCE_M250_PAUSED" | "ATLAS_GCP_INSTANCE_M300_PAUSED" | "ATLAS_GCP_INSTANCE_M400_PAUSED" | "ATLAS_GCP_INSTANCE_M40_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M50_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M60_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M80_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M200_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M300_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M400_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M600_LOW_CPU_PAUSED" | "ATLAS_GCP_DATA_TRANSFER_INTERNET" | "ATLAS_GCP_STORAGE_SSD" | "ATLAS_GCP_DATA_TRANSFER_INTER_CONNECT" | "ATLAS_GCP_DATA_TRANSFER_INTER_ZONE" | "ATLAS_GCP_DATA_TRANSFER_INTER_REGION" | "ATLAS_GCP_DATA_TRANSFER_GOOGLE" | "ATLAS_GCP_BACKUP_SNAPSHOT_STORAGE" | "ATLAS_GCP_BACKUP_DOWNLOAD_VM" | "ATLAS_GCP_BACKUP_DOWNLOAD_VM_STORAGE" | "ATLAS_GCP_PRIVATE_ENDPOINT" | "ATLAS_GCP_PRIVATE_ENDPOINT_CAPACITY_UNITS" | "ATLAS_GCP_SNAPSHOT_COPY_DATA_TRANSFER" | "ATLAS_AZURE_INSTANCE_M10" | "ATLAS_AZURE_INSTANCE_M20" | "ATLAS_AZURE_INSTANCE_M30" | "ATLAS_AZURE_INSTANCE_M40" | "ATLAS_AZURE_INSTANCE_M50" | "ATLAS_AZURE_INSTANCE_M60" | "ATLAS_AZURE_INSTANCE_M80" | "ATLAS_AZURE_INSTANCE_M90" | "ATLAS_AZURE_INSTANCE_M200" | "ATLAS_AZURE_INSTANCE_R40" | "ATLAS_AZURE_INSTANCE_R50" | "ATLAS_AZURE_INSTANCE_R60" | "ATLAS_AZURE_INSTANCE_R80" | "ATLAS_AZURE_INSTANCE_R200" | "ATLAS_AZURE_INSTANCE_R300" | "ATLAS_AZURE_INSTANCE_R400" | "ATLAS_AZURE_INSTANCE_M60_NVME" | "ATLAS_AZURE_INSTANCE_M80_NVME" | "ATLAS_AZURE_INSTANCE_M200_NVME" | "ATLAS_AZURE_INSTANCE_M300_NVME" | "ATLAS_AZURE_INSTANCE_M400_NVME" | "ATLAS_AZURE_INSTANCE_M600_NVME" | "ATLAS_AZURE_INSTANCE_M10_PAUSED" | "ATLAS_AZURE_INSTANCE_M20_PAUSED" | "ATLAS_AZURE_INSTANCE_M30_PAUSED" | "ATLAS_AZURE_INSTANCE_M40_PAUSED" | "ATLAS_AZURE_INSTANCE_M50_PAUSED" | "ATLAS_AZURE_INSTANCE_M60_PAUSED" | "ATLAS_AZURE_INSTANCE_M80_PAUSED" | "ATLAS_AZURE_INSTANCE_M90_PAUSED" | "ATLAS_AZURE_INSTANCE_M200_PAUSED" | "ATLAS_AZURE_INSTANCE_R40_PAUSED" | "ATLAS_AZURE_INSTANCE_R50_PAUSED" | "ATLAS_AZURE_INSTANCE_R60_PAUSED" | "ATLAS_AZURE_INSTANCE_R80_PAUSED" | "ATLAS_AZURE_INSTANCE_R200_PAUSED" | "ATLAS_AZURE_INSTANCE_R300_PAUSED" | "ATLAS_AZURE_INSTANCE_R400_PAUSED" | "ATLAS_AZURE_SEARCH_INSTANCE_S20_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S30_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S40_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S50_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S60_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S70_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S80_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S40_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S50_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S60_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S80_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S90_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S100_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S110_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S130_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S135_MEMORY_LOCALSSD" | "ATLAS_AZURE_STORAGE_P2" | "ATLAS_AZURE_STORAGE_P3" | "ATLAS_AZURE_STORAGE_P4" | "ATLAS_AZURE_STORAGE_P6" | "ATLAS_AZURE_STORAGE_P10" | "ATLAS_AZURE_STORAGE_P15" | "ATLAS_AZURE_STORAGE_P20" | "ATLAS_AZURE_STORAGE_P30" | "ATLAS_AZURE_STORAGE_P40" | "ATLAS_AZURE_STORAGE_P50" | "ATLAS_AZURE_DATA_TRANSFER" | "ATLAS_AZURE_DATA_TRANSFER_REGIONAL_VNET_IN" | "ATLAS_AZURE_DATA_TRANSFER_REGIONAL_VNET_OUT" | "ATLAS_AZURE_DATA_TRANSFER_GLOBAL_VNET_IN" | "ATLAS_AZURE_DATA_TRANSFER_GLOBAL_VNET_OUT" | "ATLAS_AZURE_DATA_TRANSFER_AVAILABILITY_ZONE_IN" | "ATLAS_AZURE_DATA_TRANSFER_AVAILABILITY_ZONE_OUT" | "ATLAS_AZURE_DATA_TRANSFER_INTER_REGION_INTRA_CONTINENT" | "ATLAS_AZURE_DATA_TRANSFER_INTER_REGION_INTER_CONTINENT" | "ATLAS_AZURE_BACKUP_SNAPSHOT_STORAGE" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P2" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P3" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P4" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P6" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P10" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P15" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P20" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P30" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P40" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P50" | "ATLAS_AZURE_STANDARD_STORAGE" | "ATLAS_AZURE_EXTENDED_STANDARD_IOPS" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_EXTENDED_IOPS" | "ATLAS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE" | "ATLAS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_EXTENDED_IOPS" | "ATLAS_BI_CONNECTOR" | "ATLAS_ADVANCED_SECURITY" | "ATLAS_ENTERPRISE_AUDITING" | "ATLAS_FREE_SUPPORT" | "ATLAS_SUPPORT" | "ATLAS_NDS_BACKFILL_SUPPORT" | "STITCH_DATA_DOWNLOADED_FREE_TIER" | "STITCH_DATA_DOWNLOADED" | "STITCH_COMPUTE_FREE_TIER" | "STITCH_COMPUTE" | "CREDIT" | "MINIMUM_CHARGE" | "CHARTS_DATA_DOWNLOADED_FREE_TIER" | "CHARTS_DATA_DOWNLOADED" | "ATLAS_DATA_LAKE_AWS_DATA_RETURNED_SAME_REGION" | "ATLAS_DATA_LAKE_AWS_DATA_RETURNED_DIFFERENT_REGION" | "ATLAS_DATA_LAKE_AWS_DATA_RETURNED_INTERNET" | "ATLAS_DATA_LAKE_AWS_DATA_SCANNED" | "ATLAS_DATA_LAKE_AWS_DATA_TRANSFERRED_FROM_DIFFERENT_REGION" | "ATLAS_NDS_AWS_DATA_LAKE_STORAGE_ACCESS" | "ATLAS_NDS_AWS_DATA_LAKE_STORAGE" | "ATLAS_DATA_FEDERATION_AZURE_DATA_RETURNED_SAME_REGION" | "ATLAS_DATA_FEDERATION_AZURE_DATA_RETURNED_SAME_CONTINENT" | "ATLAS_DATA_FEDERATION_AZURE_DATA_RETURNED_DIFFERENT_CONTINENT" | "ATLAS_DATA_FEDERATION_AZURE_DATA_RETURNED_INTERNET" | "ATLAS_DATA_FEDERATION_GCP_DATA_RETURNED_SAME_REGION" | "ATLAS_DATA_FEDERATION_GCP_DATA_RETURNED_DIFFERENT_REGION" | "ATLAS_DATA_FEDERATION_GCP_DATA_RETURNED_INTERNET" | "ATLAS_DATA_FEDERATION_AZURE_DATA_SCANNED" | "ATLAS_NDS_AZURE_DATA_LAKE_STORAGE_ACCESS" | "ATLAS_NDS_AZURE_DATA_LAKE_STORAGE" | "ATLAS_DATA_FEDERATION_GCP_DATA_SCANNED" | "ATLAS_NDS_GCP_DATA_LAKE_STORAGE_ACCESS" | "ATLAS_NDS_GCP_DATA_LAKE_STORAGE" | "ATLAS_NDS_AWS_OBJECT_STORAGE_ACCESS" | "ATLAS_NDS_AWS_COMPRESSED_OBJECT_STORAGE" | "ATLAS_NDS_AZURE_OBJECT_STORAGE_ACCESS" | "ATLAS_NDS_AZURE_OBJECT_STORAGE" | "ATLAS_NDS_AZURE_COMPRESSED_OBJECT_STORAGE" | "ATLAS_NDS_GCP_OBJECT_STORAGE_ACCESS" | "ATLAS_NDS_GCP_OBJECT_STORAGE" | "ATLAS_NDS_GCP_COMPRESSED_OBJECT_STORAGE" | "ATLAS_ARCHIVE_ACCESS_PARTITION_LOCATE" | "ATLAS_NDS_AWS_PIT_RESTORE_STORAGE_FREE_TIER" | "ATLAS_NDS_AWS_PIT_RESTORE_STORAGE" | "ATLAS_NDS_GCP_PIT_RESTORE_STORAGE_FREE_TIER" | "ATLAS_NDS_GCP_PIT_RESTORE_STORAGE" | "ATLAS_NDS_AZURE_PIT_RESTORE_STORAGE_FREE_TIER" | "ATLAS_NDS_AZURE_PIT_RESTORE_STORAGE" | "ATLAS_NDS_AZURE_PRIVATE_ENDPOINT_CAPACITY_UNITS" | "ATLAS_NDS_AZURE_CMK_PRIVATE_NETWORKING" | "ATLAS_NDS_AWS_CMK_PRIVATE_NETWORKING" | "ATLAS_NDS_AWS_OBJECT_STORAGE" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_UPLOAD" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_UPLOAD" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_M40" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_M50" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_M60" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P2" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P3" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P4" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P6" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P10" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P15" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P20" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P30" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P40" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P50" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM_M40" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM_M50" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM_M60" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM_STORAGE" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM_STORAGE_IOPS" | "ATLAS_NDS_GCP_SNAPSHOT_EXPORT_VM" | "ATLAS_NDS_GCP_SNAPSHOT_EXPORT_VM_M40" | "ATLAS_NDS_GCP_SNAPSHOT_EXPORT_VM_M50" | "ATLAS_NDS_GCP_SNAPSHOT_EXPORT_VM_M60" | "ATLAS_NDS_GCP_SNAPSHOT_EXPORT_VM_STORAGE" | "ATLAS_NDS_AWS_SERVERLESS_RPU" | "ATLAS_NDS_AWS_SERVERLESS_WPU" | "ATLAS_NDS_AWS_SERVERLESS_STORAGE" | "ATLAS_NDS_AWS_SERVERLESS_CONTINUOUS_BACKUP" | "ATLAS_NDS_AWS_SERVERLESS_BACKUP_RESTORE_VM" | "ATLAS_NDS_AWS_SERVERLESS_DATA_TRANSFER_PREVIEW" | "ATLAS_NDS_AWS_SERVERLESS_DATA_TRANSFER" | "ATLAS_NDS_AWS_SERVERLESS_DATA_TRANSFER_REGIONAL" | "ATLAS_NDS_AWS_SERVERLESS_DATA_TRANSFER_CROSS_REGION" | "ATLAS_NDS_AWS_SERVERLESS_DATA_TRANSFER_INTERNET" | "ATLAS_NDS_GCP_SERVERLESS_RPU" | "ATLAS_NDS_GCP_SERVERLESS_WPU" | "ATLAS_NDS_GCP_SERVERLESS_STORAGE" | "ATLAS_NDS_GCP_SERVERLESS_CONTINUOUS_BACKUP" | "ATLAS_NDS_GCP_SERVERLESS_BACKUP_RESTORE_VM" | "ATLAS_NDS_GCP_SERVERLESS_DATA_TRANSFER_PREVIEW" | "ATLAS_NDS_GCP_SERVERLESS_DATA_TRANSFER" | "ATLAS_NDS_GCP_SERVERLESS_DATA_TRANSFER_REGIONAL" | "ATLAS_NDS_GCP_SERVERLESS_DATA_TRANSFER_CROSS_REGION" | "ATLAS_NDS_GCP_SERVERLESS_DATA_TRANSFER_INTERNET" | "ATLAS_NDS_AZURE_SERVERLESS_RPU" | "ATLAS_NDS_AZURE_SERVERLESS_WPU" | "ATLAS_NDS_AZURE_SERVERLESS_STORAGE" | "ATLAS_NDS_AZURE_SERVERLESS_CONTINUOUS_BACKUP" | "ATLAS_NDS_AZURE_SERVERLESS_BACKUP_RESTORE_VM" | "ATLAS_NDS_AZURE_SERVERLESS_DATA_TRANSFER_PREVIEW" | "ATLAS_NDS_AZURE_SERVERLESS_DATA_TRANSFER" | "ATLAS_NDS_AZURE_SERVERLESS_DATA_TRANSFER_REGIONAL" | "ATLAS_NDS_AZURE_SERVERLESS_DATA_TRANSFER_CROSS_REGION" | "ATLAS_NDS_AZURE_SERVERLESS_DATA_TRANSFER_INTERNET" | "REALM_APP_REQUESTS_FREE_TIER" | "REALM_APP_REQUESTS" | "REALM_APP_COMPUTE_FREE_TIER" | "REALM_APP_COMPUTE" | "REALM_APP_SYNC_FREE_TIER" | "REALM_APP_SYNC" | "REALM_APP_DATA_TRANSFER_FREE_TIER" | "REALM_APP_DATA_TRANSFER" | "GCP_SNAPSHOT_COPY_DISK" | "ATLAS_AWS_STREAM_PROCESSING_INSTANCE_SP10" | "ATLAS_AWS_STREAM_PROCESSING_INSTANCE_SP30" | "ATLAS_AWS_STREAM_PROCESSING_INSTANCE_SP50" | "ATLAS_AZURE_STREAM_PROCESSING_INSTANCE_SP10" | "ATLAS_AZURE_STREAM_PROCESSING_INSTANCE_SP30" | "ATLAS_AZURE_STREAM_PROCESSING_INSTANCE_SP50" | "ATLAS_AWS_STREAM_PROCESSING_DATA_TRANSFER" | "ATLAS_AZURE_STREAM_PROCESSING_DATA_TRANSFER" | "ATLAS_AWS_STREAM_PROCESSING_VPC_PEERING" | "ATLAS_AZURE_STREAM_PROCESSING_PRIVATELINK" | "ATLAS_AWS_STREAM_PROCESSING_PRIVATELINK" | "ATLAS_FLEX_AWS_100_USAGE_HOURS" | "ATLAS_FLEX_AWS_200_USAGE_HOURS" | "ATLAS_FLEX_AWS_300_USAGE_HOURS" | "ATLAS_FLEX_AWS_400_USAGE_HOURS" | "ATLAS_FLEX_AWS_500_USAGE_HOURS" | "ATLAS_FLEX_AZURE_100_USAGE_HOURS" | "ATLAS_FLEX_AZURE_200_USAGE_HOURS" | "ATLAS_FLEX_AZURE_300_USAGE_HOURS" | "ATLAS_FLEX_AZURE_400_USAGE_HOURS" | "ATLAS_FLEX_AZURE_500_USAGE_HOURS" | "ATLAS_FLEX_GCP_100_USAGE_HOURS" | "ATLAS_FLEX_GCP_200_USAGE_HOURS" | "ATLAS_FLEX_GCP_300_USAGE_HOURS" | "ATLAS_FLEX_GCP_400_USAGE_HOURS" | "ATLAS_FLEX_GCP_500_USAGE_HOURS";
|
|
3903
|
+
readonly sku?: "CLASSIC_BACKUP_OPLOG" | "CLASSIC_BACKUP_STORAGE" | "CLASSIC_BACKUP_SNAPSHOT_CREATE" | "CLASSIC_BACKUP_DAILY_MINIMUM" | "CLASSIC_BACKUP_FREE_TIER" | "CLASSIC_COUPON" | "BACKUP_STORAGE_FREE_TIER" | "BACKUP_STORAGE" | "FLEX_CONSULTING" | "CLOUD_MANAGER_CLASSIC" | "CLOUD_MANAGER_BASIC_FREE_TIER" | "CLOUD_MANAGER_BASIC" | "CLOUD_MANAGER_PREMIUM" | "CLOUD_MANAGER_FREE_TIER" | "CLOUD_MANAGER_STANDARD_FREE_TIER" | "CLOUD_MANAGER_STANDARD_ANNUAL" | "CLOUD_MANAGER_STANDARD" | "CLOUD_MANAGER_FREE_TRIAL" | "ATLAS_INSTANCE_M0" | "ATLAS_INSTANCE_M2" | "ATLAS_INSTANCE_M5" | "ATLAS_AWS_INSTANCE_M10" | "ATLAS_AWS_INSTANCE_M20" | "ATLAS_AWS_INSTANCE_M30" | "ATLAS_AWS_INSTANCE_M40" | "ATLAS_AWS_INSTANCE_M50" | "ATLAS_AWS_INSTANCE_M60" | "ATLAS_AWS_INSTANCE_M80" | "ATLAS_AWS_INSTANCE_M100" | "ATLAS_AWS_INSTANCE_M140" | "ATLAS_AWS_INSTANCE_M200" | "ATLAS_AWS_INSTANCE_M300" | "ATLAS_AWS_INSTANCE_M40_LOW_CPU" | "ATLAS_AWS_INSTANCE_M50_LOW_CPU" | "ATLAS_AWS_INSTANCE_M60_LOW_CPU" | "ATLAS_AWS_INSTANCE_M80_LOW_CPU" | "ATLAS_AWS_INSTANCE_M200_LOW_CPU" | "ATLAS_AWS_INSTANCE_M300_LOW_CPU" | "ATLAS_AWS_INSTANCE_M400_LOW_CPU" | "ATLAS_AWS_INSTANCE_M700_LOW_CPU" | "ATLAS_AWS_INSTANCE_M40_NVME" | "ATLAS_AWS_INSTANCE_M50_NVME" | "ATLAS_AWS_INSTANCE_M60_NVME" | "ATLAS_AWS_INSTANCE_M80_NVME" | "ATLAS_AWS_INSTANCE_M200_NVME" | "ATLAS_AWS_INSTANCE_M400_NVME" | "ATLAS_AWS_INSTANCE_M10_PAUSED" | "ATLAS_AWS_INSTANCE_M20_PAUSED" | "ATLAS_AWS_INSTANCE_M30_PAUSED" | "ATLAS_AWS_INSTANCE_M40_PAUSED" | "ATLAS_AWS_INSTANCE_M50_PAUSED" | "ATLAS_AWS_INSTANCE_M60_PAUSED" | "ATLAS_AWS_INSTANCE_M80_PAUSED" | "ATLAS_AWS_INSTANCE_M100_PAUSED" | "ATLAS_AWS_INSTANCE_M140_PAUSED" | "ATLAS_AWS_INSTANCE_M200_PAUSED" | "ATLAS_AWS_INSTANCE_M300_PAUSED" | "ATLAS_AWS_INSTANCE_M40_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M50_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M60_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M80_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M200_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M300_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M400_LOW_CPU_PAUSED" | "ATLAS_AWS_INSTANCE_M700_LOW_CPU_PAUSED" | "ATLAS_AWS_SEARCH_INSTANCE_S20_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S30_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S40_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S50_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S60_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S70_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S80_COMPUTE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S30_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S40_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S50_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S60_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S80_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S90_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S100_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S110_MEMORY_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S40_STORAGE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S50_STORAGE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S60_STORAGE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S80_STORAGE_NVME" | "ATLAS_AWS_SEARCH_INSTANCE_S90_STORAGE_NVME" | "ATLAS_AWS_STORAGE_PROVISIONED" | "ATLAS_AWS_STORAGE_STANDARD" | "ATLAS_AWS_STORAGE_STANDARD_GP3" | "ATLAS_AWS_STORAGE_IOPS" | "ATLAS_AWS_DATA_TRANSFER_SAME_REGION" | "ATLAS_AWS_DATA_TRANSFER_DIFFERENT_REGION" | "ATLAS_AWS_DATA_TRANSFER_INTERNET" | "ATLAS_AWS_BACKUP_SNAPSHOT_STORAGE" | "ATLAS_AWS_BACKUP_DOWNLOAD_VM" | "ATLAS_AWS_BACKUP_DOWNLOAD_VM_STORAGE" | "ATLAS_AWS_BACKUP_DOWNLOAD_VM_STORAGE_IOPS" | "ATLAS_AWS_PRIVATE_ENDPOINT" | "ATLAS_AWS_PRIVATE_ENDPOINT_CAPACITY_UNITS" | "ATLAS_GCP_SEARCH_INSTANCE_S20_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S30_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S40_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S50_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S60_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S70_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S80_COMPUTE_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S30_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S40_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S50_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S60_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S70_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S80_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S90_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S100_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S110_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S120_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S130_MEMORY_LOCALSSD" | "ATLAS_GCP_SEARCH_INSTANCE_S140_MEMORY_LOCALSSD" | "ATLAS_GCP_INSTANCE_M10" | "ATLAS_GCP_INSTANCE_M20" | "ATLAS_GCP_INSTANCE_M30" | "ATLAS_GCP_INSTANCE_M40" | "ATLAS_GCP_INSTANCE_M50" | "ATLAS_GCP_INSTANCE_M60" | "ATLAS_GCP_INSTANCE_M80" | "ATLAS_GCP_INSTANCE_M140" | "ATLAS_GCP_INSTANCE_M200" | "ATLAS_GCP_INSTANCE_M250" | "ATLAS_GCP_INSTANCE_M300" | "ATLAS_GCP_INSTANCE_M400" | "ATLAS_GCP_INSTANCE_M40_LOW_CPU" | "ATLAS_GCP_INSTANCE_M50_LOW_CPU" | "ATLAS_GCP_INSTANCE_M60_LOW_CPU" | "ATLAS_GCP_INSTANCE_M80_LOW_CPU" | "ATLAS_GCP_INSTANCE_M200_LOW_CPU" | "ATLAS_GCP_INSTANCE_M300_LOW_CPU" | "ATLAS_GCP_INSTANCE_M400_LOW_CPU" | "ATLAS_GCP_INSTANCE_M600_LOW_CPU" | "ATLAS_GCP_INSTANCE_M10_PAUSED" | "ATLAS_GCP_INSTANCE_M20_PAUSED" | "ATLAS_GCP_INSTANCE_M30_PAUSED" | "ATLAS_GCP_INSTANCE_M40_PAUSED" | "ATLAS_GCP_INSTANCE_M50_PAUSED" | "ATLAS_GCP_INSTANCE_M60_PAUSED" | "ATLAS_GCP_INSTANCE_M80_PAUSED" | "ATLAS_GCP_INSTANCE_M140_PAUSED" | "ATLAS_GCP_INSTANCE_M200_PAUSED" | "ATLAS_GCP_INSTANCE_M250_PAUSED" | "ATLAS_GCP_INSTANCE_M300_PAUSED" | "ATLAS_GCP_INSTANCE_M400_PAUSED" | "ATLAS_GCP_INSTANCE_M40_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M50_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M60_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M80_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M200_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M300_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M400_LOW_CPU_PAUSED" | "ATLAS_GCP_INSTANCE_M600_LOW_CPU_PAUSED" | "ATLAS_GCP_DATA_TRANSFER_INTERNET" | "ATLAS_GCP_STORAGE_SSD" | "ATLAS_GCP_DATA_TRANSFER_INTER_CONNECT" | "ATLAS_GCP_DATA_TRANSFER_INTER_ZONE" | "ATLAS_GCP_DATA_TRANSFER_INTER_REGION" | "ATLAS_GCP_DATA_TRANSFER_GOOGLE" | "ATLAS_GCP_BACKUP_SNAPSHOT_STORAGE" | "ATLAS_GCP_BACKUP_DOWNLOAD_VM" | "ATLAS_GCP_BACKUP_DOWNLOAD_VM_STORAGE" | "ATLAS_GCP_PRIVATE_ENDPOINT" | "ATLAS_GCP_PRIVATE_ENDPOINT_CAPACITY_UNITS" | "ATLAS_GCP_SNAPSHOT_COPY_DATA_TRANSFER" | "ATLAS_AZURE_INSTANCE_M10" | "ATLAS_AZURE_INSTANCE_M20" | "ATLAS_AZURE_INSTANCE_M30" | "ATLAS_AZURE_INSTANCE_M40" | "ATLAS_AZURE_INSTANCE_M50" | "ATLAS_AZURE_INSTANCE_M60" | "ATLAS_AZURE_INSTANCE_M80" | "ATLAS_AZURE_INSTANCE_M90" | "ATLAS_AZURE_INSTANCE_M200" | "ATLAS_AZURE_INSTANCE_R40" | "ATLAS_AZURE_INSTANCE_R50" | "ATLAS_AZURE_INSTANCE_R60" | "ATLAS_AZURE_INSTANCE_R80" | "ATLAS_AZURE_INSTANCE_R200" | "ATLAS_AZURE_INSTANCE_R300" | "ATLAS_AZURE_INSTANCE_R400" | "ATLAS_AZURE_INSTANCE_M60_NVME" | "ATLAS_AZURE_INSTANCE_M80_NVME" | "ATLAS_AZURE_INSTANCE_M200_NVME" | "ATLAS_AZURE_INSTANCE_M300_NVME" | "ATLAS_AZURE_INSTANCE_M400_NVME" | "ATLAS_AZURE_INSTANCE_M600_NVME" | "ATLAS_AZURE_INSTANCE_M10_PAUSED" | "ATLAS_AZURE_INSTANCE_M20_PAUSED" | "ATLAS_AZURE_INSTANCE_M30_PAUSED" | "ATLAS_AZURE_INSTANCE_M40_PAUSED" | "ATLAS_AZURE_INSTANCE_M50_PAUSED" | "ATLAS_AZURE_INSTANCE_M60_PAUSED" | "ATLAS_AZURE_INSTANCE_M80_PAUSED" | "ATLAS_AZURE_INSTANCE_M90_PAUSED" | "ATLAS_AZURE_INSTANCE_M200_PAUSED" | "ATLAS_AZURE_INSTANCE_R40_PAUSED" | "ATLAS_AZURE_INSTANCE_R50_PAUSED" | "ATLAS_AZURE_INSTANCE_R60_PAUSED" | "ATLAS_AZURE_INSTANCE_R80_PAUSED" | "ATLAS_AZURE_INSTANCE_R200_PAUSED" | "ATLAS_AZURE_INSTANCE_R300_PAUSED" | "ATLAS_AZURE_INSTANCE_R400_PAUSED" | "ATLAS_AZURE_SEARCH_INSTANCE_S20_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S30_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S40_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S50_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S60_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S70_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S80_COMPUTE_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S40_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S50_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S60_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S80_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S90_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S100_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S110_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S130_MEMORY_LOCALSSD" | "ATLAS_AZURE_SEARCH_INSTANCE_S135_MEMORY_LOCALSSD" | "ATLAS_AZURE_STORAGE_P2" | "ATLAS_AZURE_STORAGE_P3" | "ATLAS_AZURE_STORAGE_P4" | "ATLAS_AZURE_STORAGE_P6" | "ATLAS_AZURE_STORAGE_P10" | "ATLAS_AZURE_STORAGE_P15" | "ATLAS_AZURE_STORAGE_P20" | "ATLAS_AZURE_STORAGE_P30" | "ATLAS_AZURE_STORAGE_P40" | "ATLAS_AZURE_STORAGE_P50" | "ATLAS_AZURE_DATA_TRANSFER" | "ATLAS_AZURE_DATA_TRANSFER_REGIONAL_VNET_IN" | "ATLAS_AZURE_DATA_TRANSFER_REGIONAL_VNET_OUT" | "ATLAS_AZURE_DATA_TRANSFER_GLOBAL_VNET_IN" | "ATLAS_AZURE_DATA_TRANSFER_GLOBAL_VNET_OUT" | "ATLAS_AZURE_DATA_TRANSFER_AVAILABILITY_ZONE_IN" | "ATLAS_AZURE_DATA_TRANSFER_AVAILABILITY_ZONE_OUT" | "ATLAS_AZURE_DATA_TRANSFER_INTER_REGION_INTRA_CONTINENT" | "ATLAS_AZURE_DATA_TRANSFER_INTER_REGION_INTER_CONTINENT" | "ATLAS_AZURE_BACKUP_SNAPSHOT_STORAGE" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P2" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P3" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P4" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P6" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P10" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P15" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P20" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P30" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P40" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_P50" | "ATLAS_AZURE_STANDARD_STORAGE" | "ATLAS_AZURE_EXTENDED_STANDARD_IOPS" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE" | "ATLAS_AZURE_BACKUP_DOWNLOAD_VM_STORAGE_EXTENDED_IOPS" | "ATLAS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE" | "ATLAS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_EXTENDED_IOPS" | "ATLAS_BI_CONNECTOR" | "ATLAS_ADVANCED_SECURITY" | "ATLAS_ENTERPRISE_AUDITING" | "ATLAS_FREE_SUPPORT" | "ATLAS_SUPPORT" | "ATLAS_NDS_BACKFILL_SUPPORT" | "STITCH_DATA_DOWNLOADED_FREE_TIER" | "STITCH_DATA_DOWNLOADED" | "STITCH_COMPUTE_FREE_TIER" | "STITCH_COMPUTE" | "CREDIT" | "MINIMUM_CHARGE" | "CHARTS_DATA_DOWNLOADED_FREE_TIER" | "CHARTS_DATA_DOWNLOADED" | "ATLAS_DATA_LAKE_AWS_DATA_RETURNED_SAME_REGION" | "ATLAS_DATA_LAKE_AWS_DATA_RETURNED_DIFFERENT_REGION" | "ATLAS_DATA_LAKE_AWS_DATA_RETURNED_INTERNET" | "ATLAS_DATA_LAKE_AWS_DATA_SCANNED" | "ATLAS_DATA_LAKE_AWS_DATA_TRANSFERRED_FROM_DIFFERENT_REGION" | "ATLAS_NDS_AWS_DATA_LAKE_STORAGE_ACCESS" | "ATLAS_NDS_AWS_DATA_LAKE_STORAGE" | "ATLAS_DATA_FEDERATION_AZURE_DATA_RETURNED_SAME_REGION" | "ATLAS_DATA_FEDERATION_AZURE_DATA_RETURNED_SAME_CONTINENT" | "ATLAS_DATA_FEDERATION_AZURE_DATA_RETURNED_DIFFERENT_CONTINENT" | "ATLAS_DATA_FEDERATION_AZURE_DATA_RETURNED_INTERNET" | "ATLAS_DATA_FEDERATION_GCP_DATA_RETURNED_SAME_REGION" | "ATLAS_DATA_FEDERATION_GCP_DATA_RETURNED_DIFFERENT_REGION" | "ATLAS_DATA_FEDERATION_GCP_DATA_RETURNED_INTERNET" | "ATLAS_DATA_FEDERATION_AZURE_DATA_SCANNED" | "ATLAS_NDS_AZURE_DATA_LAKE_STORAGE_ACCESS" | "ATLAS_NDS_AZURE_DATA_LAKE_STORAGE" | "ATLAS_DATA_FEDERATION_GCP_DATA_SCANNED" | "ATLAS_NDS_GCP_DATA_LAKE_STORAGE_ACCESS" | "ATLAS_NDS_GCP_DATA_LAKE_STORAGE" | "ATLAS_NDS_AWS_OBJECT_STORAGE_ACCESS" | "ATLAS_NDS_AWS_COMPRESSED_OBJECT_STORAGE" | "ATLAS_NDS_AZURE_OBJECT_STORAGE_ACCESS" | "ATLAS_NDS_AZURE_OBJECT_STORAGE" | "ATLAS_NDS_AZURE_COMPRESSED_OBJECT_STORAGE" | "ATLAS_NDS_GCP_OBJECT_STORAGE_ACCESS" | "ATLAS_NDS_GCP_OBJECT_STORAGE" | "ATLAS_NDS_GCP_COMPRESSED_OBJECT_STORAGE" | "ATLAS_ARCHIVE_ACCESS_PARTITION_LOCATE" | "ATLAS_NDS_AWS_PIT_RESTORE_STORAGE_FREE_TIER" | "ATLAS_NDS_AWS_PIT_RESTORE_STORAGE" | "ATLAS_NDS_GCP_PIT_RESTORE_STORAGE_FREE_TIER" | "ATLAS_NDS_GCP_PIT_RESTORE_STORAGE" | "ATLAS_NDS_AZURE_PIT_RESTORE_STORAGE_FREE_TIER" | "ATLAS_NDS_AZURE_PIT_RESTORE_STORAGE" | "ATLAS_NDS_AZURE_PRIVATE_ENDPOINT_CAPACITY_UNITS" | "ATLAS_NDS_AZURE_CMK_PRIVATE_NETWORKING" | "ATLAS_NDS_AWS_CMK_PRIVATE_NETWORKING" | "ATLAS_NDS_AWS_OBJECT_STORAGE" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_UPLOAD" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_UPLOAD" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_M40" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_M50" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_M60" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P2" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P3" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P4" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P6" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P10" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P15" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P20" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P30" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P40" | "ATLAS_NDS_AZURE_SNAPSHOT_EXPORT_VM_STORAGE_P50" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM_M40" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM_M50" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM_M60" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM_STORAGE" | "ATLAS_NDS_AWS_SNAPSHOT_EXPORT_VM_STORAGE_IOPS" | "ATLAS_NDS_GCP_SNAPSHOT_EXPORT_VM" | "ATLAS_NDS_GCP_SNAPSHOT_EXPORT_VM_M40" | "ATLAS_NDS_GCP_SNAPSHOT_EXPORT_VM_M50" | "ATLAS_NDS_GCP_SNAPSHOT_EXPORT_VM_M60" | "ATLAS_NDS_GCP_SNAPSHOT_EXPORT_VM_STORAGE" | "ATLAS_NDS_AWS_SERVERLESS_RPU" | "ATLAS_NDS_AWS_SERVERLESS_WPU" | "ATLAS_NDS_AWS_SERVERLESS_STORAGE" | "ATLAS_NDS_AWS_SERVERLESS_CONTINUOUS_BACKUP" | "ATLAS_NDS_AWS_SERVERLESS_BACKUP_RESTORE_VM" | "ATLAS_NDS_AWS_SERVERLESS_DATA_TRANSFER_PREVIEW" | "ATLAS_NDS_AWS_SERVERLESS_DATA_TRANSFER" | "ATLAS_NDS_AWS_SERVERLESS_DATA_TRANSFER_REGIONAL" | "ATLAS_NDS_AWS_SERVERLESS_DATA_TRANSFER_CROSS_REGION" | "ATLAS_NDS_AWS_SERVERLESS_DATA_TRANSFER_INTERNET" | "ATLAS_NDS_GCP_SERVERLESS_RPU" | "ATLAS_NDS_GCP_SERVERLESS_WPU" | "ATLAS_NDS_GCP_SERVERLESS_STORAGE" | "ATLAS_NDS_GCP_SERVERLESS_CONTINUOUS_BACKUP" | "ATLAS_NDS_GCP_SERVERLESS_BACKUP_RESTORE_VM" | "ATLAS_NDS_GCP_SERVERLESS_DATA_TRANSFER_PREVIEW" | "ATLAS_NDS_GCP_SERVERLESS_DATA_TRANSFER" | "ATLAS_NDS_GCP_SERVERLESS_DATA_TRANSFER_REGIONAL" | "ATLAS_NDS_GCP_SERVERLESS_DATA_TRANSFER_CROSS_REGION" | "ATLAS_NDS_GCP_SERVERLESS_DATA_TRANSFER_INTERNET" | "ATLAS_NDS_AZURE_SERVERLESS_RPU" | "ATLAS_NDS_AZURE_SERVERLESS_WPU" | "ATLAS_NDS_AZURE_SERVERLESS_STORAGE" | "ATLAS_NDS_AZURE_SERVERLESS_CONTINUOUS_BACKUP" | "ATLAS_NDS_AZURE_SERVERLESS_BACKUP_RESTORE_VM" | "ATLAS_NDS_AZURE_SERVERLESS_DATA_TRANSFER_PREVIEW" | "ATLAS_NDS_AZURE_SERVERLESS_DATA_TRANSFER" | "ATLAS_NDS_AZURE_SERVERLESS_DATA_TRANSFER_REGIONAL" | "ATLAS_NDS_AZURE_SERVERLESS_DATA_TRANSFER_CROSS_REGION" | "ATLAS_NDS_AZURE_SERVERLESS_DATA_TRANSFER_INTERNET" | "REALM_APP_REQUESTS_FREE_TIER" | "REALM_APP_REQUESTS" | "REALM_APP_COMPUTE_FREE_TIER" | "REALM_APP_COMPUTE" | "REALM_APP_SYNC_FREE_TIER" | "REALM_APP_SYNC" | "REALM_APP_DATA_TRANSFER_FREE_TIER" | "REALM_APP_DATA_TRANSFER" | "GCP_SNAPSHOT_COPY_DISK" | "ATLAS_AWS_STREAM_PROCESSING_INSTANCE_SP10" | "ATLAS_AWS_STREAM_PROCESSING_INSTANCE_SP30" | "ATLAS_AWS_STREAM_PROCESSING_INSTANCE_SP50" | "ATLAS_AZURE_STREAM_PROCESSING_INSTANCE_SP10" | "ATLAS_AZURE_STREAM_PROCESSING_INSTANCE_SP30" | "ATLAS_AZURE_STREAM_PROCESSING_INSTANCE_SP50" | "ATLAS_AWS_STREAM_PROCESSING_DATA_TRANSFER" | "ATLAS_AZURE_STREAM_PROCESSING_DATA_TRANSFER" | "ATLAS_AWS_STREAM_PROCESSING_VPC_PEERING" | "ATLAS_AZURE_STREAM_PROCESSING_PRIVATELINK" | "ATLAS_AWS_STREAM_PROCESSING_PRIVATELINK" | "ATLAS_FLEX_AWS_100_USAGE_HOURS" | "ATLAS_FLEX_AWS_200_USAGE_HOURS" | "ATLAS_FLEX_AWS_300_USAGE_HOURS" | "ATLAS_FLEX_AWS_400_USAGE_HOURS" | "ATLAS_FLEX_AWS_500_USAGE_HOURS" | "ATLAS_FLEX_AZURE_100_USAGE_HOURS" | "ATLAS_FLEX_AZURE_200_USAGE_HOURS" | "ATLAS_FLEX_AZURE_300_USAGE_HOURS" | "ATLAS_FLEX_AZURE_400_USAGE_HOURS" | "ATLAS_FLEX_AZURE_500_USAGE_HOURS" | "ATLAS_FLEX_GCP_100_USAGE_HOURS" | "ATLAS_FLEX_GCP_200_USAGE_HOURS" | "ATLAS_FLEX_GCP_300_USAGE_HOURS" | "ATLAS_FLEX_GCP_400_USAGE_HOURS" | "ATLAS_FLEX_GCP_500_USAGE_HOURS" | "ATLAS_FLEX_AWS_LEGACY_100_USAGE_HOURS" | "ATLAS_FLEX_AWS_LEGACY_200_USAGE_HOURS" | "ATLAS_FLEX_AWS_LEGACY_300_USAGE_HOURS" | "ATLAS_FLEX_AWS_LEGACY_400_USAGE_HOURS" | "ATLAS_FLEX_AWS_LEGACY_500_USAGE_HOURS" | "ATLAS_FLEX_AZURE_LEGACY_100_USAGE_HOURS" | "ATLAS_FLEX_AZURE_LEGACY_200_USAGE_HOURS" | "ATLAS_FLEX_AZURE_LEGACY_300_USAGE_HOURS" | "ATLAS_FLEX_AZURE_LEGACY_400_USAGE_HOURS" | "ATLAS_FLEX_AZURE_LEGACY_500_USAGE_HOURS" | "ATLAS_FLEX_GCP_LEGACY_100_USAGE_HOURS" | "ATLAS_FLEX_GCP_LEGACY_200_USAGE_HOURS" | "ATLAS_FLEX_GCP_LEGACY_300_USAGE_HOURS" | "ATLAS_FLEX_GCP_LEGACY_400_USAGE_HOURS" | "ATLAS_FLEX_GCP_LEGACY_500_USAGE_HOURS";
|
|
3310
3904
|
/**
|
|
3311
3905
|
* Format: date-time
|
|
3312
3906
|
* @description Date and time when MongoDB Cloud began charging for this line item. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
@@ -3418,6 +4012,120 @@ export interface components {
|
|
|
3418
4012
|
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
3419
4013
|
readonly links?: components["schemas"]["Link"][];
|
|
3420
4014
|
};
|
|
4015
|
+
NumberMetricAlertView: {
|
|
4016
|
+
/**
|
|
4017
|
+
* Format: date-time
|
|
4018
|
+
* @description Date and time until which this alert has been acknowledged. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if a MongoDB User previously acknowledged this alert.
|
|
4019
|
+
*
|
|
4020
|
+
* - To acknowledge this alert forever, set the parameter value to 100 years in the future.
|
|
4021
|
+
*
|
|
4022
|
+
* - To unacknowledge a previously acknowledged alert, do not set this parameter value.
|
|
4023
|
+
*/
|
|
4024
|
+
acknowledgedUntil?: string;
|
|
4025
|
+
/**
|
|
4026
|
+
* @description Comment that a MongoDB Cloud user submitted when acknowledging the alert.
|
|
4027
|
+
* @example Expiration on 3/19. Silencing for 7days.
|
|
4028
|
+
*/
|
|
4029
|
+
acknowledgementComment?: string;
|
|
4030
|
+
/**
|
|
4031
|
+
* Format: email
|
|
4032
|
+
* @description MongoDB Cloud username of the person who acknowledged the alert. The response returns this parameter if a MongoDB Cloud user previously acknowledged this alert.
|
|
4033
|
+
*/
|
|
4034
|
+
readonly acknowledgingUsername?: string;
|
|
4035
|
+
/**
|
|
4036
|
+
* @description Unique 24-hexadecimal digit string that identifies the alert configuration that sets this alert.
|
|
4037
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4038
|
+
*/
|
|
4039
|
+
readonly alertConfigId: string;
|
|
4040
|
+
/**
|
|
4041
|
+
* @description Human-readable label that identifies the cluster to which this alert applies. This resource returns this parameter for alerts of events impacting backups, replica sets, or sharded clusters.
|
|
4042
|
+
* @example cluster1
|
|
4043
|
+
*/
|
|
4044
|
+
readonly clusterName?: string;
|
|
4045
|
+
/**
|
|
4046
|
+
* Format: date-time
|
|
4047
|
+
* @description Date and time when MongoDB Cloud created this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
4048
|
+
*/
|
|
4049
|
+
readonly created: string;
|
|
4050
|
+
currentValue?: components["schemas"]["NumberMetricValueView"];
|
|
4051
|
+
eventTypeName: components["schemas"]["HostMetricEventTypeViewAlertable"];
|
|
4052
|
+
/**
|
|
4053
|
+
* @description Unique 24-hexadecimal digit string that identifies the project that owns this alert.
|
|
4054
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4055
|
+
*/
|
|
4056
|
+
readonly groupId?: string;
|
|
4057
|
+
/**
|
|
4058
|
+
* @description Hostname and port of the host to which this alert applies. The resource returns this parameter for alerts of events impacting hosts or replica sets.
|
|
4059
|
+
* @example cloud-test.mongodb.com:27017
|
|
4060
|
+
*/
|
|
4061
|
+
readonly hostnameAndPort?: string;
|
|
4062
|
+
/**
|
|
4063
|
+
* @description Unique 24-hexadecimal digit string that identifies this alert.
|
|
4064
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4065
|
+
*/
|
|
4066
|
+
readonly id: string;
|
|
4067
|
+
/**
|
|
4068
|
+
* Format: date-time
|
|
4069
|
+
* @description Date and time that any notifications were last sent for this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if MongoDB Cloud has sent notifications for this alert.
|
|
4070
|
+
*/
|
|
4071
|
+
readonly lastNotified?: string;
|
|
4072
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
4073
|
+
readonly links?: components["schemas"]["Link"][];
|
|
4074
|
+
/**
|
|
4075
|
+
* @description Name of the metric against which Atlas checks the configured `metricThreshold.threshold`.
|
|
4076
|
+
*
|
|
4077
|
+
* To learn more about the available metrics, see <a href="https://www.mongodb.com/docs/atlas/reference/alert-host-metrics/#std-label-measurement-types" target="_blank">Host Metrics</a>.
|
|
4078
|
+
*
|
|
4079
|
+
* **NOTE**: If you set eventTypeName to OUTSIDE_SERVERLESS_METRIC_THRESHOLD, you can specify only metrics available for serverless. To learn more, see <a href="https://dochub.mongodb.org/core/alert-config-serverless-measurements" target="_blank">Serverless Measurements</a>.
|
|
4080
|
+
* @example ASSERT_USER
|
|
4081
|
+
*/
|
|
4082
|
+
readonly metricName?: string;
|
|
4083
|
+
/**
|
|
4084
|
+
* @description Unique 24-hexadecimal character string that identifies the organization that owns the project to which this alert applies.
|
|
4085
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4086
|
+
*/
|
|
4087
|
+
readonly orgId?: string;
|
|
4088
|
+
/**
|
|
4089
|
+
* @description Name of the replica set to which this alert applies. The response returns this parameter for alerts of events impacting backups, hosts, or replica sets.
|
|
4090
|
+
* @example event-replica-set
|
|
4091
|
+
*/
|
|
4092
|
+
readonly replicaSetName?: string;
|
|
4093
|
+
/**
|
|
4094
|
+
* Format: date-time
|
|
4095
|
+
* @description Date and time that this alert changed to `"status" : "CLOSED"`. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter once `"status" : "CLOSED"`.
|
|
4096
|
+
*/
|
|
4097
|
+
readonly resolved?: string;
|
|
4098
|
+
/**
|
|
4099
|
+
* @description State of this alert at the time you requested its details.
|
|
4100
|
+
* @example OPEN
|
|
4101
|
+
* @enum {string}
|
|
4102
|
+
*/
|
|
4103
|
+
readonly status: "CANCELLED" | "CLOSED" | "OPEN" | "TRACKING";
|
|
4104
|
+
/**
|
|
4105
|
+
* Format: date-time
|
|
4106
|
+
* @description Date and time when someone last updated this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
4107
|
+
*/
|
|
4108
|
+
readonly updated: string;
|
|
4109
|
+
};
|
|
4110
|
+
/**
|
|
4111
|
+
* Number Metric Units
|
|
4112
|
+
* @description Element used to express the quantity. This can be an element of time, storage capacity, and the like.
|
|
4113
|
+
* @example COUNT
|
|
4114
|
+
* @enum {string}
|
|
4115
|
+
*/
|
|
4116
|
+
NumberMetricUnits: "COUNT" | "THOUSAND" | "MILLION" | "BILLION";
|
|
4117
|
+
/**
|
|
4118
|
+
* Number Metric Value
|
|
4119
|
+
* @description Measurement of the **metricName** recorded at the time of the event.
|
|
4120
|
+
*/
|
|
4121
|
+
NumberMetricValueView: {
|
|
4122
|
+
/**
|
|
4123
|
+
* Format: double
|
|
4124
|
+
* @description Amount of the **metricName** recorded at the time of the event. This value triggered the alert.
|
|
4125
|
+
*/
|
|
4126
|
+
readonly number?: number;
|
|
4127
|
+
units?: components["schemas"]["NumberMetricUnits"];
|
|
4128
|
+
};
|
|
3421
4129
|
/**
|
|
3422
4130
|
* On-Demand Cloud Provider Snapshot Source
|
|
3423
4131
|
* @description On-Demand Cloud Provider Snapshots as Source for a Data Lake Pipeline.
|
|
@@ -3565,6 +4273,17 @@ export interface components {
|
|
|
3565
4273
|
/** @description One or more organization-level roles assigned to the MongoDB Cloud user. */
|
|
3566
4274
|
orgRoles?: ("ORG_OWNER" | "ORG_GROUP_CREATOR" | "ORG_BILLING_ADMIN" | "ORG_BILLING_READ_ONLY" | "ORG_READ_ONLY" | "ORG_MEMBER")[];
|
|
3567
4275
|
};
|
|
4276
|
+
PaginatedAlertView: {
|
|
4277
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
4278
|
+
readonly links?: components["schemas"]["Link"][];
|
|
4279
|
+
/** @description List of returned documents that MongoDB Cloud provides when completing this request. */
|
|
4280
|
+
readonly results?: components["schemas"]["AlertViewForNdsGroup"][];
|
|
4281
|
+
/**
|
|
4282
|
+
* Format: int32
|
|
4283
|
+
* @description Total number of documents available. MongoDB Cloud omits this value if `includeCount` is set to `false`. The total number is an estimate and may not be exact.
|
|
4284
|
+
*/
|
|
4285
|
+
readonly totalCount?: number;
|
|
4286
|
+
};
|
|
3568
4287
|
/** @description List of MongoDB Database users granted access to databases in the specified project. */
|
|
3569
4288
|
PaginatedApiAtlasDatabaseUserView: {
|
|
3570
4289
|
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
@@ -3671,6 +4390,223 @@ export interface components {
|
|
|
3671
4390
|
*/
|
|
3672
4391
|
type: "PERIODIC_CPS";
|
|
3673
4392
|
};
|
|
4393
|
+
RawMetricAlertView: {
|
|
4394
|
+
/**
|
|
4395
|
+
* Format: date-time
|
|
4396
|
+
* @description Date and time until which this alert has been acknowledged. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if a MongoDB User previously acknowledged this alert.
|
|
4397
|
+
*
|
|
4398
|
+
* - To acknowledge this alert forever, set the parameter value to 100 years in the future.
|
|
4399
|
+
*
|
|
4400
|
+
* - To unacknowledge a previously acknowledged alert, do not set this parameter value.
|
|
4401
|
+
*/
|
|
4402
|
+
acknowledgedUntil?: string;
|
|
4403
|
+
/**
|
|
4404
|
+
* @description Comment that a MongoDB Cloud user submitted when acknowledging the alert.
|
|
4405
|
+
* @example Expiration on 3/19. Silencing for 7days.
|
|
4406
|
+
*/
|
|
4407
|
+
acknowledgementComment?: string;
|
|
4408
|
+
/**
|
|
4409
|
+
* Format: email
|
|
4410
|
+
* @description MongoDB Cloud username of the person who acknowledged the alert. The response returns this parameter if a MongoDB Cloud user previously acknowledged this alert.
|
|
4411
|
+
*/
|
|
4412
|
+
readonly acknowledgingUsername?: string;
|
|
4413
|
+
/**
|
|
4414
|
+
* @description Unique 24-hexadecimal digit string that identifies the alert configuration that sets this alert.
|
|
4415
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4416
|
+
*/
|
|
4417
|
+
readonly alertConfigId: string;
|
|
4418
|
+
/**
|
|
4419
|
+
* @description Human-readable label that identifies the cluster to which this alert applies. This resource returns this parameter for alerts of events impacting backups, replica sets, or sharded clusters.
|
|
4420
|
+
* @example cluster1
|
|
4421
|
+
*/
|
|
4422
|
+
readonly clusterName?: string;
|
|
4423
|
+
/**
|
|
4424
|
+
* Format: date-time
|
|
4425
|
+
* @description Date and time when MongoDB Cloud created this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
4426
|
+
*/
|
|
4427
|
+
readonly created: string;
|
|
4428
|
+
currentValue?: components["schemas"]["RawMetricValueView"];
|
|
4429
|
+
eventTypeName: components["schemas"]["HostMetricEventTypeViewAlertable"];
|
|
4430
|
+
/**
|
|
4431
|
+
* @description Unique 24-hexadecimal digit string that identifies the project that owns this alert.
|
|
4432
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4433
|
+
*/
|
|
4434
|
+
readonly groupId?: string;
|
|
4435
|
+
/**
|
|
4436
|
+
* @description Hostname and port of the host to which this alert applies. The resource returns this parameter for alerts of events impacting hosts or replica sets.
|
|
4437
|
+
* @example cloud-test.mongodb.com:27017
|
|
4438
|
+
*/
|
|
4439
|
+
readonly hostnameAndPort?: string;
|
|
4440
|
+
/**
|
|
4441
|
+
* @description Unique 24-hexadecimal digit string that identifies this alert.
|
|
4442
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4443
|
+
*/
|
|
4444
|
+
readonly id: string;
|
|
4445
|
+
/**
|
|
4446
|
+
* Format: date-time
|
|
4447
|
+
* @description Date and time that any notifications were last sent for this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if MongoDB Cloud has sent notifications for this alert.
|
|
4448
|
+
*/
|
|
4449
|
+
readonly lastNotified?: string;
|
|
4450
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
4451
|
+
readonly links?: components["schemas"]["Link"][];
|
|
4452
|
+
/**
|
|
4453
|
+
* @description Name of the metric against which Atlas checks the configured `metricThreshold.threshold`.
|
|
4454
|
+
*
|
|
4455
|
+
* To learn more about the available metrics, see <a href="https://www.mongodb.com/docs/atlas/reference/alert-host-metrics/#std-label-measurement-types" target="_blank">Host Metrics</a>.
|
|
4456
|
+
*
|
|
4457
|
+
* **NOTE**: If you set eventTypeName to OUTSIDE_SERVERLESS_METRIC_THRESHOLD, you can specify only metrics available for serverless. To learn more, see <a href="https://dochub.mongodb.org/core/alert-config-serverless-measurements" target="_blank">Serverless Measurements</a>.
|
|
4458
|
+
* @example ASSERT_USER
|
|
4459
|
+
*/
|
|
4460
|
+
readonly metricName?: string;
|
|
4461
|
+
/**
|
|
4462
|
+
* @description Unique 24-hexadecimal character string that identifies the organization that owns the project to which this alert applies.
|
|
4463
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4464
|
+
*/
|
|
4465
|
+
readonly orgId?: string;
|
|
4466
|
+
/**
|
|
4467
|
+
* @description Name of the replica set to which this alert applies. The response returns this parameter for alerts of events impacting backups, hosts, or replica sets.
|
|
4468
|
+
* @example event-replica-set
|
|
4469
|
+
*/
|
|
4470
|
+
readonly replicaSetName?: string;
|
|
4471
|
+
/**
|
|
4472
|
+
* Format: date-time
|
|
4473
|
+
* @description Date and time that this alert changed to `"status" : "CLOSED"`. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter once `"status" : "CLOSED"`.
|
|
4474
|
+
*/
|
|
4475
|
+
readonly resolved?: string;
|
|
4476
|
+
/**
|
|
4477
|
+
* @description State of this alert at the time you requested its details.
|
|
4478
|
+
* @example OPEN
|
|
4479
|
+
* @enum {string}
|
|
4480
|
+
*/
|
|
4481
|
+
readonly status: "CANCELLED" | "CLOSED" | "OPEN" | "TRACKING";
|
|
4482
|
+
/**
|
|
4483
|
+
* Format: date-time
|
|
4484
|
+
* @description Date and time when someone last updated this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
4485
|
+
*/
|
|
4486
|
+
readonly updated: string;
|
|
4487
|
+
};
|
|
4488
|
+
/**
|
|
4489
|
+
* Raw Metric Units
|
|
4490
|
+
* @description Element used to express the quantity. This can be an element of time, storage capacity, and the like.
|
|
4491
|
+
* @default RAW
|
|
4492
|
+
* @enum {string}
|
|
4493
|
+
*/
|
|
4494
|
+
RawMetricUnits: "RAW";
|
|
4495
|
+
/**
|
|
4496
|
+
* Raw Metric Value
|
|
4497
|
+
* @description Measurement of the **metricName** recorded at the time of the event.
|
|
4498
|
+
*/
|
|
4499
|
+
RawMetricValueView: {
|
|
4500
|
+
/**
|
|
4501
|
+
* Format: double
|
|
4502
|
+
* @description Amount of the **metricName** recorded at the time of the event. This value triggered the alert.
|
|
4503
|
+
*/
|
|
4504
|
+
readonly number?: number;
|
|
4505
|
+
units?: components["schemas"]["RawMetricUnits"];
|
|
4506
|
+
};
|
|
4507
|
+
/**
|
|
4508
|
+
* ReplicaSet Alerts
|
|
4509
|
+
* @description ReplicaSet alert notifies about different activities on replica set of mongod instances.
|
|
4510
|
+
*/
|
|
4511
|
+
ReplicaSetAlertViewForNdsGroup: {
|
|
4512
|
+
/**
|
|
4513
|
+
* Format: date-time
|
|
4514
|
+
* @description Date and time until which this alert has been acknowledged. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if a MongoDB User previously acknowledged this alert.
|
|
4515
|
+
*
|
|
4516
|
+
* - To acknowledge this alert forever, set the parameter value to 100 years in the future.
|
|
4517
|
+
*
|
|
4518
|
+
* - To unacknowledge a previously acknowledged alert, do not set this parameter value.
|
|
4519
|
+
*/
|
|
4520
|
+
acknowledgedUntil?: string;
|
|
4521
|
+
/**
|
|
4522
|
+
* @description Comment that a MongoDB Cloud user submitted when acknowledging the alert.
|
|
4523
|
+
* @example Expiration on 3/19. Silencing for 7days.
|
|
4524
|
+
*/
|
|
4525
|
+
acknowledgementComment?: string;
|
|
4526
|
+
/**
|
|
4527
|
+
* Format: email
|
|
4528
|
+
* @description MongoDB Cloud username of the person who acknowledged the alert. The response returns this parameter if a MongoDB Cloud user previously acknowledged this alert.
|
|
4529
|
+
*/
|
|
4530
|
+
readonly acknowledgingUsername?: string;
|
|
4531
|
+
/**
|
|
4532
|
+
* @description Unique 24-hexadecimal digit string that identifies the alert configuration that sets this alert.
|
|
4533
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4534
|
+
*/
|
|
4535
|
+
readonly alertConfigId: string;
|
|
4536
|
+
/**
|
|
4537
|
+
* @description Human-readable label that identifies the cluster to which this alert applies. This resource returns this parameter for alerts of events impacting backups, replica sets, or sharded clusters.
|
|
4538
|
+
* @example cluster1
|
|
4539
|
+
*/
|
|
4540
|
+
readonly clusterName?: string;
|
|
4541
|
+
/**
|
|
4542
|
+
* Format: date-time
|
|
4543
|
+
* @description Date and time when MongoDB Cloud created this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
4544
|
+
*/
|
|
4545
|
+
readonly created: string;
|
|
4546
|
+
eventTypeName: components["schemas"]["ReplicaSetEventTypeViewForNdsGroupAlertable"];
|
|
4547
|
+
/**
|
|
4548
|
+
* @description Unique 24-hexadecimal digit string that identifies the project that owns this alert.
|
|
4549
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4550
|
+
*/
|
|
4551
|
+
readonly groupId?: string;
|
|
4552
|
+
/**
|
|
4553
|
+
* @description Hostname and port of the host to which this alert applies. The resource returns this parameter for alerts of events impacting hosts or replica sets.
|
|
4554
|
+
* @example cloud-test.mongodb.com:27017
|
|
4555
|
+
*/
|
|
4556
|
+
readonly hostnameAndPort?: string;
|
|
4557
|
+
/**
|
|
4558
|
+
* @description Unique 24-hexadecimal digit string that identifies this alert.
|
|
4559
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4560
|
+
*/
|
|
4561
|
+
readonly id: string;
|
|
4562
|
+
/**
|
|
4563
|
+
* Format: date-time
|
|
4564
|
+
* @description Date and time that any notifications were last sent for this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if MongoDB Cloud has sent notifications for this alert.
|
|
4565
|
+
*/
|
|
4566
|
+
readonly lastNotified?: string;
|
|
4567
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
4568
|
+
readonly links?: components["schemas"]["Link"][];
|
|
4569
|
+
/** @description List of unique 24-hexadecimal character strings that identify the replica set members that are not in PRIMARY nor SECONDARY state. */
|
|
4570
|
+
readonly nonRunningHostIds?: string[];
|
|
4571
|
+
/**
|
|
4572
|
+
* @description Unique 24-hexadecimal character string that identifies the organization that owns the project to which this alert applies.
|
|
4573
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4574
|
+
*/
|
|
4575
|
+
readonly orgId?: string;
|
|
4576
|
+
/**
|
|
4577
|
+
* @description Unique 24-hexadecimal character string that identifies the parent cluster to which this alert applies. The parent cluster contains the sharded nodes. MongoDB Cloud returns this parameter only for alerts of events impacting sharded clusters.
|
|
4578
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4579
|
+
*/
|
|
4580
|
+
readonly parentClusterId?: string;
|
|
4581
|
+
/**
|
|
4582
|
+
* @description Name of the replica set to which this alert applies. The response returns this parameter for alerts of events impacting backups, hosts, or replica sets.
|
|
4583
|
+
* @example event-replica-set
|
|
4584
|
+
*/
|
|
4585
|
+
readonly replicaSetName?: string;
|
|
4586
|
+
/**
|
|
4587
|
+
* Format: date-time
|
|
4588
|
+
* @description Date and time that this alert changed to `"status" : "CLOSED"`. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter once `"status" : "CLOSED"`.
|
|
4589
|
+
*/
|
|
4590
|
+
readonly resolved?: string;
|
|
4591
|
+
/**
|
|
4592
|
+
* @description State of this alert at the time you requested its details.
|
|
4593
|
+
* @example OPEN
|
|
4594
|
+
* @enum {string}
|
|
4595
|
+
*/
|
|
4596
|
+
readonly status: "CANCELLED" | "CLOSED" | "OPEN" | "TRACKING";
|
|
4597
|
+
/**
|
|
4598
|
+
* Format: date-time
|
|
4599
|
+
* @description Date and time when someone last updated this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
4600
|
+
*/
|
|
4601
|
+
readonly updated: string;
|
|
4602
|
+
};
|
|
4603
|
+
/**
|
|
4604
|
+
* ReplicaSet Event Types
|
|
4605
|
+
* @description Incident that triggered this alert.
|
|
4606
|
+
* @example NO_PRIMARY
|
|
4607
|
+
* @enum {string}
|
|
4608
|
+
*/
|
|
4609
|
+
ReplicaSetEventTypeViewForNdsGroupAlertable: "REPLICATION_OPLOG_WINDOW_RUNNING_OUT" | "NO_PRIMARY" | "PRIMARY_ELECTED" | "TOO_MANY_ELECTIONS" | "TOO_FEW_HEALTHY_MEMBERS" | "TOO_MANY_UNHEALTHY_MEMBERS";
|
|
3674
4610
|
/**
|
|
3675
4611
|
* Replication Specifications
|
|
3676
4612
|
* @description Details that explain how MongoDB Cloud replicates data on the specified MongoDB database.
|
|
@@ -3962,6 +4898,100 @@ export interface components {
|
|
|
3962
4898
|
*/
|
|
3963
4899
|
providerName: "AWS" | "AZURE";
|
|
3964
4900
|
};
|
|
4901
|
+
/**
|
|
4902
|
+
* Stream Processor Alerts
|
|
4903
|
+
* @description Stream Processor alert notifies about activities on Stream Processor in AtlasStreams.
|
|
4904
|
+
*/
|
|
4905
|
+
StreamProcessorAlertViewForNdsGroup: {
|
|
4906
|
+
/**
|
|
4907
|
+
* Format: date-time
|
|
4908
|
+
* @description Date and time until which this alert has been acknowledged. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if a MongoDB User previously acknowledged this alert.
|
|
4909
|
+
*
|
|
4910
|
+
* - To acknowledge this alert forever, set the parameter value to 100 years in the future.
|
|
4911
|
+
*
|
|
4912
|
+
* - To unacknowledge a previously acknowledged alert, do not set this parameter value.
|
|
4913
|
+
*/
|
|
4914
|
+
acknowledgedUntil?: string;
|
|
4915
|
+
/**
|
|
4916
|
+
* @description Comment that a MongoDB Cloud user submitted when acknowledging the alert.
|
|
4917
|
+
* @example Expiration on 3/19. Silencing for 7days.
|
|
4918
|
+
*/
|
|
4919
|
+
acknowledgementComment?: string;
|
|
4920
|
+
/**
|
|
4921
|
+
* Format: email
|
|
4922
|
+
* @description MongoDB Cloud username of the person who acknowledged the alert. The response returns this parameter if a MongoDB Cloud user previously acknowledged this alert.
|
|
4923
|
+
*/
|
|
4924
|
+
readonly acknowledgingUsername?: string;
|
|
4925
|
+
/**
|
|
4926
|
+
* @description Unique 24-hexadecimal digit string that identifies the alert configuration that sets this alert.
|
|
4927
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4928
|
+
*/
|
|
4929
|
+
readonly alertConfigId: string;
|
|
4930
|
+
/**
|
|
4931
|
+
* Format: date-time
|
|
4932
|
+
* @description Date and time when MongoDB Cloud created this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
4933
|
+
*/
|
|
4934
|
+
readonly created: string;
|
|
4935
|
+
eventTypeName: components["schemas"]["HostEventTypeViewForNdsGroupAlertable"];
|
|
4936
|
+
/**
|
|
4937
|
+
* @description Unique 24-hexadecimal digit string that identifies the project that owns this alert.
|
|
4938
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4939
|
+
*/
|
|
4940
|
+
readonly groupId?: string;
|
|
4941
|
+
/**
|
|
4942
|
+
* @description Unique 24-hexadecimal digit string that identifies this alert.
|
|
4943
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4944
|
+
*/
|
|
4945
|
+
readonly id: string;
|
|
4946
|
+
/**
|
|
4947
|
+
* @description The name of the Stream Processing Instance to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processing Instances.
|
|
4948
|
+
* @example foobar
|
|
4949
|
+
*/
|
|
4950
|
+
readonly instanceName?: string;
|
|
4951
|
+
/**
|
|
4952
|
+
* Format: date-time
|
|
4953
|
+
* @description Date and time that any notifications were last sent for this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if MongoDB Cloud has sent notifications for this alert.
|
|
4954
|
+
*/
|
|
4955
|
+
readonly lastNotified?: string;
|
|
4956
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
4957
|
+
readonly links?: components["schemas"]["Link"][];
|
|
4958
|
+
/**
|
|
4959
|
+
* @description Unique 24-hexadecimal character string that identifies the organization that owns the project to which this alert applies.
|
|
4960
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
4961
|
+
*/
|
|
4962
|
+
readonly orgId?: string;
|
|
4963
|
+
/**
|
|
4964
|
+
* @description The error message associated with the Stream Processor to which this alert applies.
|
|
4965
|
+
* @example MongoServerError: Failed to start stream processor: (Location77175) Could not connect to the Kafka topic with kafka error code: -195, message: Local: Broker transport failure.: (Location77175)
|
|
4966
|
+
*/
|
|
4967
|
+
readonly processorErrorMsg?: string;
|
|
4968
|
+
/**
|
|
4969
|
+
* @description The name of the Stream Processor to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processors.
|
|
4970
|
+
* @example foobar
|
|
4971
|
+
*/
|
|
4972
|
+
readonly processorName?: string;
|
|
4973
|
+
/**
|
|
4974
|
+
* @description The state of the Stream Processor to which this alert applies. The resource returns this parameter for alerts of events impacting Stream Processors.
|
|
4975
|
+
* @example STARTED
|
|
4976
|
+
*/
|
|
4977
|
+
readonly processorState?: string;
|
|
4978
|
+
/**
|
|
4979
|
+
* Format: date-time
|
|
4980
|
+
* @description Date and time that this alert changed to `"status" : "CLOSED"`. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter once `"status" : "CLOSED"`.
|
|
4981
|
+
*/
|
|
4982
|
+
readonly resolved?: string;
|
|
4983
|
+
/**
|
|
4984
|
+
* @description State of this alert at the time you requested its details.
|
|
4985
|
+
* @example OPEN
|
|
4986
|
+
* @enum {string}
|
|
4987
|
+
*/
|
|
4988
|
+
readonly status: "CANCELLED" | "CLOSED" | "OPEN" | "TRACKING";
|
|
4989
|
+
/**
|
|
4990
|
+
* Format: date-time
|
|
4991
|
+
* @description Date and time when someone last updated this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
4992
|
+
*/
|
|
4993
|
+
readonly updated: string;
|
|
4994
|
+
};
|
|
3965
4995
|
/** @description AWS configurations for AWS-based connection types. */
|
|
3966
4996
|
StreamsAWSConnectionConfig: {
|
|
3967
4997
|
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
@@ -4398,6 +5428,120 @@ export interface components {
|
|
|
4398
5428
|
/** @description List of synonym statuses by mapping. */
|
|
4399
5429
|
synonymMappingStatusDetail?: components["schemas"]["SynonymMappingStatusDetailMap"][];
|
|
4400
5430
|
};
|
|
5431
|
+
TimeMetricAlertView: {
|
|
5432
|
+
/**
|
|
5433
|
+
* Format: date-time
|
|
5434
|
+
* @description Date and time until which this alert has been acknowledged. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if a MongoDB User previously acknowledged this alert.
|
|
5435
|
+
*
|
|
5436
|
+
* - To acknowledge this alert forever, set the parameter value to 100 years in the future.
|
|
5437
|
+
*
|
|
5438
|
+
* - To unacknowledge a previously acknowledged alert, do not set this parameter value.
|
|
5439
|
+
*/
|
|
5440
|
+
acknowledgedUntil?: string;
|
|
5441
|
+
/**
|
|
5442
|
+
* @description Comment that a MongoDB Cloud user submitted when acknowledging the alert.
|
|
5443
|
+
* @example Expiration on 3/19. Silencing for 7days.
|
|
5444
|
+
*/
|
|
5445
|
+
acknowledgementComment?: string;
|
|
5446
|
+
/**
|
|
5447
|
+
* Format: email
|
|
5448
|
+
* @description MongoDB Cloud username of the person who acknowledged the alert. The response returns this parameter if a MongoDB Cloud user previously acknowledged this alert.
|
|
5449
|
+
*/
|
|
5450
|
+
readonly acknowledgingUsername?: string;
|
|
5451
|
+
/**
|
|
5452
|
+
* @description Unique 24-hexadecimal digit string that identifies the alert configuration that sets this alert.
|
|
5453
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
5454
|
+
*/
|
|
5455
|
+
readonly alertConfigId: string;
|
|
5456
|
+
/**
|
|
5457
|
+
* @description Human-readable label that identifies the cluster to which this alert applies. This resource returns this parameter for alerts of events impacting backups, replica sets, or sharded clusters.
|
|
5458
|
+
* @example cluster1
|
|
5459
|
+
*/
|
|
5460
|
+
readonly clusterName?: string;
|
|
5461
|
+
/**
|
|
5462
|
+
* Format: date-time
|
|
5463
|
+
* @description Date and time when MongoDB Cloud created this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
5464
|
+
*/
|
|
5465
|
+
readonly created: string;
|
|
5466
|
+
currentValue?: components["schemas"]["TimeMetricValueView"];
|
|
5467
|
+
eventTypeName: components["schemas"]["HostMetricEventTypeViewAlertable"];
|
|
5468
|
+
/**
|
|
5469
|
+
* @description Unique 24-hexadecimal digit string that identifies the project that owns this alert.
|
|
5470
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
5471
|
+
*/
|
|
5472
|
+
readonly groupId?: string;
|
|
5473
|
+
/**
|
|
5474
|
+
* @description Hostname and port of the host to which this alert applies. The resource returns this parameter for alerts of events impacting hosts or replica sets.
|
|
5475
|
+
* @example cloud-test.mongodb.com:27017
|
|
5476
|
+
*/
|
|
5477
|
+
readonly hostnameAndPort?: string;
|
|
5478
|
+
/**
|
|
5479
|
+
* @description Unique 24-hexadecimal digit string that identifies this alert.
|
|
5480
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
5481
|
+
*/
|
|
5482
|
+
readonly id: string;
|
|
5483
|
+
/**
|
|
5484
|
+
* Format: date-time
|
|
5485
|
+
* @description Date and time that any notifications were last sent for this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter if MongoDB Cloud has sent notifications for this alert.
|
|
5486
|
+
*/
|
|
5487
|
+
readonly lastNotified?: string;
|
|
5488
|
+
/** @description List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. */
|
|
5489
|
+
readonly links?: components["schemas"]["Link"][];
|
|
5490
|
+
/**
|
|
5491
|
+
* @description Name of the metric against which Atlas checks the configured `metricThreshold.threshold`.
|
|
5492
|
+
*
|
|
5493
|
+
* To learn more about the available metrics, see <a href="https://www.mongodb.com/docs/atlas/reference/alert-host-metrics/#std-label-measurement-types" target="_blank">Host Metrics</a>.
|
|
5494
|
+
*
|
|
5495
|
+
* **NOTE**: If you set eventTypeName to OUTSIDE_SERVERLESS_METRIC_THRESHOLD, you can specify only metrics available for serverless. To learn more, see <a href="https://dochub.mongodb.org/core/alert-config-serverless-measurements" target="_blank">Serverless Measurements</a>.
|
|
5496
|
+
* @example ASSERT_USER
|
|
5497
|
+
*/
|
|
5498
|
+
readonly metricName?: string;
|
|
5499
|
+
/**
|
|
5500
|
+
* @description Unique 24-hexadecimal character string that identifies the organization that owns the project to which this alert applies.
|
|
5501
|
+
* @example 32b6e34b3d91647abb20e7b8
|
|
5502
|
+
*/
|
|
5503
|
+
readonly orgId?: string;
|
|
5504
|
+
/**
|
|
5505
|
+
* @description Name of the replica set to which this alert applies. The response returns this parameter for alerts of events impacting backups, hosts, or replica sets.
|
|
5506
|
+
* @example event-replica-set
|
|
5507
|
+
*/
|
|
5508
|
+
readonly replicaSetName?: string;
|
|
5509
|
+
/**
|
|
5510
|
+
* Format: date-time
|
|
5511
|
+
* @description Date and time that this alert changed to `"status" : "CLOSED"`. This parameter expresses its value in the ISO 8601 timestamp format in UTC. The resource returns this parameter once `"status" : "CLOSED"`.
|
|
5512
|
+
*/
|
|
5513
|
+
readonly resolved?: string;
|
|
5514
|
+
/**
|
|
5515
|
+
* @description State of this alert at the time you requested its details.
|
|
5516
|
+
* @example OPEN
|
|
5517
|
+
* @enum {string}
|
|
5518
|
+
*/
|
|
5519
|
+
readonly status: "CANCELLED" | "CLOSED" | "OPEN" | "TRACKING";
|
|
5520
|
+
/**
|
|
5521
|
+
* Format: date-time
|
|
5522
|
+
* @description Date and time when someone last updated this alert. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
|
|
5523
|
+
*/
|
|
5524
|
+
readonly updated: string;
|
|
5525
|
+
};
|
|
5526
|
+
/**
|
|
5527
|
+
* Time Metric Units
|
|
5528
|
+
* @description Element used to express the quantity. This can be an element of time, storage capacity, and the like.
|
|
5529
|
+
* @default HOURS
|
|
5530
|
+
* @enum {string}
|
|
5531
|
+
*/
|
|
5532
|
+
TimeMetricUnits: "NANOSECONDS" | "MILLISECONDS" | "MILLION_MINUTES" | "SECONDS" | "MINUTES" | "HOURS" | "DAYS";
|
|
5533
|
+
/**
|
|
5534
|
+
* Time Metric Value
|
|
5535
|
+
* @description Measurement of the **metricName** recorded at the time of the event.
|
|
5536
|
+
*/
|
|
5537
|
+
TimeMetricValueView: {
|
|
5538
|
+
/**
|
|
5539
|
+
* Format: double
|
|
5540
|
+
* @description Amount of the **metricName** recorded at the time of the event. This value triggered the alert.
|
|
5541
|
+
*/
|
|
5542
|
+
readonly number?: number;
|
|
5543
|
+
units?: components["schemas"]["TimeMetricUnits"];
|
|
5544
|
+
};
|
|
4401
5545
|
/**
|
|
4402
5546
|
* englishPossessive
|
|
4403
5547
|
* @description Filter that removes possessives (trailing 's) from words.
|
|
@@ -5189,11 +6333,14 @@ export type AwsRegionConfig = components['schemas']['AWSRegionConfig'];
|
|
|
5189
6333
|
export type AwsRegionConfig20240805 = components['schemas']['AWSRegionConfig20240805'];
|
|
5190
6334
|
export type AdvancedAutoScalingSettings = components['schemas']['AdvancedAutoScalingSettings'];
|
|
5191
6335
|
export type AdvancedComputeAutoScaling = components['schemas']['AdvancedComputeAutoScaling'];
|
|
6336
|
+
export type AlertViewForNdsGroup = components['schemas']['AlertViewForNdsGroup'];
|
|
5192
6337
|
export type ApiAtlasCloudProviderAccessFeatureUsageFeatureIdView = components['schemas']['ApiAtlasCloudProviderAccessFeatureUsageFeatureIdView'];
|
|
5193
6338
|
export type ApiAtlasClusterAdvancedConfigurationView = components['schemas']['ApiAtlasClusterAdvancedConfigurationView'];
|
|
5194
6339
|
export type ApiAtlasFtsAnalyzersViewManual = components['schemas']['ApiAtlasFTSAnalyzersViewManual'];
|
|
5195
6340
|
export type ApiAtlasFtsMappingsViewManual = components['schemas']['ApiAtlasFTSMappingsViewManual'];
|
|
5196
6341
|
export type ApiError = components['schemas']['ApiError'];
|
|
6342
|
+
export type AppServiceAlertView = components['schemas']['AppServiceAlertView'];
|
|
6343
|
+
export type AppServiceEventTypeViewAlertable = components['schemas']['AppServiceEventTypeViewAlertable'];
|
|
5197
6344
|
export type AtlasOrganization = components['schemas']['AtlasOrganization'];
|
|
5198
6345
|
export type AtlasSearchAnalyzer = components['schemas']['AtlasSearchAnalyzer'];
|
|
5199
6346
|
export type AzureCloudProviderContainer = components['schemas']['AzureCloudProviderContainer'];
|
|
@@ -5238,10 +6385,12 @@ export type CloudProviderContainer = components['schemas']['CloudProviderContain
|
|
|
5238
6385
|
export type CloudProviderGcpAutoScaling = components['schemas']['CloudProviderGCPAutoScaling'];
|
|
5239
6386
|
export type CloudRegionConfig = components['schemas']['CloudRegionConfig'];
|
|
5240
6387
|
export type CloudRegionConfig20240805 = components['schemas']['CloudRegionConfig20240805'];
|
|
6388
|
+
export type ClusterAlertView = components['schemas']['ClusterAlertView'];
|
|
5241
6389
|
export type ClusterConnectionStrings = components['schemas']['ClusterConnectionStrings'];
|
|
5242
6390
|
export type ClusterDescription20240805 = components['schemas']['ClusterDescription20240805'];
|
|
5243
6391
|
export type ClusterDescriptionConnectionStringsPrivateEndpoint = components['schemas']['ClusterDescriptionConnectionStringsPrivateEndpoint'];
|
|
5244
6392
|
export type ClusterDescriptionConnectionStringsPrivateEndpointEndpoint = components['schemas']['ClusterDescriptionConnectionStringsPrivateEndpointEndpoint'];
|
|
6393
|
+
export type ClusterEventTypeViewAlertable = components['schemas']['ClusterEventTypeViewAlertable'];
|
|
5245
6394
|
export type ClusterFlexProviderSettings = components['schemas']['ClusterFlexProviderSettings'];
|
|
5246
6395
|
export type ClusterFreeAutoScaling = components['schemas']['ClusterFreeAutoScaling'];
|
|
5247
6396
|
export type ClusterFreeProviderSettings = components['schemas']['ClusterFreeProviderSettings'];
|
|
@@ -5272,11 +6421,15 @@ export type DataLakeHttpStore = components['schemas']['DataLakeHTTPStore'];
|
|
|
5272
6421
|
export type DataLakePipelinesPartitionField = components['schemas']['DataLakePipelinesPartitionField'];
|
|
5273
6422
|
export type DataLakeS3StoreSettings = components['schemas']['DataLakeS3StoreSettings'];
|
|
5274
6423
|
export type DataLakeStoreSettings = components['schemas']['DataLakeStoreSettings'];
|
|
6424
|
+
export type DataMetricAlertView = components['schemas']['DataMetricAlertView'];
|
|
6425
|
+
export type DataMetricUnits = components['schemas']['DataMetricUnits'];
|
|
6426
|
+
export type DataMetricValueView = components['schemas']['DataMetricValueView'];
|
|
5275
6427
|
export type DataProcessRegionView = components['schemas']['DataProcessRegionView'];
|
|
5276
6428
|
export type DatabaseUserRole = components['schemas']['DatabaseUserRole'];
|
|
5277
6429
|
export type DateCriteriaView = components['schemas']['DateCriteriaView'];
|
|
5278
6430
|
export type DedicatedHardwareSpec = components['schemas']['DedicatedHardwareSpec'];
|
|
5279
6431
|
export type DedicatedHardwareSpec20240805 = components['schemas']['DedicatedHardwareSpec20240805'];
|
|
6432
|
+
export type DefaultAlertViewForNdsGroup = components['schemas']['DefaultAlertViewForNdsGroup'];
|
|
5280
6433
|
export type DefaultScheduleView = components['schemas']['DefaultScheduleView'];
|
|
5281
6434
|
export type DiskBackupSnapshotAwsExportBucketRequest = components['schemas']['DiskBackupSnapshotAWSExportBucketRequest'];
|
|
5282
6435
|
export type DiskBackupSnapshotAwsExportBucketResponse = components['schemas']['DiskBackupSnapshotAWSExportBucketResponse'];
|
|
@@ -5312,12 +6465,20 @@ export type GroupRoleAssignment = components['schemas']['GroupRoleAssignment'];
|
|
|
5312
6465
|
export type GroupUserResponse = components['schemas']['GroupUserResponse'];
|
|
5313
6466
|
export type HardwareSpec = components['schemas']['HardwareSpec'];
|
|
5314
6467
|
export type HardwareSpec20240805 = components['schemas']['HardwareSpec20240805'];
|
|
6468
|
+
export type HostAlertViewForNdsGroup = components['schemas']['HostAlertViewForNdsGroup'];
|
|
6469
|
+
export type HostEventTypeViewForNdsGroupAlertable = components['schemas']['HostEventTypeViewForNdsGroupAlertable'];
|
|
6470
|
+
export type HostMetricAlert = components['schemas']['HostMetricAlert'];
|
|
6471
|
+
export type HostMetricEventTypeViewAlertable = components['schemas']['HostMetricEventTypeViewAlertable'];
|
|
6472
|
+
export type HostMetricValue = components['schemas']['HostMetricValue'];
|
|
5315
6473
|
export type IngestionSink = components['schemas']['IngestionSink'];
|
|
5316
6474
|
export type IngestionSource = components['schemas']['IngestionSource'];
|
|
5317
6475
|
export type InvoiceLineItem = components['schemas']['InvoiceLineItem'];
|
|
5318
6476
|
export type Link = components['schemas']['Link'];
|
|
5319
6477
|
export type MonthlyScheduleView = components['schemas']['MonthlyScheduleView'];
|
|
5320
6478
|
export type NetworkPermissionEntry = components['schemas']['NetworkPermissionEntry'];
|
|
6479
|
+
export type NumberMetricAlertView = components['schemas']['NumberMetricAlertView'];
|
|
6480
|
+
export type NumberMetricUnits = components['schemas']['NumberMetricUnits'];
|
|
6481
|
+
export type NumberMetricValueView = components['schemas']['NumberMetricValueView'];
|
|
5321
6482
|
export type OnDemandCpsSnapshotSource = components['schemas']['OnDemandCpsSnapshotSource'];
|
|
5322
6483
|
export type OnlineArchiveSchedule = components['schemas']['OnlineArchiveSchedule'];
|
|
5323
6484
|
export type OrgActiveUserResponse = components['schemas']['OrgActiveUserResponse'];
|
|
@@ -5325,6 +6486,7 @@ export type OrgGroup = components['schemas']['OrgGroup'];
|
|
|
5325
6486
|
export type OrgPendingUserResponse = components['schemas']['OrgPendingUserResponse'];
|
|
5326
6487
|
export type OrgUserResponse = components['schemas']['OrgUserResponse'];
|
|
5327
6488
|
export type OrgUserRolesResponse = components['schemas']['OrgUserRolesResponse'];
|
|
6489
|
+
export type PaginatedAlertView = components['schemas']['PaginatedAlertView'];
|
|
5328
6490
|
export type PaginatedApiAtlasDatabaseUserView = components['schemas']['PaginatedApiAtlasDatabaseUserView'];
|
|
5329
6491
|
export type PaginatedAtlasGroupView = components['schemas']['PaginatedAtlasGroupView'];
|
|
5330
6492
|
export type PaginatedClusterDescription20240805 = components['schemas']['PaginatedClusterDescription20240805'];
|
|
@@ -5333,6 +6495,11 @@ export type PaginatedNetworkAccessView = components['schemas']['PaginatedNetwork
|
|
|
5333
6495
|
export type PaginatedOrgGroupView = components['schemas']['PaginatedOrgGroupView'];
|
|
5334
6496
|
export type PaginatedOrganizationView = components['schemas']['PaginatedOrganizationView'];
|
|
5335
6497
|
export type PeriodicCpsSnapshotSource = components['schemas']['PeriodicCpsSnapshotSource'];
|
|
6498
|
+
export type RawMetricAlertView = components['schemas']['RawMetricAlertView'];
|
|
6499
|
+
export type RawMetricUnits = components['schemas']['RawMetricUnits'];
|
|
6500
|
+
export type RawMetricValueView = components['schemas']['RawMetricValueView'];
|
|
6501
|
+
export type ReplicaSetAlertViewForNdsGroup = components['schemas']['ReplicaSetAlertViewForNdsGroup'];
|
|
6502
|
+
export type ReplicaSetEventTypeViewForNdsGroupAlertable = components['schemas']['ReplicaSetEventTypeViewForNdsGroupAlertable'];
|
|
5336
6503
|
export type ReplicationSpec20240805 = components['schemas']['ReplicationSpec20240805'];
|
|
5337
6504
|
export type ResourceTag = components['schemas']['ResourceTag'];
|
|
5338
6505
|
export type SearchHostStatusDetail = components['schemas']['SearchHostStatusDetail'];
|
|
@@ -5348,6 +6515,7 @@ export type SearchSynonymMappingDefinition = components['schemas']['SearchSynony
|
|
|
5348
6515
|
export type ServerlessAwsTenantEndpointUpdate = components['schemas']['ServerlessAWSTenantEndpointUpdate'];
|
|
5349
6516
|
export type ServerlessAzureTenantEndpointUpdate = components['schemas']['ServerlessAzureTenantEndpointUpdate'];
|
|
5350
6517
|
export type ServerlessTenantEndpointUpdate = components['schemas']['ServerlessTenantEndpointUpdate'];
|
|
6518
|
+
export type StreamProcessorAlertViewForNdsGroup = components['schemas']['StreamProcessorAlertViewForNdsGroup'];
|
|
5351
6519
|
export type StreamsAwsConnectionConfig = components['schemas']['StreamsAWSConnectionConfig'];
|
|
5352
6520
|
export type StreamsAwsLambdaConnection = components['schemas']['StreamsAWSLambdaConnection'];
|
|
5353
6521
|
export type StreamsClusterConnection = components['schemas']['StreamsClusterConnection'];
|
|
@@ -5372,6 +6540,9 @@ export type TextSearchIndexCreateRequest = components['schemas']['TextSearchInde
|
|
|
5372
6540
|
export type TextSearchIndexDefinition = components['schemas']['TextSearchIndexDefinition'];
|
|
5373
6541
|
export type TextSearchIndexResponse = components['schemas']['TextSearchIndexResponse'];
|
|
5374
6542
|
export type TextSearchIndexStatusDetail = components['schemas']['TextSearchIndexStatusDetail'];
|
|
6543
|
+
export type TimeMetricAlertView = components['schemas']['TimeMetricAlertView'];
|
|
6544
|
+
export type TimeMetricUnits = components['schemas']['TimeMetricUnits'];
|
|
6545
|
+
export type TimeMetricValueView = components['schemas']['TimeMetricValueView'];
|
|
5375
6546
|
export type TokenFilterEnglishPossessive = components['schemas']['TokenFilterEnglishPossessive'];
|
|
5376
6547
|
export type TokenFilterFlattenGraph = components['schemas']['TokenFilterFlattenGraph'];
|
|
5377
6548
|
export type TokenFilterPorterStemming = components['schemas']['TokenFilterPorterStemming'];
|
|
@@ -5734,6 +6905,49 @@ export interface operations {
|
|
|
5734
6905
|
500: components["responses"]["internalServerError"];
|
|
5735
6906
|
};
|
|
5736
6907
|
};
|
|
6908
|
+
listAlerts: {
|
|
6909
|
+
parameters: {
|
|
6910
|
+
query?: {
|
|
6911
|
+
/** @description Flag that indicates whether Application wraps the response in an `envelope` JSON object. Some API clients cannot access the HTTP response headers or status code. To remediate this, set envelope=true in the query. Endpoints that return a list of results use the results object as an envelope. Application adds the status parameter to the response body. */
|
|
6912
|
+
envelope?: components["parameters"]["envelope"];
|
|
6913
|
+
/** @description Flag that indicates whether the response returns the total number of items (**totalCount**) in the response. */
|
|
6914
|
+
includeCount?: components["parameters"]["includeCount"];
|
|
6915
|
+
/** @description Number of items that the response returns per page. */
|
|
6916
|
+
itemsPerPage?: components["parameters"]["itemsPerPage"];
|
|
6917
|
+
/** @description Number of the page that displays the current set of the total objects that the response returns. */
|
|
6918
|
+
pageNum?: components["parameters"]["pageNum"];
|
|
6919
|
+
/** @description Flag that indicates whether the response body should be in the prettyprint format. */
|
|
6920
|
+
pretty?: components["parameters"]["pretty"];
|
|
6921
|
+
/** @description Status of the alerts to return. Omit to return all alerts in all statuses. */
|
|
6922
|
+
status?: "OPEN" | "TRACKING" | "CLOSED";
|
|
6923
|
+
};
|
|
6924
|
+
header?: never;
|
|
6925
|
+
path: {
|
|
6926
|
+
/** @description Unique 24-hexadecimal digit string that identifies your project. Use the [/groups](#tag/Projects/operation/listProjects) endpoint to retrieve all projects to which the authenticated user has access.
|
|
6927
|
+
*
|
|
6928
|
+
* **NOTE**: Groups and projects are synonymous terms. Your group id is the same as your project id. For existing groups, your group/project id remains the same. The resource and corresponding endpoints use the term groups. */
|
|
6929
|
+
groupId: components["parameters"]["groupId"];
|
|
6930
|
+
};
|
|
6931
|
+
cookie?: never;
|
|
6932
|
+
};
|
|
6933
|
+
requestBody?: never;
|
|
6934
|
+
responses: {
|
|
6935
|
+
/** @description OK */
|
|
6936
|
+
200: {
|
|
6937
|
+
headers: {
|
|
6938
|
+
[name: string]: unknown;
|
|
6939
|
+
};
|
|
6940
|
+
content: {
|
|
6941
|
+
"application/vnd.atlas.2023-01-01+json": components["schemas"]["PaginatedAlertView"];
|
|
6942
|
+
};
|
|
6943
|
+
};
|
|
6944
|
+
400: components["responses"]["badRequest"];
|
|
6945
|
+
401: components["responses"]["unauthorized"];
|
|
6946
|
+
403: components["responses"]["forbidden"];
|
|
6947
|
+
404: components["responses"]["notFound"];
|
|
6948
|
+
500: components["responses"]["internalServerError"];
|
|
6949
|
+
};
|
|
6950
|
+
};
|
|
5737
6951
|
listClusters: {
|
|
5738
6952
|
parameters: {
|
|
5739
6953
|
query?: {
|