Skip to content

Commit ac46bbe

Browse files
1 parent e852913 commit ac46bbe

26 files changed

+312
-117
lines changed

openapi/.raw/v2.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40440,6 +40440,10 @@
4044040440
},
4044140441
{
4044240442
"properties": {
40443+
"clusterGroupId": {
40444+
"description": "The id of the group that the cluster belongs to.",
40445+
"type": "string"
40446+
},
4044340447
"clusterName": {
4044440448
"description": "Name of the cluster configured for this connection.",
4044540449
"type": "string"
@@ -45643,10 +45647,6 @@
4564345647
}
4564445648
}
4564545649
},
45646-
"externalDocs": {
45647-
"description": "Back to Atlas Docs",
45648-
"url": "https://www.mongodb.com/docs/atlas/"
45649-
},
4565045650
"info": {
4565145651
"description": "The MongoDB Atlas Administration API allows developers to manage all components in MongoDB Atlas.\n\nThe Atlas Administration API uses OAuth2 Service Accounts or HTTP Digest Authentication to authenticate requests. Provide a programmatic API public key and corresponding private key as the username and password when constructing the HTTP request. For example, to [return database access history](#tag/Access-Tracking/operation/listAccessLogsByClusterName) with [cURL](https://en.wikipedia.org/wiki/CURL), run the following command in the terminal:\n\n```\ncurl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-03-12+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"\n```\n\nTo learn more, see [Get Started with the Atlas Administration API](https://www.mongodb.com/docs/atlas/configure-api-access/). For support, see [MongoDB Support](https://www.mongodb.com/support/get-started).\n\nYou can also explore the various endpoints available through the Atlas Administration API in MongoDB's [Postman workspace](https://www.postman.com/mongodb-devrel/workspace/mongodb-atlas-administration-apis/).",
4565245652
"license": {
@@ -45656,7 +45656,7 @@
4565645656
"termsOfService": "https://www.mongodb.com/mongodb-management-service-terms-and-conditions",
4565745657
"title": "MongoDB Atlas Administration API",
4565845658
"version": "2.0",
45659-
"x-xgen-sha": "8e91ba6065df0ad2af146ae235e968386798b544"
45659+
"x-xgen-sha": "f3f4dec04574379bfe51822d420c61002698cc55"
4566045660
},
4566145661
"openapi": "3.0.1",
4566245662
"paths": {
@@ -80502,5 +80502,15 @@
8050280502
"xgen-IPA-126-tag-names-should-use-title-case": "Tag name predates IPA validation"
8050380503
}
8050480504
}
80505+
],
80506+
"x-externalLinks": [
80507+
{
80508+
"label": "Back to Atlas Docs",
80509+
"url": "https://www.mongodb.com/docs/atlas/"
80510+
},
80511+
{
80512+
"label": "API Changelog",
80513+
"url": "https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog/"
80514+
}
8050580515
]
8050680516
}

openapi/.raw/v2.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32461,6 +32461,9 @@ components:
3246132461
allOf:
3246232462
- $ref: '#/components/schemas/StreamsConnection'
3246332463
- properties:
32464+
clusterGroupId:
32465+
description: The id of the group that the cluster belongs to.
32466+
type: string
3246432467
clusterName:
3246532468
description: Name of the cluster configured for this connection.
3246632469
type: string
@@ -36540,9 +36543,6 @@ components:
3654036543
scopes: {}
3654136544
tokenUrl: https://cloud.mongodb.com/api/oauth/token
3654236545
type: oauth2
36543-
externalDocs:
36544-
description: Back to Atlas Docs
36545-
url: https://www.mongodb.com/docs/atlas/
3654636546
info:
3654736547
description: |-
3654836548
The MongoDB Atlas Administration API allows developers to manage all components in MongoDB Atlas.
@@ -36565,7 +36565,7 @@ info:
3656536565
termsOfService: https://www.mongodb.com/mongodb-management-service-terms-and-conditions
3656636566
title: MongoDB Atlas Administration API
3656736567
version: "2.0"
36568-
x-xgen-sha: 8e91ba6065df0ad2af146ae235e968386798b544
36568+
x-xgen-sha: f3f4dec04574379bfe51822d420c61002698cc55
3656936569
openapi: 3.0.1
3657036570
paths:
3657136571
/api/atlas/v2:
@@ -59165,3 +59165,8 @@ tags:
5916559165
name: X.509 Authentication
5916659166
x-xgen-IPA-exception:
5916759167
xgen-IPA-126-tag-names-should-use-title-case: Tag name predates IPA validation
59168+
x-externalLinks:
59169+
- label: Back to Atlas Docs
59170+
url: https://www.mongodb.com/docs/atlas/
59171+
- label: API Changelog
59172+
url: https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog/

openapi/v2.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38358,6 +38358,10 @@
3835838358
},
3835938359
{
3836038360
"properties": {
38361+
"clusterGroupId": {
38362+
"description": "The id of the group that the cluster belongs to.",
38363+
"type": "string"
38364+
},
3836138365
"clusterName": {
3836238366
"description": "Name of the cluster configured for this connection.",
3836338367
"type": "string"
@@ -43078,10 +43082,6 @@
4307843082
}
4307943083
}
4308043084
},
43081-
"externalDocs": {
43082-
"description": "Back to Atlas Docs",
43083-
"url": "https://www.mongodb.com/docs/atlas/"
43084-
},
4308543085
"info": {
4308643086
"description": "The MongoDB Atlas Administration API allows developers to manage all components in MongoDB Atlas.\n\nThe Atlas Administration API uses OAuth2 Service Accounts or HTTP Digest Authentication to authenticate requests. Provide a programmatic API public key and corresponding private key as the username and password when constructing the HTTP request. For example, to [return database access history](#tag/Access-Tracking/operation/listAccessLogsByClusterName) with [cURL](https://en.wikipedia.org/wiki/CURL), run the following command in the terminal:\n\n```\ncurl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-03-12+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"\n```\n\nTo learn more, see [Get Started with the Atlas Administration API](https://www.mongodb.com/docs/atlas/configure-api-access/). For support, see [MongoDB Support](https://www.mongodb.com/support/get-started).\n\nYou can also explore the various endpoints available through the Atlas Administration API in MongoDB's [Postman workspace](https://www.postman.com/mongodb-devrel/workspace/mongodb-atlas-administration-apis/).",
4308743087
"license": {
@@ -43091,7 +43091,7 @@
4309143091
"termsOfService": "https://www.mongodb.com/mongodb-management-service-terms-and-conditions",
4309243092
"title": "MongoDB Atlas Administration API",
4309343093
"version": "2.0",
43094-
"x-xgen-sha": "8e91ba6065df0ad2af146ae235e968386798b544"
43094+
"x-xgen-sha": "f3f4dec04574379bfe51822d420c61002698cc55"
4309543095
},
4309643096
"openapi": "3.0.1",
4309743097
"paths": {
@@ -75483,5 +75483,15 @@
7548375483
},
7548475484
"name": "X.509 Authentication"
7548575485
}
75486+
],
75487+
"x-externalLinks": [
75488+
{
75489+
"label": "Back to Atlas Docs",
75490+
"url": "https://www.mongodb.com/docs/atlas/"
75491+
},
75492+
{
75493+
"label": "API Changelog",
75494+
"url": "https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog/"
75495+
}
7548675496
]
7548775497
}

