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

[AutoPR appplatform] Update all readme.azureresourceschema.md #192

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
27 changes: 15 additions & 12 deletions schemas/2019-05-01-preview/Microsoft.AppPlatform.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"properties": {
"oneOf": [
{
"$ref": "#/definitions/ClusterResourceProperties"
"$ref": "#/definitions/ClusterResourcePropertiesModel"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
Expand Down Expand Up @@ -211,7 +211,7 @@
"properties": {
"oneOf": [
{
"$ref": "#/definitions/DeploymentResourceProperties"
"$ref": "#/definitions/DeploymentResourcePropertiesModel"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
Expand Down Expand Up @@ -424,13 +424,13 @@
],
"description": "Certificate resource payload."
},
"ClusterResourceProperties": {
"ClusterResourcePropertiesModel": {
"type": "object",
"properties": {
"configServerProperties": {
"oneOf": [
{
"$ref": "#/definitions/ConfigServerProperties"
"$ref": "#/definitions/ConfigServerPropertiesModel"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
Expand Down Expand Up @@ -539,7 +539,7 @@
],
"description": "Property of git."
},
"ConfigServerProperties": {
"ConfigServerPropertiesModel": {
"type": "object",
"properties": {
"configServer": {
Expand Down Expand Up @@ -598,13 +598,13 @@
},
"description": "Custom domain of app resource payload."
},
"DeploymentResourceProperties": {
"DeploymentResourcePropertiesModel": {
"type": "object",
"properties": {
"deploymentSettings": {
"oneOf": [
{
"$ref": "#/definitions/DeploymentSettings"
"$ref": "#/definitions/DeploymentSettingsModel"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
Expand All @@ -626,7 +626,7 @@
},
"description": "Deployment resource properties payload"
},
"DeploymentSettings": {
"DeploymentSettingsModel": {
"type": "object",
"properties": {
"cpu": {
Expand Down Expand Up @@ -806,10 +806,12 @@
"type": "object",
"properties": {
"principalId": {
"type": "string"
"type": "string",
"description": "Principal Id"
},
"tenantId": {
"type": "string"
"type": "string",
"description": "Tenant Id"
},
"type": {
"oneOf": [
Expand All @@ -825,7 +827,8 @@
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
],
"description": "Type of the managed identity."
}
},
"description": "Managed identity properties retrieved from ARM request headers."
Expand Down Expand Up @@ -1013,7 +1016,7 @@
"properties": {
"oneOf": [
{
"$ref": "#/definitions/DeploymentResourceProperties"
"$ref": "#/definitions/DeploymentResourcePropertiesModel"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
Expand Down
Loading