Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public partial interface IIpGroupsOperations
/// </exception>
Task<AzureOperationResponse<IpGroup>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string ipGroupsName, IpGroup parameters, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Updates an IpGroups
/// Updates tags of an IpGroups resource.
/// </summary>
/// <param name='resourceGroupName'>
/// The name of the resource group.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ internal IpGroupsOperations(NetworkManagementClient client)
}

/// <summary>
/// Updates an IpGroups
/// Updates tags of an IpGroups resource.
/// </summary>
/// <param name='resourceGroupName'>
/// The name of the resource group.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public static IpGroup CreateOrUpdate(this IIpGroupsOperations operations, string
}

/// <summary>
/// Updates an IpGroups
/// Updates tags of an IpGroups resource.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand All @@ -136,7 +136,7 @@ public static IpGroup UpdateGroups(this IIpGroupsOperations operations, string r
}

/// <summary>
/// Updates an IpGroups
/// Updates tags of an IpGroups resource.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public AzureFirewall()
/// AzureFirewall.</param>
/// <param name="sku">The Azure Firewall Resource SKU.</param>
/// <param name="additionalProperties">The additional properties used
/// to further config this azure firewall </param>
/// to further config this azure firewall.</param>
/// <param name="zones">A list of availability zones denoting where the
/// resource needs to come from.</param>
/// <param name="etag">A unique read-only string that changes whenever
Expand Down Expand Up @@ -159,7 +159,7 @@ public AzureFirewall()