openapi/v2.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31033,6 +31033,9 @@ components:
3103331033
allOf:
3103431034
- $ref: '#/components/schemas/StreamsConnection'
3103531035
- properties:
31036+
clusterGroupId:
31037+
description: The id of the group that the cluster belongs to.
31038+
type: string
3103631039
clusterName:
3103731040
description: Name of the cluster configured for this connection.
3103831041
type: string
@@ -34764,9 +34767,6 @@ components:
3476434767
scopes: {}
3476534768
tokenUrl: https://cloud.mongodb.com/api/oauth/token
3476634769
type: oauth2
34767-
externalDocs:
34768-
description: Back to Atlas Docs
34769-
url: https://www.mongodb.com/docs/atlas/
3477034770
info:
3477134771
description: |-
3477234772
The MongoDB Atlas Administration API allows developers to manage all components in MongoDB Atlas.
@@ -34789,7 +34789,7 @@ info:
3478934789
termsOfService: https://www.mongodb.com/mongodb-management-service-terms-and-conditions
3479034790
title: MongoDB Atlas Administration API
3479134791
version: "2.0"
34792-
x-xgen-sha: 8e91ba6065df0ad2af146ae235e968386798b544
34792+
x-xgen-sha: f3f4dec04574379bfe51822d420c61002698cc55
3479334793
openapi: 3.0.1
3479434794
paths:
3479534795
/api/atlas/v2:
@@ -55579,3 +55579,8 @@ tags:
5557955579
description: Self-Managed X.509 Certificates
5558055580
url: https://www.mongodb.com/docs/atlas/security-self-managed-x509/
5558155581
name: X.509 Authentication
55582+
x-externalLinks:
55583+
- label: Back to Atlas Docs
55584+
url: https://www.mongodb.com/docs/atlas/
55585+
- label: API Changelog
55586+
url: https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog/

