55
66using System ;
77using System . Threading ;
8- using System . Threading . Tasks ;
9- using Autorest . CSharp . Core ;
108using Azure . Core ;
11- using Azure . Core . Pipeline ;
129
1310namespace 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}
0 commit comments