< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Timeout()-0%100%
get_ClientRequestId()-100%100%
get_ReturnClientRequestId()-0%100%
get_OcpDate()-0%100%
get_OcpRange()-100%100%
get_IfModifiedSince()-0%100%
get_IfUnmodifiedSince()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\FileGetFromTaskOptions.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 Microsoft.Rest;
 14    using Microsoft.Rest.Serialization;
 15    using Newtonsoft.Json;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Additional parameters for GetFromTask operation.
 20    /// </summary>
 21    public partial class FileGetFromTaskOptions
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the FileGetFromTaskOptions class.
 25        /// </summary>
 526        public FileGetFromTaskOptions()
 27        {
 28            CustomInit();
 529        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the FileGetFromTaskOptions class.
 33        /// </summary>
 34        /// <param name="timeout">The maximum time that the server can spend
 35        /// processing the request, in seconds. The default is 30
 36        /// seconds.</param>
 37        /// <param name="clientRequestId">The caller-generated request
 38        /// identity, in the form of a GUID with no decoration such as curly
 39        /// braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.</param>
 40        /// <param name="returnClientRequestId">Whether the server should
 41        /// return the client-request-id in the response.</param>
 42        /// <param name="ocpDate">The time the request was issued. Client
 43        /// libraries typically set this to the current system clock time; set
 44        /// it explicitly if you are calling the REST API directly.</param>
 45        /// <param name="ocpRange">The byte range to be retrieved. The default
 46        /// is to retrieve the entire file. The format is
 47        /// bytes=startRange-endRange.</param>
 48        /// <param name="ifModifiedSince">A timestamp indicating the last
 49        /// modified time of the resource known to the client. The operation
 50        /// will be performed only if the resource on the service has been
 51        /// modified since the specified time.</param>
 52        /// <param name="ifUnmodifiedSince">A timestamp indicating the last
 53        /// modified time of the resource known to the client. The operation
 54        /// will be performed only if the resource on the service has not been
 55        /// modified since the specified time.</param>
 056        public FileGetFromTaskOptions(int? timeout = default(int?), System.Guid? clientRequestId = default(System.Guid?)
 57        {
 058            Timeout = timeout;
 059            ClientRequestId = clientRequestId;
 060            ReturnClientRequestId = returnClientRequestId;
 061            OcpDate = ocpDate;
 062            OcpRange = ocpRange;
 063            IfModifiedSince = ifModifiedSince;
 064            IfUnmodifiedSince = ifUnmodifiedSince;
 65            CustomInit();
 066        }
 67
 68        /// <summary>
 69        /// An initialization method that performs custom operations like setting defaults
 70        /// </summary>
 71        partial void CustomInit();
 72
 73        /// <summary>
 74        /// Gets or sets the maximum time that the server can spend processing
 75        /// the request, in seconds. The default is 30 seconds.
 76        /// </summary>
 77        [Newtonsoft.Json.JsonIgnore]
 078        public int? Timeout { get; set; }
 79
 80        /// <summary>
 81        /// Gets or sets the caller-generated request identity, in the form of
 82        /// a GUID with no decoration such as curly braces, e.g.
 83        /// 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.
 84        /// </summary>
 85        [Newtonsoft.Json.JsonIgnore]
 486        public System.Guid? ClientRequestId { get; set; }
 87
 88        /// <summary>
 89        /// Gets or sets whether the server should return the client-request-id
 90        /// in the response.
 91        /// </summary>
 92        [Newtonsoft.Json.JsonIgnore]
 093        public bool? ReturnClientRequestId { get; set; }
 94
 95        /// <summary>
 96        /// Gets or sets the time the request was issued. Client libraries
 97        /// typically set this to the current system clock time; set it
 98        /// explicitly if you are calling the REST API directly.
 99        /// </summary>
 100        [JsonConverter(typeof(DateTimeRfc1123JsonConverter))]
 101        [Newtonsoft.Json.JsonIgnore]
 0102        public System.DateTime? OcpDate { get; set; }
 103
 104        /// <summary>
 105        /// Gets or sets the byte range to be retrieved. The default is to
 106        /// retrieve the entire file. The format is bytes=startRange-endRange.
 107        /// </summary>
 108        [Newtonsoft.Json.JsonIgnore]
 5109        public string OcpRange { get; set; }
 110
 111        /// <summary>
 112        /// Gets or sets a timestamp indicating the last modified time of the
 113        /// resource known to the client. The operation will be performed only
 114        /// if the resource on the service has been modified since the
 115        /// specified time.
 116        /// </summary>
 117        [JsonConverter(typeof(DateTimeRfc1123JsonConverter))]
 118        [Newtonsoft.Json.JsonIgnore]
 0119        public System.DateTime? IfModifiedSince { get; set; }
 120
 121        /// <summary>
 122        /// Gets or sets a timestamp indicating the last modified time of the
 123        /// resource known to the client. The operation will be performed only
 124        /// if the resource on the service has not been modified since the
 125        /// specified time.
 126        /// </summary>
 127        [JsonConverter(typeof(DateTimeRfc1123JsonConverter))]
 128        [Newtonsoft.Json.JsonIgnore]
 0129        public System.DateTime? IfUnmodifiedSince { get; set; }
 130
 131    }
 132}