Skip to content
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
171 changes: 100 additions & 71 deletions profiles/preview/datafactory/mgmt/datafactory/models.go

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ const (
type IntegrationRuntimeState = original.IntegrationRuntimeState

const (
AccessDenied IntegrationRuntimeState = original.AccessDenied
Initial IntegrationRuntimeState = original.Initial
Limited IntegrationRuntimeState = original.Limited
NeedRegistration IntegrationRuntimeState = original.NeedRegistration
Expand Down Expand Up @@ -1074,6 +1075,8 @@ type IntegrationRuntimeListResponsePage = original.IntegrationRuntimeListRespons
type IntegrationRuntimeMonitoringData = original.IntegrationRuntimeMonitoringData
type IntegrationRuntimeNodeIPAddress = original.IntegrationRuntimeNodeIPAddress
type IntegrationRuntimeNodeMonitoringData = original.IntegrationRuntimeNodeMonitoringData
type IntegrationRuntimePermissionRequest = original.IntegrationRuntimePermissionRequest
type IntegrationRuntimePermissionResponse = original.IntegrationRuntimePermissionResponse
type IntegrationRuntimeReference = original.IntegrationRuntimeReference
type IntegrationRuntimeRegenerateKeyParameters = original.IntegrationRuntimeRegenerateKeyParameters
type IntegrationRuntimeRemoveNodeRequest = original.IntegrationRuntimeRemoveNodeRequest
Expand All @@ -1097,7 +1100,6 @@ type LinkedIntegrationRuntimeKey = original.LinkedIntegrationRuntimeKey
type BasicLinkedIntegrationRuntimeProperties = original.BasicLinkedIntegrationRuntimeProperties
type LinkedIntegrationRuntimeProperties = original.LinkedIntegrationRuntimeProperties
type LinkedIntegrationRuntimeRbac = original.LinkedIntegrationRuntimeRbac
type LinkedIntegrationRuntimeTypeProperties = original.LinkedIntegrationRuntimeTypeProperties
type BasicLinkedService = original.BasicLinkedService
type LinkedService = original.LinkedService
type LinkedServiceListResponse = original.LinkedServiceListResponse
Expand Down Expand Up @@ -1242,6 +1244,7 @@ type SelfHostedIntegrationRuntime = original.SelfHostedIntegrationRuntime
type SelfHostedIntegrationRuntimeNode = original.SelfHostedIntegrationRuntimeNode
type SelfHostedIntegrationRuntimeStatus = original.SelfHostedIntegrationRuntimeStatus
type SelfHostedIntegrationRuntimeStatusTypeProperties = original.SelfHostedIntegrationRuntimeStatusTypeProperties
type SelfHostedIntegrationRuntimeTypeProperties = original.SelfHostedIntegrationRuntimeTypeProperties
type ServiceNowLinkedService = original.ServiceNowLinkedService
type ServiceNowLinkedServiceTypeProperties = original.ServiceNowLinkedServiceTypeProperties
type ServiceNowObjectDataset = original.ServiceNowObjectDataset
Expand Down
129 changes: 129 additions & 0 deletions services/datafactory/mgmt/2018-06-01/datafactory/activityruns.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 52 additions & 0 deletions services/datafactory/mgmt/2018-06-01/datafactory/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading