Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@
"properties"
],
"allOf": [
{ "$ref": "#/definitions/TrackedResource" }
{
"$ref": "#/definitions/TrackedResource"
}
]
},
"AssignmentList": {
Expand Down Expand Up @@ -249,10 +251,11 @@
"AssignmentStatus": {
"description": "The status of Blueprint assignment. This field is readonly.",
"type": "object",
"properties": {
},
"properties": {},
"allOf": [
{ "$ref": "#/definitions/BlueprintResourceStatusBase" }
{
"$ref": "#/definitions/BlueprintResourceStatusBase"
}
]
},
"AssignmentLockSettings": {
Expand Down Expand Up @@ -357,9 +360,13 @@
"description": "actual value."
}
},
"required": [ "value" ],
"required": [
"value"
],
"allOf": [
{ "$ref": "#/definitions/ParameterValueBase" }
{
"$ref": "#/definitions/ParameterValueBase"
}
]
},
"SecretReferenceParameterValue": {
Expand All @@ -371,9 +378,13 @@
"$ref": "#/definitions/SecretValueReference"
}
},
"required": [ "reference" ],
"required": [
"reference"
],
"allOf": [
{ "$ref": "#/definitions/ParameterValueBase" }
{
"$ref": "#/definitions/ParameterValueBase"
}
]
},
"SecretValueReference": {
Expand Down Expand Up @@ -407,7 +418,9 @@
"type": "string"
}
},
"required": [ "id" ]
"required": [
"id"
]
},
"ResourceGroupValueCollection": {
"description": "A dictionary which maps resource group placeholders to the resource groups which will be created.",
Expand Down Expand Up @@ -440,12 +453,19 @@
"location": {
"type": "string",
"description": "The location of this Blueprint assignment.",
"x-ms-mutability": [ "read", "create" ]
"x-ms-mutability": [
"read",
"create"
]
}
},
"required": [ "location" ],
"required": [
"location"
],
"allOf": [
{ "$ref": "#/definitions/AzureResourceBase" }
{
"$ref": "#/definitions/AzureResourceBase"
}
]
},
"AzureResourceBase": {
Expand Down Expand Up @@ -530,4 +550,4 @@
"description": "Client Api Version."
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,9 @@
"type": "object",
"x-ms-external": true,
"allOf": [
{ "$ref": "#/definitions/SharedBlueprintProperties" }
{
"$ref": "#/definitions/SharedBlueprintProperties"
}
],
"properties": {
"versions": {
Expand All @@ -829,7 +831,9 @@
"type": "object",
"x-ms-external": true,
"allOf": [
{ "$ref": "#/definitions/SharedBlueprintProperties" }
{
"$ref": "#/definitions/SharedBlueprintProperties"
}
],
"properties": {
"blueprintName": {
Expand All @@ -846,10 +850,11 @@
"BlueprintStatus": {
"description": "The status of the blueprint. This field is readonly.",
"type": "object",
"properties": {
},
"properties": {},
"allOf": [
{ "$ref": "#/definitions/BlueprintResourceStatusBase" }
{
"$ref": "#/definitions/BlueprintResourceStatusBase"
}
]
},
"TemplateArtifactProperties": {
Expand Down Expand Up @@ -1028,9 +1033,13 @@
"description": "actual value."
}
},
"required": [ "value" ],
"required": [
"value"
],
"allOf": [
{ "$ref": "#/definitions/ParameterValueBase" }
{
"$ref": "#/definitions/ParameterValueBase"
}
]
},
"SecretReferenceParameterValue": {
Expand All @@ -1042,9 +1051,13 @@
"$ref": "#/definitions/SecretValueReference"
}
},
"required": [ "reference" ],
"required": [
"reference"
],
"allOf": [
{ "$ref": "#/definitions/ParameterValueBase" }
{
"$ref": "#/definitions/ParameterValueBase"
}
]
},
"SecretValueReference": {
Expand Down Expand Up @@ -1078,7 +1091,9 @@
"type": "string"
}
},
"required": [ "id" ]
"required": [
"id"
]
},
"ParameterDefinitionCollection": {
"description": "A dictionary hold parameter name and it's metadata.",
Expand Down Expand Up @@ -1335,4 +1350,4 @@
"description": "Client Api Version."
}
}
}
}
Loading