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
Copy file name to clipboardExpand all lines: src/cli/Apify.CLI/Commands/ActorsActPutCommandApiCommand.g.cs
+68-68Lines changed: 68 additions & 68 deletions
Original file line number
Diff line number
Diff line change
@@ -16,18 +16,18 @@ internal static partial class ActorsActPutCommandApiCommand
16
16
privatestaticOption<string?>NameOption{get;}=new(
17
17
name:@"--name")
18
18
{
19
-
Description=@"",
19
+
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.",
@@ -38,25 +38,25 @@ internal static partial class ActorsActPutCommandApiCommand
38
38
privatestaticOption<string?>SeoTitle{get;}=new(
39
39
name:@"--seo-title")
40
40
{
41
-
Description=@"",
41
+
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=@"Description of the Actor to display by search engines such as Google. Recommended length is 140-156 characters.",
48
48
};
49
49
50
50
privatestaticOption<string?>Title{get;}=new(
51
51
name:@"--title")
52
52
{
53
-
Description=@"",
53
+
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=@"An array of `Version` objects. Each object represents a specific version of the Actor's source code: its location, builds, and environment configuration.",
Description=@"An object to modify tags on the Actor's builds. The key is the tag name (e.g., _latest_), and the value is either an object with a `buildId` or `null`.
78
-
79
-
This operation is a patch; any existing tags that you omit from this object will be preserved.
80
-
81
-
- **To create or reassign a tag**, provide the tag name with a `buildId`. e.g., to assign the _latest_ tag:
82
-
83
-
84
-
85
-
```json
86
-
{
87
-
""latest"": {
88
-
""buildId"": ""z2EryhbfhgSyqj6Hn""
89
-
}
90
-
}
91
-
```
92
-
93
-
- **To remove a tag**, provide the tag name with a `null` value. e.g., to remove the _beta_ tag:
94
-
95
-
96
-
97
-
```json
98
-
{
99
-
""beta"": null
100
-
}
101
-
```
102
-
103
-
- **To perform multiple operations**, combine them. The following reassigns _latest_ and removes _beta_, while preserving any other existing tags.
104
-
105
-
106
-
107
-
```json
108
-
{
109
-
""latest"": {
110
-
""buildId"": ""z2EryhbfhgSyqj6Hn""
111
-
},
112
-
""beta"": null
113
-
}
114
-
```
115
-
",
77
+
Description=@"A dictionary that maps tag names to specific builds. For details, see [Update build tags](#update-build-tags).",
0 commit comments