Skip to content
DocsTry Aspire
DocsTry

AksNodePoolConfig Methods

RecordMethods8 members
Configuration for an AKS node pool.
public record AksNodePoolConfig
{
public AksNodePoolConfig <Clone>$()
{
// ...
}
}
Deconstruct(string, string, int, int, AksNodePoolMode)Section titled Deconstruct(string, string, int, int, AksNodePoolMode)
public record AksNodePoolConfig
{
public void Deconstruct(
out string Name,
out string VmSize,
out int MinCount,
out int MaxCount,
out AksNodePoolMode Mode)
{
// ...
}
}
Namestring
VmSizestring
MinCountint
MaxCountint
Equals(object?)Section titled Equals(object?)overridebool
Determines whether the specified object is equal to the current object.
public record AksNodePoolConfig
{
public override bool Equals(
object? obj)
{
// ...
}
}
objobject?The object to compare with the current object.
booltrue if the specified object is equal to the current object; otherwise, false.
Equals(AksNodePoolConfig?)Section titled Equals(AksNodePoolConfig?)bool
Indicates whether the current object is equal to another object of the same type.
public record AksNodePoolConfig
{
public bool Equals(
AksNodePoolConfig? other)
{
// ...
}
}
otherAksNodePoolConfig?An object to compare with this object.
booltrue if the current object is equal to the other parameter; otherwise, false.
GetHashCodeSection titled GetHashCodeoverrideint
Serves as the default hash function.
public record AksNodePoolConfig
{
public override int GetHashCode()
{
// ...
}
}
intA hash code for the current object.
op_Equality(AksNodePoolConfig?, AksNodePoolConfig?)Section titled op_Equality(AksNodePoolConfig?, AksNodePoolConfig?)staticbool
public record AksNodePoolConfig
{
public static bool operator ==(
AksNodePoolConfig? left,
AksNodePoolConfig? right)
{
// ...
}
}
op_Inequality(AksNodePoolConfig?, AksNodePoolConfig?)Section titled op_Inequality(AksNodePoolConfig?, AksNodePoolConfig?)staticbool
public record AksNodePoolConfig
{
public static bool operator !=(
AksNodePoolConfig? left,
AksNodePoolConfig? right)
{
// ...
}
}
ToStringSection titled ToStringoverridestring
Returns a string that represents the current object.
public record AksNodePoolConfig
{
public override string ToString()
{
// ...
}
}
stringA string that represents the current object.