Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.

Commit 19a4a9a

Browse files
authored
Merge pull request #2583 from test-repo-billy/long-path
add compute
2 parents 161f2cd + ee086b1 commit 19a4a9a

File tree

2,983 files changed

+561772
-366
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,983 files changed

+561772
-366
lines changed

specification/compute/resource-manager/Microsoft.Compute/CloudserviceRP/preview/2020-10-01-preview/cloudService.json

Lines changed: 2161 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
{
2+
"parameters": {
3+
"subscriptionId": "{subscription-id}",
4+
"resourceGroupName": "ConstosoRG",
5+
"cloudServiceName": "{cs-name}",
6+
"api-version": "2020-10-01-preview",
7+
"parameters": {
8+
"properties": {
9+
"networkProfile": {
10+
"loadBalancerConfigurations": [
11+
{
12+
"properties": {
13+
"frontendIPConfigurations": [
14+
{
15+
"properties": {
16+
"publicIPAddress": {
17+
"id": "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip"
18+
}
19+
},
20+
"name": "contosofe"
21+
}
22+
]
23+
},
24+
"name": "contosolb"
25+
}
26+
]
27+
},
28+
"roleProfile": {
29+
"roles": [
30+
{
31+
"sku": {
32+
"name": "Standard_D1_v2",
33+
"capacity": 1,
34+
"tier": "Standard"
35+
},
36+
"name": "ContosoFrontend"
37+
},
38+
{
39+
"sku": {
40+
"name": "Standard_D1_v2",
41+
"capacity": 1,
42+
"tier": "Standard"
43+
},
44+
"name": "ContosoBackend"
45+
}
46+
]
47+
},
48+
"configuration": "{ServiceConfiguration}",
49+
"packageUrl": "{PackageUrl}",
50+
"upgradeMode": "Auto"
51+
},
52+
"location": "westus"
53+
}
54+
},
55+
"responses": {
56+
"200": {
57+
"body": {
58+
"name": "{cs-name}",
59+
"id": "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Compute/cloudServices/{cs-name}",
60+
"type": "Microsoft.Compute/cloudServices",
61+
"location": "westus",
62+
"properties": {
63+
"configuration": "{ServiceConfiguration}",
64+
"packageUrl": "{PackageUrl}",
65+
"upgradeMode": "Auto",
66+
"roleProfile": {
67+
"roles": [
68+
{
69+
"name": "ContosoFrontend",
70+
"sku": {
71+
"name": "Standard_D1_v2",
72+
"tier": "Standard",
73+
"capacity": 1
74+
}
75+
},
76+
{
77+
"name": "ContosoBackend",
78+
"sku": {
79+
"name": "Standard_D1_v2",
80+
"tier": "Standard",
81+
"capacity": 1
82+
}
83+
}
84+
]
85+
},
86+
"osProfile": {
87+
"secrets": []
88+
},
89+
"networkProfile": {
90+
"loadBalancerConfigurations": [
91+
{
92+
"name": "contosolb",
93+
"properties": {
94+
"frontendIPConfigurations": [
95+
{
96+
"name": "contosofe",
97+
"properties": {
98+
"publicIPAddress": {
99+
"id": "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip"
100+
}
101+
}
102+
}
103+
]
104+
}
105+
}
106+
]
107+
},
108+
"provisioningState": "Updating",
109+
"uniqueId": "7f3edf91-cb34-4a3e-971a-177dc3dd43cb"
110+
}
111+
}
112+
},
113+
"201": {
114+
"body": {
115+
"name": "{cs-name}",
116+
"id": "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Compute/cloudServices/{cs-name}",
117+
"type": "Microsoft.Compute/cloudServices",
118+
"location": "westus",
119+
"properties": {
120+
"configuration": "{ServiceConfiguration}",
121+
"packageUrl": "{PackageUrl}",
122+
"upgradeMode": "Auto",
123+
"roleProfile": {
124+
"roles": [
125+
{
126+
"name": "ContosoFrontend",
127+
"sku": {
128+
"name": "Standard_D1_v2",
129+
"tier": "Standard",
130+
"capacity": 1
131+
}
132+
},
133+
{
134+
"name": "ContosoBackend",
135+
"sku": {
136+
"name": "Standard_D1_v2",
137+
"tier": "Standard",
138+
"capacity": 1
139+
}
140+
}
141+
]
142+
},
143+
"osProfile": {
144+
"secrets": []
145+
},
146+
"networkProfile": {
147+
"loadBalancerConfigurations": [
148+
{
149+
"name": "contosolb",
150+
"properties": {
151+
"frontendIPConfigurations": [
152+
{
153+
"name": "contosofe",
154+
"properties": {
155+
"publicIPAddress": {
156+
"id": "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/contosopublicip"
157+
}
158+
}
159+
}
160+
]
161+
}
162+
}
163+
]
164+
},
165+
"provisioningState": "Creating",
166+
"uniqueId": "7f3edf91-cb34-4a3e-971a-177dc3dd43cb"
167+
}
168+
}
169+
}
170+
}
171+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
{
2+
"parameters": {
3+
"subscriptionId": "{subscription-id}",
4+
"resourceGroupName": "ConstosoRG",
5+
"cloudServiceName": "{cs-name}",
6+
"api-version": "2020-10-01-preview",
7+
"parameters": {
8+
"location": "westus",
9+
"properties": {
10+
"networkProfile": {
11+
"loadBalancerConfigurations": [
12+
{
13+
"properties": {
14+
"frontendIPConfigurations": [
15+
{
16+
"properties": {
17+
"publicIPAddress": {
18+
"id": "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/myPublicIP"
19+
}
20+
},
21+
"name": "myfe"
22+
}
23+
]
24+
},
25+
"name": "myLoadBalancer"
26+
}
27+
]
28+
},
29+
"roleProfile": {
30+
"roles": [
31+
{
32+
"sku": {
33+
"name": "Standard_D1_v2",
34+
"capacity": 1,
35+
"tier": "Standard"
36+
},
37+
"name": "ContosoFrontend"
38+
}
39+
]
40+
},
41+
"configuration": "{ServiceConfiguration}",
42+
"packageUrl": "{PackageUrl}",
43+
"upgradeMode": "Auto"
44+
}
45+
}
46+
},
47+
"responses": {
48+
"200": {
49+
"body": {
50+
"name": "{cs-name}",
51+
"id": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/ConstosoRG/providers/Microsoft.Compute/cloudServices/{cs-name}",
52+
"type": "Microsoft.Compute/cloudServices",
53+
"location": "westus",
54+
"properties": {
55+
"packageUrl": "{PackageUrl}",
56+
"configuration": "{ServiceConfiguration}",
57+
"upgradeMode": "Auto",
58+
"roleProfile": {
59+
"roles": [
60+
{
61+
"name": "ContosoFrontend",
62+
"sku": {
63+
"name": "Standard_D1_v2",
64+
"tier": "Standard",
65+
"capacity": 1
66+
}
67+
}
68+
]
69+
},
70+
"osProfile": {
71+
"secrets": []
72+
},
73+
"networkProfile": {
74+
"loadBalancerConfigurations": [
75+
{
76+
"properties": {
77+
"frontendIPConfigurations": [
78+
{
79+
"properties": {
80+
"publicIPAddress": {
81+
"id": "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/myPublicIP"
82+
}
83+
},
84+
"name": "myfe"
85+
}
86+
]
87+
},
88+
"name": "myLoadBalancer"
89+
}
90+
]
91+
},
92+
"provisioningState": "Updating",
93+
"uniqueId": "14d10b45-ced7-42ef-a406-50a3df2cea7d"
94+
}
95+
}
96+
},
97+
"201": {
98+
"body": {
99+
"name": "{cs-name}",
100+
"id": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/resourceGroups/ConstosoRG/providers/Microsoft.Compute/cloudServices/{cs-name}",
101+
"type": "Microsoft.Compute/cloudServices",
102+
"location": "westus",
103+
"properties": {
104+
"packageUrl": "{PackageUrl}",
105+
"configuration": "{ServiceConfiguration}",
106+
"upgradeMode": "Auto",
107+
"roleProfile": {
108+
"roles": [
109+
{
110+
"name": "ContosoFrontend",
111+
"sku": {
112+
"name": "Standard_D1_v2",
113+
"tier": "Standard",
114+
"capacity": 1
115+
}
116+
}
117+
]
118+
},
119+
"osProfile": {
120+
"secrets": []
121+
},
122+
"networkProfile": {
123+
"loadBalancerConfigurations": [
124+
{
125+
"properties": {
126+
"frontendIPConfigurations": [
127+
{
128+
"properties": {
129+
"publicIPAddress": {
130+
"id": "/subscriptions/{subscription-id}/resourceGroups/ConstosoRG/providers/Microsoft.Network/publicIPAddresses/myPublicIP"
131+
}
132+
},
133+
"name": "myfe"
134+
}
135+
]
136+
},
137+
"name": "myLoadBalancer"
138+
}
139+
]
140+
},
141+
"provisioningState": "Creating",
142+
"uniqueId": "14d10b45-ced7-42ef-a406-50a3df2cea7d"
143+
}
144+
}
145+
}
146+
}
147+
}

0 commit comments

Comments
 (0)