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

Sdk automation/azure mgmt cosmosdb@10955 #14060

Merged
Merged
Show file tree
Hide file tree
Changes from 3 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
73 changes: 73 additions & 0 deletions sdk/cosmos/azure-mgmt-cosmosdb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,78 @@
# Release History

## 2.0.0rc1 (2020-09-27)

**Features**

- Model MongoDBCollectionCreateUpdateParameters has a new parameter identity
- Model GremlinGraphGetResults has a new parameter identity
- Model SqlDatabaseGetResults has a new parameter identity
- Model DatabaseAccountGetResults has a new parameter identity
- Model DatabaseAccountGetResults has a new parameter instance_id
- Model DatabaseAccountGetResults has a new parameter backup_policy
- Model DatabaseAccountGetResults has a new parameter system_data
- Model DatabaseAccountGetResults has a new parameter restore_parameters
- Model DatabaseAccountGetResults has a new parameter create_mode
- Model SqlDatabaseCreateUpdateParameters has a new parameter identity
- Model GremlinDatabaseGetResults has a new parameter identity
- Model CassandraTableCreateUpdateParameters has a new parameter identity
- Model ARMResourceProperties has a new parameter identity
- Model SqlContainerGetResults has a new parameter identity
- Model GremlinGraphCreateUpdateParameters has a new parameter identity
- Model SqlUserDefinedFunctionGetResults has a new parameter identity
- Model CassandraKeyspaceGetResults has a new parameter identity
- Model DatabaseAccountUpdateParameters has a new parameter identity
- Model DatabaseAccountUpdateParameters has a new parameter backup_policy
- Model ThroughputSettingsUpdateParameters has a new parameter identity
- Model CassandraTableGetResults has a new parameter identity
- Model SqlTriggerGetResults has a new parameter identity
- Model MongoDBDatabaseCreateUpdateParameters has a new parameter identity
- Model GremlinDatabaseCreateUpdateParameters has a new parameter identity
- Model SqlContainerCreateUpdateParameters has a new parameter identity
- Model CassandraKeyspaceCreateUpdateParameters has a new parameter identity
- Model MongoDBCollectionGetResults has a new parameter identity
- Model ThroughputSettingsGetResults has a new parameter identity
- Model SqlStoredProcedureCreateUpdateParameters has a new parameter identity
- Model TableCreateUpdateParameters has a new parameter identity
- Model SqlStoredProcedureGetResults has a new parameter identity
- Model MongoDBDatabaseGetResults has a new parameter identity
- Model TableGetResults has a new parameter identity
- Model SqlUserDefinedFunctionCreateUpdateParameters has a new parameter identity
- Model SqlTriggerCreateUpdateParameters has a new parameter identity
- Added operation SqlResourcesOperations.get_sql_role_definition
- Added operation SqlResourcesOperations.delete_sql_role_definition
- Added operation SqlResourcesOperations.list_sql_role_definitions
- Added operation SqlResourcesOperations.get_sql_role_assignment
- Added operation SqlResourcesOperations.create_update_sql_role_definition
- Added operation SqlResourcesOperations.create_update_sql_role_assignment
- Added operation SqlResourcesOperations.delete_sql_role_assignment
- Added operation SqlResourcesOperations.list_sql_role_assignments
- Added operation group RestorableDatabaseAccountsOperations

**Breaking changes**

- Model SqlContainerResource no longer has parameter analytical_storage_ttl
- Model SqlContainerGetPropertiesResource no longer has parameter analytical_storage_ttl
- Removed operation TableResourcesOperations.migrate_table_to_autoscale
- Removed operation TableResourcesOperations.migrate_table_to_manual_throughput
- Removed operation SqlResourcesOperations.migrate_sql_database_to_autoscale
- Removed operation SqlResourcesOperations.migrate_sql_database_to_manual_throughput
- Removed operation SqlResourcesOperations.migrate_sql_container_to_manual_throughput
- Removed operation SqlResourcesOperations.migrate_sql_container_to_autoscale
- Removed operation GremlinResourcesOperations.migrate_gremlin_graph_to_manual_throughput
- Removed operation GremlinResourcesOperations.migrate_gremlin_graph_to_autoscale
- Removed operation GremlinResourcesOperations.migrate_gremlin_database_to_manual_throughput
- Removed operation GremlinResourcesOperations.migrate_gremlin_database_to_autoscale
- Removed operation CassandraResourcesOperations.migrate_cassandra_table_to_manual_throughput
- Removed operation CassandraResourcesOperations.migrate_cassandra_keyspace_to_manual_throughput
- Removed operation CassandraResourcesOperations.migrate_cassandra_keyspace_to_autoscale
- Removed operation CassandraResourcesOperations.migrate_cassandra_table_to_autoscale
- Removed operation MongoDBResourcesOperations.migrate_mongo_db_collection_to_autoscale
- Removed operation MongoDBResourcesOperations.migrate_mongo_db_database_to_autoscale
- Removed operation MongoDBResourcesOperations.migrate_mongo_db_database_to_manual_throughput
- Removed operation MongoDBResourcesOperations.migrate_mongo_db_collection_to_manual_throughput
- Model DatabaseAccountCreateUpdateParameters has a new signature

## 1.0.0 (2020-08-17)

**Features**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@
from .operations import TableResourcesOperations
from .operations import CassandraResourcesOperations
from .operations import GremlinResourcesOperations
from .operations import RestorableDatabaseAccountsOperations
from .operations import NotebookWorkspacesOperations
from .operations import PrivateLinkResourcesOperations
from .operations import PrivateEndpointConnectionsOperations
from . import models


class CosmosDBManagementClient(SDKClient):
"""Azure Cosmos DB Database Service Resource Provider REST API
"""CosmosDBManagementClient

:ivar config: Configuration for client.
:vartype config: CosmosDBManagementClientConfiguration
Expand Down Expand Up @@ -79,6 +80,8 @@ class CosmosDBManagementClient(SDKClient):
:vartype cassandra_resources: azure.mgmt.cosmosdb.operations.CassandraResourcesOperations
:ivar gremlin_resources: GremlinResources operations
:vartype gremlin_resources: azure.mgmt.cosmosdb.operations.GremlinResourcesOperations
:ivar restorable_database_accounts: RestorableDatabaseAccounts operations
:vartype restorable_database_accounts: azure.mgmt.cosmosdb.operations.RestorableDatabaseAccountsOperations
:ivar notebook_workspaces: NotebookWorkspaces operations
:vartype notebook_workspaces: azure.mgmt.cosmosdb.operations.NotebookWorkspacesOperations
:ivar private_link_resources: PrivateLinkResources operations
Expand Down Expand Up @@ -140,6 +143,8 @@ def __init__(
self._client, self.config, self._serialize, self._deserialize)
self.gremlin_resources = GremlinResourcesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.restorable_database_accounts = RestorableDatabaseAccountsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.notebook_workspaces = NotebookWorkspacesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.private_link_resources = PrivateLinkResourcesOperations(
Expand Down
Loading