Skip to content
This repository has been archived by the owner on Jul 6, 2022. It is now read-only.

Commit

Permalink
Make all plans in cosmosdb module to StabilityPreview (#553)
Browse files Browse the repository at this point in the history
* Make all plans in cosmosdb module to StabilityPreview

* Update doc for cosmos
  • Loading branch information
Tongyao Si authored and jeremyrickard committed Oct 3, 2018
1 parent e0fd0a5 commit 938c42e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ server that provisions managed services in the Microsoft Azure public cloud.
* [Azure Database for PostgreSQL](docs/modules/postgresql.md)
* [Azure SQL Database](docs/modules/mssql.md)

### Preview Services

- [Azure CosmosDB](docs/modules/cosmosdb.md)

### Experimental Services

* [Azure CosmosDB](docs/modules/cosmosdb.md)
* [Azure Event Hubs](docs/modules/eventhubs.md)
* [Azure Key Vault](docs/modules/keyvault.md)
* [Azure Redis Cache](docs/modules/rediscache.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/cosmosdb.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [Azure CosmosDB](https://azure.microsoft.com/en-us/services/cosmos-db/)

_Note: This module is EXPERIMENTAL. To enable this module, you must run Open Service Broker for Azure with Minimum Stability set to `experimental`_
_Note: This module is PREVIEW._

## Services & Plans

Expand Down
12 changes: 6 additions & 6 deletions pkg/services/cosmosdb/catalog.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func (m *module) GetCatalog() (service.Catalog, error) {
Name: "sql-api",
Description: "Azure CosmosDB With SQL API (Database Account and Database)",
Free: false,
Stability: service.StabilityExperimental,
Stability: service.StabilityPreview,
Metadata: service.ServicePlanMetadata{
DisplayName: "Azure CosmosDB (SQL API Database Account and Database)",
},
Expand Down Expand Up @@ -71,7 +71,7 @@ func (m *module) GetCatalog() (service.Catalog, error) {
Name: "account",
Description: "Database Account with the SQL API",
Free: false,
Stability: service.StabilityExperimental,
Stability: service.StabilityPreview,
Metadata: service.ServicePlanMetadata{
DisplayName: "Azure CosmosDB (SQL API - Database Account Only)",
},
Expand Down Expand Up @@ -111,7 +111,7 @@ func (m *module) GetCatalog() (service.Catalog, error) {
Name: "database",
Description: "Azure CosmosDB (SQL API - Database only)",
Free: false,
Stability: service.StabilityExperimental,
Stability: service.StabilityPreview,
Metadata: service.ServicePlanMetadata{
DisplayName: "Azure CosmosDB (SQL API - Database only)",
},
Expand Down Expand Up @@ -144,7 +144,7 @@ func (m *module) GetCatalog() (service.Catalog, error) {
Name: "account",
Description: "Database Account with the MongoDB API",
Free: false,
Stability: service.StabilityExperimental,
Stability: service.StabilityPreview,
Metadata: service.ServicePlanMetadata{
DisplayName: "Azure Cosmos DB (MongoDB API)",
},
Expand Down Expand Up @@ -184,7 +184,7 @@ func (m *module) GetCatalog() (service.Catalog, error) {
Name: "account",
Description: "Database Account with the Graph API",
Free: false,
Stability: service.StabilityExperimental,
Stability: service.StabilityPreview,
Metadata: service.ServicePlanMetadata{
DisplayName: "Azure Cosmos DB (Graph API)",
},
Expand Down Expand Up @@ -223,7 +223,7 @@ func (m *module) GetCatalog() (service.Catalog, error) {
Name: "account",
Description: "Database Account with the Table API",
Free: false,
Stability: service.StabilityExperimental,
Stability: service.StabilityPreview,
Metadata: service.ServicePlanMetadata{
DisplayName: "Azure Cosmos DB (Table API)",
},
Expand Down

0 comments on commit 938c42e

Please sign in to comment.