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
DisableStandbyFieldsOverride:CliRuntime.CreateNullableBoolOption(name:$"--{normalizedPrefix}disable-standby-fields-override",description:@"If `true`, prevents the standby mode configuration from being overridden elsewhere."),
45
+
ShouldPassActorInput:CliRuntime.CreateNullableBoolOption(name:$"--{normalizedPrefix}should-pass-actor-input",description:@"Whether to pass the Actor's input to the standby run. If `false`, the standby runs start with no input.")
Copy file name to clipboardExpand all lines: src/cli/Apify.CLI/Commands/ActorsActsPostCommandApiCommand.g.cs
+24-21Lines changed: 24 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -10,41 +10,41 @@ internal static partial class ActorsActsPostCommandApiCommand
10
10
privatestaticOption<string?>NameOption{get;}=new(
11
11
name:@"--name")
12
12
{
13
-
Description=@"",
13
+
Description=@"The identifier of the Actor. Use lowercase letters, numbers, and hyphens. Spaces or special characters aren't allowed. Must be unique across your account.",
Description=@"Short description of the Actor, displayed in Apify Store and Console.",
20
20
};
21
21
22
22
privatestaticOption<string?>Title{get;}=new(
23
23
name:@"--title")
24
24
{
25
-
Description=@"",
25
+
Description=@"Human-readable name of the Actor, displayed in Apify Store and Console. Can contain spaces and capital letters. Recommended length is 40-50 characters. You can change this title without affecting the Actor's URL or SEO.",
description:@"Whether the Actor is available to users in Apify Store. If `false`, the Actor is private and only visible to you.");
31
31
32
32
privatestaticOption<string?>SeoTitle{get;}=new(
33
33
name:@"--seo-title")
34
34
{
35
-
Description=@"",
35
+
Description=@"Name of the Actor to display by search engines such as Google. Can be different from the Actor's name displayed in Apify Store and Console. Recommended length is 40-50 characters.",
Description=@"An array of `Version` objects. Each object represents a specific version of the Actor's source code: its location, builds, and environment configuration.",
RestartOnError:CliRuntime.CreateNullableBoolOption(name:$"--{normalizedPrefix}restart-on-error",description:@"Whether to automatically restart the run if it fails."),
0 commit comments