@@ -101,7 +101,7 @@ public final class DeidentificationAsyncClient {
101101 * }
102102 * </pre>
103103 *
104- * @param name The name of a job.
104+ * @param jobName The name of a job.
105105 * @param requestOptions The options to configure the HTTP request before HTTP client sends it.
106106 * @throws HttpResponseException thrown if the request is rejected by server.
107107 * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
@@ -113,8 +113,8 @@ public final class DeidentificationAsyncClient {
113113 */
114114 @ Generated
115115 @ ServiceMethod (returns = ReturnType .SINGLE )
116- public Mono <Response <BinaryData >> getJobWithResponse (String name , RequestOptions requestOptions ) {
117- return this .serviceClient .getJobWithResponseAsync (name , requestOptions );
116+ public Mono <Response <BinaryData >> getJobWithResponse (String jobName , RequestOptions requestOptions ) {
117+ return this .serviceClient .getJobWithResponseAsync (jobName , requestOptions );
118118 }
119119
120120 /**
@@ -221,7 +221,7 @@ public Mono<Response<BinaryData>> getJobWithResponse(String name, RequestOptions
221221 * }
222222 * </pre>
223223 *
224- * @param name The name of a job.
224+ * @param jobName The name of a job.
225225 * @param resource The resource instance.
226226 * @param requestOptions The options to configure the HTTP request before HTTP client sends it.
227227 * @throws HttpResponseException thrown if the request is rejected by server.
@@ -232,9 +232,9 @@ public Mono<Response<BinaryData>> getJobWithResponse(String name, RequestOptions
232232 */
233233 @ Generated
234234 @ ServiceMethod (returns = ReturnType .LONG_RUNNING_OPERATION )
235- public PollerFlux <BinaryData , BinaryData > beginDeidentifyDocuments (String name , BinaryData resource ,
235+ public PollerFlux <BinaryData , BinaryData > beginDeidentifyDocuments (String jobName , BinaryData resource ,
236236 RequestOptions requestOptions ) {
237- return this .serviceClient .beginDeidentifyDocumentsAsync (name , resource , requestOptions );
237+ return this .serviceClient .beginDeidentifyDocumentsAsync (jobName , resource , requestOptions );
238238 }
239239
240240 /**
@@ -425,7 +425,7 @@ public PagedFlux<BinaryData> listJobDocuments(String jobName, RequestOptions req
425425 * }
426426 * </pre>
427427 *
428- * @param name The name of a job.
428+ * @param jobName The name of a job.
429429 * @param requestOptions The options to configure the HTTP request before HTTP client sends it.
430430 * @throws HttpResponseException thrown if the request is rejected by server.
431431 * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
@@ -436,16 +436,16 @@ public PagedFlux<BinaryData> listJobDocuments(String jobName, RequestOptions req
436436 */
437437 @ Generated
438438 @ ServiceMethod (returns = ReturnType .SINGLE )
439- public Mono <Response <BinaryData >> cancelJobWithResponse (String name , RequestOptions requestOptions ) {
440- return this .serviceClient .cancelJobWithResponseAsync (name , requestOptions );
439+ public Mono <Response <BinaryData >> cancelJobWithResponse (String jobName , RequestOptions requestOptions ) {
440+ return this .serviceClient .cancelJobWithResponseAsync (jobName , requestOptions );
441441 }
442442
443443 /**
444444 * Delete a de-identification job.
445445 *
446446 * Removes the record of the job from the service. Does not delete any documents.
447447 *
448- * @param name The name of a job.
448+ * @param jobName The name of a job.
449449 * @param requestOptions The options to configure the HTTP request before HTTP client sends it.
450450 * @throws HttpResponseException thrown if the request is rejected by server.
451451 * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
@@ -455,8 +455,8 @@ public Mono<Response<BinaryData>> cancelJobWithResponse(String name, RequestOpti
455455 */
456456 @ Generated
457457 @ ServiceMethod (returns = ReturnType .SINGLE )
458- public Mono <Response <Void >> deleteJobWithResponse (String name , RequestOptions requestOptions ) {
459- return this .serviceClient .deleteJobWithResponseAsync (name , requestOptions );
458+ public Mono <Response <Void >> deleteJobWithResponse (String jobName , RequestOptions requestOptions ) {
459+ return this .serviceClient .deleteJobWithResponseAsync (jobName , requestOptions );
460460 }
461461
462462 /**
@@ -523,7 +523,7 @@ public Mono<Response<BinaryData>> deidentifyTextWithResponse(BinaryData body, Re
523523 *
524524 * Resource read operation template.
525525 *
526- * @param name The name of a job.
526+ * @param jobName The name of a job.
527527 * @throws IllegalArgumentException thrown if parameters fail the validation.
528528 * @throws HttpResponseException thrown if the request is rejected by server.
529529 * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
@@ -536,10 +536,10 @@ public Mono<Response<BinaryData>> deidentifyTextWithResponse(BinaryData body, Re
536536 */
537537 @ Generated
538538 @ ServiceMethod (returns = ReturnType .SINGLE )
539- public Mono <DeidentificationJob > getJob (String name ) {
539+ public Mono <DeidentificationJob > getJob (String jobName ) {
540540 // Generated convenience method for getJobWithResponse
541541 RequestOptions requestOptions = new RequestOptions ();
542- return getJobWithResponse (name , requestOptions ).flatMap (FluxUtil ::toMono )
542+ return getJobWithResponse (jobName , requestOptions ).flatMap (FluxUtil ::toMono )
543543 .map (protocolMethodData -> protocolMethodData .toObject (DeidentificationJob .class ));
544544 }
545545
@@ -548,7 +548,7 @@ public Mono<DeidentificationJob> getJob(String name) {
548548 *
549549 * Long-running resource create or replace operation template.
550550 *
551- * @param name The name of a job.
551+ * @param jobName The name of a job.
552552 * @param resource The resource instance.
553553 * @throws IllegalArgumentException thrown if parameters fail the validation.
554554 * @throws HttpResponseException thrown if the request is rejected by server.
@@ -560,11 +560,11 @@ public Mono<DeidentificationJob> getJob(String name) {
560560 */
561561 @ Generated
562562 @ ServiceMethod (returns = ReturnType .LONG_RUNNING_OPERATION )
563- public PollerFlux <DeidentificationJob , DeidentificationJob > beginDeidentifyDocuments (String name ,
563+ public PollerFlux <DeidentificationJob , DeidentificationJob > beginDeidentifyDocuments (String jobName ,
564564 DeidentificationJob resource ) {
565565 // Generated convenience method for beginDeidentifyDocumentsWithModel
566566 RequestOptions requestOptions = new RequestOptions ();
567- return serviceClient .beginDeidentifyDocumentsWithModelAsync (name , BinaryData .fromObject (resource ),
567+ return serviceClient .beginDeidentifyDocumentsWithModelAsync (jobName , BinaryData .fromObject (resource ),
568568 requestOptions );
569569 }
570570
@@ -582,7 +582,6 @@ public PollerFlux<DeidentificationJob, DeidentificationJob> beginDeidentifyDocum
582582 * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
583583 * @return paged collection of DeidentificationJob items as paginated response with {@link PagedFlux}.
584584 */
585- @ Generated
586585 @ ServiceMethod (returns = ReturnType .COLLECTION )
587586 private PagedFlux <DeidentificationJob > listJobs (String continuationToken ) {
588587 // Generated convenience method for listJobs
@@ -644,7 +643,7 @@ public PagedFlux<DeidentificationJob> listJobs() {
644643 *
645644 * Resource list operation template.
646645 *
647- * @param name The name of a job.
646+ * @param jobName The name of a job.
648647 * @param continuationToken Token to continue a previous query.
649648 * @throws IllegalArgumentException thrown if parameters fail the validation.
650649 * @throws HttpResponseException thrown if the request is rejected by server.
@@ -654,7 +653,6 @@ public PagedFlux<DeidentificationJob> listJobs() {
654653 * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
655654 * @return paged collection of DeidentificationDocumentDetails items as paginated response with {@link PagedFlux}.
656655 */
657- @ Generated
658656 @ ServiceMethod (returns = ReturnType .COLLECTION )
659657 private PagedFlux <DeidentificationDocumentDetails > listJobDocuments (String jobName , String continuationToken ) {
660658 // Generated convenience method for listJobDocuments
@@ -721,7 +719,7 @@ public PagedFlux<DeidentificationDocumentDetails> listJobDocuments(String jobNam
721719 *
722720 * If the job is already complete, this will have no effect.
723721 *
724- * @param name The name of a job.
722+ * @param jobName The name of a job.
725723 * @throws IllegalArgumentException thrown if parameters fail the validation.
726724 * @throws HttpResponseException thrown if the request is rejected by server.
727725 * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
@@ -732,10 +730,10 @@ public PagedFlux<DeidentificationDocumentDetails> listJobDocuments(String jobNam
732730 */
733731 @ Generated
734732 @ ServiceMethod (returns = ReturnType .SINGLE )
735- public Mono <DeidentificationJob > cancelJob (String name ) {
733+ public Mono <DeidentificationJob > cancelJob (String jobName ) {
736734 // Generated convenience method for cancelJobWithResponse
737735 RequestOptions requestOptions = new RequestOptions ();
738- return cancelJobWithResponse (name , requestOptions ).flatMap (FluxUtil ::toMono )
736+ return cancelJobWithResponse (jobName , requestOptions ).flatMap (FluxUtil ::toMono )
739737 .map (protocolMethodData -> protocolMethodData .toObject (DeidentificationJob .class ));
740738 }
741739
@@ -744,7 +742,7 @@ public Mono<DeidentificationJob> cancelJob(String name) {
744742 *
745743 * Removes the record of the job from the service. Does not delete any documents.
746744 *
747- * @param name The name of a job.
745+ * @param jobName The name of a job.
748746 * @throws IllegalArgumentException thrown if parameters fail the validation.
749747 * @throws HttpResponseException thrown if the request is rejected by server.
750748 * @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
@@ -755,10 +753,10 @@ public Mono<DeidentificationJob> cancelJob(String name) {
755753 */
756754 @ Generated
757755 @ ServiceMethod (returns = ReturnType .SINGLE )
758- public Mono <Void > deleteJob (String name ) {
756+ public Mono <Void > deleteJob (String jobName ) {
759757 // Generated convenience method for deleteJobWithResponse
760758 RequestOptions requestOptions = new RequestOptions ();
761- return deleteJobWithResponse (name , requestOptions ).flatMap (FluxUtil ::toMono );
759+ return deleteJobWithResponse (jobName , requestOptions ).flatMap (FluxUtil ::toMono );
762760 }
763761
764762 /**
0 commit comments