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

Use the official Azure names for database offerings #732

Merged
merged 1 commit into from
Jan 6, 2023
Merged
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
21 changes: 11 additions & 10 deletions resources/packs/azure/azure.lr
Original file line number Diff line number Diff line change
Expand Up @@ -683,13 +683,13 @@ private azure.sql.databaseusage @defaults("id name") {
nextResetTime() time
}

// Azure PostgreSQL
// Azure Database for PostgreSQL
azure.postgresql {
// List of PostgreSQL servers
servers() []azure.postgresql.server
}

// Azure PostgreSQL Server
// Azure Database for PostgreSQL Server
private azure.postgresql.server @defaults("id name location") {
// PostgreSQL server ID
id string
Expand All @@ -711,7 +711,7 @@ private azure.postgresql.server @defaults("id name location") {
firewallRules() []azure.sql.firewallrule
}

// Azure PostgreSQL Database
// Azure Database for PostgreSQL Database
private azure.postgresql.database @defaults("id name") {
// PostgreSQL database ID
id string
Expand All @@ -725,14 +725,15 @@ private azure.postgresql.database @defaults("id name") {
collation string
}

// Azure MySQL
// Azure Database for MySQL
azure.mysql {
// List of MySQL servers
servers() []azure.mysql.server
// List of Flexible MySQL servers
flexibleServers() []azure.mysql.flexibleServer
}

// Azure MySQL Server
// Azure Database for MySQL Server
private azure.mysql.server @defaults("id name location") {
// MySQL server ID
id string
Expand All @@ -754,7 +755,7 @@ private azure.mysql.server @defaults("id name location") {
firewallRules() []azure.sql.firewallrule
}

// Azure MySQL Database
// Azure Database for MySQL Database
private azure.mysql.database @defaults("id name") {
// MySQL database ID
id string
Expand All @@ -768,7 +769,7 @@ private azure.mysql.database @defaults("id name") {
collation string
}

// Azure MySQL Flexible Server
// Azure Database for MySQL Flexible Server
private azure.mysql.flexibleServer @defaults("id name location") {
// MySQL flexible server ID
id string
Expand All @@ -790,13 +791,13 @@ private azure.mysql.flexibleServer @defaults("id name location") {
firewallRules() []azure.sql.firewallrule
}

// Azure MariaDB
// Azure Database for MariaDB
azure.mariadb {
// List of MariaDB servers
servers() []azure.mariadb.server
}

// Azure MariaDB Server
// Azure Database for MariaDB Server
private azure.mariadb.server @defaults("id name location") {
// MariaDB server ID
id string
Expand All @@ -818,7 +819,7 @@ private azure.mariadb.server @defaults("id name location") {
firewallRules() []azure.sql.firewallrule
}

// Azure MariaDB Database
// Azure Database for MariaDB Database
private azure.mariadb.database @defaults("id name") {
// MariaDB database ID
id string
Expand Down
2 changes: 1 addition & 1 deletion resources/packs/azure/info/azure.lr.json

Large diffs are not rendered by default.