Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR datafactory/resource-manager] Add binary dataset in swagger #5210

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
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
7 changes: 7 additions & 0 deletions profiles/latest/datafactory/mgmt/datafactory/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,7 @@ const (
TypeAzureSearchIndexSink TypeBasicCopySink = original.TypeAzureSearchIndexSink
TypeAzureSQLSink TypeBasicCopySink = original.TypeAzureSQLSink
TypeAzureTableSink TypeBasicCopySink = original.TypeAzureTableSink
TypeBinarySink TypeBasicCopySink = original.TypeBinarySink
TypeBlobSink TypeBasicCopySink = original.TypeBlobSink
TypeCopySink TypeBasicCopySink = original.TypeCopySink
TypeCosmosDbMongoDbAPISink TypeBasicCopySink = original.TypeCosmosDbMongoDbAPISink
Expand Down Expand Up @@ -644,6 +645,7 @@ const (
TypeAzurePostgreSQLSource TypeBasicCopySource = original.TypeAzurePostgreSQLSource
TypeAzureSQLSource TypeBasicCopySource = original.TypeAzureSQLSource
TypeAzureTableSource TypeBasicCopySource = original.TypeAzureTableSource
TypeBinarySource TypeBasicCopySource = original.TypeBinarySource
TypeBlobSource TypeBasicCopySource = original.TypeBlobSource
TypeCassandraSource TypeBasicCopySource = original.TypeCassandraSource
TypeConcurSource TypeBasicCopySource = original.TypeConcurSource
Expand Down Expand Up @@ -719,6 +721,7 @@ const (
TypeAzureSQLDWTable TypeBasicDataset = original.TypeAzureSQLDWTable
TypeAzureSQLTable TypeBasicDataset = original.TypeAzureSQLTable
TypeAzureTable TypeBasicDataset = original.TypeAzureTable
TypeBinary TypeBasicDataset = original.TypeBinary
TypeCassandraTable TypeBasicDataset = original.TypeCassandraTable
TypeConcurObject TypeBasicDataset = original.TypeConcurObject
TypeCosmosDbMongoDbAPICollection TypeBasicDataset = original.TypeCosmosDbMongoDbAPICollection
Expand Down Expand Up @@ -1093,6 +1096,10 @@ type BasicSsisObjectMetadata = original.BasicSsisObjectMetadata
type BasicTrigger = original.BasicTrigger
type BasicTriggerDependencyReference = original.BasicTriggerDependencyReference
type BasicWebLinkedServiceTypeProperties = original.BasicWebLinkedServiceTypeProperties
type BinaryDataset = original.BinaryDataset
type BinaryDatasetTypeProperties = original.BinaryDatasetTypeProperties
type BinarySink = original.BinarySink
type BinarySource = original.BinarySource
type BlobEventsTrigger = original.BlobEventsTrigger
type BlobEventsTriggerTypeProperties = original.BlobEventsTriggerTypeProperties
type BlobSink = original.BlobSink
Expand Down
7 changes: 7 additions & 0 deletions profiles/preview/datafactory/mgmt/datafactory/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,7 @@ const (
TypeAzureSearchIndexSink TypeBasicCopySink = original.TypeAzureSearchIndexSink
TypeAzureSQLSink TypeBasicCopySink = original.TypeAzureSQLSink
TypeAzureTableSink TypeBasicCopySink = original.TypeAzureTableSink
TypeBinarySink TypeBasicCopySink = original.TypeBinarySink
TypeBlobSink TypeBasicCopySink = original.TypeBlobSink
TypeCopySink TypeBasicCopySink = original.TypeCopySink
TypeCosmosDbMongoDbAPISink TypeBasicCopySink = original.TypeCosmosDbMongoDbAPISink
Expand Down Expand Up @@ -644,6 +645,7 @@ const (
TypeAzurePostgreSQLSource TypeBasicCopySource = original.TypeAzurePostgreSQLSource
TypeAzureSQLSource TypeBasicCopySource = original.TypeAzureSQLSource
TypeAzureTableSource TypeBasicCopySource = original.TypeAzureTableSource
TypeBinarySource TypeBasicCopySource = original.TypeBinarySource
TypeBlobSource TypeBasicCopySource = original.TypeBlobSource
TypeCassandraSource TypeBasicCopySource = original.TypeCassandraSource
TypeConcurSource TypeBasicCopySource = original.TypeConcurSource
Expand Down Expand Up @@ -719,6 +721,7 @@ const (
TypeAzureSQLDWTable TypeBasicDataset = original.TypeAzureSQLDWTable
TypeAzureSQLTable TypeBasicDataset = original.TypeAzureSQLTable
TypeAzureTable TypeBasicDataset = original.TypeAzureTable
TypeBinary TypeBasicDataset = original.TypeBinary
TypeCassandraTable TypeBasicDataset = original.TypeCassandraTable
TypeConcurObject TypeBasicDataset = original.TypeConcurObject
TypeCosmosDbMongoDbAPICollection TypeBasicDataset = original.TypeCosmosDbMongoDbAPICollection
Expand Down Expand Up @@ -1093,6 +1096,10 @@ type BasicSsisObjectMetadata = original.BasicSsisObjectMetadata
type BasicTrigger = original.BasicTrigger
type BasicTriggerDependencyReference = original.BasicTriggerDependencyReference
type BasicWebLinkedServiceTypeProperties = original.BasicWebLinkedServiceTypeProperties
type BinaryDataset = original.BinaryDataset
type BinaryDatasetTypeProperties = original.BinaryDatasetTypeProperties
type BinarySink = original.BinarySink
type BinarySource = original.BinarySource
type BlobEventsTrigger = original.BlobEventsTrigger
type BlobEventsTriggerTypeProperties = original.BlobEventsTriggerTypeProperties
type BlobSink = original.BlobSink
Expand Down
Loading