@@ -168,7 +168,7 @@ Response<BinaryData> longRunningRpcSync(@QueryParam("api-version") String apiVer
168
168
* <pre>{@code
169
169
* {
170
170
* id: String (Required)
171
- * status: String (Required)
171
+ * status: String(NotStarted/Running/Succeeded/Failed/Canceled) (Required)
172
172
* error (Optional): {
173
173
* code: String (Required)
174
174
* message: String (Required)
@@ -177,6 +177,9 @@ Response<BinaryData> longRunningRpcSync(@QueryParam("api-version") String apiVer
177
177
* (recursive schema, see above)
178
178
* ]
179
179
* }
180
+ * result (Optional): {
181
+ * data: String (Required)
182
+ * }
180
183
* }
181
184
* }</pre>
182
185
*
@@ -186,8 +189,8 @@ Response<BinaryData> longRunningRpcSync(@QueryParam("api-version") String apiVer
186
189
* @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
187
190
* @throws ResourceNotFoundException thrown if the request is rejected by server on status code 404.
188
191
* @throws ResourceModifiedException thrown if the request is rejected by server on status code 409.
189
- * @return status details for long running operations along with {@link Response} on successful completion of
190
- * {@link Mono}.
192
+ * @return provides status details for long running operations along with {@link Response} on successful completion
193
+ * of {@link Mono}.
191
194
*/
192
195
@ ServiceMethod (returns = ReturnType .SINGLE )
193
196
private Mono <Response <BinaryData >> longRunningRpcWithResponseAsync (BinaryData generationOptions ,
@@ -212,7 +215,7 @@ private Mono<Response<BinaryData>> longRunningRpcWithResponseAsync(BinaryData ge
212
215
* <pre>{@code
213
216
* {
214
217
* id: String (Required)
215
- * status: String (Required)
218
+ * status: String(NotStarted/Running/Succeeded/Failed/Canceled) (Required)
216
219
* error (Optional): {
217
220
* code: String (Required)
218
221
* message: String (Required)
@@ -221,6 +224,9 @@ private Mono<Response<BinaryData>> longRunningRpcWithResponseAsync(BinaryData ge
221
224
* (recursive schema, see above)
222
225
* ]
223
226
* }
227
+ * result (Optional): {
228
+ * data: String (Required)
229
+ * }
224
230
* }
225
231
* }</pre>
226
232
*
@@ -230,7 +236,7 @@ private Mono<Response<BinaryData>> longRunningRpcWithResponseAsync(BinaryData ge
230
236
* @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
231
237
* @throws ResourceNotFoundException thrown if the request is rejected by server on status code 404.
232
238
* @throws ResourceModifiedException thrown if the request is rejected by server on status code 409.
233
- * @return status details for long running operations along with {@link Response}.
239
+ * @return provides status details for long running operations along with {@link Response}.
234
240
*/
235
241
@ ServiceMethod (returns = ReturnType .SINGLE )
236
242
private Response <BinaryData > longRunningRpcWithResponse (BinaryData generationOptions ,
@@ -255,7 +261,7 @@ private Response<BinaryData> longRunningRpcWithResponse(BinaryData generationOpt
255
261
* <pre>{@code
256
262
* {
257
263
* id: String (Required)
258
- * status: String (Required)
264
+ * status: String(NotStarted/Running/Succeeded/Failed/Canceled) (Required)
259
265
* error (Optional): {
260
266
* code: String (Required)
261
267
* message: String (Required)
@@ -264,6 +270,9 @@ private Response<BinaryData> longRunningRpcWithResponse(BinaryData generationOpt
264
270
* (recursive schema, see above)
265
271
* ]
266
272
* }
273
+ * result (Optional): {
274
+ * data: String (Required)
275
+ * }
267
276
* }
268
277
* }</pre>
269
278
*
@@ -273,7 +282,7 @@ private Response<BinaryData> longRunningRpcWithResponse(BinaryData generationOpt
273
282
* @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
274
283
* @throws ResourceNotFoundException thrown if the request is rejected by server on status code 404.
275
284
* @throws ResourceModifiedException thrown if the request is rejected by server on status code 409.
276
- * @return the {@link PollerFlux} for polling of status details for long running operations.
285
+ * @return the {@link PollerFlux} for polling of provides status details for long running operations.
277
286
*/
278
287
@ ServiceMethod (returns = ReturnType .LONG_RUNNING_OPERATION )
279
288
public PollerFlux <BinaryData , BinaryData > beginLongRunningRpcAsync (BinaryData generationOptions ,
@@ -306,7 +315,7 @@ public PollerFlux<BinaryData, BinaryData> beginLongRunningRpcAsync(BinaryData ge
306
315
* <pre>{@code
307
316
* {
308
317
* id: String (Required)
309
- * status: String (Required)
318
+ * status: String(NotStarted/Running/Succeeded/Failed/Canceled) (Required)
310
319
* error (Optional): {
311
320
* code: String (Required)
312
321
* message: String (Required)
@@ -315,6 +324,9 @@ public PollerFlux<BinaryData, BinaryData> beginLongRunningRpcAsync(BinaryData ge
315
324
* (recursive schema, see above)
316
325
* ]
317
326
* }
327
+ * result (Optional): {
328
+ * data: String (Required)
329
+ * }
318
330
* }
319
331
* }</pre>
320
332
*
@@ -324,7 +336,7 @@ public PollerFlux<BinaryData, BinaryData> beginLongRunningRpcAsync(BinaryData ge
324
336
* @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
325
337
* @throws ResourceNotFoundException thrown if the request is rejected by server on status code 404.
326
338
* @throws ResourceModifiedException thrown if the request is rejected by server on status code 409.
327
- * @return the {@link SyncPoller} for polling of status details for long running operations.
339
+ * @return the {@link SyncPoller} for polling of provides status details for long running operations.
328
340
*/
329
341
@ ServiceMethod (returns = ReturnType .LONG_RUNNING_OPERATION )
330
342
public SyncPoller <BinaryData , BinaryData > beginLongRunningRpc (BinaryData generationOptions ,
@@ -357,7 +369,7 @@ public SyncPoller<BinaryData, BinaryData> beginLongRunningRpc(BinaryData generat
357
369
* <pre>{@code
358
370
* {
359
371
* id: String (Required)
360
- * status: String (Required)
372
+ * status: String(NotStarted/Running/Succeeded/Failed/Canceled) (Required)
361
373
* error (Optional): {
362
374
* code: String (Required)
363
375
* message: String (Required)
@@ -366,6 +378,9 @@ public SyncPoller<BinaryData, BinaryData> beginLongRunningRpc(BinaryData generat
366
378
* (recursive schema, see above)
367
379
* ]
368
380
* }
381
+ * result (Optional): {
382
+ * data: String (Required)
383
+ * }
369
384
* }
370
385
* }</pre>
371
386
*
@@ -375,7 +390,7 @@ public SyncPoller<BinaryData, BinaryData> beginLongRunningRpc(BinaryData generat
375
390
* @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
376
391
* @throws ResourceNotFoundException thrown if the request is rejected by server on status code 404.
377
392
* @throws ResourceModifiedException thrown if the request is rejected by server on status code 409.
378
- * @return the {@link PollerFlux} for polling of status details for long running operations.
393
+ * @return the {@link PollerFlux} for polling of provides status details for long running operations.
379
394
*/
380
395
@ ServiceMethod (returns = ReturnType .LONG_RUNNING_OPERATION )
381
396
public PollerFlux <PollOperationDetails , GenerationResult >
@@ -409,7 +424,7 @@ public SyncPoller<BinaryData, BinaryData> beginLongRunningRpc(BinaryData generat
409
424
* <pre>{@code
410
425
* {
411
426
* id: String (Required)
412
- * status: String (Required)
427
+ * status: String(NotStarted/Running/Succeeded/Failed/Canceled) (Required)
413
428
* error (Optional): {
414
429
* code: String (Required)
415
430
* message: String (Required)
@@ -418,6 +433,9 @@ public SyncPoller<BinaryData, BinaryData> beginLongRunningRpc(BinaryData generat
418
433
* (recursive schema, see above)
419
434
* ]
420
435
* }
436
+ * result (Optional): {
437
+ * data: String (Required)
438
+ * }
421
439
* }
422
440
* }</pre>
423
441
*
@@ -427,7 +445,7 @@ public SyncPoller<BinaryData, BinaryData> beginLongRunningRpc(BinaryData generat
427
445
* @throws ClientAuthenticationException thrown if the request is rejected by server on status code 401.
428
446
* @throws ResourceNotFoundException thrown if the request is rejected by server on status code 404.
429
447
* @throws ResourceModifiedException thrown if the request is rejected by server on status code 409.
430
- * @return the {@link SyncPoller} for polling of status details for long running operations.
448
+ * @return the {@link SyncPoller} for polling of provides status details for long running operations.
431
449
*/
432
450
@ ServiceMethod (returns = ReturnType .LONG_RUNNING_OPERATION )
433
451
public SyncPoller <PollOperationDetails , GenerationResult > beginLongRunningRpcWithModel (BinaryData generationOptions ,
0 commit comments