openapi/v2/openapi-2023-01-01.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33658,6 +33658,10 @@
3365833658
},
3365933659
{
3366033660
"properties": {
33661+
"clusterGroupId": {
33662+
"description": "The id of the group that the cluster belongs to.",
33663+
"type": "string"
33664+
},
3366133665
"clusterName": {
3366233666
"description": "Name of the cluster configured for this connection.",
3366333667
"type": "string"
@@ -37851,10 +37855,6 @@
3785137855
}
3785237856
}
3785337857
},
37854-
"externalDocs": {
37855-
"description": "Back to Atlas Docs",
37856-
"url": "https://www.mongodb.com/docs/atlas/"
37857-
},
3785837858
"info": {
3785937859
"description": "The MongoDB Atlas Administration API allows developers to manage all components in MongoDB Atlas.\n\nThe Atlas Administration API uses OAuth2 Service Accounts or HTTP Digest Authentication to authenticate requests. Provide a programmatic API public key and corresponding private key as the username and password when constructing the HTTP request. For example, to [return database access history](#tag/Access-Tracking/operation/listAccessLogsByClusterName) with [cURL](https://en.wikipedia.org/wiki/CURL), run the following command in the terminal:\n\n```\ncurl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"\n```\n\nTo learn more, see [Get Started with the Atlas Administration API](https://www.mongodb.com/docs/atlas/configure-api-access/). For support, see [MongoDB Support](https://www.mongodb.com/support/get-started).\n\nYou can also explore the various endpoints available through the Atlas Administration API in MongoDB's [Postman workspace](https://www.postman.com/mongodb-devrel/workspace/mongodb-atlas-administration-apis/).",
3786037860
"license": {
@@ -37864,7 +37864,7 @@
3786437864
"termsOfService": "https://www.mongodb.com/mongodb-management-service-terms-and-conditions",
3786537865
"title": "MongoDB Atlas Administration API",
3786637866
"version": "2.0",
37867-
"x-xgen-sha": "8e91ba6065df0ad2af146ae235e968386798b544"
37867+
"x-xgen-sha": "f3f4dec04574379bfe51822d420c61002698cc55"
3786837868
},
3786937869
"openapi": "3.0.1",
3787037870
"paths": {
@@ -68750,5 +68750,15 @@
6875068750
},
6875168751
"name": "X.509 Authentication"
6875268752
}
68753+
],
68754+
"x-externalLinks": [
68755+
{
68756+
"label": "Back to Atlas Docs",
68757+
"url": "https://www.mongodb.com/docs/atlas/"
68758+
},
68759+
{
68760+
"label": "API Changelog",
68761+
"url": "https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog/"
68762+
}
6875368763
]
6875468764
}

openapi/v2/openapi-2023-01-01.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27301,6 +27301,9 @@ components:
2730127301
allOf:
2730227302
- $ref: '#/components/schemas/StreamsConnection'
2730327303
- properties:
27304+
clusterGroupId:
27305+
description: The id of the group that the cluster belongs to.
27306+
type: string
2730427307
clusterName:
2730527308
description: Name of the cluster configured for this connection.
2730627309
type: string
@@ -30623,9 +30626,6 @@ components:
3062330626
scopes: {}
3062430627
tokenUrl: https://cloud.mongodb.com/api/oauth/token
3062530628
type: oauth2
30626-
externalDocs:
30627-
description: Back to Atlas Docs
30628-
url: https://www.mongodb.com/docs/atlas/
3062930629
info:
3063030630
description: |-
3063130631
The MongoDB Atlas Administration API allows developers to manage all components in MongoDB Atlas.
@@ -30648,7 +30648,7 @@ info:
3064830648
termsOfService: https://www.mongodb.com/mongodb-management-service-terms-and-conditions
3064930649
title: MongoDB Atlas Administration API
3065030650
version: "2.0"
30651-
x-xgen-sha: 8e91ba6065df0ad2af146ae235e968386798b544
30651+
x-xgen-sha: f3f4dec04574379bfe51822d420c61002698cc55
3065230652
openapi: 3.0.1
3065330653
paths:
3065430654
/api/atlas/v2:
@@ -61771,3 +61771,8 @@ tags:
6177161771
description: Self-Managed X.509 Certificates
6177261772
url: https://www.mongodb.com/docs/atlas/security-self-managed-x509/
6177361773
name: X.509 Authentication
61774+
x-externalLinks:
61775+
- label: Back to Atlas Docs
61776+
url: https://www.mongodb.com/docs/atlas/
61777+
- label: API Changelog
61778+
url: https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog/

openapi/v2/openapi-2023-02-01.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34134,6 +34134,10 @@
3413434134
},
3413534135
{
3413634136
"properties": {
34137+
"clusterGroupId": {
34138+
"description": "The id of the group that the cluster belongs to.",
34139+
"type": "string"
34140+
},
3413734141
"clusterName": {
3413834142
"description": "Name of the cluster configured for this connection.",
3413934143
"type": "string"
@@ -38566,10 +38570,6 @@
3856638570
}
3856738571
}
3856838572
},
38569-
"externalDocs": {
38570-
"description": "Back to Atlas Docs",
38571-
"url": "https://www.mongodb.com/docs/atlas/"
38572-
},
3857338573
"info": {
3857438574
"description": "The MongoDB Atlas Administration API allows developers to manage all components in MongoDB Atlas.\n\nThe Atlas Administration API uses OAuth2 Service Accounts or HTTP Digest Authentication to authenticate requests. Provide a programmatic API public key and corresponding private key as the username and password when constructing the HTTP request. For example, to [return database access history](#tag/Access-Tracking/operation/listAccessLogsByClusterName) with [cURL](https://en.wikipedia.org/wiki/CURL), run the following command in the terminal:\n\n```\ncurl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"\n```\n\nTo learn more, see [Get Started with the Atlas Administration API](https://www.mongodb.com/docs/atlas/configure-api-access/). For support, see [MongoDB Support](https://www.mongodb.com/support/get-started).\n\nYou can also explore the various endpoints available through the Atlas Administration API in MongoDB's [Postman workspace](https://www.postman.com/mongodb-devrel/workspace/mongodb-atlas-administration-apis/).",
3857538575
"license": {
@@ -38579,7 +38579,7 @@
3857938579
"termsOfService": "https://www.mongodb.com/mongodb-management-service-terms-and-conditions",
3858038580
"title": "MongoDB Atlas Administration API",
3858138581
"version": "2.0",
38582-
"x-xgen-sha": "8e91ba6065df0ad2af146ae235e968386798b544"
38582+
"x-xgen-sha": "f3f4dec04574379bfe51822d420c61002698cc55"
3858338583
},
3858438584
"openapi": "3.0.1",
3858538585
"paths": {
@@ -71174,5 +71174,15 @@
7117471174
},
7117571175
"name": "X.509 Authentication"
7117671176
}
71177+
],
71178+
"x-externalLinks": [
71179+
{
71180+
"label": "Back to Atlas Docs",
71181+
"url": "https://www.mongodb.com/docs/atlas/"
71182+
},
71183+
{
71184+
"label": "API Changelog",
71185+
"url": "https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog/"
71186+
}
7117771187
]
7117871188
}

