Skip to content

Commit 73efa16

Browse files
authored
[Container Apps] Update Runtime to add DotNet support (#28001)
* [Container Apps] Update Runtime to add DotNet support * Remove default value * Rename dotNet to dotnet
1 parent 1b7ce7e commit 73efa16

File tree

9 files changed

+49
-0
lines changed

9 files changed

+49
-0
lines changed

specification/app/resource-manager/Microsoft.App/preview/2024-02-02-preview/ContainerApps.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -873,6 +873,16 @@
873873
"type": "boolean"
874874
}
875875
}
876+
},
877+
"dotnet": {
878+
"description": ".NET app configuration",
879+
"type": "object",
880+
"properties": {
881+
"autoConfigureDataProtection": {
882+
"description": "Auto configure the ASP.NET Core Data Protection feature",
883+
"type": "boolean"
884+
}
885+
}
876886
}
877887
}
878888
},

specification/app/resource-manager/Microsoft.App/preview/2024-02-02-preview/examples/ContainerApps_CreateOrUpdate.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@
9494
"runtime": {
9595
"java": {
9696
"enableMetrics": true
97+
},
98+
"dotnet": {
99+
"autoConfigureDataProtection": true
97100
}
98101
},
99102
"maxInactiveRevisions": 10,
@@ -266,6 +269,9 @@
266269
"runtime": {
267270
"java": {
268271
"enableMetrics": true
272+
},
273+
"dotnet": {
274+
"autoConfigureDataProtection": true
269275
}
270276
}
271277
},
@@ -396,6 +402,9 @@
396402
"runtime": {
397403
"java": {
398404
"enableMetrics": true
405+
},
406+
"dotnet": {
407+
"autoConfigureDataProtection": true
399408
}
400409
}
401410
},

specification/app/resource-manager/Microsoft.App/preview/2024-02-02-preview/examples/ContainerApps_CreateOrUpdate_ConnectedEnvironment.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@
9797
"runtime": {
9898
"java": {
9999
"enableMetrics": true
100+
},
101+
"dotnet": {
102+
"autoConfigureDataProtection": true
100103
}
101104
},
102105
"maxInactiveRevisions": 10
@@ -235,6 +238,9 @@
235238
"runtime": {
236239
"java": {
237240
"enableMetrics": true
241+
},
242+
"dotnet": {
243+
"autoConfigureDataProtection": true
238244
}
239245
}
240246
},
@@ -345,6 +351,9 @@
345351
"runtime": {
346352
"java": {
347353
"enableMetrics": true
354+
},
355+
"dotnet": {
356+
"autoConfigureDataProtection": true
348357
}
349358
}
350359
},

specification/app/resource-manager/Microsoft.App/preview/2024-02-02-preview/examples/ContainerApps_Get.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@
7979
"runtime": {
8080
"java": {
8181
"enableMetrics": true
82+
},
83+
"dotnet": {
84+
"autoConfigureDataProtection": true
8285
}
8386
},
8487
"maxInactiveRevisions": 10,

specification/app/resource-manager/Microsoft.App/preview/2024-02-02-preview/examples/ContainerApps_ListByResourceGroup.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@
8080
"runtime": {
8181
"java": {
8282
"enableMetrics": true
83+
},
84+
"dotnet": {
85+
"autoConfigureDataProtection": true
8386
}
8487
},
8588
"maxInactiveRevisions": 10

specification/app/resource-manager/Microsoft.App/preview/2024-02-02-preview/examples/ContainerApps_ListBySubscription.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@
7979
"runtime": {
8080
"java": {
8181
"enableMetrics": true
82+
},
83+
"dotnet": {
84+
"autoConfigureDataProtection": true
8285
}
8386
},
8487
"maxInactiveRevisions": 10,

specification/app/resource-manager/Microsoft.App/preview/2024-02-02-preview/examples/ContainerApps_Patch.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@
6464
"runtime": {
6565
"java": {
6666
"enableMetrics": true
67+
},
68+
"dotnet": {
69+
"autoConfigureDataProtection": true
6770
}
6871
},
6972
"maxInactiveRevisions": 10,
@@ -205,6 +208,9 @@
205208
"runtime": {
206209
"java": {
207210
"enableMetrics": true
211+
},
212+
"dotnet": {
213+
"autoConfigureDataProtection": true
208214
}
209215
},
210216
"maxInactiveRevisions": 10

specification/app/resource-manager/Microsoft.App/preview/2024-02-02-preview/examples/ContainerApps_Start.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@
7676
"runtime": {
7777
"java": {
7878
"enableMetrics": true
79+
},
80+
"dotnet": {
81+
"autoConfigureDataProtection": true
7982
}
8083
},
8184
"maxInactiveRevisions": 10

specification/app/resource-manager/Microsoft.App/preview/2024-02-02-preview/examples/ContainerApps_Stop.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@
7676
"runtime": {
7777
"java": {
7878
"enableMetrics": true
79+
},
80+
"dotnet": {
81+
"autoConfigureDataProtection": true
7982
}
8083
},
8184
"maxInactiveRevisions": 10

0 commit comments

Comments
 (0)