Skip to content

Commit

Permalink
Update the patch update sap instance property structure
Browse files Browse the repository at this point in the history
  • Loading branch information
sushantyadav-msft committed Oct 10, 2023
1 parent 5a5f9af commit 70a364a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2326,6 +2326,17 @@
},
"description": "An error response from the Virtual Instance for SAP Workload service."
},
"UpdateSAPVirtualInstanceProperties": {
"description": "Defines the properties to be updated for Virtual Instance for SAP.",
"type": "object",
"properties": {
"managedResourcesNetworkAccessType": {
"$ref": "#/definitions/ManagedResourcesNetworkAccessType",
"description": "Specifies the network access configuration for the resources that will be deployed in the Managed Resource Group. The options to choose from are Public and Private. If 'Private' is chosen, the Storage Account service tag should be enabled on the subnets in which the SAP VMs exist. This is required for establishing connectivity between VM extensions and the managed resource group storage account. This setting is currently applicable only to Storage Account. Learn more here https://go.microsoft.com/fwlink/?linkid=2247228",
"default": "Public"
}
}
},
"UpdateSAPVirtualInstanceRequest": {
"description": "Defines the request body for updating Virtual Instance for SAP.",
"type": "object",
Expand All @@ -2340,10 +2351,8 @@
"identity": {
"$ref": "../../../common-types/v1/commonTypes.json#/definitions/UserAssignedServiceIdentity"
},
"managedResourcesNetworkAccessType": {
"$ref": "#/definitions/ManagedResourcesNetworkAccessType",
"description": "Specifies the network access configuration for the resources that will be deployed in the Managed Resource Group. The options to choose from are Public and Private. If 'Private' is chosen, the Storage Account service tag should be enabled on the subnets in which the SAP VMs exist. This is required for establishing connectivity between VM extensions and the managed resource group storage account. This setting is currently applicable only to Storage Account. Learn more here https://go.microsoft.com/fwlink/?linkid=2247228",
"default": "Public"
"properties": {
"$ref": "#/definitions/UpdateSAPVirtualInstanceProperties"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"identity": {
"type": "None"
},
"managedResourcesNetworkAccessType": "Private"
"properties": {
"managedResourcesNetworkAccessType": "Private"
}
}
},
"responses": {
Expand Down

0 comments on commit 70a364a

Please sign in to comment.