-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Expand file tree
/
Copy pathDeployments_Get_AutoScale.json
More file actions
62 lines (62 loc) · 2.18 KB
/
Copy pathDeployments_Get_AutoScale.json
File metadata and controls
62 lines (62 loc) · 2.18 KB
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
{
"parameters": {
"api-version": "2025-03-01-preview",
"deploymentName": "myDeployment",
"resourceGroupName": "myResourceGroup",
"subscriptionId": "00000000-0000-0000-0000-000000000000"
},
"responses": {
"200": {
"body": {
"name": "myDeployment",
"type": "nginx.nginxplus/deployments",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Nginx.NginxPlus/nginxDeployments/myDeployment",
"location": "westus",
"properties": {
"autoUpgradeProfile": {
"upgradeChannel": "stable"
},
"networkProfile": {
"frontEndIPConfiguration": {
"privateIPAddresses": [
{
"privateIPAddress": "1.1.1.1",
"privateIPAllocationMethod": "Static",
"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet"
}
],
"publicIPAddresses": [
{
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/publicIPAddresses/myPublicIPAddress"
}
]
},
"networkInterfaceConfiguration": {
"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet"
}
},
"nginxVersion": "nginx-1.19.6",
"provisioningState": "Succeeded",
"scalingProperties": {
"autoScaleSettings": {
"profiles": [
{
"name": "ExampleProfile",
"capacity": {
"max": 50,
"min": 10
}
}
]
}
},
"userProfile": {
"preferredEmail": "example@example.email"
}
}
}
}
},
"operationId": "Deployments_Get",
"title": "Deployments_Get_AutoScale"
}