Class CreateAgentResult
- Namespace
- McServerLauncher.Services
- Assembly
- McServerLauncher.dll
Result of /v1/partner/create_agent: the per-user self-managed agent minted for the user
from their setup code. AgentSecretKey is what the app stores (encrypted) and uses
as the agent-key for all subsequent tunnel management.
public record CreateAgentResult : IEquatable<CreateAgentResult>
- Inheritance
-
CreateAgentResult
- Implements
- Inherited Members
Constructors
CreateAgentResult(long, string, string, bool)
Result of /v1/partner/create_agent: the per-user self-managed agent minted for the user
from their setup code. AgentSecretKey is what the app stores (encrypted) and uses
as the agent-key for all subsequent tunnel management.
public CreateAgentResult(long AccountId, string AgentId, string AgentSecretKey, bool AgentOverLimit)
Parameters
Properties
AccountId
public long AccountId { get; init; }
Property Value
AgentId
public string AgentId { get; init; }
Property Value
AgentOverLimit
public bool AgentOverLimit { get; init; }
Property Value
AgentSecretKey
public string AgentSecretKey { get; init; }