Skip to content

Commit 31715e5

Browse files
authored
(DOCSP-18883): Release notes, source constant updates for 1.20.2 (#640)
* (DOCSP-18883): Release notes, source constant updates for 1.20.2 * Set submodule to v1.20.2 * (DOCSP-18883): Updated toc to point to submodule
1 parent 5dbaef8 commit 31715e5

File tree

531 files changed

+38165
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

531 files changed

+38165
-11
lines changed

config/build_conf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ system:
2929
- 'sphinx_local.yaml'
3030
- htaccess: ['htaccess.yaml']
3131
version:
32-
release: '1.20.0'
32+
release: '1.20.2'
3333
branch: 'master'
3434
assets:
3535
- branch: master

snooty.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ data-lake-store = "data store"
177177
default-profile = ":ref:`default profile <mcli-profiles>`"
178178
mcli = "MongoDB CLI"
179179
mcli-long = "MongoDB Command Line Interface (``mongocli``)"
180-
mcli-version = "1.20.1"
180+
mcli-version = "1.20.2"
181181
mdbagent = "MongoDB Agent"
182182
mdbVersion = "5.0"
183183
mongosh = ":binary:`~bin.mongosh`"
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
.. _mongocli-atlas-accessLists-create:
2+
3+
=================================
4+
mongocli atlas accessLists create
5+
=================================
6+
7+
.. default-domain:: mongodb
8+
9+
.. contents:: On this page
10+
:local:
11+
:backlinks: none
12+
:depth: 1
13+
:class: singlecol
14+
15+
Create an IP access list for your project.
16+
17+
Syntax
18+
------
19+
20+
.. code-block::
21+
22+
mongocli atlas accessLists create <entry> [options]
23+
24+
Arguments
25+
---------
26+
27+
.. list-table::
28+
:header-rows: 1
29+
:widths: 20 10 10 60
30+
31+
* - Name
32+
- Type
33+
- Required
34+
- Description
35+
* - entry
36+
- string
37+
- false
38+
- The IP address, CIDR address, or AWS security group ID of the access list entry to create.
39+
40+
Options
41+
-------
42+
43+
.. list-table::
44+
:header-rows: 1
45+
:widths: 20 10 10 60
46+
47+
* - Name
48+
- Type
49+
- Required
50+
- Description
51+
* - --comment
52+
- string
53+
- false
54+
- Optional description or comment for the entry.
55+
* - --deleteAfter
56+
- string
57+
- false
58+
- ISO-8601-formatted UTC date after which Atlas removes the entry from the entry.
59+
* - -h, --help
60+
-
61+
- false
62+
- help for create
63+
* - -o, --output
64+
- string
65+
- false
66+
- Output format.
67+
Valid values: json|json-path|go-template|go-template-file
68+
* - --projectId
69+
- string
70+
- false
71+
- Project ID to use. Overrides configuration file or environment variable settings.
72+
* - --type
73+
- string
74+
- false
75+
- Type of access list entry.
76+
Valid values: cidrBlock|ipAddress|awsSecurityGroup (default "ipAddress")
77+
78+
Inherited Options
79+
-----------------
80+
81+
.. list-table::
82+
:header-rows: 1
83+
:widths: 20 10 10 60
84+
85+
* - Name
86+
- Type
87+
- Required
88+
- Description
89+
* - -P, --profile
90+
- string
91+
- false
92+
- Profile to use from your configuration file.
93+
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
.. _mongocli-atlas-accessLists-delete:
2+
3+
=================================
4+
mongocli atlas accessLists delete
5+
=================================
6+
7+
.. default-domain:: mongodb
8+
9+
.. contents:: On this page
10+
:local:
11+
:backlinks: none
12+
:depth: 1
13+
:class: singlecol
14+
15+
Delete an IP access list from your project.
16+
17+
Syntax
18+
------
19+
20+
.. code-block::
21+
22+
mongocli atlas accessLists delete <entry> [options]
23+
24+
Arguments
25+
---------
26+
27+
.. list-table::
28+
:header-rows: 1
29+
:widths: 20 10 10 60
30+
31+
* - Name
32+
- Type
33+
- Required
34+
- Description
35+
* - entry
36+
- string
37+
- false
38+
- The IP address, CIDR address, or AWS security group ID of the access list entry to delete.
39+
40+
Options
41+
-------
42+
43+
.. list-table::
44+
:header-rows: 1
45+
:widths: 20 10 10 60
46+
47+
* - Name
48+
- Type
49+
- Required
50+
- Description
51+
* - --force
52+
-
53+
- false
54+
- Don't ask for confirmation.
55+
* - -h, --help
56+
-
57+
- false
58+
- help for delete
59+
* - --projectId
60+
- string
61+
- false
62+
- Project ID to use. Overrides configuration file or environment variable settings.
63+
64+
Inherited Options
65+
-----------------
66+
67+
.. list-table::
68+
:header-rows: 1
69+
:widths: 20 10 10 60
70+
71+
* - Name
72+
- Type
73+
- Required
74+
- Description
75+
* - -P, --profile
76+
- string
77+
- false
78+
- Profile to use from your configuration file.
79+
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
.. _mongocli-atlas-accessLists-describe:
2+
3+
===================================
4+
mongocli atlas accessLists describe
5+
===================================
6+
7+
.. default-domain:: mongodb
8+
9+
.. contents:: On this page
10+
:local:
11+
:backlinks: none
12+
:depth: 1
13+
:class: singlecol
14+
15+
Describe an IP access list entry.
16+
17+
Syntax
18+
------
19+
20+
.. code-block::
21+
22+
mongocli atlas accessLists describe <name> [options]
23+
24+
Arguments
25+
---------
26+
27+
.. list-table::
28+
:header-rows: 1
29+
:widths: 20 10 10 60
30+
31+
* - Name
32+
- Type
33+
- Required
34+
- Description
35+
* - entry
36+
- string
37+
- false
38+
- The IP address, CIDR address, or AWS security group ID of the access list entry to retrieve.
39+
40+
Options
41+
-------
42+
43+
.. list-table::
44+
:header-rows: 1
45+
:widths: 20 10 10 60
46+
47+
* - Name
48+
- Type
49+
- Required
50+
- Description
51+
* - -h, --help
52+
-
53+
- false
54+
- help for describe
55+
* - -o, --output
56+
- string
57+
- false
58+
- Output format.
59+
Valid values: json|json-path|go-template|go-template-file
60+
* - --projectId
61+
- string
62+
- false
63+
- Project ID to use. Overrides configuration file or environment variable settings.
64+
65+
Inherited Options
66+
-----------------
67+
68+
.. list-table::
69+
:header-rows: 1
70+
:widths: 20 10 10 60
71+
72+
* - Name
73+
- Type
74+
- Required
75+
- Description
76+
* - -P, --profile
77+
- string
78+
- false
79+
- Profile to use from your configuration file.
80+
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
.. _mongocli-atlas-accessLists-list:
2+
3+
===============================
4+
mongocli atlas accessLists list
5+
===============================
6+
7+
.. default-domain:: mongodb
8+
9+
.. contents:: On this page
10+
:local:
11+
:backlinks: none
12+
:depth: 1
13+
:class: singlecol
14+
15+
List Atlas IP access list entries for your project.
16+
17+
Syntax
18+
------
19+
20+
.. code-block::
21+
22+
mongocli atlas accessLists list [options]
23+
24+
Options
25+
-------
26+
27+
.. list-table::
28+
:header-rows: 1
29+
:widths: 20 10 10 60
30+
31+
* - Name
32+
- Type
33+
- Required
34+
- Description
35+
* - -h, --help
36+
-
37+
- false
38+
- help for list
39+
* - --limit
40+
- int
41+
- false
42+
- Number of items per page.
43+
* - -o, --output
44+
- string
45+
- false
46+
- Output format.
47+
Valid values: json|json-path|go-template|go-template-file
48+
* - --page
49+
- int
50+
- false
51+
- Page number.
52+
* - --projectId
53+
- string
54+
- false
55+
- Project ID to use. Overrides configuration file or environment variable settings.
56+
57+
Inherited Options
58+
-----------------
59+
60+
.. list-table::
61+
:header-rows: 1
62+
:widths: 20 10 10 60
63+
64+
* - Name
65+
- Type
66+
- Required
67+
- Description
68+
* - -P, --profile
69+
- string
70+
- false
71+
- Profile to use from your configuration file.
72+

0 commit comments

Comments
 (0)