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

Oct 2023: add serverless compute settings #26012

Merged
Changes from all commits
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 @@ -2498,14 +2498,9 @@
],
"description": "The list of private endpoint connections in the workspace."
},
"serverlessComputeCustomSubnet": {
"description": "The resource ID of an existing virtual network subnet in which serverless compute nodes should be deployed",
"type": "string",
"format": "arm-id"
},
"serverlessComputeNoPublicIP": {
"description": "The flag to signal if serverless compute nodes deployed in custom vNet would have no public IP addresses for a workspace with private endpoint",
"type": "boolean"
"serverlessComputeSettings": {
"description": "Settings for serverless compute created in the workspace",
"$ref": "#/definitions/ServerlessComputeSettings"
},
"sharedPrivateLinkResources": {
"type": "array",
Expand Down Expand Up @@ -2605,14 +2600,9 @@
"description": "The user assigned identity resource id that represents the workspace identity.",
"type": "string"
},
"serverlessComputeCustomSubnet": {
"description": "The resource ID of an existing virtual network subnet in which serverless compute nodes should be deployed",
"type": "string",
"format": "arm-id"
},
"serverlessComputeNoPublicIP": {
"description": "The flag to signal if serverless compute nodes deployed in custom vNet would have no public IP addresses for a workspace with private endpoint",
"type": "boolean"
"serverlessComputeSettings": {
"description": "Settings for serverless compute created in the workspace",
"$ref": "#/definitions/ServerlessComputeSettings"
},
"publicNetworkAccess": {
"type": "string",
Expand Down Expand Up @@ -6077,6 +6067,20 @@
"tenantId"
]
},
"ServerlessComputeSettings": {
"type": "object",
"properties": {
"serverlessComputeCustomSubnet": {
"description": "The resource ID of an existing virtual network subnet in which serverless compute nodes should be deployed",
"type": "string",
"format": "arm-id"
},
"serverlessComputeNoPublicIP": {
"description": "The flag to signal if serverless compute nodes deployed in custom vNet would have no public IP addresses for a workspace with private endpoint",
"type": "boolean"
}
}
},
"ServiceManagedResourcesSettings": {
"type": "object",
"properties": {
Expand Down