Skip to content

Commit

Permalink
Update from master
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Automation committed Aug 11, 2020
1 parent bb9ce6e commit 1b9e6c7
Show file tree
Hide file tree
Showing 20 changed files with 401 additions and 37 deletions.
6 changes: 3 additions & 3 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>
<relativePath>../../parents/azure-arm-parent</relativePath>
<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

0 comments on commit 1b9e6c7

Please sign in to comment.