26.216. Class PodConfiguration
Namespace: ArmoniK.Core.Common.Storage
Assembly: ArmoniK.Core.Common.dll
Represents the configuration of a pod, encapsulating a set of key-value pairs for pod-specific settings.
public record PodConfiguration : IEquatable<PodConfiguration>
26.216.1. Inheritance
26.216.2. Implements
26.216.3. Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
26.216.4. Constructors
26.216.4.1. PodConfiguration(IDictionary<string, string>)
Represents the configuration of a pod, encapsulating a set of key-value pairs for pod-specific settings.
public PodConfiguration(IDictionary<string, string> Configuration)
26.216.4.1.1. Parameters
Configuration IDictionary<string, string>
Dictionary containing the configuration of the machines in a partition
26.216.5. Properties
26.216.5.1. Configuration
Dictionary containing the configuration of the machines in a partition
public IDictionary<string, string> Configuration { get; init; }