-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
ContainerAppVnetConfiguration.cs
31 lines (26 loc) · 1.32 KB
/
ContainerAppVnetConfiguration.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using Azure.Core;
using Azure.ResourceManager.AppContainers.Models;
using Azure.ResourceManager.Models;
namespace Azure.ResourceManager.AppContainers.Models
{
/// <summary> Configuration properties for apps environment to join a Virtual Network. </summary>
public partial class ContainerAppVnetConfiguration
{
/// <summary> Resource ID of a subnet that Container App containers are injected into. This subnet must be in the same VNET as the subnet defined in infrastructureSubnetId. Must not overlap with any other provided IP ranges. </summary>
[Obsolete("This method is obsolete and will be removed in a future release", false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public string RuntimeSubnetId { get; set; }
/// <summary> Configuration used to control the Environment Egress outbound traffic. </summary>
[Obsolete("This method is obsolete and will be removed in a future release", false)]
[EditorBrowsable(EditorBrowsableState.Never)]
public ContainerAppManagedEnvironmentOutboundSettings OutboundSettings { get; set; }
}
}