Skip to content

Commit a76f170

Browse files
CLOUDP-230973: Addressed issues with stringToString (#2667)
1 parent f7114fe commit a76f170

11 files changed

+21
-21
lines changed

docs/atlascli/command/atlas-backups-exports-jobs-create.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ Options
4646
- true
4747
- Name of the cluster.
4848
* - --customData
49-
- stringToString
49+
- key=value
5050
- false
51-
- Custom data to include in the metadata file named .complete that Atlas uploads to the bucket when the export job finishes. Custom data can be specified as key and value pairs. This value defaults to [].
51+
- Custom data to include in the metadata file named .complete that Atlas uploads to the bucket when the export job finishes. Custom data can be specified as key and value pairs.
5252
* - -h, --help
5353
-
5454
- false

docs/atlascli/command/atlas-clusters-create.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@ Options
125125

126126
Mutually exclusive with --file. This value defaults to 1.
127127
* - --tag
128-
- stringToString
128+
- key=value
129129
- false
130130
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster.
131131

132-
Mutually exclusive with --file. This value defaults to [].
132+
Mutually exclusive with --file.
133133
* - --tier
134134
- string
135135
- false

docs/atlascli/command/atlas-clusters-update.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ Options
9999
- false
100100
- Hexadecimal string that identifies the project to use. This option overrides the settings in the configuration file or environment variable.
101101
* - --tag
102-
- stringToString
102+
- key=value
103103
- false
104104
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. Passing this flag replaces preexisting data.
105105

106-
Mutually exclusive with --file. This value defaults to [].
106+
Mutually exclusive with --file.
107107
* - --tier
108108
- string
109109
- false

docs/atlascli/command/atlas-clusters-upgrade.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ Options
9898
- false
9999
- Hexadecimal string that identifies the project to use. This option overrides the settings in the configuration file or environment variable.
100100
* - --tag
101-
- stringToString
101+
- key=value
102102
- false
103103
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. Passing this flag replaces preexisting data.
104104

105-
Mutually exclusive with --file. This value defaults to [].
105+
Mutually exclusive with --file.
106106
* - --tier
107107
- string
108108
- false

docs/atlascli/command/atlas-deployments-setup.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ Options
116116
- false
117117
- Flag that indicates whether to skip loading sample data into your MongoDB deployment.
118118
* - --tag
119-
- stringToString
119+
- key=value
120120
- false
121-
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the deployment. This value defaults to [].
121+
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the deployment.
122122
* - --tier
123123
- string
124124
- false

docs/atlascli/command/atlas-projects-create.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ Options
7676
- false
7777
- Unique 24-digit string that identifies the Atlas user to be granted the Project Owner role on the specified project. If unspecified, this value defaults to the user ID of the oldest Organization Owner.
7878
* - --tag
79-
- stringToString
79+
- key=value
8080
- false
81-
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the project. This value defaults to [].
81+
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the project.
8282
* - --withoutDefaultAlertSettings
8383
-
8484
- false

docs/atlascli/command/atlas-serverless-create.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ Options
7474
- true
7575
- Human-readable label that identifies the physical location of your MongoDB serverless instance. The region you choose can affect network latency for clients accessing your databases.
7676
* - --tag
77-
- stringToString
77+
- key=value
7878
- false
79-
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the serverless instance. This value defaults to [].
79+
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the serverless instance.
8080

8181
Inherited Options
8282
-----------------

docs/atlascli/command/atlas-serverless-update.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ Options
9090
- false
9191
- Hexadecimal string that identifies the project to use. This option overrides the settings in the configuration file or environment variable.
9292
* - --tag
93-
- stringToString
93+
- key=value
9494
- false
95-
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the serverless instance. Passing this flag replaces preexisting data. This value defaults to [].
95+
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the serverless instance. Passing this flag replaces preexisting data.
9696

9797
Inherited Options
9898
-----------------

docs/atlascli/command/atlas-setup.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ Options
9898
- false
9999
- Flag that indicates whether to skip loading sample data into your MongoDB cluster.
100100
* - --tag
101-
- stringToString
101+
- key=value
102102
- false
103-
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. This value defaults to [].
103+
- List that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster.
104104
* - --tier
105105
- string
106106
- false

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ require (
2929
github.com/klauspost/compress v1.17.6
3030
github.com/mattn/go-isatty v0.0.20
3131
github.com/mongodb-forks/digest v1.0.5
32-
github.com/mongodb-labs/cobra2snooty v0.18.0
32+
github.com/mongodb-labs/cobra2snooty v0.18.1
3333
github.com/mongodb/mongodb-atlas-kubernetes/v2 v2.1.0
3434
github.com/pelletier/go-toml v1.9.5
3535
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c

0 commit comments

Comments
 (0)