Skip to content

Commit

Permalink
Generated from 51075c008ddb13159873d5c891931fa3eb2e697e (#3702)
Browse files Browse the repository at this point in the history
added service name field in CosmosDb and created a Java readme
  • Loading branch information
AutorestCI authored May 20, 2019
1 parent f9b18be commit 4bf0e21
Show file tree
Hide file tree
Showing 69 changed files with 424 additions and 181 deletions.
6 changes: 3 additions & 3 deletions cosmosdb/resource-manager/v2015_04_08/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
<version>0.0.3-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-documentdb</artifactId>
<artifactId>azure-mgmt-cosmosdb</artifactId>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for DocumentDB Management</name>
<description>This package contains Microsoft DocumentDB Management SDK.</description>
<name>Microsoft Azure SDK for CosmosDB Management</name>
<description>This package contains Microsoft CosmosDB Management SDK.</description>
<url>https://github.com/Azure/azure-sdk-for-java</url>
<licenses>
<license>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
import com.microsoft.azure.arm.model.Appliable;
import com.microsoft.azure.arm.model.Creatable;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import java.util.Map;

/**
* Type representing CassandraKeyspace.
*/
public interface CassandraKeyspace extends HasInner<CassandraKeyspaceInner>, Indexable, Updatable<CassandraKeyspace.Update>, HasManager<DocumentDBManager> {
public interface CassandraKeyspace extends HasInner<CassandraKeyspaceInner>, Indexable, Updatable<CassandraKeyspace.Update>, HasManager<CosmosDBManager> {
/**
* @return the cassandraKeyspaceId value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@

import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CassandraTableInner;
import java.util.Map;

/**
* Type representing CassandraTable.
*/
public interface CassandraTable extends HasInner<CassandraTableInner>, HasManager<DocumentDBManager> {
public interface CassandraTable extends HasInner<CassandraTableInner>, HasManager<CosmosDBManager> {
/**
* @return the cassandraTableId value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.MetricInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import org.joda.time.DateTime;
import java.util.List;

/**
* Type representing CollectionDatabasisDatabaseAccountMetric.
*/
public interface CollectionDatabasisDatabaseAccountMetric extends HasInner<MetricInner>, HasManager<DocumentDBManager> {
public interface CollectionDatabasisDatabaseAccountMetric extends HasInner<MetricInner>, HasManager<CosmosDBManager> {
/**
* @return the endTime value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.MetricDefinitionInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import java.util.List;

/**
* Type representing CollectionDatabasisDatabaseAccountMetricDefinition.
*/
public interface CollectionDatabasisDatabaseAccountMetricDefinition extends HasInner<MetricDefinitionInner>, HasManager<DocumentDBManager> {
public interface CollectionDatabasisDatabaseAccountMetricDefinition extends HasInner<MetricDefinitionInner>, HasManager<CosmosDBManager> {
/**
* @return the metricAvailabilities value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.MetricInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import org.joda.time.DateTime;
import java.util.List;

/**
* Type representing CollectionDatabasisDatabaseAccountMetricModel.
*/
public interface CollectionDatabasisDatabaseAccountMetricModel extends HasInner<MetricInner>, HasManager<DocumentDBManager> {
public interface CollectionDatabasisDatabaseAccountMetricModel extends HasInner<MetricInner>, HasManager<CosmosDBManager> {
/**
* @return the endTime value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.UsageInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;

/**
* Type representing CollectionDatabasisDatabaseAccountUsage.
*/
public interface CollectionDatabasisDatabaseAccountUsage extends HasInner<UsageInner>, HasManager<DocumentDBManager> {
public interface CollectionDatabasisDatabaseAccountUsage extends HasInner<UsageInner>, HasManager<CosmosDBManager> {
/**
* @return the currentValue value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
import com.microsoft.azure.arm.model.Appliable;
import com.microsoft.azure.arm.model.Creatable;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import java.util.List;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DatabaseAccountInner;

/**
* Type representing DatabaseAccount.
*/
public interface DatabaseAccount extends HasInner<DatabaseAccountInner>, Resource, GroupableResourceCore<DocumentDBManager, DatabaseAccountInner>, HasResourceGroup, Refreshable<DatabaseAccount>, Updatable<DatabaseAccount.Update>, HasManager<DocumentDBManager> {
public interface DatabaseAccount extends HasInner<DatabaseAccountInner>, Resource, GroupableResourceCore<CosmosDBManager, DatabaseAccountInner>, HasResourceGroup, Refreshable<DatabaseAccount>, Updatable<DatabaseAccount.Update>, HasManager<CosmosDBManager> {
/**
* @return the capabilities value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@

import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DatabaseAccountListConnectionStringsResultInner;
import java.util.List;

/**
* Type representing DatabaseAccountListConnectionStringsResult.
*/
public interface DatabaseAccountListConnectionStringsResult extends HasInner<DatabaseAccountListConnectionStringsResultInner>, HasManager<DocumentDBManager> {
public interface DatabaseAccountListConnectionStringsResult extends HasInner<DatabaseAccountListConnectionStringsResultInner>, HasManager<CosmosDBManager> {
/**
* @return the connectionStrings value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DatabaseAccountListKeysResultInner;

/**
* Type representing DatabaseAccountListKeysResult.
*/
public interface DatabaseAccountListKeysResult extends HasInner<DatabaseAccountListKeysResultInner>, HasManager<DocumentDBManager> {
public interface DatabaseAccountListKeysResult extends HasInner<DatabaseAccountListKeysResultInner>, HasManager<CosmosDBManager> {
/**
* @return the primaryMasterKey value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DatabaseAccountListReadOnlyKeysResultInner;

/**
* Type representing DatabaseAccountListReadOnlyKeysResult.
*/
public interface DatabaseAccountListReadOnlyKeysResult extends HasInner<DatabaseAccountListReadOnlyKeysResultInner>, HasManager<DocumentDBManager> {
public interface DatabaseAccountListReadOnlyKeysResult extends HasInner<DatabaseAccountListReadOnlyKeysResultInner>, HasManager<CosmosDBManager> {
/**
* @return the primaryReadonlyMasterKey value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.MetricInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import org.joda.time.DateTime;
import java.util.List;

/**
* Type representing DatabaseAccountMetric.
*/
public interface DatabaseAccountMetric extends HasInner<MetricInner>, HasManager<DocumentDBManager> {
public interface DatabaseAccountMetric extends HasInner<MetricInner>, HasManager<CosmosDBManager> {
/**
* @return the endTime value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.MetricDefinitionInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import java.util.List;

/**
* Type representing DatabaseAccountMetricDefinition.
*/
public interface DatabaseAccountMetricDefinition extends HasInner<MetricDefinitionInner>, HasManager<DocumentDBManager> {
public interface DatabaseAccountMetricDefinition extends HasInner<MetricDefinitionInner>, HasManager<CosmosDBManager> {
/**
* @return the metricAvailabilities value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.UsageInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;

/**
* Type representing DatabaseAccountUsage.
*/
public interface DatabaseAccountUsage extends HasInner<UsageInner>, HasManager<DocumentDBManager> {
public interface DatabaseAccountUsage extends HasInner<UsageInner>, HasManager<CosmosDBManager> {
/**
* @return the currentValue value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.MetricInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import org.joda.time.DateTime;
import java.util.List;

/**
* Type representing DatabasisDatabaseAccountMetric.
*/
public interface DatabasisDatabaseAccountMetric extends HasInner<MetricInner>, HasManager<DocumentDBManager> {
public interface DatabasisDatabaseAccountMetric extends HasInner<MetricInner>, HasManager<CosmosDBManager> {
/**
* @return the endTime value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.MetricDefinitionInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import java.util.List;

/**
* Type representing DatabasisDatabaseAccountMetricDefinition.
*/
public interface DatabasisDatabaseAccountMetricDefinition extends HasInner<MetricDefinitionInner>, HasManager<DocumentDBManager> {
public interface DatabasisDatabaseAccountMetricDefinition extends HasInner<MetricDefinitionInner>, HasManager<CosmosDBManager> {
/**
* @return the metricAvailabilities value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.UsageInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;

/**
* Type representing DatabasisDatabaseAccountUsage.
*/
public interface DatabasisDatabaseAccountUsage extends HasInner<UsageInner>, HasManager<DocumentDBManager> {
public interface DatabasisDatabaseAccountUsage extends HasInner<UsageInner>, HasManager<CosmosDBManager> {
/**
* @return the currentValue value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@

import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.GremlinDatabaseInner;
import java.util.Map;

/**
* Type representing GremlinDatabase.
*/
public interface GremlinDatabase extends HasInner<GremlinDatabaseInner>, HasManager<DocumentDBManager> {
public interface GremlinDatabase extends HasInner<GremlinDatabaseInner>, HasManager<CosmosDBManager> {
/**
* @return the _etag value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
import com.microsoft.azure.arm.model.Appliable;
import com.microsoft.azure.arm.model.Creatable;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import java.util.Map;

/**
* Type representing GremlinGraph.
*/
public interface GremlinGraph extends HasInner<GremlinGraphInner>, Indexable, Refreshable<GremlinGraph>, Updatable<GremlinGraph.Update>, HasManager<DocumentDBManager> {
public interface GremlinGraph extends HasInner<GremlinGraphInner>, Indexable, Refreshable<GremlinGraph>, Updatable<GremlinGraph.Update>, HasManager<CosmosDBManager> {
/**
* @return the _etag value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
import com.microsoft.azure.arm.model.Appliable;
import com.microsoft.azure.arm.model.Creatable;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import java.util.Map;
import java.util.List;

/**
* Type representing MongoDBCollection.
*/
public interface MongoDBCollection extends HasInner<MongoDBCollectionInner>, Indexable, Refreshable<MongoDBCollection>, Updatable<MongoDBCollection.Update>, HasManager<DocumentDBManager> {
public interface MongoDBCollection extends HasInner<MongoDBCollectionInner>, Indexable, Refreshable<MongoDBCollection>, Updatable<MongoDBCollection.Update>, HasManager<CosmosDBManager> {
/**
* @return the id value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@

import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.MongoDBDatabaseInner;
import java.util.Map;

/**
* Type representing MongoDBDatabase.
*/
public interface MongoDBDatabase extends HasInner<MongoDBDatabaseInner>, HasManager<DocumentDBManager> {
public interface MongoDBDatabase extends HasInner<MongoDBDatabaseInner>, HasManager<CosmosDBManager> {
/**
* @return the id value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.OperationInner;

/**
* Type representing Operation.
*/
public interface Operation extends HasInner<OperationInner>, HasManager<DocumentDBManager> {
public interface Operation extends HasInner<OperationInner>, HasManager<CosmosDBManager> {
/**
* @return the display value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@

import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.PartitionMetricInner;
import org.joda.time.DateTime;
import java.util.List;

/**
* Type representing PartitionMetric.
*/
public interface PartitionMetric extends HasInner<PartitionMetricInner>, HasManager<DocumentDBManager> {
public interface PartitionMetric extends HasInner<PartitionMetricInner>, HasManager<CosmosDBManager> {
/**
* @return the endTime value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

import com.microsoft.azure.arm.model.HasInner;
import com.microsoft.azure.arm.resources.models.HasManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.DocumentDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.CosmosDBManager;
import com.microsoft.azure.management.cosmosdb.v2015_04_08.implementation.PartitionUsageInner;

/**
* Type representing PartitionUsage.
*/
public interface PartitionUsage extends HasInner<PartitionUsageInner>, HasManager<DocumentDBManager> {
public interface PartitionUsage extends HasInner<PartitionUsageInner>, HasManager<CosmosDBManager> {
/**
* @return the currentValue value.
*/
Expand Down
Loading

0 comments on commit 4bf0e21

Please sign in to comment.