Skip to content

Commit

Permalink
Add property for default export storage account to Healthcareapis (#8507
Browse files Browse the repository at this point in the history
)

* Following changes are related to updating the arm api version number to GA version. Current version number is 2018-08-20-preview. GA version number is 2019-09-16

* Add new example, change example names, and update kind.

* Remove common from examples.

* Update doc and example

* Add identity properties

* Fix typo

Co-authored-by: Pooja Adhikari <[email protected]>
Co-authored-by: RB Johnson <[email protected]>
  • Loading branch information
3 people authored Apr 24, 2020
1 parent 6b55b4b commit b383c4a
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,13 @@
],
"maxAge": 1440,
"allowCredentials": false
},
"exportConfiguration": {
"storageAccountName": "existingStorageAccount"
}
},
"identity": {
"type": "SystemAssigned"
}
}
},
Expand Down Expand Up @@ -91,7 +97,15 @@
],
"maxAge": 1440,
"allowCredentials": false
},
"exportConfiguration": {
"storageAccountName": "existingStorageAccount"
}
},
"identity": {
"principalId": "03fe6ae0-952c-4e4b-954b-cc0364dd252e",
"tenantId": "72f988bf-86f1-41af-91ab-2d8cd011db47",
"type": "SystemAssigned"
}
}
},
Expand Down Expand Up @@ -139,7 +153,15 @@
],
"maxAge": 1440,
"allowCredentials": false
},
"exportConfiguration": {
"storageAccountName": "existingStorageAccount"
}
},
"identity": {
"principalId": "03fe6ae0-952c-4e4b-954b-cc0364dd252e",
"tenantId": "72f988bf-86f1-41af-91ab-2d8cd011db47",
"type": "SystemAssigned"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,10 @@
"corsConfiguration": {
"$ref": "#/definitions/ServiceCorsConfigurationInfo",
"description": "The settings for the CORS configuration of the service instance."
},
"exportConfiguration": {
"$ref": "#/definitions/ServiceExportConfigurationInfo",
"description": "The settings for the export operation of the service instance."
}
},
"required": [
Expand Down Expand Up @@ -588,6 +592,17 @@
}
}
},
"ServiceExportConfigurationInfo": {
"description": "Export operation configuration information",
"type": "object",
"properties": {
"storageAccountName": {
"type": "string",
"description": "The name of the default export storage account.",
"readOnly": false
}
}
},
"ServiceCorsConfigurationOriginEntry": {
"description": "An origin for CORS.",
"type": "string",
Expand Down Expand Up @@ -686,6 +701,16 @@
"type": "object",
"description": "Setting indicating whether the service has a managed identity associated with it.",
"properties": {
"principalId": {
"readOnly": true,
"type": "string",
"description": "The principal ID of the resource identity."
},
"tenantId": {
"readOnly": true,
"type": "string",
"description": "The tenant ID of the resource."
},
"type": {
"description": "Type of identity being specified, currently SystemAssigned and None are allowed.",
"type": "string",
Expand Down

0 comments on commit b383c4a

Please sign in to comment.