You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/common/atlas/openapi.d.ts
+90Lines changed: 90 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -212,6 +212,26 @@ export interface paths {
212
212
patch?: never;
213
213
trace?: never;
214
214
};
215
+
"/api/atlas/v2/orgs": {
216
+
parameters: {
217
+
query?: never;
218
+
header?: never;
219
+
path?: never;
220
+
cookie?: never;
221
+
};
222
+
/**
223
+
* Return All Organizations
224
+
* @description Returns all organizations to which the requesting Service Account or API Key has access. To use this resource, the requesting Service Account or API Key must have the Organization Member role.
/** @description Application error message returned with this error. */
599
619
readonlyreason?: string;
600
620
};
621
+
/** @description Details that describe the organization. */
622
+
AtlasOrganization: {
623
+
/**
624
+
* @description Unique 24-hexadecimal digit string that identifies the organization.
625
+
* @example 32b6e34b3d91647abb20e7b8
626
+
*/
627
+
readonlyid?: string;
628
+
/** @description Flag that indicates whether this organization has been deleted. */
629
+
readonlyisDeleted?: boolean;
630
+
/** @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. */
631
+
readonlylinks?: components["schemas"]["Link"][];
632
+
/** @description Human-readable label that identifies the organization. */
633
+
name: string;
634
+
/**
635
+
* @description Disables automatic alert creation. When set to true, no organization level alerts will be created automatically.
636
+
* @default false
637
+
*/
638
+
skipDefaultAlertsSettings: boolean;
639
+
};
601
640
/** Atlas Search Analyzer */
602
641
AtlasSearchAnalyzer: {
603
642
/** @description Filters that examine text one character at a time and perform filtering operations. */
/** @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. */
3375
+
readonlylinks?: components["schemas"]["Link"][];
3376
+
/** @description List of returned documents that MongoDB Cloud provides when completing this request. */
* @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.
3381
+
*/
3382
+
readonlytotalCount?: number;
3383
+
};
3334
3384
/**
3335
3385
* Periodic Cloud Provider Snapshot Source
3336
3386
* @description Scheduled Cloud Provider Snapshot as Source for a Data Lake Pipeline.
@@ -4876,6 +4926,7 @@ export type ApiAtlasClusterAdvancedConfigurationView = components['schemas']['Ap
/** @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. */
5704
+
envelope?: components["parameters"]["envelope"];
5705
+
/** @description Flag that indicates whether the response returns the total number of items (**totalCount**) in the response. */
/** @description Number of the page that displays the current set of the total objects that the response returns. */
5710
+
pageNum?: components["parameters"]["pageNum"];
5711
+
/** @description Flag that indicates whether the response body should be in the prettyprint format. */
5712
+
pretty?: components["parameters"]["pretty"];
5713
+
/** @description Human-readable label of the organization to use to filter the returned list. Performs a case-insensitive search for an organization that starts with the specified name. */
0 commit comments