Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "net",
"TagPrefix": "net/trafficmanager/Azure.ResourceManager.TrafficManager",
"Tag": "net/trafficmanager/Azure.ResourceManager.TrafficManager_4f4863dbc7"
"Tag": "net/trafficmanager/Azure.ResourceManager.TrafficManager_f952b8a5f2"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"apiVersion": "2022-04-01"
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
<PropertyGroup>
<Version>1.2.0-beta.2</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<ApiCompatVersion>1.1.3</ApiCompatVersion>
<!--<ApiCompatVersion>1.1.3</ApiCompatVersion>-->
Comment thread
mzhongl524 marked this conversation as resolved.
Outdated
<PackageId>Azure.ResourceManager.TrafficManager</PackageId>
<Description>Microsoft Azure Resource Manager client SDK for Azure resource provider Microsoft.Network TrafficManager.</Description>
<PackageTags>azure;management;arm;resource manager;trafficmanager</PackageTags>
<DisableEnhancedAnalysis>true</DisableEnhancedAnalysis>
<IncludeAutorestDependency>true</IncludeAutorestDependency>
</PropertyGroup>
</Project>

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
namespace Azure.ResourceManager.TrafficManager
{
/// <summary>
/// The class to overcome issue with the TrafficManagerEndpoint Collection REST API where there is no REST API counterpart that GETs all
/// profile data resource. The all profile data resources are retrieved from the collection of endpoints attached to <see cref="TrafficManagerProfileData"/>.
/// The class to overcome issue with the TrafficManagerEndpointData Collection REST API where there is no REST API counterpart that GETs all
/// endpoint data resources. The all endpoint data resources are retrieved from the collection of endpoints attached to <see cref="TrafficManagerProfileData"/>.
/// </summary>
public partial class TrafficManagerEndpointCollection : ArmCollection, IEnumerable<TrafficManagerEndpointData>, IAsyncEnumerable<TrafficManagerEndpointData>
{
Expand All @@ -23,7 +23,7 @@ public partial class TrafficManagerEndpointCollection : ArmCollection, IEnumerab
/// <param name="client"> The client parameters to use in these operations. </param>
/// <param name="id"> The identifier of the parent resource that is the target of operations. </param>
/// /// <param name="profileData">The parent profile data. </param>
internal TrafficManagerEndpointCollection(ArmClient client, ResourceIdentifier id, TrafficManagerProfileData profileData) : this(client, id)
internal TrafficManagerEndpointCollection(ArmClient client, ResourceIdentifier id, TrafficManagerProfileData profileData) : base(client, id)
{
Argument.AssertNotNull(profileData, nameof(profileData));

Expand Down

This file was deleted.

This file was deleted.

Loading
Loading