generated/api/Models/KubernetesContentApplications.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>Describes the application content for Application Group</summary>
    public partial class KubernetesContentApplications :
        Commvault.Powershell.Models.IKubernetesContentApplications,
        Commvault.Powershell.Models.IKubernetesContentApplicationsInternal
    {

        /// <summary>Backing field for <see cref="Guid" /> property.</summary>
        private string _guid;

        /// <summary>GUID value of the Kubernetes Application to be associated as content</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string Guid { get => this._guid; set => this._guid = value; }

        /// <summary>Backing field for <see cref="Name" /> property.</summary>
        private string _name;

        /// <summary>Name of the application</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string Name { get => this._name; set => this._name = value; }

        /// <summary>Backing field for <see cref="Type" /> property.</summary>
        private string _type;

        /// <summary>Type of the Kubernetes application</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string Type { get => this._type; set => this._type = value; }

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

        }
    }
    /// Describes the application content for Application Group
    public partial interface IKubernetesContentApplications :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>GUID value of the Kubernetes Application to be associated as content</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = true,
        ReadOnly = false,
        Description = @"GUID value of the Kubernetes Application to be associated as content",
        SerializedName = @"GUID",
        PossibleTypes = new [] { typeof(string) })]
        string Guid { get; set; }
        /// <summary>Name of the application</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"Name of the application",
        SerializedName = @"name",
        PossibleTypes = new [] { typeof(string) })]
        string Name { get; set; }
        /// <summary>Type of the Kubernetes application</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = true,
        ReadOnly = false,
        Description = @"Type of the Kubernetes application",
        SerializedName = @"type",
        PossibleTypes = new [] { typeof(string) })]
        string Type { get; set; }

    }
    /// Describes the application content for Application Group
    internal partial interface IKubernetesContentApplicationsInternal

    {
        /// <summary>GUID value of the Kubernetes Application to be associated as content</summary>
        string Guid { get; set; }
        /// <summary>Name of the application</summary>
        string Name { get; set; }
        /// <summary>Type of the Kubernetes application</summary>
        string Type { get; set; }

    }
}