.NET API
TraconMetaResponse
Tracon.AspNetCore.dllResponse for {prefix}/api/meta. Carries the minimum information the
UI needs to configure itself.
public sealed record TraconMetaResponse : IEquatable<TraconMetaResponse>Inheritance
Section titled “Inheritance”Implements
Section titled “Implements”IEquatable<TraconMetaResponse>
Inherited Members
Section titled “Inherited Members”object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Remarks
Section titled “Remarks”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.
Constructors
Section titled “Constructors”TraconMetaResponse()
Section titled “ TraconMetaResponse()”public TraconMetaResponse()Properties
Section titled “Properties”Authentication
Section titled “ Authentication”Active authentication methods.
public required TraconAuthenticationMeta Authentication { get; init; }Property Value
Section titled “Property Value”Prefix
Section titled “ Prefix”Path prefix the endpoints are connected to. The UI builds its own calls from this.
public required string Prefix { get; init; }Property Value
Section titled “Property Value”Role permissions of the current caller.
public required TraconRoleMeta Roles { get; init; }Property Value
Section titled “Property Value”Storage
Section titled “ Storage”Active storage implementations.
public required TraconStorageMeta Storage { get; init; }Property Value
Section titled “Property Value”Version
Section titled “ Version”Tracon version.
public required string Version { get; init; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”Equals(object?)
Section titled “ Equals(object?)”public override bool Equals(object? obj)Parameters
Section titled “Parameters”obj object?
Returns
Section titled “Returns”Equals(TraconMetaResponse?)
Section titled “ Equals(TraconMetaResponse?)”public bool Equals(TraconMetaResponse? other)Parameters
Section titled “Parameters”other TraconMetaResponse?
Returns
Section titled “Returns”GetHashCode()
Section titled “ GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”ToString()
Section titled “ ToString()”public override string ToString()Returns
Section titled “Returns”Operators
Section titled “Operators”operator ==(TraconMetaResponse?, TraconMetaResponse?)
Section titled “ operator ==(TraconMetaResponse?, TraconMetaResponse?)”public static bool operator ==(TraconMetaResponse? left, TraconMetaResponse? right)Parameters
Section titled “Parameters”left TraconMetaResponse?
right TraconMetaResponse?
Returns
Section titled “Returns”operator !=(TraconMetaResponse?, TraconMetaResponse?)
Section titled “ operator !=(TraconMetaResponse?, TraconMetaResponse?)”public static bool operator !=(TraconMetaResponse? left, TraconMetaResponse? right)Parameters
Section titled “Parameters”left TraconMetaResponse?
right TraconMetaResponse?