Skip to content

Commit

Permalink
Updating Examples for SAP Trans (Azure#21874)
Browse files Browse the repository at this point in the history
* Updating examples

* Updated payload example

* Updating payloads

* Updating descriptions

Co-authored-by: Shreyas Kottukkal <skottukkal@microsoft.com>
  • Loading branch information
2 people authored and anandanthony committed Dec 16, 2022
1 parent 20cfb95 commit 448b1cb
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,14 +287,14 @@
"Create Infrastructure only for Single Server System": {
"$ref": "./examples/sapvirtualinstances/SAPVirtualInstances_Create_SingleServer.json"
},
"Create Infrastructure without SAP Trans Fileshare": {
"$ref": "./examples/sapvirtualinstances/SAPVirtualInstances_Create_Distributed_SkipTransMount.json"
"Create Infrastructure without SAP Transport Directory Fileshare": {
"$ref": "./examples/sapvirtualinstances/SAPVirtualInstances_Create_Distributed_SkipTransport.json"
},
"Create Infrastructure with a new SAP Trans Fileshare": {
"$ref": "./examples/sapvirtualinstances/SAPVirtualInstances_Create_Distributed_CreateTrans.json"
"Create Infrastructure with a new SAP Transport Directory Fileshare": {
"$ref": "./examples/sapvirtualinstances/SAPVirtualInstances_Create_Distributed_CreateTransport.json"
},
"Create Infrastructure with an existing SAP Trans Fileshare": {
"$ref": "./examples/sapvirtualinstances/SAPVirtualInstances_Create_Distributed_MountTrans.json"
"Create Infrastructure with an existing SAP Transport Directory Fileshare": {
"$ref": "./examples/sapvirtualinstances/SAPVirtualInstances_Create_Distributed_MountTransport.json"
},
"Detect SAP Software Installation on a Single Server System": {
"$ref": "./examples/sapvirtualinstances/SAPVirtualInstances_DetectInstallation_SingleServer.json"
Expand Down Expand Up @@ -2531,7 +2531,7 @@
},
"SkipFileShareConfiguration": {
"x-ms-discriminator-value": "Skip",
"description": "Gets or sets the skip file share configuration",
"description": "Gets or sets the file share configuration for scenarios where transport directory fileshare is not created or required.",
"type": "object",
"allOf": [
{
Expand All @@ -2541,7 +2541,7 @@
},
"CreateAndMountFileShareConfiguration": {
"x-ms-discriminator-value": "CreateAndMount",
"description": "Gets or sets the file share configuration for file share created with the VIS case.",
"description": "Gets or sets the file share configuration where the transport directory fileshare is created and mounted as a part of the create infra flow.",
"type": "object",
"allOf": [
{
Expand All @@ -2561,7 +2561,7 @@
},
"MountFileShareConfiguration": {
"x-ms-discriminator-value": "Mount",
"description": "Gets or sets the file share configuration for externally mounted cases.",
"description": "Gets or sets the file share configuration where the transport directory fileshare already exists, and user wishes to mount the fileshare as a part of the create infra flow.",
"type": "object",
"allOf": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"appResourceGroup": "X00-RG",
"storageConfiguration": {
"transportFileShareConfiguration": {
"configurationType": "Mount",
"id": "fileshareID",
"privateEndpointId": "pe-arm-id"
"configurationType": "CreateAndMount",
"resourceGroup": "rgName",
"storageAccountName": "storageName"
}
},
"centralServer": {
Expand Down Expand Up @@ -131,9 +131,9 @@
"appResourceGroup": "X00-RG",
"storageConfiguration": {
"transportFileShareConfiguration": {
"configurationType": "Mount",
"id": "fileshareID",
"privateEndpointId": "pe-arm-id"
"configurationType": "CreateAndMount",
"resourceGroup": "rgName",
"storageAccountName": "storageName"
}
},
"centralServer": {
Expand Down Expand Up @@ -244,9 +244,9 @@
"appResourceGroup": "X00-RG",
"storageConfiguration": {
"transportFileShareConfiguration": {
"configurationType": "Mount",
"id": "fileshareID",
"privateEndpointId": "pe-arm-id"
"configurationType": "CreateAndMount",
"resourceGroup": "rgName",
"storageAccountName": "storageName"
}
},
"centralServer": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"storageConfiguration": {
"transportFileShareConfiguration": {
"configurationType": "Mount",
"id": "fileshareID",
"privateEndpointId": "pe-arm-id"
"id": "/subscriptions/49d64d54-e888-4c46-a868-1936802b762c/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/storageaccountname/fileServices/default/shares/transfileshare",
"privateEndpointId": "/subscriptions/49d64d54-e888-4c46-a868-1936802b762c/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/endpoint"
}
},
"centralServer": {
Expand Down Expand Up @@ -132,8 +132,8 @@
"storageConfiguration": {
"transportFileShareConfiguration": {
"configurationType": "Mount",
"id": "fileshareID",
"privateEndpointId": "pe-arm-id"
"id": "/subscriptions/49d64d54-e888-4c46-a868-1936802b762c/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/storageaccountname/fileServices/default/shares/transfileshare",
"privateEndpointId": "/subscriptions/49d64d54-e888-4c46-a868-1936802b762c/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/endpoint"
}
},
"centralServer": {
Expand Down Expand Up @@ -245,8 +245,8 @@
"storageConfiguration": {
"transportFileShareConfiguration": {
"configurationType": "Mount",
"id": "fileshareID",
"privateEndpointId": "pe-arm-id"
"id": "/subscriptions/49d64d54-e888-4c46-a868-1936802b762c/resourceGroups/testrg/providers/Microsoft.Storage/storageAccounts/storageaccountname/fileServices/default/shares/transfileshare",
"privateEndpointId": "/subscriptions/49d64d54-e888-4c46-a868-1936802b762c/resourceGroups/testrg/providers/Microsoft.Network/privateEndpoints/endpoint"
}
},
"centralServer": {
Expand Down

0 comments on commit 448b1cb

Please sign in to comment.