Table of Contents

Class DeployActionVersionResponseContent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
[Serializable]
public record DeployActionVersionResponseContent : IJsonOnDeserialized, IEquatable<DeployActionVersionResponseContent>
Inheritance
DeployActionVersionResponseContent
Implements
Inherited Members
Extension Methods

Properties

Action

[JsonPropertyName("action")]
public ActionBase? Action { get; set; }

Property Value

ActionBase

ActionId

The id of the action to which this version belongs.

[JsonPropertyName("action_id")]
public string? ActionId { get; set; }

Property Value

string

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

BuiltAt

The time when this version was built successfully.

[JsonPropertyName("built_at")]
public DateTime? BuiltAt { get; set; }

Property Value

DateTime?

Code

The source code of this specific version of the action.

[JsonPropertyName("code")]
public string? Code { get; set; }

Property Value

string

CreatedAt

The time when this version was created.

[JsonPropertyName("created_at")]
public DateTime? CreatedAt { get; set; }

Property Value

DateTime?

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

IEnumerable<ActionVersionDependency>

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

IEnumerable<ActionError>

Id

The unique id of an action version.

[JsonPropertyName("id")]
public string? Id { get; set; }

Property Value

string

Modules

The list of action modules and their versions used by this action version.

[JsonPropertyName("modules")]
public IEnumerable<ActionModuleReference>? Modules { get; set; }

Property Value

IEnumerable<ActionModuleReference>

Number

The index of this version in list of versions for the action.

[JsonPropertyName("number")]
public double? Number { get; set; }

Property Value

double?

Runtime

The Node runtime. For example: node22

[JsonPropertyName("runtime")]
public string? Runtime { get; set; }

Property Value

string

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

IEnumerable<ActionSecretResponse>

Status

[JsonPropertyName("status")]
public ActionVersionBuildStatusEnum? Status { get; set; }

Property Value

ActionVersionBuildStatusEnum?

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

IEnumerable<ActionTrigger>

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

DateTime?

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.