Skip to content

Commit aa0acbf

Browse files
Health migration (Azure#50442)
* WIP * wip * regen * WIP * api * regen * regen library inventory * regen * regen * regen
1 parent 3de9800 commit aa0acbf

File tree

72 files changed

+3837
-2939
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+3837
-2939
lines changed

doc/GeneratorMigration/Library_Inventory.md

Lines changed: 409 additions & 400 deletions
Large diffs are not rendered by default.

sdk/healthdataaiservices/Azure.Health.Deidentification/api/Azure.Health.Deidentification.net8.0.cs

Lines changed: 51 additions & 2 deletions
Large diffs are not rendered by default.

sdk/healthdataaiservices/Azure.Health.Deidentification/api/Azure.Health.Deidentification.netstandard2.0.cs

Lines changed: 51 additions & 2 deletions
Large diffs are not rendered by default.

sdk/healthdataaiservices/Azure.Health.Deidentification/src/Azure.Health.Deidentification.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<PackageTags>Azure.Health.Deidentification</PackageTags>
99
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
1010
<IncludeOperationsSharedSource>true</IncludeOperationsSharedSource>
11+
<IncludeAutorestDependency>false</IncludeAutorestDependency>
1112
<NoWarn>AZC0030</NoWarn>
1213
</PropertyGroup>
1314

sdk/healthdataaiservices/Azure.Health.Deidentification/src/DeidentificationClient.cs

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55

66
using System;
77
using System.Threading;
8-
using System.Threading.Tasks;
9-
using Autorest.CSharp.Core;
108
using Azure.Core;
11-
using Azure.Core.Pipeline;
129

1310
namespace Azure.Health.Deidentification
1411
{
@@ -25,7 +22,7 @@ public virtual AsyncPageable<DeidentificationJob> GetJobsAsync(int? maxpagesize
2522
{
2623
using var scope = ClientDiagnostics.CreateScope("DeidentificationClient.GetJobs");
2724
scope.Start();
28-
return GetJobsInternalsAsync(maxpagesize, null, cancellationToken);
25+
return GetJobsInternalAsync(maxpagesize, null, cancellationToken);
2926
}
3027

3128
/// <summary> List de-identification jobs. </summary>
@@ -37,7 +34,7 @@ public virtual Pageable<DeidentificationJob> GetJobs(int? maxpagesize = null, Ca
3734
{
3835
using var scope = ClientDiagnostics.CreateScope("DeidentificationClient.GetJobs");
3936
scope.Start();
40-
return GetJobsInternals(maxpagesize, null, cancellationToken);
37+
return GetJobsInternal(maxpagesize, null, cancellationToken);
4138
}
4239

4340
/// <summary>
@@ -64,7 +61,7 @@ public virtual AsyncPageable<BinaryData> GetJobsAsync(int? maxpagesize, RequestC
6461
{
6562
using var scope = ClientDiagnostics.CreateScope("DeidentificationClient.GetJobs");
6663
scope.Start();
67-
return GetJobsInternalsAsync(maxpagesize, null, context);
64+
return GetJobsInternalAsync(maxpagesize, null, context);
6865
}
6966

7067
/// <summary>
@@ -91,7 +88,7 @@ public virtual Pageable<BinaryData> GetJobs(int? maxpagesize, RequestContext con
9188
{
9289
using var scope = ClientDiagnostics.CreateScope("DeidentificationClient.GetJobs");
9390
scope.Start();
94-
return GetJobsInternals(maxpagesize, null, context);
91+
return GetJobsInternal(maxpagesize, null, context);
9592
}
9693

9794
/// <summary> List processed documents within a job. </summary>
@@ -106,7 +103,7 @@ public virtual AsyncPageable<DeidentificationDocumentDetails> GetJobDocumentsAsy
106103
{
107104
using var scope = ClientDiagnostics.CreateScope("DeidentificationClient.GetJobDocuments");
108105
scope.Start();
109-
return GetJobDocumentsInternalsAsync(jobName, maxpagesize, null, cancellationToken);
106+
return GetJobDocumentsInternalAsync(jobName, maxpagesize, null, cancellationToken);
110107
}
111108

112109
/// <summary> List processed documents within a job. </summary>
@@ -121,7 +118,7 @@ public virtual Pageable<DeidentificationDocumentDetails> GetJobDocuments(string
121118
{
122119
using var scope = ClientDiagnostics.CreateScope("DeidentificationClient.GetJobDocuments");
123120
scope.Start();
124-
return GetJobDocumentsInternals(jobName, maxpagesize, null, cancellationToken);
121+
return GetJobDocumentsInternal(jobName, maxpagesize, null, cancellationToken);
125122
}
126123

127124
/// <summary>
@@ -151,7 +148,7 @@ public virtual AsyncPageable<BinaryData> GetJobDocumentsAsync(string jobName, in
151148
{
152149
using var scope = ClientDiagnostics.CreateScope("DeidentificationClient.GetJobDocuments");
153150
scope.Start();
154-
return GetJobDocumentsInternalsAsync(jobName, maxpagesize, null, context);
151+
return GetJobDocumentsInternalAsync(jobName, maxpagesize, null, context);
155152
}
156153

157154
/// <summary>
@@ -181,7 +178,7 @@ public virtual Pageable<BinaryData> GetJobDocuments(string jobName, int? maxpage
181178
{
182179
using var scope = ClientDiagnostics.CreateScope("DeidentificationClient.GetJobDocuments");
183180
scope.Start();
184-
return GetJobDocumentsInternals(jobName, maxpagesize, null, context);
181+
return GetJobDocumentsInternal(jobName, maxpagesize, null, context);
185182
}
186183
}
187184
}

sdk/healthdataaiservices/Azure.Health.Deidentification/src/Generated/DeidentificationClient.RestClient.cs

Lines changed: 170 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)