openapi/v2/openapi-2023-02-01.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27699,6 +27699,9 @@ components:
2769927699
allOf:
2770027700
- $ref: '#/components/schemas/StreamsConnection'
2770127701
- properties:
27702+
clusterGroupId:
27703+
description: The id of the group that the cluster belongs to.
27704+
type: string
2770227705
clusterName:
2770327706
description: Name of the cluster configured for this connection.
2770427707
type: string
@@ -31209,9 +31212,6 @@ components:
3120931212
scopes: {}
3121031213
tokenUrl: https://cloud.mongodb.com/api/oauth/token
3121131214
type: oauth2
31212-
externalDocs:
31213-
description: Back to Atlas Docs
31214-
url: https://www.mongodb.com/docs/atlas/
3121531215
info:
3121631216
description: |-
3121731217
The MongoDB Atlas Administration API allows developers to manage all components in MongoDB Atlas.
@@ -31234,7 +31234,7 @@ info:
3123431234
termsOfService: https://www.mongodb.com/mongodb-management-service-terms-and-conditions
3123531235
title: MongoDB Atlas Administration API
3123631236
version: "2.0"
31237-
x-xgen-sha: 8e91ba6065df0ad2af146ae235e968386798b544
31237+
x-xgen-sha: f3f4dec04574379bfe51822d420c61002698cc55
3123831238
openapi: 3.0.1
3123931239
paths:
3124031240
/api/atlas/v2:
@@ -64087,3 +64087,8 @@ tags:
6408764087
description: Self-Managed X.509 Certificates
6408864088
url: https://www.mongodb.com/docs/atlas/security-self-managed-x509/
6408964089
name: X.509 Authentication
64090+
x-externalLinks:
64091+
- label: Back to Atlas Docs
64092+
url: https://www.mongodb.com/docs/atlas/
64093+
- label: API Changelog
64094+
url: https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog/

