< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.OutputFileBlobContainerDestination
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\OutputFileBlobContainerDestination.cs
Covered lines:4
Uncovered lines:4
Coverable lines:8
Total lines:80
Line coverage:50% (4 of 8)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Path()-100%100%
get_ContainerUrl()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\OutputFileBlobContainerDestination.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.Batch.Protocol.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Specifies a file upload destination within an Azure blob storage
 18    /// container.
 19    /// </summary>
 20    public partial class OutputFileBlobContainerDestination
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the
 24        /// OutputFileBlobContainerDestination class.
 25        /// </summary>
 198626        public OutputFileBlobContainerDestination()
 27        {
 28            CustomInit();
 198629        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the
 33        /// OutputFileBlobContainerDestination class.
 34        /// </summary>
 35        /// <param name="containerUrl">The URL of the container within Azure
 36        /// Blob Storage to which to upload the file(s).</param>
 37        /// <param name="path">The destination blob or virtual directory within
 38        /// the Azure Storage container.</param>
 039        public OutputFileBlobContainerDestination(string containerUrl, string path = default(string))
 40        {
 041            Path = path;
 042            ContainerUrl = containerUrl;
 43            CustomInit();
 044        }
 45
 46        /// <summary>
 47        /// An initialization method that performs custom operations like setting defaults
 48        /// </summary>
 49        partial void CustomInit();
 50
 51        /// <summary>
 52        /// Gets or sets the destination blob or virtual directory within the
 53        /// Azure Storage container.
 54        /// </summary>
 55        /// <remarks>
 56        /// If filePattern refers to a specific file (i.e. contains no
 57        /// wildcards), then path is the name of the blob to which to upload
 58        /// that file. If filePattern contains one or more wildcards (and
 59        /// therefore may match multiple files), then path is the name of the
 60        /// blob virtual directory (which is prepended to each blob name) to
 61        /// which to upload the file(s). If omitted, file(s) are uploaded to
 62        /// the root of the container with a blob name matching their file
 63        /// name.
 64        /// </remarks>
 65        [JsonProperty(PropertyName = "path")]
 425566        public string Path { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets the URL of the container within Azure Blob Storage to
 70        /// which to upload the file(s).
 71        /// </summary>
 72        /// <remarks>
 73        /// The URL must include a Shared Access Signature (SAS) granting write
 74        /// permissions to the container.
 75        /// </remarks>
 76        [JsonProperty(PropertyName = "containerUrl")]
 426177        public string ContainerUrl { get; set; }
 78
 79    }
 80}