次の方法で共有


DataSource コンストラクター

定義

オーバーロード

DataSource()

DataSource クラスの新しいインスタンスを初期化します。

DataSource(String, DataSourceType, DataSourceCredentials, DataContainer, String, DataChangeDetectionPolicy, DataDeletionDetectionPolicy, String)

DataSource クラスの新しいインスタンスを初期化します。

DataSource()

ソース:
DataSource.cs

DataSource クラスの新しいインスタンスを初期化します。

public DataSource ();
Public Sub New ()

適用対象

DataSource(String, DataSourceType, DataSourceCredentials, DataContainer, String, DataChangeDetectionPolicy, DataDeletionDetectionPolicy, String)

ソース:
DataSource.cs

DataSource クラスの新しいインスタンスを初期化します。

public DataSource (string name, Microsoft.Azure.Search.Models.DataSourceType type, Microsoft.Azure.Search.Models.DataSourceCredentials credentials, Microsoft.Azure.Search.Models.DataContainer container, string description = default, Microsoft.Azure.Search.Models.DataChangeDetectionPolicy dataChangeDetectionPolicy = default, Microsoft.Azure.Search.Models.DataDeletionDetectionPolicy dataDeletionDetectionPolicy = default, string eTag = default);
new Microsoft.Azure.Search.Models.DataSource : string * Microsoft.Azure.Search.Models.DataSourceType * Microsoft.Azure.Search.Models.DataSourceCredentials * Microsoft.Azure.Search.Models.DataContainer * string * Microsoft.Azure.Search.Models.DataChangeDetectionPolicy * Microsoft.Azure.Search.Models.DataDeletionDetectionPolicy * string -> Microsoft.Azure.Search.Models.DataSource
Public Sub New (name As String, type As DataSourceType, credentials As DataSourceCredentials, container As DataContainer, Optional description As String = Nothing, Optional dataChangeDetectionPolicy As DataChangeDetectionPolicy = Nothing, Optional dataDeletionDetectionPolicy As DataDeletionDetectionPolicy = Nothing, Optional eTag As String = Nothing)

パラメーター

name
String

データソースの名前。

type
DataSourceType

データソースの型。 使用可能な値は、'azuresql'、'cosmosdb'、'azureblob'、'azuretable' です。

credentials
DataSourceCredentials

データソースの資格情報。

container
DataContainer

データソースのデータ コンテナー。

description
String

データソースの説明。

dataChangeDetectionPolicy
DataChangeDetectionPolicy

データソースのデータ変更検出ポリシー。

dataDeletionDetectionPolicy
DataDeletionDetectionPolicy

データソースのデータ削除検出ポリシー。

eTag
String

データソースの ETag。

適用対象