generated/api/Models/AmazonNetwork.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>Network interface for the destination instances</summary> public partial class AmazonNetwork : Commvault.Powershell.Models.IAmazonNetwork, Commvault.Powershell.Models.IAmazonNetworkInternal { /// <summary>Backing field for <see cref="DisplayName" /> property.</summary> private string _displayName; /// <summary>Network display name</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string DisplayName { get => this._displayName; set => this._displayName = value; } /// <summary>Backing field for <see cref="Name" /> property.</summary> private string _name; /// <summary>Name of network</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string Name { get => this._name; set => this._name = value; } /// <summary>Backing field for <see cref="NetworkId" /> property.</summary> private string _networkId; /// <summary>VPC Id of the network</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string NetworkId { get => this._networkId; set => this._networkId = value; } /// <summary>Backing field for <see cref="SubnetId" /> property.</summary> private string _subnetId; /// <summary>subnet id of network</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string SubnetId { get => this._subnetId; set => this._subnetId = value; } /// <summary>Creates an new <see cref="AmazonNetwork" /> instance.</summary> public AmazonNetwork() { } } /// Network interface for the destination instances public partial interface IAmazonNetwork : Commvault.Powershell.Runtime.IJsonSerializable { /// <summary>Network display name</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Network display name", SerializedName = @"displayName", PossibleTypes = new [] { typeof(string) })] string DisplayName { get; set; } /// <summary>Name of network</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Name of network", SerializedName = @"name", PossibleTypes = new [] { typeof(string) })] string Name { get; set; } /// <summary>VPC Id of the network</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"VPC Id of the network", SerializedName = @"networkId", PossibleTypes = new [] { typeof(string) })] string NetworkId { get; set; } /// <summary>subnet id of network</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"subnet id of network", SerializedName = @"subnetId", PossibleTypes = new [] { typeof(string) })] string SubnetId { get; set; } } /// Network interface for the destination instances internal partial interface IAmazonNetworkInternal { /// <summary>Network display name</summary> string DisplayName { get; set; } /// <summary>Name of network</summary> string Name { get; set; } /// <summary>VPC Id of the network</summary> string NetworkId { get; set; } /// <summary>subnet id of network</summary> string SubnetId { get; set; } } } |