23.211. 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>
23.211.1. Inheritance
23.211.2. Implements
23.211.3. Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
23.211.4. Constructors
23.211.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)
23.211.4.1.1. Parameters
Configuration IDictionary<string, string>
Dictionary containing the configuration of the machines in a partition
23.211.5. Properties
23.211.5.1. Configuration
Dictionary containing the configuration of the machines in a partition
public IDictionary<string, string> Configuration { get; init; }