< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_ClientRequestId()-0%100%
get_RequestId()-0%100%
get_ETag()-0%100%
get_LastModified()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\CertificateDeleteHeaders.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    /// Defines headers for Delete operation.
 20    /// </summary>
 21    public partial class CertificateDeleteHeaders
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the CertificateDeleteHeaders class.
 25        /// </summary>
 026        public CertificateDeleteHeaders()
 27        {
 28            CustomInit();
 029        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the CertificateDeleteHeaders class.
 33        /// </summary>
 34        /// <param name="clientRequestId">The client-request-id provided by the
 35        /// client during the request. This will be returned only if the
 36        /// return-client-request-id parameter was set to true.</param>
 37        /// <param name="requestId">A unique identifier for the request that
 38        /// was made to the Batch service. If a request is consistently failing
 39        /// and you have verified that the request is properly formulated, you
 40        /// may use this value to report the error to Microsoft. In your
 41        /// report, include the value of this request ID, the approximate time
 42        /// that the request was made, the Batch Account against which the
 43        /// request was made, and the region that Account resides in.</param>
 44        /// <param name="eTag">The ETag HTTP response header. This is an opaque
 45        /// string. You can use it to detect whether the resource has changed
 46        /// between requests. In particular, you can pass the ETag to one of
 47        /// the If-Modified-Since, If-Unmodified-Since, If-Match or
 48        /// If-None-Match headers.</param>
 49        /// <param name="lastModified">The time at which the resource was last
 50        /// modified.</param>
 051        public CertificateDeleteHeaders(System.Guid? clientRequestId = default(System.Guid?), System.Guid? requestId = d
 52        {
 053            ClientRequestId = clientRequestId;
 054            RequestId = requestId;
 055            ETag = eTag;
 056            LastModified = lastModified;
 57            CustomInit();
 058        }
 59
 60        /// <summary>
 61        /// An initialization method that performs custom operations like setting defaults
 62        /// </summary>
 63        partial void CustomInit();
 64
 65        /// <summary>
 66        /// Gets or sets the client-request-id provided by the client during
 67        /// the request. This will be returned only if the
 68        /// return-client-request-id parameter was set to true.
 69        /// </summary>
 70        [JsonProperty(PropertyName = "client-request-id")]
 071        public System.Guid? ClientRequestId { get; set; }
 72
 73        /// <summary>
 74        /// Gets or sets a unique identifier for the request that was made to
 75        /// the Batch service. If a request is consistently failing and you
 76        /// have verified that the request is properly formulated, you may use
 77        /// this value to report the error to Microsoft. In your report,
 78        /// include the value of this request ID, the approximate time that the
 79        /// request was made, the Batch Account against which the request was
 80        /// made, and the region that Account resides in.
 81        /// </summary>
 82        [JsonProperty(PropertyName = "request-id")]
 083        public System.Guid? RequestId { get; set; }
 84
 85        /// <summary>
 86        /// Gets or sets the ETag HTTP response header. This is an opaque
 87        /// string. You can use it to detect whether the resource has changed
 88        /// between requests. In particular, you can pass the ETag to one of
 89        /// the If-Modified-Since, If-Unmodified-Since, If-Match or
 90        /// If-None-Match headers.
 91        /// </summary>
 92        [JsonProperty(PropertyName = "ETag")]
 093        public string ETag { get; set; }
 94
 95        /// <summary>
 96        /// Gets or sets the time at which the resource was last modified.
 97        /// </summary>
 98        [JsonConverter(typeof(DateTimeRfc1123JsonConverter))]
 99        [JsonProperty(PropertyName = "Last-Modified")]
 0100        public System.DateTime? LastModified { get; set; }
 101
 102    }
 103}