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 @@ -49,7 +49,7 @@
},
"properties": {
"extensionType": "azuremonitor-containers",
"autoUpgradeMinorVersion": true,
"autoUpgradeMinorVersion": false,
"releaseTrain": "Preview",
"version": "0.1.4",
"scope": {
Expand All @@ -62,6 +62,7 @@
"omsagent.env.clusterName": "clusterName1"
},
"provisioningState": "Creating",
"installedVersion": null,
"statuses": []
}
}
Expand All @@ -86,7 +87,7 @@
},
"properties": {
"extensionType": "azuremonitor-containers",
"autoUpgradeMinorVersion": true,
"autoUpgradeMinorVersion": false,
"releaseTrain": "Preview",
"version": "0.1.4",
"scope": {
Expand All @@ -98,7 +99,8 @@
"omsagent.secret.wsid": "a38cef99-5a89-52ed-b6db-22095c23664b",
"omsagent.env.clusterName": "clusterName1"
},
"provisioningState": "Creating",
"provisioningState": "Succeeded",
"installedVersion": "0.1.4",
"statuses": []
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"properties": {
"extensionType": "azuremonitor-containers",
"autoUpgradeMinorVersion": true,
"autoUpgradeMinorVersion": false,
"releaseTrain": "Preview",
"version": "0.1.4",
"scope": {
Expand All @@ -38,7 +38,8 @@
"omsagent.secret.wsid": "a38cef99-5a89-52ed-b6db-22095c23664b",
"omsagent.env.clusterName": "clusterName1"
},
"provisioningState": "Creating",
"provisioningState": "Succeeded",
"installedVersion": "0.1.4",
"statuses": []
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"properties": {
"extensionType": "azuremonitor-containers",
"autoUpgradeMinorVersion": true,
"autoUpgradeMinorVersion": false,
"releaseTrain": "Preview",
"version": "0.1.4",
"scope": {
Expand All @@ -37,7 +37,8 @@
"omsagent.secret.wsid": "a38cef99-5a89-52ed-b6db-22095c23664b",
"omsagent.env.clusterName": "clusterName1"
},
"provisioningState": "Creating",
"provisioningState": "Succeeded",
"installedVersion": "0.1.4",
"statuses": []
}
},
Expand All @@ -55,16 +56,17 @@
},
"properties": {
"extensionType": "Microsoft.RecoveryServices/recoveryVault",
"autoUpgradeMinorVersion": false,
"autoUpgradeMinorVersion": true,
"releaseTrain": "Stable",
"version": "1.0.1",
"version": null,
"scope": {
"cluster": {
"releaseNamespace": "myKVNamespace"
}
},
"configurationSettings": {},
"provisioningState": "Creating",
"provisioningState": "Succeeded",
"installedVersion": "1.0.1",
"statuses": []
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -492,8 +492,9 @@
"default": "Stable"
},
"version": {
"description": "Version of the extension for this extension, if it is 'pinned' to a specific version. autoUpgradeMinorVersion must be 'false'.",
"type": "string"
"description": "User-specified version of the extension for this extension to 'pin'. To use 'version', autoUpgradeMinorVersion must be 'false'.",
"type": "string",
"x-nullable": true
},
"scope": {
"description": "Scope at which the extension is installed.",
Expand All @@ -516,6 +517,12 @@
"type": "string"
}
},
"installedVersion": {
"description": "Installed version of the extension.",
"type": "string",
"readOnly": true,
"x-nullable": true
},
"provisioningState": {
"description": "Status of installation of this extension.",
"type": "string",
Expand Down Expand Up @@ -640,7 +647,8 @@
},
"version": {
"description": "Version of the extension for this extension, if it is 'pinned' to a specific version. autoUpgradeMinorVersion must be 'false'.",
"type": "string"
"type": "string",
"x-nullable": true
},
"configurationSettings": {
"description": "Configuration settings, as name-value pairs for configuring this extension.",
Expand Down