Skip to content

Commit

Permalink
Addressed PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaangiolillo committed Oct 4, 2024
1 parent 5d06eae commit 6eafc49
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/command/atlas-clusters-search-nodes-list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Syntax
.. code-block::
:caption: Command Syntax

atlas clusters search nodes list --clusterName clusterName [options]
atlas clusters search nodes list [options]

.. Code end marker, please don't delete this comment

Expand Down
2 changes: 1 addition & 1 deletion docs/command/atlas-dataFederation-queryLimits-list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Syntax
.. code-block::
:caption: Command Syntax

atlas dataFederation queryLimits list --dataFederation dataFederation [options]
atlas dataFederation queryLimits list [options]

.. Code end marker, please don't delete this comment

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Syntax
.. code-block::
:caption: Command Syntax

atlas dataLakePipelines availableSchedules list --pipeline pipeline [options]
atlas dataLakePipelines availableSchedules list [options]

.. Code end marker, please don't delete this comment

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Syntax
.. code-block::
:caption: Command Syntax

atlas dataLakePipelines availableSnapshots list --pipeline pipeline [options]
atlas dataLakePipelines availableSnapshots list [options]

.. Code end marker, please don't delete this comment

Expand Down
2 changes: 1 addition & 1 deletion docs/command/atlas-dataLakePipelines-runs-list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Syntax
.. code-block::
:caption: Command Syntax

atlas dataLakePipelines runs list --pipeline pipeline [options]
atlas dataLakePipelines runs list [options]

.. Code end marker, please don't delete this comment

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/datafederation/querylimits/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (opts *ListOpts) Run() error {
func ListBuilder() *cobra.Command {
opts := &ListOpts{}
cmd := &cobra.Command{
Use: "list --dataFederation dataFederation",
Use: "list",
Short: "Returns all data federation query limits for your project.",
Long: fmt.Sprintf(usage.RequiredRole, "Project Read Only"),
Aliases: []string{"ls"},
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/datalakepipelines/availableschedules/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func (opts *ListOpts) Run() error {
func ListBuilder() *cobra.Command {
opts := &ListOpts{}
cmd := &cobra.Command{
Use: "list --pipeline pipeline",
Use: "list",
Short: "Return all available schedules for the specified data lake pipeline.",
Long: fmt.Sprintf(usage.RequiredRole, "Project Read Only"),
Aliases: []string{"ls"},
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/datalakepipelines/availablesnapshots/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (opts *ListOpts) Run() error {
func ListBuilder() *cobra.Command {
opts := &ListOpts{}
cmd := &cobra.Command{
Use: "list --pipeline pipeline",
Use: "list",
Short: "Return all available backup snapshots for the specified data lake pipeline.",
Long: fmt.Sprintf(usage.RequiredRole, "Project Read Only"),
Aliases: []string{"ls"},
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/datalakepipelines/runs/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (opts *ListOpts) Run() error {
func ListBuilder() *cobra.Command {
opts := &ListOpts{}
cmd := &cobra.Command{
Use: "list --pipeline pipeline",
Use: "list",
Short: "Returns all data lake pipeline runs for your project.",
Long: fmt.Sprintf(usage.RequiredRole, "Project Read Only"),
Aliases: []string{"ls"},
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/search/nodes/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func (opts *ListOpts) Run() error {
func ListBuilder() *cobra.Command {
opts := &ListOpts{}
cmd := &cobra.Command{
Use: "list --clusterName clusterName",
Use: "list",
Short: "List all Atlas Search nodes for a cluster.",
Long: fmt.Sprintf(usage.RequiredRole, "Project Read Only"),
Annotations: map[string]string{
Expand Down

0 comments on commit 6eafc49

Please sign in to comment.