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 @@ -1152,7 +1152,7 @@
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Resource"
"$ref": "#/definitions/ProxyOnlyResource"
}
],
"properties": {
Expand Down Expand Up @@ -1229,6 +1229,31 @@
}
}
},
"ProxyOnlyResource": {
"description": "Azure proxy only resource. This resource is not tracked by Azure Resource Manager.",
"properties": {
"id": {
"description": "Resource Id.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Resource Name.",
"type": "string",
"readOnly": true
},
"kind": {
"description": "Kind of resource.",
"type": "string"
},
"type": {
"description": "Resource type.",
"type": "string",
"readOnly": true
}
},
"x-ms-azure-resource": true
},
"ReissueCertificateOrderRequest": {
"description": "Class representing certificate reissue request.",
"type": "object",
Expand Down Expand Up @@ -1295,7 +1320,7 @@
}
},
"Resource": {
"description": "Azure resource.",
"description": "Azure resource. This resource is tracked in Azure Resource Manager",
"required": [
"location"
],
Expand All @@ -1307,7 +1332,8 @@
},
"name": {
"description": "Resource Name.",
"type": "string"
"type": "string",
"readOnly": true
},
"kind": {
"description": "Kind of resource.",
Expand All @@ -1319,7 +1345,8 @@
},
"type": {
"description": "Resource type.",
"type": "string"
"type": "string",
"readOnly": true
},
"tags": {
"description": "Resource tags.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,7 @@
}
},
"Resource": {
"description": "Azure resource.",
"description": "Azure resource. This resource is tracked in Azure Resource Manager",
"required": [
"location"
],
Expand All @@ -1141,7 +1141,8 @@
},
"name": {
"description": "Resource Name.",
"type": "string"
"type": "string",
"readOnly": true
},
"kind": {
"description": "Kind of resource.",
Expand All @@ -1153,7 +1154,8 @@
},
"type": {
"description": "Resource type.",
"type": "string"
"type": "string",
"readOnly": true
},
"tags": {
"description": "Resource tags.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,8 @@
}
},
"definitions": {
"Resource": {
"description": "Azure resource.",
"required": [
"location"
],
"ProxyOnlyResource": {
"description": "Azure proxy only resource. This resource is not tracked by Azure Resource Manager.",
"properties": {
"id": {
"description": "Resource Id.",
Expand All @@ -152,26 +149,17 @@
},
"name": {
"description": "Resource Name.",
"type": "string"
"type": "string",
"readOnly": true
},
"kind": {
"description": "Kind of resource.",
"type": "string"
},
"location": {
"description": "Resource Location.",
"type": "string"
},
"type": {
"description": "Resource type.",
"type": "string"
},
"tags": {
"description": "Resource tags.",
"type": "object",
"additionalProperties": {
"type": "string"
}
"type": "string",
"readOnly": true
}
},
"x-ms-azure-resource": true
Expand Down Expand Up @@ -228,7 +216,7 @@
"type": "object",
"allOf": [
{
"$ref": "#/definitions/Resource"
"$ref": "#/definitions/ProxyOnlyResource"
}
],
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@
}
},
"Resource": {
"description": "Azure resource.",
"description": "Azure resource. This resource is tracked in Azure Resource Manager",
"required": [
"location"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@
}
},
"Resource": {
"description": "Azure resource.",
"description": "Azure resource. This resource is tracked in Azure Resource Manager",
"required": [
"location"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,34 @@
}
}
},
"/providers/Microsoft.Web/operations": {
"get": {
"tags": [
"Provider"
],
"operationId": "Provider_ListOperations",
"produces": [
"application/json",
"text/json"
],
"parameters": [
{
"$ref": "#/parameters/apiVersionParameter"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/CsmOperationCollection"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.Web/availableStacks": {
"get": {
"tags": [
Expand Down Expand Up @@ -72,9 +100,166 @@
}
},
"definitions": {
"CsmOperationCollection": {
"description": "Collection of Azure resource manager operation metadata.",
"required": [
"value"
],
"type": "object",
"properties": {
"value": {
"description": "Collection of resources.",
"type": "array",
"items": {
"$ref": "#/definitions/CsmOperationDescription"
}
},
"nextLink": {
"description": "Link to next page of resources.",
"type": "string"
}
}
},
"CsmOperationDescription": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"display": {
"$ref": "#/definitions/CsmOperationDisplay"
},
"origin": {
"type": "string"
},
"properties": {
"$ref": "#/definitions/CsmOperationDescriptionProperties"
}
}
},
"CsmOperationDescriptionProperties": {
"type": "object",
"properties": {
"serviceSpecification": {
"$ref": "#/definitions/ServiceSpecification"
}
}
},
"CsmOperationDisplay": {
"type": "object",
"properties": {
"provider": {
"type": "string"
},
"resource": {
"type": "string"
},
"operation": {
"type": "string"
},
"description": {
"type": "string"
}
}
},
"Dimension": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"displayName": {
"type": "string"
},
"internalName": {
"type": "string"
},
"toBeExportedForShoebox": {
"type": "boolean"
}
}
},
"MetricAvailability": {
"type": "object",
"properties": {
"timeGrain": {
"type": "string"
},
"blobDuration": {
"type": "string"
}
}
},
"MetricSpecification": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"displayName": {
"type": "string"
},
"displayDescription": {
"type": "string"
},
"unit": {
"type": "string"
},
"aggregationType": {
"type": "string"
},
"supportsInstanceLevelAggregation": {
"type": "boolean"
},
"enableRegionalMdmAccount": {
"type": "boolean"
},
"sourceMdmAccount": {
"type": "string"
},
"sourceMdmNamespace": {
"type": "string"
},
"metricFilterPattern": {
"type": "string"
},
"fillGapWithZero": {
"type": "boolean"
},
"isInternal": {
"type": "boolean"
},
"dimensions": {
"type": "array",
"items": {
"$ref": "#/definitions/Dimension"
}
},
"category": {
"type": "string"
},
"availabilities": {
"type": "array",
"items": {
"$ref": "#/definitions/MetricAvailability"
}
}
}
},
"Object": {
"type": "object",
"properties": {}
},
"ServiceSpecification": {
"type": "object",
"properties": {
"metricSpecifications": {
"type": "array",
"items": {
"$ref": "#/definitions/MetricSpecification"
}
}
}
}
},
"parameters": {
Expand Down
Loading