< Summary

Class:Microsoft.Azure.EventGrid.Models.MachineLearningServicesModelRegisteredEventData
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MachineLearningServicesModelRegisteredEventData.cs
Covered lines:6
Uncovered lines:6
Coverable lines:12
Total lines:82
Line coverage:50% (6 of 12)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_ModelName()-100%100%
get_ModelVersion()-100%100%
get_ModelTags()-100%100%
get_ModelProperties()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MachineLearningServicesModelRegisteredEventData.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.EventGrid.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Schema of the Data property of an EventGridEvent for an
 18    /// Microsoft.MachineLearningServices.ModelRegistered event.
 19    /// </summary>
 20    public partial class MachineLearningServicesModelRegisteredEventData
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the
 24        /// MachineLearningServicesModelRegisteredEventData class.
 25        /// </summary>
 126        public MachineLearningServicesModelRegisteredEventData()
 27        {
 28            CustomInit();
 129        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the
 33        /// MachineLearningServicesModelRegisteredEventData class.
 34        /// </summary>
 35        /// <param name="modelName">The name of the model that was
 36        /// registered.</param>
 37        /// <param name="modelVersion">The version of the model that was
 38        /// registered.</param>
 39        /// <param name="modelTags">The tags of the model that was
 40        /// registered.</param>
 41        /// <param name="modelProperties">The properties of the model that was
 42        /// registered.</param>
 043        public MachineLearningServicesModelRegisteredEventData(string modelName = default(string), string modelVersion =
 44        {
 045            ModelName = modelName;
 046            ModelVersion = modelVersion;
 047            ModelTags = modelTags;
 048            ModelProperties = modelProperties;
 49            CustomInit();
 050        }
 51
 52        /// <summary>
 53        /// An initialization method that performs custom operations like setting defaults
 54        /// </summary>
 55        partial void CustomInit();
 56
 57        /// <summary>
 58        /// Gets or sets the name of the model that was registered.
 59        /// </summary>
 60        [JsonProperty(PropertyName = "modelName")]
 261        public string ModelName { get; set; }
 62
 63        /// <summary>
 64        /// Gets or sets the version of the model that was registered.
 65        /// </summary>
 66        [JsonProperty(PropertyName = "modelVersion")]
 267        public string ModelVersion { get; set; }
 68
 69        /// <summary>
 70        /// Gets or sets the tags of the model that was registered.
 71        /// </summary>
 72        [JsonProperty(PropertyName = "modelTags")]
 473        public object ModelTags { get; set; }
 74
 75        /// <summary>
 76        /// Gets or sets the properties of the model that was registered.
 77        /// </summary>
 78        [JsonProperty(PropertyName = "modelProperties")]
 479        public object ModelProperties { get; set; }
 80
 81    }
 82}