generated/api/Models/DistributedSystemComponent.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;

    public partial class DistributedSystemComponent :
        Commvault.Powershell.Models.IDistributedSystemComponent,
        Commvault.Powershell.Models.IDistributedSystemComponentInternal
    {

        /// <summary>Backing field for <see cref="ApplicationId" /> property.</summary>
        private long? _applicationId;

        /// <summary>Application id of the distributed system component</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? ApplicationId { get => this._applicationId; set => this._applicationId = value; }

        /// <summary>Creates an new <see cref="DistributedSystemComponent" /> instance.</summary>
        public DistributedSystemComponent()
        {

        }
    }
    public partial interface IDistributedSystemComponent :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>Application id of the distributed system component</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Application id of the distributed system component",
        SerializedName = @"applicationId",
        PossibleTypes = new [] { typeof(long) })]
        long? ApplicationId { get; set; }

    }
    internal partial interface IDistributedSystemComponentInternal

    {
        /// <summary>Application id of the distributed system component</summary>
        long? ApplicationId { get; set; }

    }
}