You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.Flags().Bool(activeFlag, false, "Filter for active zones")
105
-
cmd.Flags().Bool(inactiveFlag, false, "Filter for inactive zones. Deleted zones are always inactive and will be included when this flag is set")
106
-
cmd.Flags().Bool(deletedFlag, false, "Filter for deleted zones")
105
+
cmd.Flags().Bool(inactiveFlag, false, "Filter for inactive zones")
107
106
cmd.Flags().String(nameLikeFlag, "", "Filter by name")
108
107
cmd.Flags().Var(flags.EnumFlag(true, "", orderByNameFlagOptions...), orderByNameFlag, fmt.Sprintf("Order by name, one of %q", orderByNameFlagOptions))
108
+
cmd.Flags().Bool(includeDeletedFlag, false, "Includes successfully deleted zones (if unset, these are filtered out)")
109
109
cmd.Flags().Int64(limitFlag, 0, "Maximum number of entries to list")
110
110
cmd.Flags().Int64(pageSizeFlag, pageSizeDefault, "Number of items fetched in each API call. Does not affect the number of items in the command output")
0 commit comments