-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
LoadTestingOutboundEnvironmentEndpoint.cs
36 lines (30 loc) · 1.56 KB
/
LoadTestingOutboundEnvironmentEndpoint.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System.Collections.Generic;
using Azure.Core;
namespace Azure.ResourceManager.LoadTesting.Models
{
/// <summary> A collection of related endpoints from the same service for which the Batch service requires outbound access. </summary>
public partial class LoadTestingOutboundEnvironmentEndpoint
{
/// <summary> Initializes a new instance of LoadTestingOutboundEnvironmentEndpoint. </summary>
internal LoadTestingOutboundEnvironmentEndpoint()
{
Endpoints = new ChangeTrackingList<LoadTestingEndpointDependency>();
}
/// <summary> Initializes a new instance of LoadTestingOutboundEnvironmentEndpoint. </summary>
/// <param name="category"> The type of service that Azure Load Testing connects to. </param>
/// <param name="endpoints"> The endpoints for this service to which the Batch service makes outbound calls. </param>
internal LoadTestingOutboundEnvironmentEndpoint(string category, IReadOnlyList<LoadTestingEndpointDependency> endpoints)
{
Category = category;
Endpoints = endpoints;
}
/// <summary> The type of service that Azure Load Testing connects to. </summary>
public string Category { get; }
/// <summary> The endpoints for this service to which the Batch service makes outbound calls. </summary>
public IReadOnlyList<LoadTestingEndpointDependency> Endpoints { get; }
}
}