/// <summary>
/// Gets or sets the additional properties used to further config this
/// azure firewall
/// azure firewall.
/// </summary>
[JsonProperty(PropertyName = "properties.additionalProperties")]
public IDictionary<string, string> AdditionalProperties { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public IpGroup()
/// <param name="ipAddresses">IpAddresses/IpAddressPrefixes in the
/// IpGroups resource.</param>
/// <param name="firewalls">List of references to Azure resources that
/// this IpGroups is associated with</param>
/// this IpGroups is associated with.</param>
/// <param name="etag">A unique read-only string that changes whenever
/// the resource is updated.</param>
public IpGroup(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary<string, string> tags = default(IDictionary<string, string>), string provisioningState = default(string), IList<string> ipAddresses = default(IList<string>), IList<SubResource> firewalls = default(IList<SubResource>), string etag = default(string))
Expand Down Expand Up @@ -79,7 +79,7 @@ public IpGroup()

/// <summary>
/// Gets list of references to Azure resources that this IpGroups is
/// associated with
/// associated with.
/// </summary>
[JsonProperty(PropertyName = "properties.firewalls")]
public IList<SubResource> Firewalls { get; private set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public P2SVpnConnectionHealth()
/// Initializes a new instance of the P2SVpnConnectionHealth class.
/// </summary>
/// <param name="sasUrl">Returned sas url of the blob to which the p2s
/// vpn connection detailed health will be written. </param>
/// vpn connection detailed health will be written.</param>
public P2SVpnConnectionHealth(string sasUrl = default(string))
{
SasUrl = sasUrl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ public PrivateLinkServiceConnectionState()
/// Approved/Rejected/Removed by the owner of the service.</param>
/// <param name="description">The reason for approval/rejection of the
/// connection.</param>
/// <param name="actionRequired">A message indicating if changes on the
/// service provider require any updates on the consumer.</param>
public PrivateLinkServiceConnectionState(string status = default(string), string description = default(string), string actionRequired = default(string))
/// <param name="actionsRequired">A message indicating if changes on
/// the service provider require any updates on the consumer.</param>
public PrivateLinkServiceConnectionState(string status = default(string), string description = default(string), string actionsRequired = default(string))
{
Status = status;
Description = description;
ActionRequired = actionRequired;
ActionsRequired = actionsRequired;
CustomInit();
}

Expand All @@ -68,8 +68,8 @@ public PrivateLinkServiceConnectionState()
/// Gets or sets a message indicating if changes on the service
/// provider require any updates on the consumer.
/// </summary>
[JsonProperty(PropertyName = "actionRequired")]
public string ActionRequired { get; set; }
[JsonProperty(PropertyName = "actionsRequired")]
public string ActionsRequired { get; set; }

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ public TrafficSelectorPolicy()
/// Initializes a new instance of the TrafficSelectorPolicy class.
/// </summary>
/// <param name="localAddressRanges">A collection of local address
/// spaces in CIDR format</param>
/// spaces in CIDR format.</param>
/// <param name="remoteAddressRanges">A collection of remote address
/// spaces in CIDR format</param>
/// spaces in CIDR format.</param>
public TrafficSelectorPolicy(IList<string> localAddressRanges, IList<string> remoteAddressRanges)
{
LocalAddressRanges = localAddressRanges;
Expand All @@ -49,13 +49,13 @@ public TrafficSelectorPolicy(IList<string> localAddressRanges, IList<string> rem
partial void CustomInit();

/// <summary>
/// Gets or sets a collection of local address spaces in CIDR format
/// Gets or sets a collection of local address spaces in CIDR format.
/// </summary>
[JsonProperty(PropertyName = "localAddressRanges")]
public IList<string> LocalAddressRanges { get; set; }

/// <summary>
/// Gets or sets a collection of remote address spaces in CIDR format
/// Gets or sets a collection of remote address spaces in CIDR format.
/// </summary>
[JsonProperty(PropertyName = "remoteAddressRanges")]
public IList<string> RemoteAddressRanges { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ public VirtualHubRouteV2()
/// <summary>
/// Initializes a new instance of the VirtualHubRouteV2 class.
/// </summary>
/// <param name="destinationType">The type of destinations</param>
/// <param name="destinationType">The type of destinations.</param>
/// <param name="destinations">List of all destinations.</param>
/// <param name="nextHopType">The type of next hops</param>
/// <param name="nextHopType">The type of next hops.</param>
/// <param name="nextHops">NextHops ip address.</param>
public VirtualHubRouteV2(string destinationType = default(string), IList<string> destinations = default(IList<string>), string nextHopType = default(string), IList<string> nextHops = default(IList<string>))
{
Expand All @@ -50,7 +50,7 @@ public VirtualHubRouteV2()
partial void CustomInit();

/// <summary>
/// Gets or sets the type of destinations
/// Gets or sets the type of destinations.
/// </summary>
[JsonProperty(PropertyName = "destinationType")]
public string DestinationType { get; set; }
Expand All @@ -62,7 +62,7 @@ public VirtualHubRouteV2()
public IList<string> Destinations { get; set; }

/// <summary>
/// Gets or sets the type of next hops
/// Gets or sets the type of next hops.
/// </summary>
[JsonProperty(PropertyName = "nextHopType")]
public string NextHopType { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ public VirtualNetworkBgpCommunities()
/// class.
/// </summary>
/// <param name="virtualNetworkCommunity">The BGP community associated
/// with the virtual network</param>
/// with the virtual network.</param>
/// <param name="regionalCommunity">The BGP community associated with
/// the region of the virtual network</param>
/// the region of the virtual network.</param>
public VirtualNetworkBgpCommunities(string virtualNetworkCommunity, string regionalCommunity = default(string))
{
VirtualNetworkCommunity = virtualNetworkCommunity;
Expand All @@ -50,14 +50,14 @@ public VirtualNetworkBgpCommunities()
partial void CustomInit();

/// <summary>
/// Gets or sets the BGP community associated with the virtual network
/// Gets or sets the BGP community associated with the virtual network.
/// </summary>
[JsonProperty(PropertyName = "virtualNetworkCommunity")]
public string VirtualNetworkCommunity { get; set; }

/// <summary>
/// Gets the BGP community associated with the region of the virtual
/// network
/// network.
/// </summary>
[JsonProperty(PropertyName = "regionalCommunity")]
public string RegionalCommunity { get; private set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,18 @@ public VirtualRouter()
/// <param name="location">Resource location.</param>
/// <param name="tags">Resource tags.</param>
/// <param name="virtualRouterAsn">VirtualRouter ASN.</param>
/// <param name="virtualRouterIps">VirtualRouter IPs</param>
/// <param name="virtualRouterIps">VirtualRouter IPs.</param>
/// <param name="hostedSubnet">The Subnet on which VirtualRouter is
/// hosted.</param>
/// <param name="hostedGateway">The Gateway on which VirtualRouter is
/// hosted.</param>
/// <param name="peerings">List of references to
/// VirtualRouterPeerings</param>
/// VirtualRouterPeerings.</param>
/// <param name="provisioningState">The provisioning state of the
/// resource. Possible values include: 'Succeeded', 'Updating',
/// 'Deleting', 'Failed'</param>
/// <param name="etag">Gets a unique read-only string that changes
/// whenever the resource is updated.</param>
/// <param name="etag">A unique read-only string that changes whenever
/// the resource is updated.</param>
public VirtualRouter(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary<string, string> tags = default(IDictionary<string, string>), long? virtualRouterAsn = default(long?), IList<string> virtualRouterIps = default(IList<string>), SubResource hostedSubnet = default(SubResource), SubResource hostedGateway = default(SubResource), IList<SubResource> peerings = default(IList<SubResource>), string provisioningState = default(string), string etag = default(string))
: base(id, name, type, location, tags)
{
Expand All @@ -77,7 +77,7 @@ public VirtualRouter()
public long? VirtualRouterAsn { get; set; }

/// <summary>
/// Gets or sets virtualRouter IPs
/// Gets or sets virtualRouter IPs.
/// </summary>
[JsonProperty(PropertyName = "properties.virtualRouterIps")]
public IList<string> VirtualRouterIps { get; set; }
Expand All @@ -95,7 +95,7 @@ public VirtualRouter()
public SubResource HostedGateway { get; set; }

/// <summary>
/// Gets list of references to VirtualRouterPeerings
/// Gets list of references to VirtualRouterPeerings.
/// </summary>
[JsonProperty(PropertyName = "properties.peerings")]
public IList<SubResource> Peerings { get; private set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.Network.Models
using System.Linq;

/// <summary>
/// Virtual Router Peering resource
/// Virtual Router Peering resource.
/// </summary>
[Rest.Serialization.JsonTransformation]
public partial class VirtualRouterPeering : SubResource
Expand All @@ -38,11 +38,10 @@ public VirtualRouterPeering()
/// <param name="provisioningState">The provisioning state of the
/// resource. Possible values include: 'Succeeded', 'Updating',
/// 'Deleting', 'Failed'</param>
/// <param name="name">Gets name of the peering unique to
/// VirtualRouter. This name can be used to access the
/// resource.</param>
/// <param name="etag">Gets a unique read-only string that changes
/// whenever the resource is updated.</param>
/// <param name="name">Name of the virtual router peering that is
/// unique within a virtual router.</param>
/// <param name="etag">A unique read-only string that changes whenever
/// the resource is updated.</param>
/// <param name="type">Peering type.</param>
public VirtualRouterPeering(string id = default(string), long? peerAsn = default(long?), string peerIp = default(string), string provisioningState = default(string), string name = default(string), string etag = default(string), string type = default(string))
: base(id)
Expand Down Expand Up @@ -81,8 +80,8 @@ public VirtualRouterPeering()
public string ProvisioningState { get; private set; }

/// <summary>
/// Gets name of the peering unique to VirtualRouter. This name can be
/// used to access the resource.
/// Gets or sets name of the virtual router peering that is unique
/// within a virtual router.
/// </summary>
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ public VpnServerConfiguration()
/// <param name="vpnServerConfigurationPropertiesEtag">A unique
/// read-only string that changes whenever the resource is
/// updated.</param>
/// <param name="etag">Gets a unique read-only string that changes
/// whenever the resource is updated.</param>
/// <param name="etag">A unique read-only string that changes whenever
/// the resource is updated.</param>
public VpnServerConfiguration(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary<string, string> tags = default(IDictionary<string, string>), string vpnServerConfigurationName = default(string), IList<string> vpnProtocols = default(IList<string>), IList<string> vpnAuthenticationTypes = default(IList<string>), IList<VpnServerConfigVpnClientRootCertificate> vpnClientRootCertificates = default(IList<VpnServerConfigVpnClientRootCertificate>), IList<VpnServerConfigVpnClientRevokedCertificate> vpnClientRevokedCertificates = default(IList<VpnServerConfigVpnClientRevokedCertificate>), IList<VpnServerConfigRadiusServerRootCertificate> radiusServerRootCertificates = default(IList<VpnServerConfigRadiusServerRootCertificate>), IList<VpnServerConfigRadiusClientRootCertificate> radiusClientRootCertificates = default(IList<VpnServerConfigRadiusClientRootCertificate>), IList<IpsecPolicy> vpnClientIpsecPolicies = default(IList<IpsecPolicy>), string radiusServerAddress = default(string), string radiusServerSecret = default(string), AadAuthenticationParameters aadAuthenticationParameters = default(AadAuthenticationParameters), string provisioningState = default(string), IList<P2SVpnGateway> p2SVpnGateways = default(IList<P2SVpnGateway>), string vpnServerConfigurationPropertiesEtag = default(string), string etag = default(string))
: base(id, name, type, location, tags)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public WebApplicationFirewallPolicy()
/// class.
/// </summary>
/// <param name="managedRules">Describes the managedRules
/// structure</param>
/// structure.</param>
/// <param name="id">Resource ID.</param>
/// <param name="name">Resource name.</param>
/// <param name="type">Resource type.</param>
Expand Down Expand Up @@ -116,7 +116,7 @@ public WebApplicationFirewallPolicy()
public string ResourceState { get; private set; }

/// <summary>
/// Gets or sets describes the managedRules structure
/// Gets or sets describes the managedRules structure.
/// </summary>
[JsonProperty(PropertyName = "properties.managedRules")]
public ManagedRulesDefinition ManagedRules { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,16 +115,5 @@ public static IEnumerable<Tuple<string, string, string>> ApiInfo_NetworkManageme
}.AsEnumerable();
}
}
// BEGIN: Code Generation Metadata Section
public static readonly String AutoRestVersion = "latest";
public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283";
public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/network/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\\Projects\\azure-sdk-for-net\\sdk";
public static readonly String GithubForkName = "Azure";
public static readonly String GithubBranchName = "master";
public static readonly String GithubCommidId = "6405fdd6023e04e54fb5c834c6f658ee10d59ca4";
public static readonly String CodeGenerationErrors = "";
public static readonly String GithubRepoName = "azure-rest-api-specs";
// END: Code Generation Metadata Section
}
}