1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
from azure.identity import DefaultAzureCredential
from azure.mgmt.monitor import MonitorManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-monitor
# USAGE
python patch_autoscale_setting.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = MonitorManagementClient(
credential=DefaultAzureCredential(),
subscription_id="b67f7fec-69fc-4974-9099-a26bd6ffeda3",
)
response = client.autoscale_settings.update(
resource_group_name="TestingMetricsScaleSet",
autoscale_setting_name="MySetting",
autoscale_setting_resource={
"properties": {
"enabled": True,
"notifications": [
{
"email": {
"customEmails": ["gu@ms.com", "ge@ns.net"],
"sendToSubscriptionAdministrator": True,
"sendToSubscriptionCoAdministrators": True,
},
"operation": "Scale",
"webhooks": [{"properties": {}, "serviceUri": "http://myservice.com"}],
}
],
"predictiveAutoscalePolicy": {"scaleMode": "Enabled"},
"profiles": [
{
"capacity": {"default": "1", "maximum": "10", "minimum": "1"},
"fixedDate": {
"end": "2015-03-05T14:30:00Z",
"start": "2015-03-05T14:00:00Z",
"timeZone": "UTC",
},
"name": "adios",
"rules": [
{
"metricTrigger": {
"dividePerInstance": False,
"metricName": "Percentage CPU",
"metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
"operator": "GreaterThan",
"statistic": "Average",
"threshold": 10,
"timeAggregation": "Average",
"timeGrain": "PT1M",
"timeWindow": "PT5M",
},
"scaleAction": {
"cooldown": "PT5M",
"direction": "Increase",
"type": "ChangeCount",
"value": "1",
},
},
{
"metricTrigger": {
"dividePerInstance": False,
"metricName": "Percentage CPU",
"metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
"operator": "GreaterThan",
"statistic": "Average",
"threshold": 15,
"timeAggregation": "Average",
"timeGrain": "PT2M",
"timeWindow": "PT5M",
},
"scaleAction": {
"cooldown": "PT6M",
"direction": "Decrease",
"type": "ChangeCount",
"value": "2",
},
},
],
},
{
"capacity": {"default": "1", "maximum": "10", "minimum": "1"},
"name": "saludos",
"recurrence": {
"frequency": "Week",
"schedule": {"days": ["1"], "hours": [5], "minutes": [15], "timeZone": "UTC"},
},
"rules": [
{
"metricTrigger": {
"dividePerInstance": False,
"metricName": "Percentage CPU",
"metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
"operator": "GreaterThan",
"statistic": "Average",
"threshold": 10,
"timeAggregation": "Average",
"timeGrain": "PT1M",
"timeWindow": "PT5M",
},
"scaleAction": {
"cooldown": "PT5M",
"direction": "Increase",
"type": "ChangeCount",
"value": "1",
},
},
{
"metricTrigger": {
"dividePerInstance": False,
"metricName": "Percentage CPU",
"metricResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
"operator": "GreaterThan",
"statistic": "Average",
"threshold": 15,
"timeAggregation": "Average",
"timeGrain": "PT2M",
"timeWindow": "PT5M",
},
"scaleAction": {
"cooldown": "PT6M",
"direction": "Decrease",
"type": "ChangeCount",
"value": "2",
},
},
],
},
],
"targetResourceUri": "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
},
"tags": {"key1": "value1"},
},
)
print(response)
# x-ms-original-file: specification/monitor/resource-manager/Microsoft.Insights/stable/2022-10-01/examples/patchAutoscaleSetting.json
if __name__ == "__main__":
main()
|