Class TableCreateUpdateParameters
- java.lang.Object
-
- com.microsoft.azure.management.cosmosdb.TableCreateUpdateParameters
-
public class TableCreateUpdateParameters extends Object
Parameters to create and update Cosmos DB Table.
-
-
Constructor Summary
Constructors Constructor Description TableCreateUpdateParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>options()Get a key-value pair of options to be applied for the request.TableResourceresource()Get the standard JSON format of a Table.TableCreateUpdateParameterswithOptions(Map<String,String> options)Set a key-value pair of options to be applied for the request.TableCreateUpdateParameterswithResource(TableResource resource)Set the standard JSON format of a Table.
-
-
-
Method Detail
-
resource
public TableResource resource()
Get the standard JSON format of a Table.- Returns:
- the resource value
-
withResource
public TableCreateUpdateParameters withResource(TableResource resource)
Set the standard JSON format of a Table.- Parameters:
resource- the resource value to set- Returns:
- the TableCreateUpdateParameters object itself.
-
options
public Map<String,String> options()
Get a key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.- Returns:
- the options value
-
withOptions
public TableCreateUpdateParameters withOptions(Map<String,String> options)
Set a key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.- Parameters:
options- the options value to set- Returns:
- the TableCreateUpdateParameters object itself.
-
-