openapi/v2/openapi-2023-10-01.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34234,6 +34234,10 @@
3423434234
},
3423534235
{
3423634236
"properties": {
34237+
"clusterGroupId": {
34238+
"description": "The id of the group that the cluster belongs to.",
34239+
"type": "string"
34240+
},
3423734241
"clusterName": {
3423834242
"description": "Name of the cluster configured for this connection.",
3423934243
"type": "string"
@@ -38666,10 +38670,6 @@
3866638670
}
3866738671
}
3866838672
},
38669-
"externalDocs": {
38670-
"description": "Back to Atlas Docs",
38671-
"url": "https://www.mongodb.com/docs/atlas/"
38672-
},
3867338673
"info": {
3867438674
"description": "The MongoDB Atlas Administration API allows developers to manage all components in MongoDB Atlas.\n\nThe Atlas Administration API uses OAuth2 Service Accounts or HTTP Digest Authentication to authenticate requests. Provide a programmatic API public key and corresponding private key as the username and password when constructing the HTTP request. For example, to [return database access history](#tag/Access-Tracking/operation/listAccessLogsByClusterName) with [cURL](https://en.wikipedia.org/wiki/CURL), run the following command in the terminal:\n\n```\ncurl --user \"{PUBLIC-KEY}:{PRIVATE-KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}?pretty=true\"\n```\n\nTo learn more, see [Get Started with the Atlas Administration API](https://www.mongodb.com/docs/atlas/configure-api-access/). For support, see [MongoDB Support](https://www.mongodb.com/support/get-started).\n\nYou can also explore the various endpoints available through the Atlas Administration API in MongoDB's [Postman workspace](https://www.postman.com/mongodb-devrel/workspace/mongodb-atlas-administration-apis/).",
3867538675
"license": {
@@ -38679,7 +38679,7 @@
3867938679
"termsOfService": "https://www.mongodb.com/mongodb-management-service-terms-and-conditions",
3868038680
"title": "MongoDB Atlas Administration API",
3868138681
"version": "2.0",
38682-
"x-xgen-sha": "8e91ba6065df0ad2af146ae235e968386798b544"
38682+
"x-xgen-sha": "f3f4dec04574379bfe51822d420c61002698cc55"
3868338683
},
3868438684
"openapi": "3.0.1",
3868538685
"paths": {
@@ -71270,5 +71270,15 @@
7127071270
},
7127171271
"name": "X.509 Authentication"
7127271272
}
71273+
],
71274+
"x-externalLinks": [
71275+
{
71276+
"label": "Back to Atlas Docs",
71277+
"url": "https://www.mongodb.com/docs/atlas/"
71278+
},
71279+
{
71280+
"label": "API Changelog",
71281+
"url": "https://www.mongodb.com/docs/atlas/reference/api-resources-spec/changelog/"
71282+
}
7127371283
]
7127471284
}

0 commit comments

Comments
 (0)