diff --git a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneConfig.Serialization.cs b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneConfig.Serialization.cs index 00b6c6be2280..76ef09f74338 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneConfig.Serialization.cs +++ b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneConfig.Serialization.cs @@ -35,7 +35,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static PrivateDnsZoneConfig DeserializePrivateDnsZoneConfig(JsonElement element) { Optional name = default; + Optional id = default; + Optional type = default; + Optional etag = default; Optional privateDnsZoneId = default; + Optional provisioningState = default; Optional> recordSets = default; foreach (var property in element.EnumerateObject()) { @@ -44,6 +48,21 @@ internal static PrivateDnsZoneConfig DeserializePrivateDnsZoneConfig(JsonElement name = property.Value.GetString(); continue; } + if (property.NameEquals("id")) + { + id = property.Value.GetString(); + continue; + } + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } + if (property.NameEquals("etag")) + { + etag = property.Value.GetString(); + continue; + } if (property.NameEquals("properties")) { if (property.Value.ValueKind == JsonValueKind.Null) @@ -58,6 +77,16 @@ internal static PrivateDnsZoneConfig DeserializePrivateDnsZoneConfig(JsonElement privateDnsZoneId = property0.Value.GetString(); continue; } + if (property0.NameEquals("provisioningState")) + { + if (property0.Value.ValueKind == JsonValueKind.Null) + { + property0.ThrowNonNullablePropertyIsNull(); + continue; + } + provisioningState = new ProvisioningState(property0.Value.GetString()); + continue; + } if (property0.NameEquals("recordSets")) { if (property0.Value.ValueKind == JsonValueKind.Null) @@ -77,7 +106,7 @@ internal static PrivateDnsZoneConfig DeserializePrivateDnsZoneConfig(JsonElement continue; } } - return new PrivateDnsZoneConfig(name.Value, privateDnsZoneId.Value, Optional.ToList(recordSets)); + return new PrivateDnsZoneConfig(name.Value, id.Value, type.Value, etag.Value, privateDnsZoneId.Value, Optional.ToNullable(provisioningState), Optional.ToList(recordSets)); } } } diff --git a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneConfig.cs b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneConfig.cs index 64d79f0037ae..5571bf7737c8 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneConfig.cs +++ b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneConfig.cs @@ -21,19 +21,35 @@ public PrivateDnsZoneConfig() /// Initializes a new instance of PrivateDnsZoneConfig. /// Name of the resource that is unique within a resource group. This name can be used to access the resource. + /// The id of the privateDnsZoneConfig. + /// Type of resource. Will be specified as private dns zone configurations. + /// A unique read-only string that changes whenever the resource is updated. /// The resource id of the private dns zone. + /// The provisioning state of the private dns zone group resource. /// A collection of information regarding a recordSet, holding information to identify private resources. - internal PrivateDnsZoneConfig(string name, string privateDnsZoneId, IReadOnlyList recordSets) + internal PrivateDnsZoneConfig(string name, string id, string resourceType, string etag, string privateDnsZoneId, ProvisioningState? provisioningState, IReadOnlyList recordSets) { Name = name; + Id = id; + ResourceType = resourceType; + Etag = etag; PrivateDnsZoneId = privateDnsZoneId; + ProvisioningState = provisioningState; RecordSets = recordSets; } /// Name of the resource that is unique within a resource group. This name can be used to access the resource. public string Name { get; set; } + /// The id of the privateDnsZoneConfig. + public string Id { get; } + /// Type of resource. Will be specified as private dns zone configurations. + public string ResourceType { get; } + /// A unique read-only string that changes whenever the resource is updated. + public string Etag { get; } /// The resource id of the private dns zone. public string PrivateDnsZoneId { get; set; } + /// The provisioning state of the private dns zone group resource. + public ProvisioningState? ProvisioningState { get; } /// A collection of information regarding a recordSet, holding information to identify private resources. public IReadOnlyList RecordSets { get; } } diff --git a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneGroupData.Serialization.cs b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneGroupData.Serialization.cs index 4ceb41a32f83..d3ef569935b6 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneGroupData.Serialization.cs +++ b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateDnsZoneGroupData.Serialization.cs @@ -22,6 +22,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("name"); writer.WriteStringValue(Name); } + if (Optional.IsDefined(ResourceType)) + { + writer.WritePropertyName("type"); + writer.WriteStringValue(ResourceType); + } if (Optional.IsDefined(Id)) { writer.WritePropertyName("id"); @@ -46,6 +51,7 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static PrivateDnsZoneGroupData DeserializePrivateDnsZoneGroupData(JsonElement element) { Optional name = default; + Optional type = default; Optional etag = default; Optional id = default; Optional provisioningState = default; @@ -57,6 +63,11 @@ internal static PrivateDnsZoneGroupData DeserializePrivateDnsZoneGroupData(JsonE name = property.Value.GetString(); continue; } + if (property.NameEquals("type")) + { + type = property.Value.GetString(); + continue; + } if (property.NameEquals("etag")) { etag = property.Value.GetString(); @@ -105,7 +116,7 @@ internal static PrivateDnsZoneGroupData DeserializePrivateDnsZoneGroupData(JsonE continue; } } - return new PrivateDnsZoneGroupData(id.Value, name.Value, etag.Value, Optional.ToNullable(provisioningState), Optional.ToList(privateDnsZoneConfigs)); + return new PrivateDnsZoneGroupData(id.Value, name.Value, type.Value, etag.Value, Optional.ToNullable(provisioningState), Optional.ToList(privateDnsZoneConfigs)); } } } diff --git a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateEndpointData.Serialization.cs b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateEndpointData.Serialization.cs index 214736805d74..1ce545ef9485 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateEndpointData.Serialization.cs +++ b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateEndpointData.Serialization.cs @@ -45,6 +45,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) } writer.WritePropertyName("properties"); writer.WriteStartObject(); + if (Optional.IsDefined(ResourceGuid)) + { + writer.WritePropertyName("resourceGuid"); + writer.WriteStringValue(ResourceGuid); + } if (Optional.IsDefined(Subnet)) { writer.WritePropertyName("subnet"); @@ -93,6 +98,7 @@ internal static PrivateEndpointData DeserializePrivateEndpointData(JsonElement e Optional type = default; Optional location = default; Optional> tags = default; + Optional resourceGuid = default; Optional subnet = default; Optional> networkInterfaces = default; Optional provisioningState = default; @@ -160,6 +166,11 @@ internal static PrivateEndpointData DeserializePrivateEndpointData(JsonElement e } foreach (var property0 in property.Value.EnumerateObject()) { + if (property0.NameEquals("resourceGuid")) + { + resourceGuid = property0.Value.GetString(); + continue; + } if (property0.NameEquals("subnet")) { if (property0.Value.ValueKind == JsonValueKind.Null) @@ -244,7 +255,7 @@ internal static PrivateEndpointData DeserializePrivateEndpointData(JsonElement e continue; } } - return new PrivateEndpointData(id.Value, name.Value, type.Value, location.Value, Optional.ToDictionary(tags), extendedLocation.Value, etag.Value, subnet.Value, Optional.ToList(networkInterfaces), Optional.ToNullable(provisioningState), Optional.ToList(privateLinkServiceConnections), Optional.ToList(manualPrivateLinkServiceConnections), Optional.ToList(customDnsConfigs)); + return new PrivateEndpointData(id.Value, name.Value, type.Value, location.Value, Optional.ToDictionary(tags), extendedLocation.Value, etag.Value, resourceGuid.Value, subnet.Value, Optional.ToList(networkInterfaces), Optional.ToNullable(provisioningState), Optional.ToList(privateLinkServiceConnections), Optional.ToList(manualPrivateLinkServiceConnections), Optional.ToList(customDnsConfigs)); } } } diff --git a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceConnection.Serialization.cs b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceConnection.Serialization.cs index bb8783dbfdfe..c56846e5c40b 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceConnection.Serialization.cs +++ b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceConnection.Serialization.cs @@ -33,6 +33,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) writer.WritePropertyName("privateLinkServiceId"); writer.WriteStringValue(PrivateLinkServiceId); } + if (Optional.IsDefined(ResolvedPrivateLinkServiceLocation)) + { + writer.WritePropertyName("resolvedPrivateLinkServiceLocation"); + writer.WriteStringValue(ResolvedPrivateLinkServiceLocation); + } if (Optional.IsCollectionDefined(GroupIds)) { writer.WritePropertyName("groupIds"); @@ -65,6 +70,7 @@ internal static PrivateLinkServiceConnection DeserializePrivateLinkServiceConnec Optional id = default; Optional provisioningState = default; Optional privateLinkServiceId = default; + Optional resolvedPrivateLinkServiceLocation = default; Optional> groupIds = default; Optional requestMessage = default; Optional privateLinkServiceConnectionState = default; @@ -114,6 +120,11 @@ internal static PrivateLinkServiceConnection DeserializePrivateLinkServiceConnec privateLinkServiceId = property0.Value.GetString(); continue; } + if (property0.NameEquals("resolvedPrivateLinkServiceLocation")) + { + resolvedPrivateLinkServiceLocation = property0.Value.GetString(); + continue; + } if (property0.NameEquals("groupIds")) { if (property0.Value.ValueKind == JsonValueKind.Null) @@ -148,7 +159,7 @@ internal static PrivateLinkServiceConnection DeserializePrivateLinkServiceConnec continue; } } - return new PrivateLinkServiceConnection(id.Value, name.Value, type.Value, etag.Value, Optional.ToNullable(provisioningState), privateLinkServiceId.Value, Optional.ToList(groupIds), requestMessage.Value, privateLinkServiceConnectionState.Value); + return new PrivateLinkServiceConnection(id.Value, name.Value, type.Value, etag.Value, Optional.ToNullable(provisioningState), privateLinkServiceId.Value, resolvedPrivateLinkServiceLocation.Value, Optional.ToList(groupIds), requestMessage.Value, privateLinkServiceConnectionState.Value); } } } diff --git a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceConnection.cs b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceConnection.cs index 1b59083ddc43..2c1dce04c281 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceConnection.cs +++ b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceConnection.cs @@ -26,16 +26,18 @@ public PrivateLinkServiceConnection() /// A unique read-only string that changes whenever the resource is updated. /// The provisioning state of the private link service connection resource. /// The resource id of private link service. + /// The location for the resolved private link service. /// The ID(s) of the group(s) obtained from the remote resource that this private endpoint should connect to. /// A message passed to the owner of the remote resource with this connection request. Restricted to 140 chars. /// A collection of read-only information about the state of the connection to the remote resource. - internal PrivateLinkServiceConnection(string id, string name, string resourceType, string etag, ProvisioningState? provisioningState, string privateLinkServiceId, IList groupIds, string requestMessage, NetworkPrivateLinkServiceConnectionState privateLinkServiceConnectionState) : base(id) + internal PrivateLinkServiceConnection(string id, string name, string resourceType, string etag, ProvisioningState? provisioningState, string privateLinkServiceId, string resolvedPrivateLinkServiceLocation, IList groupIds, string requestMessage, NetworkPrivateLinkServiceConnectionState privateLinkServiceConnectionState) : base(id) { Name = name; ResourceType = resourceType; Etag = etag; ProvisioningState = provisioningState; PrivateLinkServiceId = privateLinkServiceId; + ResolvedPrivateLinkServiceLocation = resolvedPrivateLinkServiceLocation; GroupIds = groupIds; RequestMessage = requestMessage; PrivateLinkServiceConnectionState = privateLinkServiceConnectionState; @@ -51,6 +53,8 @@ internal PrivateLinkServiceConnection(string id, string name, string resourceTyp public ProvisioningState? ProvisioningState { get; } /// The resource id of private link service. public string PrivateLinkServiceId { get; set; } + /// The location for the resolved private link service. + public string ResolvedPrivateLinkServiceLocation { get; set; } /// The ID(s) of the group(s) obtained from the remote resource that this private endpoint should connect to. public IList GroupIds { get; } /// A message passed to the owner of the remote resource with this connection request. Restricted to 140 chars. diff --git a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceData.Serialization.cs b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceData.Serialization.cs index 63281df75e8e..42bcea3f5299 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceData.Serialization.cs +++ b/sdk/network/Azure.ResourceManager.Network/src/Generated/Models/PrivateLinkServiceData.Serialization.cs @@ -55,6 +55,11 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) } writer.WriteEndArray(); } + if (Optional.IsDefined(ResourceGuid)) + { + writer.WritePropertyName("resourceGuid"); + writer.WriteStringValue(ResourceGuid); + } if (Optional.IsCollectionDefined(IPConfigurations)) { writer.WritePropertyName("ipConfigurations"); @@ -104,6 +109,7 @@ internal static PrivateLinkServiceData DeserializePrivateLinkServiceData(JsonEle Optional location = default; Optional> tags = default; Optional> loadBalancerFrontendIpConfigurations = default; + Optional resourceGuid = default; Optional> ipConfigurations = default; Optional> networkInterfaces = default; Optional provisioningState = default; @@ -189,6 +195,11 @@ internal static PrivateLinkServiceData DeserializePrivateLinkServiceData(JsonEle loadBalancerFrontendIpConfigurations = array; continue; } + if (property0.NameEquals("resourceGuid")) + { + resourceGuid = property0.Value.GetString(); + continue; + } if (property0.NameEquals("ipConfigurations")) { if (property0.Value.ValueKind == JsonValueKind.Null) @@ -298,7 +309,7 @@ internal static PrivateLinkServiceData DeserializePrivateLinkServiceData(JsonEle continue; } } - return new PrivateLinkServiceData(id.Value, name.Value, type.Value, location.Value, Optional.ToDictionary(tags), extendedLocation.Value, etag.Value, Optional.ToList(loadBalancerFrontendIpConfigurations), Optional.ToList(ipConfigurations), Optional.ToList(networkInterfaces), Optional.ToNullable(provisioningState), Optional.ToList(privateEndpointConnections), visibility.Value, autoApproval.Value, Optional.ToList(fqdns), @alias.Value, Optional.ToNullable(enableProxyProtocol)); + return new PrivateLinkServiceData(id.Value, name.Value, type.Value, location.Value, Optional.ToDictionary(tags), extendedLocation.Value, etag.Value, Optional.ToList(loadBalancerFrontendIpConfigurations), resourceGuid.Value, Optional.ToList(ipConfigurations), Optional.ToList(networkInterfaces), Optional.ToNullable(provisioningState), Optional.ToList(privateEndpointConnections), visibility.Value, autoApproval.Value, Optional.ToList(fqdns), @alias.Value, Optional.ToNullable(enableProxyProtocol)); } } } diff --git a/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateDnsZoneGroupData.cs b/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateDnsZoneGroupData.cs index dc9edcfb6a55..be66b03c1977 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateDnsZoneGroupData.cs +++ b/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateDnsZoneGroupData.cs @@ -23,12 +23,14 @@ public PrivateDnsZoneGroupData() /// Initializes a new instance of PrivateDnsZoneGroupData. /// Resource ID. /// Name of the resource that is unique within a resource group. This name can be used to access the resource. + /// Type of resource. Will be specified as private dns zone groups. /// A unique read-only string that changes whenever the resource is updated. /// The provisioning state of the private dns zone group resource. /// A collection of private dns zone configurations of the private dns zone group. - internal PrivateDnsZoneGroupData(string id, string name, string etag, ProvisioningState? provisioningState, IList privateDnsZoneConfigs) : base(id) + internal PrivateDnsZoneGroupData(string id, string name, string resourceType, string etag, ProvisioningState? provisioningState, IList privateDnsZoneConfigs) : base(id) { Name = name; + ResourceType = resourceType; Etag = etag; ProvisioningState = provisioningState; PrivateDnsZoneConfigs = privateDnsZoneConfigs; @@ -36,6 +38,8 @@ internal PrivateDnsZoneGroupData(string id, string name, string etag, Provisioni /// Name of the resource that is unique within a resource group. This name can be used to access the resource. public string Name { get; set; } + /// Type of resource. Will be specified as private dns zone groups. + public string ResourceType { get; set; } /// A unique read-only string that changes whenever the resource is updated. public string Etag { get; } /// The provisioning state of the private dns zone group resource. diff --git a/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateEndpointData.cs b/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateEndpointData.cs index 30802a98ac5e..99f0b895bb71 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateEndpointData.cs +++ b/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateEndpointData.cs @@ -31,16 +31,18 @@ public PrivateEndpointData() /// Resource tags. /// The extended location of the load balancer. /// A unique read-only string that changes whenever the resource is updated. + /// The resource id of private endpoint. /// The ID of the subnet from which the private IP will be allocated. /// An array of references to the network interfaces created for this private endpoint. /// The provisioning state of the private endpoint resource. /// A grouping of information about the connection to the remote resource. /// A grouping of information about the connection to the remote resource. Used when the network admin does not have access to approve connections to the remote resource. /// An array of custom dns configurations. - internal PrivateEndpointData(string id, string name, string resourceType, string location, IDictionary tags, ExtendedLocation extendedLocation, string etag, SubnetData subnet, IReadOnlyList networkInterfaces, ProvisioningState? provisioningState, IList privateLinkServiceConnections, IList manualPrivateLinkServiceConnections, IList customDnsConfigs) : base(id, name, resourceType, location, tags) + internal PrivateEndpointData(string id, string name, string resourceType, string location, IDictionary tags, ExtendedLocation extendedLocation, string etag, string resourceGuid, SubnetData subnet, IReadOnlyList networkInterfaces, ProvisioningState? provisioningState, IList privateLinkServiceConnections, IList manualPrivateLinkServiceConnections, IList customDnsConfigs) : base(id, name, resourceType, location, tags) { ExtendedLocation = extendedLocation; Etag = etag; + ResourceGuid = resourceGuid; Subnet = subnet; NetworkInterfaces = networkInterfaces; ProvisioningState = provisioningState; @@ -53,6 +55,8 @@ internal PrivateEndpointData(string id, string name, string resourceType, string public ExtendedLocation ExtendedLocation { get; set; } /// A unique read-only string that changes whenever the resource is updated. public string Etag { get; } + /// The resource id of private endpoint. + public string ResourceGuid { get; set; } /// The ID of the subnet from which the private IP will be allocated. public SubnetData Subnet { get; set; } /// An array of references to the network interfaces created for this private endpoint. diff --git a/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateLinkServiceData.cs b/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateLinkServiceData.cs index 5ace10f124d1..539062a357b5 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateLinkServiceData.cs +++ b/sdk/network/Azure.ResourceManager.Network/src/Generated/PrivateLinkServiceData.cs @@ -33,6 +33,7 @@ public PrivateLinkServiceData() /// The extended location of the load balancer. /// A unique read-only string that changes whenever the resource is updated. /// An array of references to the load balancer IP configurations. + /// The resource id of private link service. /// An array of private link service IP configurations. /// An array of references to the network interfaces created for this private link service. /// The provisioning state of the private link service resource. @@ -42,11 +43,12 @@ public PrivateLinkServiceData() /// The list of Fqdn. /// The alias of the private link service. /// Whether the private link service is enabled for proxy protocol or not. - internal PrivateLinkServiceData(string id, string name, string resourceType, string location, IDictionary tags, ExtendedLocation extendedLocation, string etag, IList loadBalancerFrontendIPConfigurations, IList ipConfigurations, IReadOnlyList networkInterfaces, ProvisioningState? provisioningState, IReadOnlyList privateEndpointConnections, PrivateLinkServicePropertiesVisibility visibility, PrivateLinkServicePropertiesAutoApproval autoApproval, IList fqdns, string @alias, bool? enableProxyProtocol) : base(id, name, resourceType, location, tags) + internal PrivateLinkServiceData(string id, string name, string resourceType, string location, IDictionary tags, ExtendedLocation extendedLocation, string etag, IList loadBalancerFrontendIPConfigurations, string resourceGuid, IList ipConfigurations, IReadOnlyList networkInterfaces, ProvisioningState? provisioningState, IReadOnlyList privateEndpointConnections, PrivateLinkServicePropertiesVisibility visibility, PrivateLinkServicePropertiesAutoApproval autoApproval, IList fqdns, string @alias, bool? enableProxyProtocol) : base(id, name, resourceType, location, tags) { ExtendedLocation = extendedLocation; Etag = etag; LoadBalancerFrontendIPConfigurations = loadBalancerFrontendIPConfigurations; + ResourceGuid = resourceGuid; IPConfigurations = ipConfigurations; NetworkInterfaces = networkInterfaces; ProvisioningState = provisioningState; @@ -64,6 +66,8 @@ internal PrivateLinkServiceData(string id, string name, string resourceType, str public string Etag { get; } /// An array of references to the load balancer IP configurations. public IList LoadBalancerFrontendIPConfigurations { get; } + /// The resource id of private link service. + public string ResourceGuid { get; set; } /// An array of private link service IP configurations. public IList IPConfigurations { get; } /// An array of references to the network interfaces created for this private link service. diff --git a/sdk/network/Azure.ResourceManager.Network/src/autorest.md b/sdk/network/Azure.ResourceManager.Network/src/autorest.md index 30e7e70647fd..b77a926c01e2 100644 --- a/sdk/network/Azure.ResourceManager.Network/src/autorest.md +++ b/sdk/network/Azure.ResourceManager.Network/src/autorest.md @@ -7,7 +7,7 @@ azure-arm: true csharp: true library-name: Network namespace: Azure.ResourceManager.Network -require: https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/readme.md +require: https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/readme.md tag: package-track2-preview skip-csproj: true @@ -96,54 +96,54 @@ These settings apply only when `--tag=package-track2-preview` is specified on th ```yaml $(tag) == 'package-track2-preview' input-file: - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/applicationGateway.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/applicationSecurityGroup.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/availableDelegations.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/availableServiceAliases.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/azureFirewall.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/azureFirewallFqdnTag.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/azureWebCategory.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/bastionHost.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/checkDnsAvailability.json -# - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/cloudServiceNetworkInterface.json -# - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/cloudServicePublicIpAddress.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/customIpPrefix.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/ddosCustomPolicy.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/ddosProtectionPlan.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/dscpConfiguration.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/endpointService.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/expressRouteCircuit.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/expressRouteCrossConnection.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/expressRoutePort.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/firewallPolicy.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/ipAllocation.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/ipGroups.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/loadBalancer.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/natGateway.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/network.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/networkInterface.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/networkProfile.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/networkSecurityGroup.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/networkVirtualAppliance.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/networkWatcher.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/operation.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/privateEndpoint.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/privateLinkService.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/publicIpAddress.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/publicIpPrefix.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/routeFilter.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/routeTable.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/securityPartnerProvider.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/serviceCommunity.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/serviceEndpointPolicy.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/serviceTags.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/usage.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/virtualNetwork.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/virtualNetworkGateway.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/virtualNetworkTap.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/virtualRouter.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/virtualWan.json -# - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/vmssNetworkInterface.json -# - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/vmssPublicIpAddress.json - - https://github.com/Azure/azure-rest-api-specs/blob/7384176da46425e7899708f263e0598b851358c2/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/webapplicationfirewall.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/applicationGateway.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/applicationSecurityGroup.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/availableDelegations.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/availableServiceAliases.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/azureFirewall.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/azureFirewallFqdnTag.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/azureWebCategory.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/bastionHost.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/checkDnsAvailability.json +# - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/cloudServiceNetworkInterface.json +# - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/cloudServicePublicIpAddress.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/customIpPrefix.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/ddosCustomPolicy.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/ddosProtectionPlan.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/dscpConfiguration.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/endpointService.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/expressRouteCircuit.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/expressRouteCrossConnection.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/expressRoutePort.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/firewallPolicy.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/ipAllocation.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/ipGroups.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/loadBalancer.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/natGateway.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/network.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/networkInterface.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/networkProfile.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/networkSecurityGroup.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/networkVirtualAppliance.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/networkWatcher.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/operation.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/privateEndpoint.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/privateLinkService.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/publicIpAddress.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/publicIpPrefix.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/routeFilter.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/routeTable.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/securityPartnerProvider.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/serviceCommunity.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/serviceEndpointPolicy.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/serviceTags.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/usage.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/virtualNetwork.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/virtualNetworkGateway.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/virtualNetworkTap.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/virtualRouter.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/virtualWan.json +# - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/vmssNetworkInterface.json +# - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/vmssPublicIpAddress.json + - https://github.com/Azure/azure-rest-api-specs/blob/a416080c85111fbe4e0a483a1b99f1126ca6e97c/specification/network/resource-manager/Microsoft.Network/stable/2021-02-01/webapplicationfirewall.json ```