Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Python SDK System Datastore Auth AML
  • Loading branch information
matferrari-msft committed Jun 4, 2024
commit 11296b71fb0aa54414b317b256ff98c21efb7956
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@
"description": "Managed network settings to be used for the workspace. If not specified, isolation mode Disabled is the default"
}
},
"system_datastores_auth_mode": {
"systemDatastoresAuthMode": {
"type": "string",
"defaultValue": "accesskey",
"metadata": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
"managedNetwork": {
"value": {}
},
"system_datastores_auth_mode": {
"systemDatastoresAuthMode": {
"value": "accesskey"
},
"spark_runtime_version" : {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ def _populate_arm_parameters(self, workspace: Workspace, **kwargs: Any) -> Tuple
_set_val(param["publicNetworkAccess"], workspace.public_network_access)

if workspace.system_datastores_auth_mode:
_set_val(param["system_datastores_auth_mode"], workspace.system_datastores_auth_mode)
_set_val(param["systemDatastoresAuthMode"], workspace.system_datastores_auth_mode)

if workspace.image_build_compute:
_set_val(param["imageBuildCompute"], workspace.image_build_compute)
Expand Down