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

Updating Examples for SAP Trans #21874

Merged
merged 4 commits into from
Dec 15, 2022
Merged
Show file tree
Hide file tree
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 @@ -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"
},
shreyks marked this conversation as resolved.
Show resolved Hide resolved
"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"
shreyks marked this conversation as resolved.
Show resolved Hide resolved
}
},
"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