generated/api/Models/NetworkCard.cs
// Code generated by Microsoft (R) AutoRest Code Generator (autorest: 3.9.4, generator: @autorest/powershell@3.0.415) // 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>NetworkCard</summary> public partial class NetworkCard : Commvault.Powershell.Models.INetworkCard, Commvault.Powershell.Models.INetworkCardInternal { /// <summary>Backing field for <see cref="DestinationNetworks" /> property.</summary> private string[] _destinationNetworks; /// <summary>Destination network name</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string[] DestinationNetworks { get => this._destinationNetworks; set => this._destinationNetworks = value; } /// <summary>Backing field for <see cref="Network" /> property.</summary> private string _network; /// <summary>Name of network switch</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string Network { get => this._network; set => this._network = value; } /// <summary>Backing field for <see cref="NetworkDisplayName" /> property.</summary> private string _networkDisplayName; /// <summary>Selected network display name</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string NetworkDisplayName { get => this._networkDisplayName; set => this._networkDisplayName = value; } /// <summary>Backing field for <see cref="NetworkNames" /> property.</summary> private string[] _networkNames; /// <summary>Name of network to which the nic is connected</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string[] NetworkNames { get => this._networkNames; set => this._networkNames = value; } /// <summary>Creates an new <see cref="NetworkCard" /> instance.</summary> public NetworkCard() { } } /// NetworkCard public partial interface INetworkCard : Commvault.Powershell.Runtime.IJsonSerializable { /// <summary>Destination network name</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Destination network name", SerializedName = @"destinationNetworks", PossibleTypes = new [] { typeof(string) })] string[] DestinationNetworks { get; set; } /// <summary>Name of network switch</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Name of network switch", SerializedName = @"network", PossibleTypes = new [] { typeof(string) })] string Network { get; set; } /// <summary>Selected network display name</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Selected network display name", SerializedName = @"networkDisplayName", PossibleTypes = new [] { typeof(string) })] string NetworkDisplayName { get; set; } /// <summary>Name of network to which the nic is connected</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Name of network to which the nic is connected", SerializedName = @"networkNames", PossibleTypes = new [] { typeof(string) })] string[] NetworkNames { get; set; } } /// NetworkCard internal partial interface INetworkCardInternal { /// <summary>Destination network name</summary> string[] DestinationNetworks { get; set; } /// <summary>Name of network switch</summary> string Network { get; set; } /// <summary>Selected network display name</summary> string NetworkDisplayName { get; set; } /// <summary>Name of network to which the nic is connected</summary> string[] NetworkNames { get; set; } } } |