ドラッグアンドドロップの質問
Python SDK v2 を使用して、workspace1 という名前の Azure Machine Learning ワークスペースを管理します。
次の要件を満たすには、Azure Blob Storage および Azure Files Storage のデータストアをワークスペース 1 に登録する必要があります。
- Azure Active Directory (Azure AD) 認証を使用する必要があります
可能な場合はストレージにアクセスします。
- ワークスペース1に保存されている資格情報とシークレットは、
Azure Files ストレージにアクセスするときの指定された期間。
Workspace1 に Azure Blob および Azure Files ストレージを登録するために使用するセキュリティ アクセス方法を構成する必要があります。
どのセキュリティ アクセス メソッドを構成する必要がありますか? 回答するには、回答領域で適切なオプションを選択します。
注意: 正しい選択ごとに 1 ポイントが付与されます。

正解:

Explanation:
Azure Blob storage: Identity-based access (Azure AD authentication) allows you to use Azure AD credentials to authenticate and access Azure Blob storage. This is the recommended and more secure method for accessing Blob storage, as it avoids exposing account keys directly.
Azure File Storage: Shared access signature (SAS) is used to provide temporary access to resources in Azure File Storage. When using SAS, you can generate a token with specific permissions and expiration time, which can be used to access the Azure File share. This approach allows you to control the access to the file share for a specified time period without exposing the storage account key.