generated/api/Models/AzureVMInfo.PowerShell.cs
// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.10.2, generator: @autorest/powershell@4.0.708) // Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Commvault.Powershell.Models { using Commvault.Powershell.Runtime.PowerShell; /// <summary>VM restore information for the Azure VM</summary> [System.ComponentModel.TypeConverter(typeof(AzureVMInfoTypeConverter))] public partial class AzureVMInfo { /// <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 a new instance of <see cref="Commvault.Powershell.Models.AzureVMInfo" /// />. /// </summary> /// <param name="content">The global::System.Collections.IDictionary content that should be used.</param> internal AzureVMInfo(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); if (returnNow) { return; } // actually deserialize if (content.Contains("SourceVMGuid")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).SourceVMGuid = (string) content.GetValueForProperty("SourceVMGuid",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).SourceVMGuid, global::System.Convert.ToString); } if (content.Contains("Name")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Name = (string) content.GetValueForProperty("Name",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("ResourceGroup")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).ResourceGroup = (string) content.GetValueForProperty("ResourceGroup",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).ResourceGroup, global::System.Convert.ToString); } if (content.Contains("Region")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Region = (string) content.GetValueForProperty("Region",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Region, global::System.Convert.ToString); } if (content.Contains("AvailabilityZone")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).AvailabilityZone = (string) content.GetValueForProperty("AvailabilityZone",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).AvailabilityZone, global::System.Convert.ToString); } if (content.Contains("StorageAccount")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).StorageAccount = (string) content.GetValueForProperty("StorageAccount",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).StorageAccount, global::System.Convert.ToString); } if (content.Contains("VMSize")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).VMSize = (string) content.GetValueForProperty("VMSize",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).VMSize, global::System.Convert.ToString); } if (content.Contains("DiskType")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskType = (string) content.GetValueForProperty("DiskType",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskType, global::System.Convert.ToString); } if (content.Contains("CreatePublicIP")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).CreatePublicIP = (bool?) content.GetValueForProperty("CreatePublicIP",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).CreatePublicIP, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("RestoreAsManagedVM")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).RestoreAsManagedVM = (bool?) content.GetValueForProperty("RestoreAsManagedVM",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).RestoreAsManagedVM, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("SecurityGroupId")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).SecurityGroupId = (string) content.GetValueForProperty("SecurityGroupId",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).SecurityGroupId, global::System.Convert.ToString); } if (content.Contains("DiskEncryptionSetTypeId")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskEncryptionSetTypeId = (string) content.GetValueForProperty("DiskEncryptionSetTypeId",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskEncryptionSetTypeId, global::System.Convert.ToString); } if (content.Contains("DiskEncryptionSetId")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskEncryptionSetId = (string) content.GetValueForProperty("DiskEncryptionSetId",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskEncryptionSetId, global::System.Convert.ToString); } if (content.Contains("Nics")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Nics = (System.Collections.Generic.List<Commvault.Powershell.Models.IAzureDestinationInfoNic>) content.GetValueForProperty("Nics",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Nics, __y => TypeConverterExtensions.SelectToList<Commvault.Powershell.Models.IAzureDestinationInfoNic>(__y, Commvault.Powershell.Models.AzureDestinationInfoNicTypeConverter.ConvertFrom)); } if (content.Contains("VMTags")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).VMTags = (System.Collections.Generic.List<Commvault.Powershell.Models.INameValue>) content.GetValueForProperty("VMTags",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).VMTags, __y => TypeConverterExtensions.SelectToList<Commvault.Powershell.Models.INameValue>(__y, Commvault.Powershell.Models.NameValueTypeConverter.ConvertFrom)); } if (content.Contains("RestoreSourceVMTags")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).RestoreSourceVMTags = (bool?) content.GetValueForProperty("RestoreSourceVMTags",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).RestoreSourceVMTags, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializeDictionary(content); } /// <summary> /// Deserializes a <see cref="global::System.Management.Automation.PSObject" /> into a new instance of <see cref="Commvault.Powershell.Models.AzureVMInfo" /// />. /// </summary> /// <param name="content">The global::System.Management.Automation.PSObject content that should be used.</param> internal AzureVMInfo(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); if (returnNow) { return; } // actually deserialize if (content.Contains("SourceVMGuid")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).SourceVMGuid = (string) content.GetValueForProperty("SourceVMGuid",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).SourceVMGuid, global::System.Convert.ToString); } if (content.Contains("Name")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Name = (string) content.GetValueForProperty("Name",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("ResourceGroup")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).ResourceGroup = (string) content.GetValueForProperty("ResourceGroup",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).ResourceGroup, global::System.Convert.ToString); } if (content.Contains("Region")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Region = (string) content.GetValueForProperty("Region",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Region, global::System.Convert.ToString); } if (content.Contains("AvailabilityZone")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).AvailabilityZone = (string) content.GetValueForProperty("AvailabilityZone",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).AvailabilityZone, global::System.Convert.ToString); } if (content.Contains("StorageAccount")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).StorageAccount = (string) content.GetValueForProperty("StorageAccount",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).StorageAccount, global::System.Convert.ToString); } if (content.Contains("VMSize")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).VMSize = (string) content.GetValueForProperty("VMSize",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).VMSize, global::System.Convert.ToString); } if (content.Contains("DiskType")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskType = (string) content.GetValueForProperty("DiskType",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskType, global::System.Convert.ToString); } if (content.Contains("CreatePublicIP")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).CreatePublicIP = (bool?) content.GetValueForProperty("CreatePublicIP",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).CreatePublicIP, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("RestoreAsManagedVM")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).RestoreAsManagedVM = (bool?) content.GetValueForProperty("RestoreAsManagedVM",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).RestoreAsManagedVM, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("SecurityGroupId")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).SecurityGroupId = (string) content.GetValueForProperty("SecurityGroupId",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).SecurityGroupId, global::System.Convert.ToString); } if (content.Contains("DiskEncryptionSetTypeId")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskEncryptionSetTypeId = (string) content.GetValueForProperty("DiskEncryptionSetTypeId",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskEncryptionSetTypeId, global::System.Convert.ToString); } if (content.Contains("DiskEncryptionSetId")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskEncryptionSetId = (string) content.GetValueForProperty("DiskEncryptionSetId",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).DiskEncryptionSetId, global::System.Convert.ToString); } if (content.Contains("Nics")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Nics = (System.Collections.Generic.List<Commvault.Powershell.Models.IAzureDestinationInfoNic>) content.GetValueForProperty("Nics",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).Nics, __y => TypeConverterExtensions.SelectToList<Commvault.Powershell.Models.IAzureDestinationInfoNic>(__y, Commvault.Powershell.Models.AzureDestinationInfoNicTypeConverter.ConvertFrom)); } if (content.Contains("VMTags")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).VMTags = (System.Collections.Generic.List<Commvault.Powershell.Models.INameValue>) content.GetValueForProperty("VMTags",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).VMTags, __y => TypeConverterExtensions.SelectToList<Commvault.Powershell.Models.INameValue>(__y, Commvault.Powershell.Models.NameValueTypeConverter.ConvertFrom)); } if (content.Contains("RestoreSourceVMTags")) { ((Commvault.Powershell.Models.IAzureVMInfoInternal)this).RestoreSourceVMTags = (bool?) content.GetValueForProperty("RestoreSourceVMTags",((Commvault.Powershell.Models.IAzureVMInfoInternal)this).RestoreSourceVMTags, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializePSObject(content); } /// <summary> /// Deserializes a <see cref="global::System.Collections.IDictionary" /> into an instance of <see cref="Commvault.Powershell.Models.AzureVMInfo" /// />. /// </summary> /// <param name="content">The global::System.Collections.IDictionary content that should be used.</param> /// <returns>an instance of <see cref="Commvault.Powershell.Models.IAzureVMInfo" />.</returns> public static Commvault.Powershell.Models.IAzureVMInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AzureVMInfo(content); } /// <summary> /// Deserializes a <see cref="global::System.Management.Automation.PSObject" /> into an instance of <see cref="Commvault.Powershell.Models.AzureVMInfo" /// />. /// </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.IAzureVMInfo" />.</returns> public static Commvault.Powershell.Models.IAzureVMInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AzureVMInfo(content); } /// <summary> /// Creates a new instance of <see cref="AzureVMInfo" />, 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="AzureVMInfo" /> model class.</returns> public static Commvault.Powershell.Models.IAzureVMInfo 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(); } } /// VM restore information for the Azure VM [System.ComponentModel.TypeConverter(typeof(AzureVMInfoTypeConverter))] public partial interface IAzureVMInfo { } } |