skip to Main Content

Azure – Convert Output or Object in Array to Table Powershell

I created a custom object $customsa = New-Object -TypeName psobject $customsa | Add-Member -MemberType NoteProperty -Name Name -Value (Get-AzStorageAccount).StorageAccountName $customsa | Add-Member -MemberType NoteProperty -Name Tier -Value (Get-AzStorageAccount).AccessTier $customsa | Add-Member -MemberType NoteProperty -Name Replication -Value (Get-AzStorageAccount).sku.Name $customsa | Add-Member…

VIEW QUESTION

Azure – Please set the default workspace with MLClient

Getting error "Please set the default workspace with MLClient". How do I set the default workspace with MLClient? Trying to use data asset https://learn.microsoft.com/en-us/azure/machine-learning/how-to-create-register-data-assets?tabs=Python-SDK from azure.ai.ml.entities import Data from azure.ai.ml.constants import AssetTypes from azure.ai.ml import MLClient #Enter details of your…

VIEW QUESTION
Back To Top
Search