Skip to content
Tracon

TraconMetaResponse

Namespace Tracon · Assembly Tracon.AspNetCore.dll

Response for {prefix}/api/meta. Carries the minimum information the UI needs to configure itself.

public sealed record TraconMetaResponse : IEquatable<TraconMetaResponse>

objectTraconMetaResponse

IEquatable<TraconMetaResponse>

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

This endpoint is reachable without authentication; the UI has no other way to learn which authentication method to use. Its content is therefore deliberately narrow: it carries no secret, tenant data, agent name, or count information.

public TraconMetaResponse()

Active authentication methods.

public required TraconAuthenticationMeta Authentication { get; init; }

TraconAuthenticationMeta

Path prefix the endpoints are connected to. The UI builds its own calls from this.

public required string Prefix { get; init; }

string

Role permissions of the current caller.

public required TraconRoleMeta Roles { get; init; }

TraconRoleMeta

Active storage implementations.

public required TraconStorageMeta Storage { get; init; }

TraconStorageMeta

Tracon version.

public required string Version { get; init; }

string

public override bool Equals(object? obj)

obj object?

bool

public bool Equals(TraconMetaResponse? other)

other TraconMetaResponse?

bool

public override int GetHashCode()

int

public override string ToString()

string

operator ==(TraconMetaResponse?, TraconMetaResponse?)

Section titled “ operator ==(TraconMetaResponse?, TraconMetaResponse?)”
public static bool operator ==(TraconMetaResponse? left, TraconMetaResponse? right)

left TraconMetaResponse?

right TraconMetaResponse?

bool

operator !=(TraconMetaResponse?, TraconMetaResponse?)

Section titled “ operator !=(TraconMetaResponse?, TraconMetaResponse?)”
public static bool operator !=(TraconMetaResponse? left, TraconMetaResponse? right)

left TraconMetaResponse?

right TraconMetaResponse?

bool