Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Short lived app support #26958

Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -11239,6 +11239,19 @@
"description": "App resource properties payload",
"type": "object",
"properties": {
"type": {
"description": "The type of App, whether it's long running app or short lived app",
"enum": [
"LongRunning",
"ShortLived"
],
"type": "string",
"default": "LongRunning",
"x-ms-enum": {
"name": "AppResourceType",
"modelAsString": true
}
},
"public": {
"description": "Indicates whether the App exposes public endpoint",
"type": "boolean"
Expand Down Expand Up @@ -12780,6 +12793,11 @@
"type": "string",
"readOnly": true
},
"endTime": {
"description": "End time of the deployment instance",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: just curious will this property be valid for both long running and short lived app?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it's applicable for both.

"type": "string",
"readOnly": true
},
"zone": {
"description": "Availability zone information of the deployment instance",
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"parameters": {
"appResource": {
"properties": {
"type": "LongRunning",
"public": true,
"httpsOnly": false,
"enableEndToEndTLS": false,
Expand Down Expand Up @@ -77,6 +78,7 @@
"200": {
"body": {
"properties": {
"type": "LongRunning",
"public": true,
"url": "myapp.myservice.azuremicroservices.io",
"provisioningState": "Succeeded",
Expand Down Expand Up @@ -151,6 +153,7 @@
"201": {
"body": {
"properties": {
"type": "LongRunning",
"public": true,
"url": "myapp.myservice.azuremicroservices.io",
"provisioningState": "Creating",
Expand Down Expand Up @@ -225,6 +228,7 @@
"202": {
"body": {
"properties": {
"type": "LongRunning",
"public": true,
"url": "myapp.myservice.azuremicroservices.io",
"provisioningState": "Updating",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"parameters": {
"appResource": {
"properties": {
"type": "LongRunning",
"public": true,
"httpsOnly": false,
"enableEndToEndTLS": false,
Expand Down Expand Up @@ -78,6 +79,7 @@
"200": {
"body": {
"properties": {
"type": "LongRunning",
"public": true,
"url": "myapp.myservice.private.azuremicroservices.io",
"provisioningState": "Succeeded",
Expand Down Expand Up @@ -154,6 +156,7 @@
"201": {
"body": {
"properties": {
"type": "LongRunning",
"public": true,
"url": "myapp.myservice.private.azuremicroservices.io",
"provisioningState": "Creating",
Expand Down Expand Up @@ -230,6 +233,7 @@
"202": {
"body": {
"properties": {
"type": "LongRunning",
"public": true,
"url": "myapp.myservice.private.azuremicroservices.io",
"provisioningState": "Updating",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"200": {
"body": {
"properties": {
"type": "LongRunning",
"public": true,
"url": "myapp.myservice.azuremicroservices.io",
"provisioningState": "Succeeded",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"200": {
"body": {
"properties": {
"type": "LongRunning",
"public": true,
"url": "myapp.myservice.private.azuremicroservices.io",
"provisioningState": "Succeeded",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"value": [
{
"properties": {
"type": "LongRunning",
"public": true,
"url": "myapp.myservice.azuremicroservices.io",
"provisioningState": "Succeeded",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"value": [
{
"properties": {
"type": "LongRunning",
"public": true,
"url": "myapp.myservice.private.azuremicroservices.io",
"provisioningState": "Succeeded",
Expand Down