< Summary

Class:Microsoft.Azure.Management.Search.Models.PrivateEndpointConnection
Assembly:Microsoft.Azure.Management.Search
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Management.Search\src\Generated\Models\PrivateEndpointConnection.cs
Covered lines:0
Uncovered lines:12
Coverable lines:12
Total lines:85
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_Id()-0%100%
get_Name()-0%100%
get_Type()-0%100%
get_Properties()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Management.Search\src\Generated\Models\PrivateEndpointConnection.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.Management.Search.Models
 12{
 13    using Microsoft.Rest;
 14    using Microsoft.Rest.Azure;
 15    using Newtonsoft.Json;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Describes an existing Private Endpoint connection to the Azure
 20    /// Cognitive Search service.
 21    /// </summary>
 22    public partial class PrivateEndpointConnection : IResource
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the PrivateEndpointConnection class.
 26        /// </summary>
 027        public PrivateEndpointConnection()
 28        {
 29            CustomInit();
 030        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the PrivateEndpointConnection class.
 34        /// </summary>
 35        /// <param name="id">The ID of the private endpoint connection. This
 36        /// can be used with the Azure Resource Manager to link resources
 37        /// together.</param>
 38        /// <param name="name">The name of the private endpoint
 39        /// connection.</param>
 40        /// <param name="type">The resource type.</param>
 41        /// <param name="properties">Describes the properties of an existing
 42        /// Private Endpoint connection to the Azure Cognitive Search
 43        /// service.</param>
 044        public PrivateEndpointConnection(string id = default(string), string name = default(string), string type = defau
 45        {
 046            Id = id;
 047            Name = name;
 048            Type = type;
 049            Properties = properties;
 50            CustomInit();
 051        }
 52
 53        /// <summary>
 54        /// An initialization method that performs custom operations like setting defaults
 55        /// </summary>
 56        partial void CustomInit();
 57
 58        /// <summary>
 59        /// Gets the ID of the private endpoint connection. This can be used
 60        /// with the Azure Resource Manager to link resources together.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "id")]
 063        public string Id { get; private set; }
 64
 65        /// <summary>
 66        /// Gets the name of the private endpoint connection.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "name")]
 069        public string Name { get; private set; }
 70
 71        /// <summary>
 72        /// Gets the resource type.
 73        /// </summary>
 74        [JsonProperty(PropertyName = "type")]
 075        public string Type { get; private set; }
 76
 77        /// <summary>
 78        /// Gets or sets describes the properties of an existing Private
 79        /// Endpoint connection to the Azure Cognitive Search service.
 80        /// </summary>
 81        [JsonProperty(PropertyName = "properties")]
 082        public PrivateEndpointConnectionProperties Properties { get; set; }
 83
 84    }
 85}