generated/api/Models/K8SRestoreModifierApireq.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>Request body for K8s Modifier</summary> public partial class K8SRestoreModifierApireq : Commvault.Powershell.Models.IK8SRestoreModifierApireq, Commvault.Powershell.Models.IK8SRestoreModifierApireqInternal { /// <summary>Backing field for <see cref="ModifierYaml" /> property.</summary> private string _modifierYaml; /// <summary>Restore Modifier YAML</summary> [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)] public string ModifierYaml { get => this._modifierYaml; set => this._modifierYaml = value; } /// <summary>Creates an new <see cref="K8SRestoreModifierApireq" /> instance.</summary> public K8SRestoreModifierApireq() { } } /// Request body for K8s Modifier public partial interface IK8SRestoreModifierApireq : Commvault.Powershell.Runtime.IJsonSerializable { /// <summary>Restore Modifier YAML</summary> [Commvault.Powershell.Runtime.Info( Required = false, ReadOnly = false, Description = @"Restore Modifier YAML", SerializedName = @"modifierYAML", PossibleTypes = new [] { typeof(string) })] string ModifierYaml { get; set; } } /// Request body for K8s Modifier internal partial interface IK8SRestoreModifierApireqInternal { /// <summary>Restore Modifier YAML</summary> string ModifierYaml { get; set; } } } |