Class GetActionVersionResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record GetActionVersionResponseContent : IJsonOnDeserialized, IEquatable<GetActionVersionResponseContent>
- Inheritance
-
GetActionVersionResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
Action
[JsonPropertyName("action")]
public ActionBase? Action { get; set; }
Property Value
ActionId
The id of the action to which this version belongs.
[JsonPropertyName("action_id")]
public string? ActionId { get; set; }
Property Value
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
BuiltAt
The time when this version was built successfully.
[JsonPropertyName("built_at")]
public DateTime? BuiltAt { get; set; }
Property Value
Code
The source code of this specific version of the action.
[JsonPropertyName("code")]
public string? Code { get; set; }
Property Value
CreatedAt
The time when this version was created.
[JsonPropertyName("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.
[JsonPropertyName("dependencies")]
public IEnumerable<ActionVersionDependency>? Dependencies { get; set; }
Property Value
Deployed
Indicates if this specific version is the currently one deployed.
[JsonPropertyName("deployed")]
public bool? Deployed { get; set; }
Property Value
- bool?
Errors
Any errors that occurred while the version was being built.
[JsonPropertyName("errors")]
public IEnumerable<ActionError>? Errors { get; set; }
Property Value
Id
The unique id of an action version.
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
Modules
The list of action modules and their versions used by this action version.
[JsonPropertyName("modules")]
public IEnumerable<ActionModuleReference>? Modules { get; set; }
Property Value
Number
The index of this version in list of versions for the action.
[JsonPropertyName("number")]
public double? Number { get; set; }
Property Value
Runtime
The Node runtime. For example: node22
[JsonPropertyName("runtime")]
public string? Runtime { get; set; }
Property Value
Secrets
The list of secrets that are included in an action or a version of an action.
[JsonPropertyName("secrets")]
public IEnumerable<ActionSecretResponse>? Secrets { get; set; }
Property Value
Status
[JsonPropertyName("status")]
public ActionVersionBuildStatusEnum? Status { get; set; }
Property Value
SupportedTriggers
The list of triggers that this version supports. At this time, a version can only target a single trigger at a time.
[JsonPropertyName("supported_triggers")]
public IEnumerable<ActionTrigger>? SupportedTriggers { 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.
[JsonPropertyName("updated_at")]
public DateTime? UpdatedAt { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.