generated/api/Models/TagAssociationInfo.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>Information of count and associatedEntities</summary> public partial class TagAssociationInfo : Commvault.Powershell.Models.ITagAssociationInfo, Commvault.Powershell.Models.ITagAssociationInfoInternal { /// <summary>Backing field for <see cref="AssociatedEntities" /> property.</summary> private Commvault.Powershell.Models.IIdNameType[] _associatedEntities; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public Commvault.Powershell.Models.IIdNameType[] AssociatedEntities { get => this._associatedEntities; set => this._associatedEntities = value; } /// <summary>Backing field for <see cref="Count" /> property.</summary> private long? _count; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public long? Count { get => this._count; set => this._count = value; } /// <summary>Backing field for <see cref="Id" /> property.</summary> private long? _id; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public long? Id { get => this._id; set => this._id = value; } /// <summary>Backing field for <see cref="Name" /> property.</summary> private string _name; [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string Name { get => this._name; set => this._name = value; } /// <summary>Creates an new <see cref="TagAssociationInfo" /> instance.</summary> public TagAssociationInfo() { } } /// Information of count and associatedEntities public partial interface ITagAssociationInfo : Commvault.Powershell.Runtime.IJsonSerializable { [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"", SerializedName = @"associatedEntities", PossibleTypes = new [] { typeof(Commvault.Powershell.Models.IIdNameType) })] Commvault.Powershell.Models.IIdNameType[] AssociatedEntities { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"", SerializedName = @"count", PossibleTypes = new [] { typeof(long) })] long? Count { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"", SerializedName = @"id", PossibleTypes = new [] { typeof(long) })] long? Id { get; set; } [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"", SerializedName = @"name", PossibleTypes = new [] { typeof(string) })] string Name { get; set; } } /// Information of count and associatedEntities internal partial interface ITagAssociationInfoInternal { Commvault.Powershell.Models.IIdNameType[] AssociatedEntities { get; set; } long? Count { get; set; } long? Id { get; set; } string Name { get; set; } } } |