Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.cosmosdb.implementation; import retrofit2.Retrofit; import com.google.common.reflect.TypeToken; import com.microsoft.azure.CloudException; import com.microsoft.azure.management.cosmosdb.TableCreateUpdateParameters; import com.microsoft.azure.management.cosmosdb.ThroughputSettingsUpdateParameters; import com.microsoft.rest.ServiceCallback; import com.microsoft.rest.ServiceFuture; import com.microsoft.rest.ServiceResponse; import com.microsoft.rest.Validator; import java.io.IOException; import java.util.List; import okhttp3.ResponseBody; import retrofit2.http.Body; import retrofit2.http.GET; import retrofit2.http.Header; import retrofit2.http.Headers; import retrofit2.http.HTTP; import retrofit2.http.Path; import retrofit2.http.PUT; import retrofit2.http.Query; import retrofit2.Response; import rx.functions.Func1; import rx.Observable;
An instance of this class provides access to all the operations defined in TableResources.
/** * An instance of this class provides access to all the operations defined * in TableResources. */
public class TableResourcesInner {
The Retrofit service to perform REST calls.
/** The Retrofit service to perform REST calls. */
private TableResourcesService service;
The service client containing this operation class.
/** The service client containing this operation class. */
private CosmosDBImpl client;
Initializes an instance of TableResourcesInner.
Params:
  • retrofit – the Retrofit instance built from a Retrofit Builder.
  • client – the instance of the service client containing this operation class.
/** * Initializes an instance of TableResourcesInner. * * @param retrofit the Retrofit instance built from a Retrofit Builder. * @param client the instance of the service client containing this operation class. */
public TableResourcesInner(Retrofit retrofit, CosmosDBImpl client) { this.service = retrofit.create(TableResourcesService.class); this.client = client; }
The interface defining all the services for TableResources to be used by Retrofit to perform actually REST calls.
/** * The interface defining all the services for TableResources to be * used by Retrofit to perform actually REST calls. */
interface TableResourcesService { @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.cosmosdb.TableResources listTables" }) @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables") Observable<Response<ResponseBody>> listTables(@Path("subscriptionId") String subscriptionId, @Path("resourceGroupName") String resourceGroupName, @Path("accountName") String accountName, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.cosmosdb.TableResources getTable" }) @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}") Observable<Response<ResponseBody>> getTable(@Path("subscriptionId") String subscriptionId, @Path("resourceGroupName") String resourceGroupName, @Path("accountName") String accountName, @Path("tableName") String tableName, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.cosmosdb.TableResources createUpdateTable" }) @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}") Observable<Response<ResponseBody>> createUpdateTable(@Path("subscriptionId") String subscriptionId, @Path("resourceGroupName") String resourceGroupName, @Path("accountName") String accountName, @Path("tableName") String tableName, @Query("api-version") String apiVersion, @Body TableCreateUpdateParameters createUpdateTableParameters, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.cosmosdb.TableResources beginCreateUpdateTable" }) @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}") Observable<Response<ResponseBody>> beginCreateUpdateTable(@Path("subscriptionId") String subscriptionId, @Path("resourceGroupName") String resourceGroupName, @Path("accountName") String accountName, @Path("tableName") String tableName, @Query("api-version") String apiVersion, @Body TableCreateUpdateParameters createUpdateTableParameters, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.cosmosdb.TableResources deleteTable" }) @HTTP(path = "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}", method = "DELETE", hasBody = true) Observable<Response<ResponseBody>> deleteTable(@Path("subscriptionId") String subscriptionId, @Path("resourceGroupName") String resourceGroupName, @Path("accountName") String accountName, @Path("tableName") String tableName, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.cosmosdb.TableResources beginDeleteTable" }) @HTTP(path = "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}", method = "DELETE", hasBody = true) Observable<Response<ResponseBody>> beginDeleteTable(@Path("subscriptionId") String subscriptionId, @Path("resourceGroupName") String resourceGroupName, @Path("accountName") String accountName, @Path("tableName") String tableName, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.cosmosdb.TableResources getTableThroughput" }) @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}/throughputSettings/default") Observable<Response<ResponseBody>> getTableThroughput(@Path("subscriptionId") String subscriptionId, @Path("resourceGroupName") String resourceGroupName, @Path("accountName") String accountName, @Path("tableName") String tableName, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.cosmosdb.TableResources updateTableThroughput" }) @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}/throughputSettings/default") Observable<Response<ResponseBody>> updateTableThroughput(@Path("subscriptionId") String subscriptionId, @Path("resourceGroupName") String resourceGroupName, @Path("accountName") String accountName, @Path("tableName") String tableName, @Query("api-version") String apiVersion, @Body ThroughputSettingsUpdateParameters updateThroughputParameters, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.cosmosdb.TableResources beginUpdateTableThroughput" }) @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}/throughputSettings/default") Observable<Response<ResponseBody>> beginUpdateTableThroughput(@Path("subscriptionId") String subscriptionId, @Path("resourceGroupName") String resourceGroupName, @Path("accountName") String accountName, @Path("tableName") String tableName, @Query("api-version") String apiVersion, @Body ThroughputSettingsUpdateParameters updateThroughputParameters, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); }
Lists the Tables under an existing Azure Cosmos DB database account.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
Throws:
Returns:the List<TableGetResultsInner> object if successful.
/** * Lists the Tables under an existing Azure Cosmos DB database account. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the List&lt;TableGetResultsInner&gt; object if successful. */
public List<TableGetResultsInner> listTables(String resourceGroupName, String accountName) { return listTablesWithServiceResponseAsync(resourceGroupName, accountName).toBlocking().single().body(); }
Lists the Tables under an existing Azure Cosmos DB database account.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Lists the Tables under an existing Azure Cosmos DB database account. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<List<TableGetResultsInner>> listTablesAsync(String resourceGroupName, String accountName, final ServiceCallback<List<TableGetResultsInner>> serviceCallback) { return ServiceFuture.fromResponse(listTablesWithServiceResponseAsync(resourceGroupName, accountName), serviceCallback); }
Lists the Tables under an existing Azure Cosmos DB database account.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
Throws:
Returns:the observable to the List<TableGetResultsInner> object
/** * Lists the Tables under an existing Azure Cosmos DB database account. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the List&lt;TableGetResultsInner&gt; object */
public Observable<List<TableGetResultsInner>> listTablesAsync(String resourceGroupName, String accountName) { return listTablesWithServiceResponseAsync(resourceGroupName, accountName).map(new Func1<ServiceResponse<List<TableGetResultsInner>>, List<TableGetResultsInner>>() { @Override public List<TableGetResultsInner> call(ServiceResponse<List<TableGetResultsInner>> response) { return response.body(); } }); }
Lists the Tables under an existing Azure Cosmos DB database account.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
Throws:
Returns:the observable to the List<TableGetResultsInner> object
/** * Lists the Tables under an existing Azure Cosmos DB database account. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the List&lt;TableGetResultsInner&gt; object */
public Observable<ServiceResponse<List<TableGetResultsInner>>> listTablesWithServiceResponseAsync(String resourceGroupName, String accountName) { if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (accountName == null) { throw new IllegalArgumentException("Parameter accountName is required and cannot be null."); } final String apiVersion = "2019-08-01"; return service.listTables(this.client.subscriptionId(), resourceGroupName, accountName, apiVersion, this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<List<TableGetResultsInner>>>>() { @Override public Observable<ServiceResponse<List<TableGetResultsInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<TableGetResultsInner>> result = listTablesDelegate(response); List<TableGetResultsInner> items = null; if (result.body() != null) { items = result.body().items(); } ServiceResponse<List<TableGetResultsInner>> clientResponse = new ServiceResponse<List<TableGetResultsInner>>(items, result.response()); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<TableGetResultsInner>> listTablesDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<TableGetResultsInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<TableGetResultsInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets the Tables under an existing Azure Cosmos DB database account with the provided name.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
Returns:the TableGetResultsInner object if successful.
/** * Gets the Tables under an existing Azure Cosmos DB database account with the provided name. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the TableGetResultsInner object if successful. */
public TableGetResultsInner getTable(String resourceGroupName, String accountName, String tableName) { return getTableWithServiceResponseAsync(resourceGroupName, accountName, tableName).toBlocking().single().body(); }
Gets the Tables under an existing Azure Cosmos DB database account with the provided name.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets the Tables under an existing Azure Cosmos DB database account with the provided name. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<TableGetResultsInner> getTableAsync(String resourceGroupName, String accountName, String tableName, final ServiceCallback<TableGetResultsInner> serviceCallback) { return ServiceFuture.fromResponse(getTableWithServiceResponseAsync(resourceGroupName, accountName, tableName), serviceCallback); }
Gets the Tables under an existing Azure Cosmos DB database account with the provided name.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
Returns:the observable to the TableGetResultsInner object
/** * Gets the Tables under an existing Azure Cosmos DB database account with the provided name. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the TableGetResultsInner object */
public Observable<TableGetResultsInner> getTableAsync(String resourceGroupName, String accountName, String tableName) { return getTableWithServiceResponseAsync(resourceGroupName, accountName, tableName).map(new Func1<ServiceResponse<TableGetResultsInner>, TableGetResultsInner>() { @Override public TableGetResultsInner call(ServiceResponse<TableGetResultsInner> response) { return response.body(); } }); }
Gets the Tables under an existing Azure Cosmos DB database account with the provided name.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
Returns:the observable to the TableGetResultsInner object
/** * Gets the Tables under an existing Azure Cosmos DB database account with the provided name. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the TableGetResultsInner object */
public Observable<ServiceResponse<TableGetResultsInner>> getTableWithServiceResponseAsync(String resourceGroupName, String accountName, String tableName) { if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (accountName == null) { throw new IllegalArgumentException("Parameter accountName is required and cannot be null."); } if (tableName == null) { throw new IllegalArgumentException("Parameter tableName is required and cannot be null."); } final String apiVersion = "2019-08-01"; return service.getTable(this.client.subscriptionId(), resourceGroupName, accountName, tableName, apiVersion, this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<TableGetResultsInner>>>() { @Override public Observable<ServiceResponse<TableGetResultsInner>> call(Response<ResponseBody> response) { try { ServiceResponse<TableGetResultsInner> clientResponse = getTableDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<TableGetResultsInner> getTableDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<TableGetResultsInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<TableGetResultsInner>() { }.getType()) .registerError(CloudException.class) .build(response); }
Create or update an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • createUpdateTableParameters – The parameters to provide for the current Table.
Throws:
Returns:the TableGetResultsInner object if successful.
/** * Create or update an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param createUpdateTableParameters The parameters to provide for the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the TableGetResultsInner object if successful. */
public TableGetResultsInner createUpdateTable(String resourceGroupName, String accountName, String tableName, TableCreateUpdateParameters createUpdateTableParameters) { return createUpdateTableWithServiceResponseAsync(resourceGroupName, accountName, tableName, createUpdateTableParameters).toBlocking().last().body(); }
Create or update an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • createUpdateTableParameters – The parameters to provide for the current Table.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Create or update an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param createUpdateTableParameters The parameters to provide for the current Table. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<TableGetResultsInner> createUpdateTableAsync(String resourceGroupName, String accountName, String tableName, TableCreateUpdateParameters createUpdateTableParameters, final ServiceCallback<TableGetResultsInner> serviceCallback) { return ServiceFuture.fromResponse(createUpdateTableWithServiceResponseAsync(resourceGroupName, accountName, tableName, createUpdateTableParameters), serviceCallback); }
Create or update an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • createUpdateTableParameters – The parameters to provide for the current Table.
Throws:
Returns:the observable for the request
/** * Create or update an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param createUpdateTableParameters The parameters to provide for the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */
public Observable<TableGetResultsInner> createUpdateTableAsync(String resourceGroupName, String accountName, String tableName, TableCreateUpdateParameters createUpdateTableParameters) { return createUpdateTableWithServiceResponseAsync(resourceGroupName, accountName, tableName, createUpdateTableParameters).map(new Func1<ServiceResponse<TableGetResultsInner>, TableGetResultsInner>() { @Override public TableGetResultsInner call(ServiceResponse<TableGetResultsInner> response) { return response.body(); } }); }
Create or update an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • createUpdateTableParameters – The parameters to provide for the current Table.
Throws:
Returns:the observable for the request
/** * Create or update an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param createUpdateTableParameters The parameters to provide for the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */
public Observable<ServiceResponse<TableGetResultsInner>> createUpdateTableWithServiceResponseAsync(String resourceGroupName, String accountName, String tableName, TableCreateUpdateParameters createUpdateTableParameters) { if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (accountName == null) { throw new IllegalArgumentException("Parameter accountName is required and cannot be null."); } if (tableName == null) { throw new IllegalArgumentException("Parameter tableName is required and cannot be null."); } if (createUpdateTableParameters == null) { throw new IllegalArgumentException("Parameter createUpdateTableParameters is required and cannot be null."); } Validator.validate(createUpdateTableParameters); final String apiVersion = "2019-08-01"; Observable<Response<ResponseBody>> observable = service.createUpdateTable(this.client.subscriptionId(), resourceGroupName, accountName, tableName, apiVersion, createUpdateTableParameters, this.client.acceptLanguage(), this.client.userAgent()); return client.getAzureClient().getPutOrPatchResultAsync(observable, new TypeToken<TableGetResultsInner>() { }.getType()); }
Create or update an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • createUpdateTableParameters – The parameters to provide for the current Table.
Throws:
Returns:the TableGetResultsInner object if successful.
/** * Create or update an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param createUpdateTableParameters The parameters to provide for the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the TableGetResultsInner object if successful. */
public TableGetResultsInner beginCreateUpdateTable(String resourceGroupName, String accountName, String tableName, TableCreateUpdateParameters createUpdateTableParameters) { return beginCreateUpdateTableWithServiceResponseAsync(resourceGroupName, accountName, tableName, createUpdateTableParameters).toBlocking().single().body(); }
Create or update an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • createUpdateTableParameters – The parameters to provide for the current Table.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Create or update an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param createUpdateTableParameters The parameters to provide for the current Table. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<TableGetResultsInner> beginCreateUpdateTableAsync(String resourceGroupName, String accountName, String tableName, TableCreateUpdateParameters createUpdateTableParameters, final ServiceCallback<TableGetResultsInner> serviceCallback) { return ServiceFuture.fromResponse(beginCreateUpdateTableWithServiceResponseAsync(resourceGroupName, accountName, tableName, createUpdateTableParameters), serviceCallback); }
Create or update an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • createUpdateTableParameters – The parameters to provide for the current Table.
Throws:
Returns:the observable to the TableGetResultsInner object
/** * Create or update an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param createUpdateTableParameters The parameters to provide for the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the TableGetResultsInner object */
public Observable<TableGetResultsInner> beginCreateUpdateTableAsync(String resourceGroupName, String accountName, String tableName, TableCreateUpdateParameters createUpdateTableParameters) { return beginCreateUpdateTableWithServiceResponseAsync(resourceGroupName, accountName, tableName, createUpdateTableParameters).map(new Func1<ServiceResponse<TableGetResultsInner>, TableGetResultsInner>() { @Override public TableGetResultsInner call(ServiceResponse<TableGetResultsInner> response) { return response.body(); } }); }
Create or update an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • createUpdateTableParameters – The parameters to provide for the current Table.
Throws:
Returns:the observable to the TableGetResultsInner object
/** * Create or update an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param createUpdateTableParameters The parameters to provide for the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the TableGetResultsInner object */
public Observable<ServiceResponse<TableGetResultsInner>> beginCreateUpdateTableWithServiceResponseAsync(String resourceGroupName, String accountName, String tableName, TableCreateUpdateParameters createUpdateTableParameters) { if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (accountName == null) { throw new IllegalArgumentException("Parameter accountName is required and cannot be null."); } if (tableName == null) { throw new IllegalArgumentException("Parameter tableName is required and cannot be null."); } if (createUpdateTableParameters == null) { throw new IllegalArgumentException("Parameter createUpdateTableParameters is required and cannot be null."); } Validator.validate(createUpdateTableParameters); final String apiVersion = "2019-08-01"; return service.beginCreateUpdateTable(this.client.subscriptionId(), resourceGroupName, accountName, tableName, apiVersion, createUpdateTableParameters, this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<TableGetResultsInner>>>() { @Override public Observable<ServiceResponse<TableGetResultsInner>> call(Response<ResponseBody> response) { try { ServiceResponse<TableGetResultsInner> clientResponse = beginCreateUpdateTableDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<TableGetResultsInner> beginCreateUpdateTableDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<TableGetResultsInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<TableGetResultsInner>() { }.getType()) .register(202, new TypeToken<Void>() { }.getType()) .registerError(CloudException.class) .build(response); }
Deletes an existing Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
/** * Deletes an existing Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent */
public void deleteTable(String resourceGroupName, String accountName, String tableName) { deleteTableWithServiceResponseAsync(resourceGroupName, accountName, tableName).toBlocking().last().body(); }
Deletes an existing Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Deletes an existing Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<Void> deleteTableAsync(String resourceGroupName, String accountName, String tableName, final ServiceCallback<Void> serviceCallback) { return ServiceFuture.fromResponse(deleteTableWithServiceResponseAsync(resourceGroupName, accountName, tableName), serviceCallback); }
Deletes an existing Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
Returns:the observable for the request
/** * Deletes an existing Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */
public Observable<Void> deleteTableAsync(String resourceGroupName, String accountName, String tableName) { return deleteTableWithServiceResponseAsync(resourceGroupName, accountName, tableName).map(new Func1<ServiceResponse<Void>, Void>() { @Override public Void call(ServiceResponse<Void> response) { return response.body(); } }); }
Deletes an existing Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
Returns:the observable for the request
/** * Deletes an existing Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */
public Observable<ServiceResponse<Void>> deleteTableWithServiceResponseAsync(String resourceGroupName, String accountName, String tableName) { if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (accountName == null) { throw new IllegalArgumentException("Parameter accountName is required and cannot be null."); } if (tableName == null) { throw new IllegalArgumentException("Parameter tableName is required and cannot be null."); } final String apiVersion = "2019-08-01"; Observable<Response<ResponseBody>> observable = service.deleteTable(this.client.subscriptionId(), resourceGroupName, accountName, tableName, apiVersion, this.client.acceptLanguage(), this.client.userAgent()); return client.getAzureClient().getPostOrDeleteResultAsync(observable, new TypeToken<Void>() { }.getType()); }
Deletes an existing Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
/** * Deletes an existing Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent */
public void beginDeleteTable(String resourceGroupName, String accountName, String tableName) { beginDeleteTableWithServiceResponseAsync(resourceGroupName, accountName, tableName).toBlocking().single().body(); }
Deletes an existing Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Deletes an existing Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<Void> beginDeleteTableAsync(String resourceGroupName, String accountName, String tableName, final ServiceCallback<Void> serviceCallback) { return ServiceFuture.fromResponse(beginDeleteTableWithServiceResponseAsync(resourceGroupName, accountName, tableName), serviceCallback); }
Deletes an existing Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
Returns:the ServiceResponse object if successful.
/** * Deletes an existing Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceResponse} object if successful. */
public Observable<Void> beginDeleteTableAsync(String resourceGroupName, String accountName, String tableName) { return beginDeleteTableWithServiceResponseAsync(resourceGroupName, accountName, tableName).map(new Func1<ServiceResponse<Void>, Void>() { @Override public Void call(ServiceResponse<Void> response) { return response.body(); } }); }
Deletes an existing Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
Returns:the ServiceResponse object if successful.
/** * Deletes an existing Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceResponse} object if successful. */
public Observable<ServiceResponse<Void>> beginDeleteTableWithServiceResponseAsync(String resourceGroupName, String accountName, String tableName) { if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (accountName == null) { throw new IllegalArgumentException("Parameter accountName is required and cannot be null."); } if (tableName == null) { throw new IllegalArgumentException("Parameter tableName is required and cannot be null."); } final String apiVersion = "2019-08-01"; return service.beginDeleteTable(this.client.subscriptionId(), resourceGroupName, accountName, tableName, apiVersion, this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<Void>>>() { @Override public Observable<ServiceResponse<Void>> call(Response<ResponseBody> response) { try { ServiceResponse<Void> clientResponse = beginDeleteTableDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<Void> beginDeleteTableDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<Void, CloudException>newInstance(this.client.serializerAdapter()) .register(202, new TypeToken<Void>() { }.getType()) .register(204, new TypeToken<Void>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets the RUs per second of the Table under an existing Azure Cosmos DB database account with the provided name.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
Returns:the ThroughputSettingsGetResultsInner object if successful.
/** * Gets the RUs per second of the Table under an existing Azure Cosmos DB database account with the provided name. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the ThroughputSettingsGetResultsInner object if successful. */
public ThroughputSettingsGetResultsInner getTableThroughput(String resourceGroupName, String accountName, String tableName) { return getTableThroughputWithServiceResponseAsync(resourceGroupName, accountName, tableName).toBlocking().single().body(); }
Gets the RUs per second of the Table under an existing Azure Cosmos DB database account with the provided name.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets the RUs per second of the Table under an existing Azure Cosmos DB database account with the provided name. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<ThroughputSettingsGetResultsInner> getTableThroughputAsync(String resourceGroupName, String accountName, String tableName, final ServiceCallback<ThroughputSettingsGetResultsInner> serviceCallback) { return ServiceFuture.fromResponse(getTableThroughputWithServiceResponseAsync(resourceGroupName, accountName, tableName), serviceCallback); }
Gets the RUs per second of the Table under an existing Azure Cosmos DB database account with the provided name.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
Returns:the observable to the ThroughputSettingsGetResultsInner object
/** * Gets the RUs per second of the Table under an existing Azure Cosmos DB database account with the provided name. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ThroughputSettingsGetResultsInner object */
public Observable<ThroughputSettingsGetResultsInner> getTableThroughputAsync(String resourceGroupName, String accountName, String tableName) { return getTableThroughputWithServiceResponseAsync(resourceGroupName, accountName, tableName).map(new Func1<ServiceResponse<ThroughputSettingsGetResultsInner>, ThroughputSettingsGetResultsInner>() { @Override public ThroughputSettingsGetResultsInner call(ServiceResponse<ThroughputSettingsGetResultsInner> response) { return response.body(); } }); }
Gets the RUs per second of the Table under an existing Azure Cosmos DB database account with the provided name.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
Throws:
Returns:the observable to the ThroughputSettingsGetResultsInner object
/** * Gets the RUs per second of the Table under an existing Azure Cosmos DB database account with the provided name. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ThroughputSettingsGetResultsInner object */
public Observable<ServiceResponse<ThroughputSettingsGetResultsInner>> getTableThroughputWithServiceResponseAsync(String resourceGroupName, String accountName, String tableName) { if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (accountName == null) { throw new IllegalArgumentException("Parameter accountName is required and cannot be null."); } if (tableName == null) { throw new IllegalArgumentException("Parameter tableName is required and cannot be null."); } final String apiVersion = "2019-08-01"; return service.getTableThroughput(this.client.subscriptionId(), resourceGroupName, accountName, tableName, apiVersion, this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<ThroughputSettingsGetResultsInner>>>() { @Override public Observable<ServiceResponse<ThroughputSettingsGetResultsInner>> call(Response<ResponseBody> response) { try { ServiceResponse<ThroughputSettingsGetResultsInner> clientResponse = getTableThroughputDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<ThroughputSettingsGetResultsInner> getTableThroughputDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<ThroughputSettingsGetResultsInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<ThroughputSettingsGetResultsInner>() { }.getType()) .registerError(CloudException.class) .build(response); }
Update RUs per second of an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • updateThroughputParameters – The parameters to provide for the RUs per second of the current Table.
Throws:
Returns:the ThroughputSettingsGetResultsInner object if successful.
/** * Update RUs per second of an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param updateThroughputParameters The parameters to provide for the RUs per second of the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the ThroughputSettingsGetResultsInner object if successful. */
public ThroughputSettingsGetResultsInner updateTableThroughput(String resourceGroupName, String accountName, String tableName, ThroughputSettingsUpdateParameters updateThroughputParameters) { return updateTableThroughputWithServiceResponseAsync(resourceGroupName, accountName, tableName, updateThroughputParameters).toBlocking().last().body(); }
Update RUs per second of an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • updateThroughputParameters – The parameters to provide for the RUs per second of the current Table.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Update RUs per second of an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param updateThroughputParameters The parameters to provide for the RUs per second of the current Table. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<ThroughputSettingsGetResultsInner> updateTableThroughputAsync(String resourceGroupName, String accountName, String tableName, ThroughputSettingsUpdateParameters updateThroughputParameters, final ServiceCallback<ThroughputSettingsGetResultsInner> serviceCallback) { return ServiceFuture.fromResponse(updateTableThroughputWithServiceResponseAsync(resourceGroupName, accountName, tableName, updateThroughputParameters), serviceCallback); }
Update RUs per second of an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • updateThroughputParameters – The parameters to provide for the RUs per second of the current Table.
Throws:
Returns:the observable for the request
/** * Update RUs per second of an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param updateThroughputParameters The parameters to provide for the RUs per second of the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */
public Observable<ThroughputSettingsGetResultsInner> updateTableThroughputAsync(String resourceGroupName, String accountName, String tableName, ThroughputSettingsUpdateParameters updateThroughputParameters) { return updateTableThroughputWithServiceResponseAsync(resourceGroupName, accountName, tableName, updateThroughputParameters).map(new Func1<ServiceResponse<ThroughputSettingsGetResultsInner>, ThroughputSettingsGetResultsInner>() { @Override public ThroughputSettingsGetResultsInner call(ServiceResponse<ThroughputSettingsGetResultsInner> response) { return response.body(); } }); }
Update RUs per second of an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • updateThroughputParameters – The parameters to provide for the RUs per second of the current Table.
Throws:
Returns:the observable for the request
/** * Update RUs per second of an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param updateThroughputParameters The parameters to provide for the RUs per second of the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable for the request */
public Observable<ServiceResponse<ThroughputSettingsGetResultsInner>> updateTableThroughputWithServiceResponseAsync(String resourceGroupName, String accountName, String tableName, ThroughputSettingsUpdateParameters updateThroughputParameters) { if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (accountName == null) { throw new IllegalArgumentException("Parameter accountName is required and cannot be null."); } if (tableName == null) { throw new IllegalArgumentException("Parameter tableName is required and cannot be null."); } if (updateThroughputParameters == null) { throw new IllegalArgumentException("Parameter updateThroughputParameters is required and cannot be null."); } Validator.validate(updateThroughputParameters); final String apiVersion = "2019-08-01"; Observable<Response<ResponseBody>> observable = service.updateTableThroughput(this.client.subscriptionId(), resourceGroupName, accountName, tableName, apiVersion, updateThroughputParameters, this.client.acceptLanguage(), this.client.userAgent()); return client.getAzureClient().getPutOrPatchResultAsync(observable, new TypeToken<ThroughputSettingsGetResultsInner>() { }.getType()); }
Update RUs per second of an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • updateThroughputParameters – The parameters to provide for the RUs per second of the current Table.
Throws:
Returns:the ThroughputSettingsGetResultsInner object if successful.
/** * Update RUs per second of an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param updateThroughputParameters The parameters to provide for the RUs per second of the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the ThroughputSettingsGetResultsInner object if successful. */
public ThroughputSettingsGetResultsInner beginUpdateTableThroughput(String resourceGroupName, String accountName, String tableName, ThroughputSettingsUpdateParameters updateThroughputParameters) { return beginUpdateTableThroughputWithServiceResponseAsync(resourceGroupName, accountName, tableName, updateThroughputParameters).toBlocking().single().body(); }
Update RUs per second of an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • updateThroughputParameters – The parameters to provide for the RUs per second of the current Table.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Update RUs per second of an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param updateThroughputParameters The parameters to provide for the RUs per second of the current Table. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<ThroughputSettingsGetResultsInner> beginUpdateTableThroughputAsync(String resourceGroupName, String accountName, String tableName, ThroughputSettingsUpdateParameters updateThroughputParameters, final ServiceCallback<ThroughputSettingsGetResultsInner> serviceCallback) { return ServiceFuture.fromResponse(beginUpdateTableThroughputWithServiceResponseAsync(resourceGroupName, accountName, tableName, updateThroughputParameters), serviceCallback); }
Update RUs per second of an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • updateThroughputParameters – The parameters to provide for the RUs per second of the current Table.
Throws:
Returns:the observable to the ThroughputSettingsGetResultsInner object
/** * Update RUs per second of an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param updateThroughputParameters The parameters to provide for the RUs per second of the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ThroughputSettingsGetResultsInner object */
public Observable<ThroughputSettingsGetResultsInner> beginUpdateTableThroughputAsync(String resourceGroupName, String accountName, String tableName, ThroughputSettingsUpdateParameters updateThroughputParameters) { return beginUpdateTableThroughputWithServiceResponseAsync(resourceGroupName, accountName, tableName, updateThroughputParameters).map(new Func1<ServiceResponse<ThroughputSettingsGetResultsInner>, ThroughputSettingsGetResultsInner>() { @Override public ThroughputSettingsGetResultsInner call(ServiceResponse<ThroughputSettingsGetResultsInner> response) { return response.body(); } }); }
Update RUs per second of an Azure Cosmos DB Table.
Params:
  • resourceGroupName – Name of an Azure resource group.
  • accountName – Cosmos DB database account name.
  • tableName – Cosmos DB table name.
  • updateThroughputParameters – The parameters to provide for the RUs per second of the current Table.
Throws:
Returns:the observable to the ThroughputSettingsGetResultsInner object
/** * Update RUs per second of an Azure Cosmos DB Table. * * @param resourceGroupName Name of an Azure resource group. * @param accountName Cosmos DB database account name. * @param tableName Cosmos DB table name. * @param updateThroughputParameters The parameters to provide for the RUs per second of the current Table. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ThroughputSettingsGetResultsInner object */
public Observable<ServiceResponse<ThroughputSettingsGetResultsInner>> beginUpdateTableThroughputWithServiceResponseAsync(String resourceGroupName, String accountName, String tableName, ThroughputSettingsUpdateParameters updateThroughputParameters) { if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (accountName == null) { throw new IllegalArgumentException("Parameter accountName is required and cannot be null."); } if (tableName == null) { throw new IllegalArgumentException("Parameter tableName is required and cannot be null."); } if (updateThroughputParameters == null) { throw new IllegalArgumentException("Parameter updateThroughputParameters is required and cannot be null."); } Validator.validate(updateThroughputParameters); final String apiVersion = "2019-08-01"; return service.beginUpdateTableThroughput(this.client.subscriptionId(), resourceGroupName, accountName, tableName, apiVersion, updateThroughputParameters, this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<ThroughputSettingsGetResultsInner>>>() { @Override public Observable<ServiceResponse<ThroughputSettingsGetResultsInner>> call(Response<ResponseBody> response) { try { ServiceResponse<ThroughputSettingsGetResultsInner> clientResponse = beginUpdateTableThroughputDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<ThroughputSettingsGetResultsInner> beginUpdateTableThroughputDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<ThroughputSettingsGetResultsInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<ThroughputSettingsGetResultsInner>() { }.getType()) .register(202, new TypeToken<Void>() { }.getType()) .registerError(CloudException.class) .build(response); } }