Skip to content

Commit 679f50f

Browse files
authored
CSHARP-5325: Fix namespaces in docs (#1497)
1 parent d272154 commit 679f50f

File tree

7 files changed

+47
-31
lines changed

7 files changed

+47
-31
lines changed

apidocs/api/index.md

+9-12
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@
3232
<a href="xref:MongoDB.Driver"></a>
3333
: [!INCLUDE[summary](../namespaces/MongoDB.Driver/MongoDB.Driver.md)]
3434

35-
<a href="xref:MongoDB.Driver.Encryption"></a>
36-
: [!INCLUDE[summary](../namespaces/MongoDB.Driver/MongoDB.Driver.Encryption.md)]
37-
3835
<a href="xref:MongoDB.Driver.GeoJsonObjectModel"></a>
3936
: [!INCLUDE[summary](../namespaces/MongoDB.Driver/MongoDB.Driver.GeoJsonObjectModel.md)]
4037

@@ -53,12 +50,6 @@
5350
<a href="xref:MongoDB.Driver.Search"></a>
5451
: [!INCLUDE[summary](../namespaces/MongoDB.Driver/MongoDB.Driver.Search.md)]
5552

56-
<a href="xref:MongoDB.Driver.Core"></a>
57-
: [!INCLUDE[summary](../namespaces/MongoDB.Driver/MongoDB.Driver.Core.md)]
58-
59-
<a href="xref:MongoDB.Driver.Core.Authentication"></a>
60-
: [!INCLUDE[summary](../namespaces/MongoDB.Driver/MongoDB.Driver.Core.Authentication.md)]
61-
6253
<a href="xref:MongoDB.Driver.Core.Bindings"></a>
6354
: [!INCLUDE[summary](../namespaces/MongoDB.Driver/MongoDB.Driver.Core.Bindings.md)]
6455

@@ -74,9 +65,6 @@
7465
<a href="xref:MongoDB.Driver.Core.Configuration"></a>
7566
: [!INCLUDE[summary](../namespaces/MongoDB.Driver/MongoDB.Driver.Core.Configuration.md)]
7667

77-
<a href="xref:MongoDB.Driver.Core.ConnectionPools"></a>
78-
: [!INCLUDE[summary](../namespaces/MongoDB.Driver/MongoDB.Driver.Core.ConnectionPools.md)]
79-
8068
<a href="xref:MongoDB.Driver.Core.Connections"></a>
8169
: [!INCLUDE[summary](../namespaces/MongoDB.Driver/MongoDB.Driver.Core.Connections.md)]
8270

@@ -95,3 +83,12 @@
9583
<a href="xref:MongoDB.Driver.Core.WireProtocol"></a>
9684
: [!INCLUDE[summary](../namespaces/MongoDB.Driver/MongoDB.Driver.Core.WireProtocol.md)]
9785

86+
## MongoDB.Driver.Authentication.AWS Namespaces
87+
88+
<a href="xref:MongoDB.Driver.Authentication.AWS"></a>
89+
: [!INCLUDE[summary](../namespaces/MongoDB.Driver.Authentication.AWS/MongoDB.Driver.Authentication.AWS.md)]
90+
91+
## MongoDB.Driver.Encryption Namespaces
92+
93+
<a href="xref:MongoDB.Driver.Encryption"></a>
94+
: [!INCLUDE[summary](../namespaces/MongoDB.Driver.Encryption/MongoDB.Driver.Encryption.md)]

apidocs/docfx.json

+26-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
],
3232
"exclude": [
3333
"**/bin/**",
34-
"**/obj/**"
34+
"**/obj/**",
35+
"MongoDB.Driver/Encryption/**"
3536
],
3637
"src": "../src"
3738
}
@@ -68,6 +69,29 @@
6869
"memberLayout": "separatePages",
6970
"EnumSortOrder": "declaringOrder",
7071
"allowCompilationErrors": false
72+
},
73+
{
74+
"src": [
75+
{
76+
"files": [
77+
"MongoDB.Driver.Encryption/*.csproj"
78+
],
79+
"exclude": [
80+
"**/bin/**",
81+
"**/obj/**"
82+
],
83+
"src": "../src"
84+
}
85+
],
86+
"dest": "api/MongoDB.Driver.Encryption",
87+
"includePrivateMembers": false,
88+
"disableGitFeatures": false,
89+
"disableDefaultFilter": false,
90+
"noRestore": false,
91+
"namespaceLayout": "flattened",
92+
"memberLayout": "separatePages",
93+
"EnumSortOrder": "declaringOrder",
94+
"allowCompilationErrors": false
7195
}
7296
],
7397
"build": {
@@ -77,6 +101,7 @@
77101
"api/MongoDB.Bson/**.yml",
78102
"api/MongoDB.Driver/**.yml",
79103
"api/MongoDB.Driver.Authentication.Aws/**.yml",
104+
"api/MongoDB.Driver.Encryption/**.yml",
80105
"api/toc.yml",
81106
"api/index.md"
82107
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
uid: MongoDB.Driver.Authentication.AWS
3+
summary: *content
4+
---
5+
6+
The MongoDB.Driver.Authentication.AWS namespace contains classes related to AWS authentication.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
uid: MongoDB.Driver.Encryption
3+
summary: *content
4+
---
5+
6+
The MongoDB.Driver.Encryption namespace contains all the basic types and classes related to client-side encryption.

apidocs/namespaces/MongoDB.Driver/MongoDB.Driver.Core.Authentication.md

-6
This file was deleted.

apidocs/namespaces/MongoDB.Driver/MongoDB.Driver.Core.ConnectionPools.md

-6
This file was deleted.

apidocs/namespaces/MongoDB.Driver/MongoDB.Driver.Core.md

-6
This file was deleted.

0 commit comments

Comments
 (0)