generated/api/Models/CreateCvfss3BucketResp.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>CreateCVFSS3BucketResp</summary>
    public partial class CreateCvfss3BucketResp :
        Commvault.Powershell.Models.ICreateCvfss3BucketResp,
        Commvault.Powershell.Models.ICreateCvfss3BucketRespInternal
    {

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

        /// <summary>The URL of bucket</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public string EndPointUrl { get => this._endPointUrl; set => this._endPointUrl = value; }

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

        /// <summary>The ID of the created bucket</summary>
        [Commvault.Powershell.Origin(Commvault.Powershell.PropertyOrigin.Owned)]
        public long? Id { get => this._id; set => this._id = value; }

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

        }
    }
    /// CreateCVFSS3BucketResp
    public partial interface ICreateCvfss3BucketResp :
        Commvault.Powershell.Runtime.IJsonSerializable
    {
        /// <summary>The URL of bucket</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"The URL of bucket",
        SerializedName = @"endPointURL",
        PossibleTypes = new [] { typeof(string) })]
        string EndPointUrl { get; set; }
        /// <summary>The ID of the created bucket</summary>
        [Commvault.Powershell.Runtime.Info(
        Required = false,
        ReadOnly = false,
        Description = @"The ID of the created bucket",
        SerializedName = @"id",
        PossibleTypes = new [] { typeof(long) })]
        long? Id { get; set; }

    }
    /// CreateCVFSS3BucketResp
    internal partial interface ICreateCvfss3BucketRespInternal

    {
        /// <summary>The URL of bucket</summary>
        string EndPointUrl { get; set; }
        /// <summary>The ID of the created bucket</summary>
        long? Id { get; set; }

    }
}