
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace HathoraCloud.Models.Shared
{
    using Newtonsoft.Json;
    using System;
    using UnityEngine;
    
    /// <summary>
    /// A fleet region is a region in which a fleet can be deployed.<br/>
    /// 
    /// <remarks>
    /// You can update cloudMinVcpus once every five minutes. It must be a multiple of<br/>
    /// scaleIncrementVcpus
    /// </remarks>
    /// </summary>
    [Serializable]
    public class FleetRegion
    {

        [SerializeField]
        [JsonProperty("cloudMinVcpus")]
        public int CloudMinVcpus { get; set; } = default!;

        [SerializeField]
        [JsonProperty("cloudMinVcpusUpdatedAt")]
        public DateTime CloudMinVcpusUpdatedAt { get; set; } = default!;

        [SerializeField]
        [JsonProperty("scaleIncrementVcpus")]
        public int ScaleIncrementVcpus { get; set; } = default!;
    }
}