generated/api/Models/UpdateRegion.PowerShell.cs

// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.9.2, generator: @autorest/powershell@3.0.494)
// Changes may cause incorrect behavior and will be lost if the code is regenerated.

namespace Commvault.Powershell.Models
{
    using Commvault.Powershell.Runtime.PowerShell;

    /// <summary>
    /// For newly added location - country, latitude and longitude are mandatory fields. Any existing location added to locations
    /// array needs to have all the existing fields.
    /// </summary>
    [System.ComponentModel.TypeConverter(typeof(UpdateRegionTypeConverter))]
    public partial class UpdateRegion
    {

        /// <summary>
        /// <c>AfterDeserializeDictionary</c> will be called after the deserialization has finished, allowing customization of the
        /// object before it is returned. Implement this method in a partial class to enable this behavior
        /// </summary>
        /// <param name="content">The global::System.Collections.IDictionary content that should be used.</param>

        partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content);

        /// <summary>
        /// <c>AfterDeserializePSObject</c> will be called after the deserialization has finished, allowing customization of the object
        /// before it is returned. Implement this method in a partial class to enable this behavior
        /// </summary>
        /// <param name="content">The global::System.Management.Automation.PSObject content that should be used.</param>

        partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content);

        /// <summary>
        /// <c>BeforeDeserializeDictionary</c> will be called before the deserialization has commenced, allowing complete customization
        /// of the object before it is deserialized.
        /// If you wish to disable the default deserialization entirely, return <c>true</c> in the <paramref name="returnNow" /> output
        /// parameter.
        /// Implement this method in a partial class to enable this behavior.
        /// </summary>
        /// <param name="content">The global::System.Collections.IDictionary content that should be used.</param>
        /// <param name="returnNow">Determines if the rest of the serialization should be processed, or if the method should return
        /// instantly.</param>

        partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow);

        /// <summary>
        /// <c>BeforeDeserializePSObject</c> will be called before the deserialization has commenced, allowing complete customization
        /// of the object before it is deserialized.
        /// If you wish to disable the default deserialization entirely, return <c>true</c> in the <paramref name="returnNow" /> output
        /// parameter.
        /// Implement this method in a partial class to enable this behavior.
        /// </summary>
        /// <param name="content">The global::System.Management.Automation.PSObject content that should be used.</param>
        /// <param name="returnNow">Determines if the rest of the serialization should be processed, or if the method should return
        /// instantly.</param>

        partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow);

        /// <summary>
        /// <c>OverrideToString</c> will be called if it is implemented. Implement this method in a partial class to enable this behavior
        /// </summary>
        /// <param name="stringResult">/// instance serialized to a string, normally it is a Json</param>
        /// <param name="returnNow">/// set returnNow to true if you provide a customized OverrideToString function</param>

        partial void OverrideToString(ref string stringResult, ref bool returnNow);

        /// <summary>
        /// Deserializes a <see cref="global::System.Collections.IDictionary" /> into an instance of <see cref="Commvault.Powershell.Models.UpdateRegion"
        /// />.
        /// </summary>
        /// <param name="content">The global::System.Collections.IDictionary content that should be used.</param>
        /// <returns>an instance of <see cref="Commvault.Powershell.Models.IUpdateRegion" />.</returns>
        public static Commvault.Powershell.Models.IUpdateRegion DeserializeFromDictionary(global::System.Collections.IDictionary content)
        {
            return new UpdateRegion(content);
        }

        /// <summary>
        /// Deserializes a <see cref="global::System.Management.Automation.PSObject" /> into an instance of <see cref="Commvault.Powershell.Models.UpdateRegion"
        /// />.
        /// </summary>
        /// <param name="content">The global::System.Management.Automation.PSObject content that should be used.</param>
        /// <returns>an instance of <see cref="Commvault.Powershell.Models.IUpdateRegion" />.</returns>
        public static Commvault.Powershell.Models.IUpdateRegion DeserializeFromPSObject(global::System.Management.Automation.PSObject content)
        {
            return new UpdateRegion(content);
        }

        /// <summary>
        /// Creates a new instance of <see cref="UpdateRegion" />, deserializing the content from a json string.
        /// </summary>
        /// <param name="jsonText">a string containing a JSON serialized instance of this model.</param>
        /// <returns>an instance of the <see cref="UpdateRegion" /> model class.</returns>
        public static Commvault.Powershell.Models.IUpdateRegion FromJsonString(string jsonText) => FromJson(Commvault.Powershell.Runtime.Json.JsonNode.Parse(jsonText));

        /// <summary>Serializes this instance to a json string.</summary>

        /// <returns>a <see cref="System.String" /> containing this model serialized to JSON text.</returns>
        public string ToJsonString() => ToJson(null, Commvault.Powershell.Runtime.SerializationMode.IncludeAll)?.ToString();

        public override string ToString()
        {
            var returnNow = false;
            var result = global::System.String.Empty;
            OverrideToString(ref result, ref returnNow);
            if (returnNow)
            {
                return result;
            }
            return ToJsonString();
        }

        /// <summary>
        /// Deserializes a <see cref="global::System.Collections.IDictionary" /> into a new instance of <see cref="Commvault.Powershell.Models.UpdateRegion"
        /// />.
        /// </summary>
        /// <param name="content">The global::System.Collections.IDictionary content that should be used.</param>
        internal UpdateRegion(global::System.Collections.IDictionary content)
        {
            bool returnNow = false;
            BeforeDeserializeDictionary(content, ref returnNow);
            if (returnNow)
            {
                return;
            }
            // actually deserialize
            if (content.Contains("Locations"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).Locations = (Commvault.Powershell.Models.ILocationDetailsWithZone) content.GetValueForProperty("Locations",((Commvault.Powershell.Models.IUpdateRegionInternal)this).Locations, Commvault.Powershell.Models.LocationDetailsWithZoneTypeConverter.ConvertFrom);
            }
            if (content.Contains("NewName"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).NewName = (string) content.GetValueForProperty("NewName",((Commvault.Powershell.Models.IUpdateRegionInternal)this).NewName, global::System.Convert.ToString);
            }
            if (content.Contains("LocationsOperationType"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationsOperationType = (string) content.GetValueForProperty("LocationsOperationType",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationsOperationType, global::System.Convert.ToString);
            }
            if (content.Contains("LocationZone"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationZone = (Commvault.Powershell.Models.IIdName) content.GetValueForProperty("LocationZone",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationZone, Commvault.Powershell.Models.IdNameTypeConverter.ConvertFrom);
            }
            if (content.Contains("LocationContinent"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationContinent = (string) content.GetValueForProperty("LocationContinent",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationContinent, global::System.Convert.ToString);
            }
            if (content.Contains("LocationCountry"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationCountry = (string) content.GetValueForProperty("LocationCountry",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationCountry, global::System.Convert.ToString);
            }
            if (content.Contains("LocationState"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationState = (string) content.GetValueForProperty("LocationState",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationState, global::System.Convert.ToString);
            }
            if (content.Contains("LocationCity"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationCity = (string) content.GetValueForProperty("LocationCity",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationCity, global::System.Convert.ToString);
            }
            if (content.Contains("LocationLatitude"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationLatitude = (double) content.GetValueForProperty("LocationLatitude",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationLatitude, (__y)=> (double) global::System.Convert.ChangeType(__y, typeof(double)));
            }
            if (content.Contains("LocationLongitude"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationLongitude = (double) content.GetValueForProperty("LocationLongitude",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationLongitude, (__y)=> (double) global::System.Convert.ChangeType(__y, typeof(double)));
            }
            if (content.Contains("ZoneId"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).ZoneId = (long?) content.GetValueForProperty("ZoneId",((Commvault.Powershell.Models.IUpdateRegionInternal)this).ZoneId, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long)));
            }
            if (content.Contains("ZoneName"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).ZoneName = (string) content.GetValueForProperty("ZoneName",((Commvault.Powershell.Models.IUpdateRegionInternal)this).ZoneName, global::System.Convert.ToString);
            }
            AfterDeserializeDictionary(content);
        }

        /// <summary>
        /// Deserializes a <see cref="global::System.Management.Automation.PSObject" /> into a new instance of <see cref="Commvault.Powershell.Models.UpdateRegion"
        /// />.
        /// </summary>
        /// <param name="content">The global::System.Management.Automation.PSObject content that should be used.</param>
        internal UpdateRegion(global::System.Management.Automation.PSObject content)
        {
            bool returnNow = false;
            BeforeDeserializePSObject(content, ref returnNow);
            if (returnNow)
            {
                return;
            }
            // actually deserialize
            if (content.Contains("Locations"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).Locations = (Commvault.Powershell.Models.ILocationDetailsWithZone) content.GetValueForProperty("Locations",((Commvault.Powershell.Models.IUpdateRegionInternal)this).Locations, Commvault.Powershell.Models.LocationDetailsWithZoneTypeConverter.ConvertFrom);
            }
            if (content.Contains("NewName"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).NewName = (string) content.GetValueForProperty("NewName",((Commvault.Powershell.Models.IUpdateRegionInternal)this).NewName, global::System.Convert.ToString);
            }
            if (content.Contains("LocationsOperationType"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationsOperationType = (string) content.GetValueForProperty("LocationsOperationType",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationsOperationType, global::System.Convert.ToString);
            }
            if (content.Contains("LocationZone"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationZone = (Commvault.Powershell.Models.IIdName) content.GetValueForProperty("LocationZone",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationZone, Commvault.Powershell.Models.IdNameTypeConverter.ConvertFrom);
            }
            if (content.Contains("LocationContinent"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationContinent = (string) content.GetValueForProperty("LocationContinent",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationContinent, global::System.Convert.ToString);
            }
            if (content.Contains("LocationCountry"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationCountry = (string) content.GetValueForProperty("LocationCountry",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationCountry, global::System.Convert.ToString);
            }
            if (content.Contains("LocationState"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationState = (string) content.GetValueForProperty("LocationState",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationState, global::System.Convert.ToString);
            }
            if (content.Contains("LocationCity"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationCity = (string) content.GetValueForProperty("LocationCity",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationCity, global::System.Convert.ToString);
            }
            if (content.Contains("LocationLatitude"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationLatitude = (double) content.GetValueForProperty("LocationLatitude",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationLatitude, (__y)=> (double) global::System.Convert.ChangeType(__y, typeof(double)));
            }
            if (content.Contains("LocationLongitude"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationLongitude = (double) content.GetValueForProperty("LocationLongitude",((Commvault.Powershell.Models.IUpdateRegionInternal)this).LocationLongitude, (__y)=> (double) global::System.Convert.ChangeType(__y, typeof(double)));
            }
            if (content.Contains("ZoneId"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).ZoneId = (long?) content.GetValueForProperty("ZoneId",((Commvault.Powershell.Models.IUpdateRegionInternal)this).ZoneId, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long)));
            }
            if (content.Contains("ZoneName"))
            {
                ((Commvault.Powershell.Models.IUpdateRegionInternal)this).ZoneName = (string) content.GetValueForProperty("ZoneName",((Commvault.Powershell.Models.IUpdateRegionInternal)this).ZoneName, global::System.Convert.ToString);
            }
            AfterDeserializePSObject(content);
        }
    }
    /// For newly added location - country, latitude and longitude are mandatory fields. Any existing location added to locations
    /// array needs to have all the existing fields.
    [System.ComponentModel.TypeConverter(typeof(UpdateRegionTypeConverter))]
    public partial interface IUpdateRegion

    {

    }
}