Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ReleasePR sdk/cosmos/mgmt-v2015_04_08] Update cosmos-db.json #10266

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sdk/cosmos/mgmt-v2015_04_08/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.2.0</version>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-cosmosdb</artifactId>
<version>1.0.0-beta-3</version>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for CosmosDB Management</name>
<description>This package contains Microsoft CosmosDB Management SDK.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ public final class PrimaryAggregationType extends ExpandableStringEnum<PrimaryAg
/** Static value Total for PrimaryAggregationType. */
public static final PrimaryAggregationType TOTAL = fromString("Total");

/** Static value Minimimum for PrimaryAggregationType. */
public static final PrimaryAggregationType MINIMIMUM = fromString("Minimimum");
/** Static value Minimum for PrimaryAggregationType. */
public static final PrimaryAggregationType MINIMUM = fromString("Minimum");

/** Static value Maximum for PrimaryAggregationType. */
public static final PrimaryAggregationType MAXIMUM = fromString("Maximum");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ public class CollectionPartitionRegionsInner {
/** The Retrofit service to perform REST calls. */
private CollectionPartitionRegionsService service;
/** The service client containing this operation class. */
private CosmosDBImpl client;
private CosmosDBManagementClientImpl client;

/**
* Initializes an instance of CollectionPartitionRegionsInner.
*
* @param retrofit the Retrofit instance built from a Retrofit Builder.
* @param client the instance of the service client containing this operation class.
*/
public CollectionPartitionRegionsInner(Retrofit retrofit, CosmosDBImpl client) {
public CollectionPartitionRegionsInner(Retrofit retrofit, CosmosDBManagementClientImpl client) {
this.service = retrofit.create(CollectionPartitionRegionsService.class);
this.client = client;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ public class CollectionPartitionsInner {
/** The Retrofit service to perform REST calls. */
private CollectionPartitionsService service;
/** The service client containing this operation class. */
private CosmosDBImpl client;
private CosmosDBManagementClientImpl client;

/**
* Initializes an instance of CollectionPartitionsInner.
*
* @param retrofit the Retrofit instance built from a Retrofit Builder.
* @param client the instance of the service client containing this operation class.
*/
public CollectionPartitionsInner(Retrofit retrofit, CosmosDBImpl client) {
public CollectionPartitionsInner(Retrofit retrofit, CosmosDBManagementClientImpl client) {
this.service = retrofit.create(CollectionPartitionsService.class);
this.client = client;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ public class CollectionRegionsInner {
/** The Retrofit service to perform REST calls. */
private CollectionRegionsService service;
/** The service client containing this operation class. */
private CosmosDBImpl client;
private CosmosDBManagementClientImpl client;

/**
* Initializes an instance of CollectionRegionsInner.
*
* @param retrofit the Retrofit instance built from a Retrofit Builder.
* @param client the instance of the service client containing this operation class.
*/
public CollectionRegionsInner(Retrofit retrofit, CosmosDBImpl client) {
public CollectionRegionsInner(Retrofit retrofit, CosmosDBManagementClientImpl client) {
this.service = retrofit.create(CollectionRegionsService.class);
this.client = client;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ public class CollectionsInner {
/** The Retrofit service to perform REST calls. */
private CollectionsService service;
/** The service client containing this operation class. */
private CosmosDBImpl client;
private CosmosDBManagementClientImpl client;

/**
* Initializes an instance of CollectionsInner.
*
* @param retrofit the Retrofit instance built from a Retrofit Builder.
* @param client the instance of the service client containing this operation class.
*/
public CollectionsInner(Retrofit retrofit, CosmosDBImpl client) {
public CollectionsInner(Retrofit retrofit, CosmosDBManagementClientImpl client) {
this.service = retrofit.create(CollectionsService.class);
this.client = client;
}
Expand Down
Loading