< Summary

Class:Microsoft.Azure.KeyVault.Models.SasDefinitionCreateParameters
Assembly:Microsoft.Azure.KeyVault
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\SasDefinitionCreateParameters.cs
Covered lines:0
Uncovered lines:21
Coverable lines:21
Total lines:120
Line coverage:0% (0 of 21)
Covered branches:0
Total branches:6
Branch coverage:0% (0 of 6)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_TemplateUri()-0%100%
get_SasType()-0%100%
get_ValidityPeriod()-0%100%
get_SasDefinitionAttributes()-0%100%
get_Tags()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\SasDefinitionCreateParameters.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.KeyVault.Models
 12{
 13    using Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Collections;
 16    using System.Collections.Generic;
 17    using System.Linq;
 18
 19    /// <summary>
 20    /// The SAS definition create parameters.
 21    /// </summary>
 22    public partial class SasDefinitionCreateParameters
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the SasDefinitionCreateParameters
 26        /// class.
 27        /// </summary>
 028        public SasDefinitionCreateParameters()
 29        {
 30            CustomInit();
 031        }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the SasDefinitionCreateParameters
 35        /// class.
 36        /// </summary>
 37        /// <param name="templateUri">The SAS definition token template signed
 38        /// with an arbitrary key.  Tokens created according to the SAS
 39        /// definition will have the same properties as the template.</param>
 40        /// <param name="sasType">The type of SAS token the SAS definition will
 41        /// create. Possible values include: 'account', 'service'</param>
 42        /// <param name="validityPeriod">The validity period of SAS tokens
 43        /// created according to the SAS definition.</param>
 44        /// <param name="sasDefinitionAttributes">The attributes of the SAS
 45        /// definition.</param>
 46        /// <param name="tags">Application specific metadata in the form of
 47        /// key-value pairs.</param>
 048        public SasDefinitionCreateParameters(string templateUri, string sasType, string validityPeriod, SasDefinitionAtt
 49        {
 050            TemplateUri = templateUri;
 051            SasType = sasType;
 052            ValidityPeriod = validityPeriod;
 053            SasDefinitionAttributes = sasDefinitionAttributes;
 054            Tags = tags;
 55            CustomInit();
 056        }
 57
 58        /// <summary>
 59        /// An initialization method that performs custom operations like setting defaults
 60        /// </summary>
 61        partial void CustomInit();
 62
 63        /// <summary>
 64        /// Gets or sets the SAS definition token template signed with an
 65        /// arbitrary key.  Tokens created according to the SAS definition will
 66        /// have the same properties as the template.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "templateUri")]
 069        public string TemplateUri { get; set; }
 70
 71        /// <summary>
 72        /// Gets or sets the type of SAS token the SAS definition will create.
 73        /// Possible values include: 'account', 'service'
 74        /// </summary>
 75        [JsonProperty(PropertyName = "sasType")]
 076        public string SasType { get; set; }
 77
 78        /// <summary>
 79        /// Gets or sets the validity period of SAS tokens created according to
 80        /// the SAS definition.
 81        /// </summary>
 82        [JsonProperty(PropertyName = "validityPeriod")]
 083        public string ValidityPeriod { get; set; }
 84
 85        /// <summary>
 86        /// Gets or sets the attributes of the SAS definition.
 87        /// </summary>
 88        [JsonProperty(PropertyName = "attributes")]
 089        public SasDefinitionAttributes SasDefinitionAttributes { get; set; }
 90
 91        /// <summary>
 92        /// Gets or sets application specific metadata in the form of key-value
 93        /// pairs.
 94        /// </summary>
 95        [JsonProperty(PropertyName = "tags")]
 096        public IDictionary<string, string> Tags { get; set; }
 97
 98        /// <summary>
 99        /// Validate the object.
 100        /// </summary>
 101        /// <exception cref="ValidationException">
 102        /// Thrown if validation fails
 103        /// </exception>
 104        public virtual void Validate()
 105        {
 0106            if (TemplateUri == null)
 107            {
 0108                throw new ValidationException(ValidationRules.CannotBeNull, "TemplateUri");
 109            }
 0110            if (SasType == null)
 111            {
 0112                throw new ValidationException(ValidationRules.CannotBeNull, "SasType");
 113            }
 0114            if (ValidityPeriod == null)
 115            {
 0116                throw new ValidationException(ValidationRules.CannotBeNull, "ValidityPeriod");
 117            }
 0118        }
 119    }
 120}