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
SDK Updates
  • Loading branch information
matferrari-msft committed Jun 4, 2024
commit e971bb4d5273fe365210cebe5121966a9d8e6111
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,9 @@ def begin_update(
description=kwargs.get("description", workspace.description),
friendly_name=kwargs.get("display_name", workspace.display_name),
public_network_access=kwargs.get("public_network_access", workspace.public_network_access),
system_datastores_auth_mode=kwargs.get("system_datastores_auth_mode", workspace.system_datastores_auth_mode),
system_datastores_auth_mode=kwargs.get(
"system_datastores_auth_mode", workspace.system_datastores_auth_mode
),
image_build_compute=kwargs.get("image_build_compute", workspace.image_build_compute),
identity=identity,
primary_user_assigned_identity=kwargs.get(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3571,6 +3571,10 @@
"description": "The parameters for updating a machine learning workspace.",
"type": "object",
"properties": {
"systemDatastoresAuthMode": {
"description": "The auth mode used for accessing the system datastores of the workspace.",
"type": "string"
},
"applicationInsights": {
"description": "ARM id of the application insights associated with this workspace.",
"type": "string"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5020,6 +5020,10 @@
"description": "The parameters for updating a machine learning workspace.",
"type": "object",
"properties": {
"systemDatastoresAuthMode": {
"description": "The auth mode used for accessing the system datastores of the workspace.",
"type": "string"
},
"applicationInsights": {
"description": "ARM id of the application insights associated with this workspace.",
"type": "string"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6588,6 +6588,10 @@
"description": "The parameters for updating a machine learning workspace.",
"type": "object",
"properties": {
"systemDatastoresAuthMode": {
"description": "The auth mode used for accessing the system datastores of the workspace.",
"type": "string"
},
"applicationInsights": {
"description": "ARM id of the application insights associated with this workspace.",
"type": "string"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2580,6 +2580,10 @@
"type": "object",
"description": "The parameters for updating the properties of a machine learning workspace.",
"properties": {
"systemDatastoresAuthMode": {
"description": "The auth mode used for accessing the system datastores of the workspace.",
"type": "string"
},
"description": {
"description": "The description of this workspace.",
"type": "string"
Expand Down