-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Remove deprecated 'services' related paths, definitions, and …
…examples" This reverts commit 45b12ea.
- Loading branch information
Nate Malubay
committed
Nov 29, 2023
1 parent
45b12ea
commit 3ed0a6c
Showing
16 changed files
with
2,524 additions
and
610 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
...er/Microsoft.HealthcareApis/stable/2023-12-01/examples/legacy/PrivateLinkResourceGet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2023-12-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rgname", | ||
"resourceName": "service1", | ||
"groupName": "fhir" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.HealthcareApis/services/service1/privateLinkResources/fhir", | ||
"name": "fhir", | ||
"type": "Microsoft.HealthcareApis/services/privateLinkResources", | ||
"properties": { | ||
"groupId": "fhir", | ||
"requiredMembers": [ | ||
"fhir" | ||
], | ||
"requiredZoneNames": [ | ||
"privatelink.azurehealthcareapis.com" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
...t.HealthcareApis/stable/2023-12-01/examples/legacy/PrivateLinkResourcesListByService.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2023-12-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rgname", | ||
"resourceName": "service1" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.HealthcareApis/services/service1/privateLinkResources/fhir", | ||
"name": "fhir", | ||
"type": "Microsoft.HealthcareApis/services/privateLinkResources", | ||
"properties": { | ||
"groupId": "fhir", | ||
"requiredMembers": [ | ||
"fhir" | ||
], | ||
"requiredZoneNames": [ | ||
"privatelink.azurehealthcareapis.com" | ||
] | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
177 changes: 177 additions & 0 deletions
177
...rce-manager/Microsoft.HealthcareApis/stable/2023-12-01/examples/legacy/ServiceCreate.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
{ | ||
"parameters": { | ||
"resourceName": "service1", | ||
"resourceGroupName": "rg1", | ||
"api-version": "2023-12-01", | ||
"subscriptionId": "subid", | ||
"serviceDescription": { | ||
"location": "westus2", | ||
"tags": {}, | ||
"kind": "fhir-R4", | ||
"properties": { | ||
"accessPolicies": [ | ||
{ | ||
"objectId": "c487e7d1-3210-41a3-8ccc-e9372b78da47" | ||
}, | ||
{ | ||
"objectId": "5b307da8-43d4-492b-8b66-b0294ade872f" | ||
} | ||
], | ||
"cosmosDbConfiguration": { | ||
"offerThroughput": 1000, | ||
"keyVaultKeyUri": "https://my-vault.vault.azure.net/keys/my-key" | ||
}, | ||
"authenticationConfiguration": { | ||
"authority": "https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc", | ||
"audience": "https://azurehealthcareapis.com", | ||
"smartProxyEnabled": true | ||
}, | ||
"corsConfiguration": { | ||
"origins": [ | ||
"*" | ||
], | ||
"headers": [ | ||
"*" | ||
], | ||
"methods": [ | ||
"DELETE", | ||
"GET", | ||
"OPTIONS", | ||
"PATCH", | ||
"POST", | ||
"PUT" | ||
], | ||
"maxAge": 1440, | ||
"allowCredentials": false | ||
}, | ||
"exportConfiguration": { | ||
"storageAccountName": "existingStorageAccount" | ||
}, | ||
"privateEndpointConnections": [], | ||
"publicNetworkAccess": "Disabled" | ||
}, | ||
"identity": { | ||
"type": "SystemAssigned" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.HealthcareApis/services/service1", | ||
"name": "service1", | ||
"location": "West US 2", | ||
"type": "Microsoft.HealthcareApis/services", | ||
"kind": "fhir-R4", | ||
"etag": "etagvalue", | ||
"tags": {}, | ||
"properties": { | ||
"provisioningState": "Creating", | ||
"accessPolicies": [ | ||
{ | ||
"objectId": "c487e7d1-3210-41a3-8ccc-e9372b78da47" | ||
}, | ||
{ | ||
"objectId": "5b307da8-43d4-492b-8b66-b0294ade872f" | ||
} | ||
], | ||
"cosmosDbConfiguration": { | ||
"offerThroughput": 1000, | ||
"keyVaultKeyUri": "https://my-vault.vault.azure.net/keys/my-key" | ||
}, | ||
"authenticationConfiguration": { | ||
"authority": "https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc", | ||
"audience": "https://azurehealthcareapis.com", | ||
"smartProxyEnabled": true | ||
}, | ||
"corsConfiguration": { | ||
"origins": [ | ||
"*" | ||
], | ||
"headers": [ | ||
"*" | ||
], | ||
"methods": [ | ||
"DELETE", | ||
"GET", | ||
"OPTIONS", | ||
"PATCH", | ||
"POST", | ||
"PUT" | ||
], | ||
"maxAge": 1440, | ||
"allowCredentials": false | ||
}, | ||
"exportConfiguration": { | ||
"storageAccountName": "existingStorageAccount" | ||
}, | ||
"privateEndpointConnections": [], | ||
"publicNetworkAccess": "Disabled" | ||
}, | ||
"identity": { | ||
"principalId": "03fe6ae0-952c-4e4b-954b-cc0364dd252e", | ||
"tenantId": "72f988bf-86f1-41af-91ab-2d8cd011db47", | ||
"type": "SystemAssigned" | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.HealthcareApis/services/service1", | ||
"name": "service1", | ||
"location": "West US 2", | ||
"type": "Microsoft.HealthcareApis/services", | ||
"kind": "fhir-R4", | ||
"etag": "etagvalue", | ||
"tags": {}, | ||
"properties": { | ||
"provisioningState": "Creating", | ||
"accessPolicies": [ | ||
{ | ||
"objectId": "c487e7d1-3210-41a3-8ccc-e9372b78da47" | ||
}, | ||
{ | ||
"objectId": "5b307da8-43d4-492b-8b66-b0294ade872f" | ||
} | ||
], | ||
"cosmosDbConfiguration": { | ||
"offerThroughput": 1000 | ||
}, | ||
"authenticationConfiguration": { | ||
"authority": "https://login.microsoftonline.com/abfde7b2-df0f-47e6-aabf-2462b07508dc", | ||
"audience": "https://azurehealthcareapis.com", | ||
"smartProxyEnabled": true | ||
}, | ||
"corsConfiguration": { | ||
"origins": [ | ||
"*" | ||
], | ||
"headers": [ | ||
"*" | ||
], | ||
"methods": [ | ||
"DELETE", | ||
"GET", | ||
"OPTIONS", | ||
"PATCH", | ||
"POST", | ||
"PUT" | ||
], | ||
"maxAge": 1440, | ||
"allowCredentials": false | ||
}, | ||
"exportConfiguration": { | ||
"storageAccountName": "existingStorageAccount" | ||
}, | ||
"privateEndpointConnections": [], | ||
"publicNetworkAccess": "Disabled" | ||
}, | ||
"identity": { | ||
"principalId": "03fe6ae0-952c-4e4b-954b-cc0364dd252e", | ||
"tenantId": "72f988bf-86f1-41af-91ab-2d8cd011db47", | ||
"type": "SystemAssigned" | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.