generated/api/Models/AwsNetworkInterfaceInfo.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 static Commvault.Powershell.Runtime.Extensions; /// <summary>AWS nic info for restore</summary> public partial class AwsNetworkInterfaceInfo : Commvault.Powershell.Models.IAwsNetworkInterfaceInfo, Commvault.Powershell.Models.IAwsNetworkInterfaceInfoInternal { /// <summary>Backing field for <see cref="EniId" /> property.</summary> private string _eniId; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string EniId { get => this._eniId; set => this._eniId = value; } /// <summary>Backing field for <see cref="NetworkName" /> property.</summary> private string _networkName; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string NetworkName { get => this._networkName; set => this._networkName = value; } /// <summary>Backing field for <see cref="SubnetId" /> property.</summary> private string _subnetId; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string SubnetId { get => this._subnetId; set => this._subnetId = value; } /// <summary>Backing field for <see cref="VpcId" /> property.</summary> private string _vpcId; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string VpcId { get => this._vpcId; set => this._vpcId = value; } /// <summary>Creates an new <see cref="AwsNetworkInterfaceInfo" /> instance.</summary> public AwsNetworkInterfaceInfo() { } } /// AWS nic info for restore public partial interface IAwsNetworkInterfaceInfo : Commvault.Powershell.Runtime.IJsonSerializable { [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"", SerializedName = @"eniId", PossibleTypes = new [] { typeof(string) })] string EniId { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"", SerializedName = @"networkName", PossibleTypes = new [] { typeof(string) })] string NetworkName { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"", SerializedName = @"subnetId", PossibleTypes = new [] { typeof(string) })] string SubnetId { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Read = true, Create = true, Update = true, Description = @"", SerializedName = @"vpcId", PossibleTypes = new [] { typeof(string) })] string VpcId { get; set; } } /// AWS nic info for restore internal partial interface IAwsNetworkInterfaceInfoInternal { string EniId { get; set; } string NetworkName { get; set; } string SubnetId { get; set; } string VpcId { get; set; } } } |