mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
87 lines
2.2 KiB
C#
87 lines
2.2 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace GitHub.DistributedTask.WebApi
|
|
{
|
|
/// <summary>
|
|
/// Represents a session for performing message exchanges from an agent.
|
|
/// </summary>
|
|
[DataContract]
|
|
public class TaskAgentSession
|
|
{
|
|
public TaskAgentSession()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new <c>TaskAgentSession</c> instance with the specified owner name and agent.
|
|
/// </summary>
|
|
/// <param name="ownerName">The name of the owner for this session. This should typically be the agent machine</param>
|
|
/// <param name="agent">The target agent for the session</param>
|
|
public TaskAgentSession(
|
|
String ownerName,
|
|
TaskAgentReference agent)
|
|
{
|
|
this.Agent = agent;
|
|
this.OwnerName = ownerName;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the unique identifier for this session.
|
|
/// </summary>
|
|
[DataMember]
|
|
public Guid SessionId
|
|
{
|
|
get;
|
|
internal set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the key used to encrypt message traffic for this session.
|
|
/// </summary>
|
|
[DataMember(EmitDefaultValue = false)]
|
|
public TaskAgentSessionKey EncryptionKey
|
|
{
|
|
get;
|
|
internal set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the owner name of this session. Generally this will be the machine of origination.
|
|
/// </summary>
|
|
[DataMember]
|
|
public String OwnerName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the agent which is the target of the session.
|
|
/// </summary>
|
|
[DataMember]
|
|
public TaskAgentReference Agent
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets whether to use FIPS compliant encryption scheme for job message key
|
|
/// </summary>
|
|
[DataMember]
|
|
public bool UseFipsEncryption
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[DataMember(EmitDefaultValue = false, IsRequired = false)]
|
|
public BrokerMigrationMessage BrokerMigrationMessage
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|