forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrade redis * manual code for ConfigurationUtils * test and record
- Loading branch information
1 parent
fa28aae
commit bd70cab
Showing
118 changed files
with
10,985 additions
and
6,209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
...edis/src/main/java/com/azure/resourcemanager/redis/fluent/AsyncOperationStatusClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.redis.fluent; | ||
|
||
import com.azure.core.annotation.ReturnType; | ||
import com.azure.core.annotation.ServiceMethod; | ||
import com.azure.core.http.rest.Response; | ||
import com.azure.core.util.Context; | ||
import com.azure.resourcemanager.redis.fluent.models.OperationStatusInner; | ||
import reactor.core.publisher.Mono; | ||
|
||
/** An instance of this class provides access to all the operations defined in AsyncOperationStatusClient. */ | ||
public interface AsyncOperationStatusClient { | ||
/** | ||
* For checking the ongoing status of an operation. | ||
* | ||
* @param location The location at which operation was triggered. | ||
* @param operationId The ID of asynchronous operation. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation. | ||
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return asynchronous operation status along with {@link Response} on successful completion of {@link Mono}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Mono<Response<OperationStatusInner>> getWithResponseAsync(String location, String operationId); | ||
|
||
/** | ||
* For checking the ongoing status of an operation. | ||
* | ||
* @param location The location at which operation was triggered. | ||
* @param operationId The ID of asynchronous operation. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation. | ||
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return asynchronous operation status on successful completion of {@link Mono}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Mono<OperationStatusInner> getAsync(String location, String operationId); | ||
|
||
/** | ||
* For checking the ongoing status of an operation. | ||
* | ||
* @param location The location at which operation was triggered. | ||
* @param operationId The ID of asynchronous operation. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation. | ||
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return asynchronous operation status. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
OperationStatusInner get(String location, String operationId); | ||
|
||
/** | ||
* For checking the ongoing status of an operation. | ||
* | ||
* @param location The location at which operation was triggered. | ||
* @param operationId The ID of asynchronous operation. | ||
* @param context The context to associate with this operation. | ||
* @throws IllegalArgumentException thrown if parameters fail the validation. | ||
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return asynchronous operation status along with {@link Response}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Response<OperationStatusInner> getWithResponse(String location, String operationId, Context context); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.