< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.FileGetFromComputeNodeOptions
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\FileGetFromComputeNodeOptions.cs
Covered lines:4
Uncovered lines:14
Coverable lines:18
Total lines:134
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\FileGetFromComputeNodeOptions.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 GetFromComputeNode operation.
 20    /// </summary>
 21    public partial class FileGetFromComputeNodeOptions
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the FileGetFromComputeNodeOptions
 25        /// class.
 26        /// </summary>
 527        public FileGetFromComputeNodeOptions()
 28        {
 29            CustomInit();
 530        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the FileGetFromComputeNodeOptions
 34        /// class.
 35        /// </summary>
 36        /// <param name="timeout">The maximum time that the server can spend
 37        /// processing the request, in seconds. The default is 30
 38        /// seconds.</param>
 39        /// <param name="clientRequestId">The caller-generated request
 40        /// identity, in the form of a GUID with no decoration such as curly
 41        /// braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.</param>
 42        /// <param name="returnClientRequestId">Whether the server should
 43        /// return the client-request-id in the response.</param>
 44        /// <param name="ocpDate">The time the request was issued. Client
 45        /// libraries typically set this to the current system clock time; set
 46        /// it explicitly if you are calling the REST API directly.</param>
 47        /// <param name="ocpRange">The byte range to be retrieved. The default
 48        /// is to retrieve the entire file. The format is
 49        /// bytes=startRange-endRange.</param>
 50        /// <param name="ifModifiedSince">A timestamp indicating the last
 51        /// modified time of the resource known to the client. The operation
 52        /// will be performed only if the resource on the service has been
 53        /// modified since the specified time.</param>
 54        /// <param name="ifUnmodifiedSince">A timestamp indicating the last
 55        /// modified time of the resource known to the client. The operation
 56        /// will be performed only if the resource on the service has not been
 57        /// modified since the specified time.</param>
 058        public FileGetFromComputeNodeOptions(int? timeout = default(int?), System.Guid? clientRequestId = default(System
 59        {
 060            Timeout = timeout;
 061            ClientRequestId = clientRequestId;
 062            ReturnClientRequestId = returnClientRequestId;
 063            OcpDate = ocpDate;
 064            OcpRange = ocpRange;
 065            IfModifiedSince = ifModifiedSince;
 066            IfUnmodifiedSince = ifUnmodifiedSince;
 67            CustomInit();
 068        }
 69
 70        /// <summary>
 71        /// An initialization method that performs custom operations like setting defaults
 72        /// </summary>
 73        partial void CustomInit();
 74
 75        /// <summary>
 76        /// Gets or sets the maximum time that the server can spend processing
 77        /// the request, in seconds. The default is 30 seconds.
 78        /// </summary>
 79        [Newtonsoft.Json.JsonIgnore]
 080        public int? Timeout { get; set; }
 81
 82        /// <summary>
 83        /// Gets or sets the caller-generated request identity, in the form of
 84        /// a GUID with no decoration such as curly braces, e.g.
 85        /// 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0.
 86        /// </summary>
 87        [Newtonsoft.Json.JsonIgnore]
 488        public System.Guid? ClientRequestId { get; set; }
 89
 90        /// <summary>
 91        /// Gets or sets whether the server should return the client-request-id
 92        /// in the response.
 93        /// </summary>
 94        [Newtonsoft.Json.JsonIgnore]
 095        public bool? ReturnClientRequestId { get; set; }
 96
 97        /// <summary>
 98        /// Gets or sets the time the request was issued. Client libraries
 99        /// typically set this to the current system clock time; set it
 100        /// explicitly if you are calling the REST API directly.
 101        /// </summary>
 102        [JsonConverter(typeof(DateTimeRfc1123JsonConverter))]
 103        [Newtonsoft.Json.JsonIgnore]
 0104        public System.DateTime? OcpDate { get; set; }
 105
 106        /// <summary>
 107        /// Gets or sets the byte range to be retrieved. The default is to
 108        /// retrieve the entire file. The format is bytes=startRange-endRange.
 109        /// </summary>
 110        [Newtonsoft.Json.JsonIgnore]
 5111        public string OcpRange { get; set; }
 112
 113        /// <summary>
 114        /// Gets or sets a timestamp indicating the last modified time of the
 115        /// resource known to the client. The operation will be performed only
 116        /// if the resource on the service has been modified since the
 117        /// specified time.
 118        /// </summary>
 119        [JsonConverter(typeof(DateTimeRfc1123JsonConverter))]
 120        [Newtonsoft.Json.JsonIgnore]
 0121        public System.DateTime? IfModifiedSince { get; set; }
 122
 123        /// <summary>
 124        /// Gets or sets a timestamp indicating the last modified time of the
 125        /// resource known to the client. The operation will be performed only
 126        /// if the resource on the service has not been modified since the
 127        /// specified time.
 128        /// </summary>
 129        [JsonConverter(typeof(DateTimeRfc1123JsonConverter))]
 130        [Newtonsoft.Json.JsonIgnore]
 0131        public System.DateTime? IfUnmodifiedSince { get; set; }
 132
 133    }
 134}