Skip to content

[AutoPR monitor] [Monitor] Update readme.md #749

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

Closed
wants to merge 3 commits into from
Closed
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
4 changes: 2 additions & 2 deletions schemas/2014-04-01/Microsoft.Insights.json
Original file line number Diff line number Diff line change
Expand Up @@ -311,13 +311,13 @@
"oneOf": [
{
"type": "boolean",
"default": true
"default": false
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'true'."
"description": "the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'."
},
"name": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions schemas/2015-04-01/Microsoft.Insights.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,13 +182,13 @@
"oneOf": [
{
"type": "boolean",
"default": true
"default": false
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'true'."
"description": "the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'."
},
"name": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions schemas/2021-05-01-preview/Microsoft.Insights.json
Original file line number Diff line number Diff line change
Expand Up @@ -305,13 +305,13 @@
"oneOf": [
{
"type": "boolean",
"default": true
"default": false
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'true'."
"description": "the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'."
},
"name": {
"type": "string",
Expand Down
128 changes: 128 additions & 0 deletions schemas/2021-12-01-preview/Microsoft.DBforMySQL.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@
},
{
"$ref": "#/definitions/flexibleServers_firewallRules_childResource"
},
{
"$ref": "#/definitions/flexibleServers_administrators_childResource"
}
]
}
Expand Down Expand Up @@ -101,6 +104,53 @@
],
"description": "Microsoft.DBforMySQL/flexibleServers"
},
"flexibleServers_administrators": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2021-12-01-preview"
]
},
"name": {
"oneOf": [
{
"type": "string",
"pattern": "^.*/ActiveDirectory$"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The name of the Azure AD Administrator."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AdministratorProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The properties of an administrator."
},
"type": {
"type": "string",
"enum": [
"Microsoft.DBforMySQL/flexibleServers/administrators"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.DBforMySQL/flexibleServers/administrators"
},
"flexibleServers_backups": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -208,6 +258,42 @@
}
},
"definitions": {
"AdministratorProperties": {
"type": "object",
"properties": {
"administratorType": {
"oneOf": [
{
"type": "string",
"enum": [
"ActiveDirectory"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Type of the sever administrator."
},
"identityResourceId": {
"type": "string",
"description": "The resource id of the identity used for AAD Authentication."
},
"login": {
"type": "string",
"description": "Login name of the server administrator."
},
"sid": {
"type": "string",
"description": "SID (object ID) of the server administrator."
},
"tenantId": {
"type": "string",
"description": "Tenant ID of the administrator."
}
},
"description": "The properties of an administrator."
},
"Backup": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -325,6 +411,48 @@
],
"description": "The properties of a server firewall rule."
},
"flexibleServers_administrators_childResource": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2021-12-01-preview"
]
},
"name": {
"type": "string",
"enum": [
"ActiveDirectory"
],
"description": "The name of the Azure AD Administrator."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AdministratorProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The properties of an administrator."
},
"type": {
"type": "string",
"enum": [
"administrators"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.DBforMySQL/flexibleServers/administrators"
},
"flexibleServers_backups_childResource": {
"type": "object",
"properties": {
Expand Down
Loading