DataSource.AzureBlobStorage メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Azure Blob コンテナーに接続する新しい DataSource を作成します。
public static Microsoft.Azure.Search.Models.DataSource AzureBlobStorage (string name, string storageConnectionString, string containerName, string pathPrefix = default, Microsoft.Azure.Search.Models.DataDeletionDetectionPolicy deletionDetectionPolicy = default, string description = default);
static member AzureBlobStorage : string * string * string * string * Microsoft.Azure.Search.Models.DataDeletionDetectionPolicy * string -> Microsoft.Azure.Search.Models.DataSource
Public Shared Function AzureBlobStorage (name As String, storageConnectionString As String, containerName As String, Optional pathPrefix As String = Nothing, Optional deletionDetectionPolicy As DataDeletionDetectionPolicy = Nothing, Optional description As String = Nothing) As DataSource
パラメーター
- name
- String
データソースの名前。
- storageConnectionString
- String
Azure Storage アカウントの接続文字列。 "DefaultEndpointsProtocol=https;AccountName=[your storage account];AccountKey=[your account key];"HTTPS が必要であることに注意してください。
- containerName
- String
BLOB の読み取り元となるコンテナーの名前。
- pathPrefix
- String
省略可能。 指定した場合、データソースには、このプレフィックスで始まる名前を持つ BLOB のみが含まれます。 これは、たとえば、BLOB が "仮想フォルダー" に整理されている場合に便利です。
- deletionDetectionPolicy
- DataDeletionDetectionPolicy
省略可能。 データソースのデータ削除検出ポリシー。
- description
- String
省略可能。 データソースの説明。
戻り値
新しい DataSource インスタンス。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET