-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Pushing new features in stable swagger #23071
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
Changes from 5 commits
2adf357
42b22da
33b826a
321d403
d16e06b
bcf66f6
258e4a8
982b0d3
fc83c77
8681864
d73a28a
da852a7
b3a2197
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,41 @@ | |
| "id": "test-subnet-resource-id" | ||
| }, | ||
| "applicationSharingPolicy": "Personal", | ||
| "customServices": [ | ||
| { | ||
| "name": "rstudio-workbench", | ||
| "image": { | ||
| "type": "docker", | ||
| "reference": "ghcr.io/azure/rstudio-workbench:latest" | ||
| }, | ||
| "environmentVariables": { | ||
| "RSP_LICENSE": { | ||
| "type": "local", | ||
| "value": "XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX" | ||
| } | ||
| }, | ||
| "docker": { | ||
| "privileged": true | ||
| }, | ||
| "endpoints": [ | ||
| { | ||
| "protocol": "http", | ||
| "name": "connect", | ||
| "target": 8787, | ||
| "published": 4444, | ||
| "hostIp": null | ||
| } | ||
| ], | ||
| "volumes": [ | ||
| { | ||
| "type": "bind", | ||
|
||
| "source": "/mnt/azureuser/", | ||
| "target": "/home/testuser/", | ||
| "readOnly": true | ||
| } | ||
| ] | ||
| } | ||
| ], | ||
| "sshSettings": { | ||
| "sshPublicAccess": "Disabled" | ||
| }, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| { | ||
| "parameters": { | ||
| "subscriptionId": "34adfa4f-cedf-4dc0-ba29-b6d1a69ab345", | ||
| "resourceGroupName": "testrg123", | ||
| "workspaceName": "workspaces123", | ||
| "computeName": "compute123", | ||
| "api-version": "2023-04-01", | ||
| "customServices": [ | ||
| { | ||
| "name": "rstudio-workbench", | ||
| "image": { | ||
| "type": "docker", | ||
| "reference": "ghcr.io/azure/rstudio-workbench:latest" | ||
| }, | ||
| "environmentVariables": { | ||
| "RSP_LICENSE": { | ||
| "type": "local", | ||
| "value": "XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX" | ||
| } | ||
| }, | ||
| "docker": { | ||
| "privileged": true | ||
| }, | ||
| "endpoints": [ | ||
| { | ||
| "protocol": "http", | ||
| "name": "connect", | ||
| "target": 8888, | ||
| "published": 4444, | ||
| "hostIp": null | ||
|
||
| } | ||
| ], | ||
| "volumes": [ | ||
| { | ||
| "type": "bind", | ||
| "source": "/mnt/azureuser/", | ||
| "target": "/home/azureuser/", | ||
| "readOnly": true | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| }, | ||
| "responses": { | ||
| "200": {} | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the caps are all wrong and hostIp being null has very specific meaning compared to not being present and you probably don't mean that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
share a good example file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#23071 (comment)