Class ActionVersion
- Namespace
- Auth0.ManagementApi.Models.Actions
- Assembly
- Auth0.ManagementApi.dll
Represents a version for an action in Auth0
public class ActionVersion
- Inheritance
-
ActionVersion
- Inherited Members
Properties
Action
The action to which this version belongs.
[JsonProperty("action")]
public Action Action { get; set; }
Property Value
Code
The source code of this specific version of the action.
[JsonProperty("code")]
public string Code { get; set; }
Property Value
CreatedAt
The time when this version was created.
[JsonProperty("created_at")]
public DateTime CreatedAt { get; set; }
Property Value
Dependencies
The list of third party npm modules, and their versions, that this specific version depends on.
[JsonProperty("dependencies")]
public IList<ActionDependency> Dependencies { get; set; }
Property Value
Deployed
Indicates if this specific version is the currently one deployed.
[JsonProperty("deployed")]
public bool? Deployed { get; set; }
Property Value
- bool?
Errors
Any errors that occurred while the version was being built.
[JsonProperty("errors")]
public IList<ActionError> Errors { get; set; }
Property Value
Id
The unique id of an action version.
[JsonProperty("id")]
public string Id { get; set; }
Property Value
Number
The index of this version in list of versions for the action.
[JsonProperty("number")]
public int Number { get; set; }
Property Value
Runtime
The Node runtime. For example: node12
[JsonProperty("runtime")]
public string Runtime { get; set; }
Property Value
Secrets
The list of secrets that are included in the version.
[JsonProperty("secrets")]
public IList<ActionDependency> Secrets { get; set; }
Property Value
Status
The build status of this specific version.
[JsonProperty("status")]
public string Status { get; set; }
Property Value
UpdatedAt
The time when a version was updated. Versions are never updated externally. Only Auth0 will update an action version as it is being built.
[JsonProperty("updated_at")]
public DateTime UpdatedAt { get; set; }