diff --git a/docs/command/atlas-clusters-search-nodes-list.txt b/docs/command/atlas-clusters-search-nodes-list.txt index 049ec264a5..c0d3460121 100644 --- a/docs/command/atlas-clusters-search-nodes-list.txt +++ b/docs/command/atlas-clusters-search-nodes-list.txt @@ -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 diff --git a/docs/command/atlas-dataFederation-queryLimits-list.txt b/docs/command/atlas-dataFederation-queryLimits-list.txt index 5d8637f259..9f30232375 100644 --- a/docs/command/atlas-dataFederation-queryLimits-list.txt +++ b/docs/command/atlas-dataFederation-queryLimits-list.txt @@ -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 diff --git a/docs/command/atlas-dataLakePipelines-availableSchedules-list.txt b/docs/command/atlas-dataLakePipelines-availableSchedules-list.txt index cfdbd6a022..59015935e8 100644 --- a/docs/command/atlas-dataLakePipelines-availableSchedules-list.txt +++ b/docs/command/atlas-dataLakePipelines-availableSchedules-list.txt @@ -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 diff --git a/docs/command/atlas-dataLakePipelines-availableSnapshots-list.txt b/docs/command/atlas-dataLakePipelines-availableSnapshots-list.txt index 58babd7fc4..4835d3b4e4 100644 --- a/docs/command/atlas-dataLakePipelines-availableSnapshots-list.txt +++ b/docs/command/atlas-dataLakePipelines-availableSnapshots-list.txt @@ -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 diff --git a/docs/command/atlas-dataLakePipelines-runs-list.txt b/docs/command/atlas-dataLakePipelines-runs-list.txt index 3cbba9eb91..ac0ace9da5 100644 --- a/docs/command/atlas-dataLakePipelines-runs-list.txt +++ b/docs/command/atlas-dataLakePipelines-runs-list.txt @@ -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 diff --git a/internal/cli/datafederation/querylimits/list.go b/internal/cli/datafederation/querylimits/list.go index 3efb822abd..4dd3df5f0b 100644 --- a/internal/cli/datafederation/querylimits/list.go +++ b/internal/cli/datafederation/querylimits/list.go @@ -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"}, diff --git a/internal/cli/datalakepipelines/availableschedules/list.go b/internal/cli/datalakepipelines/availableschedules/list.go index e02e8ff9cd..581b39a5ea 100644 --- a/internal/cli/datalakepipelines/availableschedules/list.go +++ b/internal/cli/datalakepipelines/availableschedules/list.go @@ -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"}, diff --git a/internal/cli/datalakepipelines/availablesnapshots/list.go b/internal/cli/datalakepipelines/availablesnapshots/list.go index 581f7afaca..8610d3adef 100644 --- a/internal/cli/datalakepipelines/availablesnapshots/list.go +++ b/internal/cli/datalakepipelines/availablesnapshots/list.go @@ -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"}, diff --git a/internal/cli/datalakepipelines/runs/list.go b/internal/cli/datalakepipelines/runs/list.go index 4571b7d991..365e130724 100644 --- a/internal/cli/datalakepipelines/runs/list.go +++ b/internal/cli/datalakepipelines/runs/list.go @@ -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"}, diff --git a/internal/cli/search/nodes/list.go b/internal/cli/search/nodes/list.go index fe7ab40fc0..f285809584 100644 --- a/internal/cli/search/nodes/list.go +++ b/internal/cli/search/nodes/list.go @@ -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{