21.217. 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>
21.217.1. Inheritance
21.217.2. Implements
21.217.3. Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
21.217.4. Constructors
21.217.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)
21.217.4.1.1. Parameters
Configuration IDictionary<string, string>
Dictionary containing the configuration of the machines in a partition
21.217.5. Properties
21.217.5.1. Configuration
Dictionary containing the configuration of the machines in a partition
public IDictionary<string, string> Configuration { get; init; }