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
930 changes: 5 additions & 925 deletions services/datafactory/mgmt/2018-06-01/datafactory/CHANGELOG.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"commit": "50ed15bd61ac79f2368d769df0c207a00b9e099f",
"commit": "435261ac6c32d48f7eb09d64e8a64a581baec14c",
"readme": "/_/azure-rest-api-specs/specification/datafactory/resource-manager/readme.md",
"tag": "package-2018-06",
"use": "@microsoft.azure/autorest.go@2.1.187",
Expand Down
24 changes: 24 additions & 0 deletions services/datafactory/mgmt/2018-06-01/datafactory/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -81445,6 +81445,8 @@ func (dfr *DataFlowResource) UnmarshalJSON(body []byte) error {
type DataFlowSink struct {
// SchemaLinkedService - Schema linked service reference.
SchemaLinkedService *LinkedServiceReference `json:"schemaLinkedService,omitempty"`
// RejectedDataLinkedService - Rejected data linked service reference.
RejectedDataLinkedService *LinkedServiceReference `json:"rejectedDataLinkedService,omitempty"`
// Name - Transformation name.
Name *string `json:"name,omitempty"`
// Description - Transformation description.
Expand Down Expand Up @@ -106697,6 +106699,8 @@ type FactoryProperties struct {
CreateTime *date.Time `json:"createTime,omitempty"`
// Version - READ-ONLY; Version of the factory.
Version *string `json:"version,omitempty"`
// PurviewConfiguration - Purview information of the factory.
PurviewConfiguration *PurviewConfiguration `json:"purviewConfiguration,omitempty"`
// RepoConfiguration - Git repo information of the factory.
RepoConfiguration BasicFactoryRepoConfiguration `json:"repoConfiguration,omitempty"`
// GlobalParameters - List of parameters for factory.
Expand All @@ -106710,6 +106714,9 @@ type FactoryProperties struct {
// MarshalJSON is the custom marshaler for FactoryProperties.
func (fp FactoryProperties) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if fp.PurviewConfiguration != nil {
objectMap["purviewConfiguration"] = fp.PurviewConfiguration
}
objectMap["repoConfiguration"] = fp.RepoConfiguration
if fp.GlobalParameters != nil {
objectMap["globalParameters"] = fp.GlobalParameters
Expand Down Expand Up @@ -106759,6 +106766,15 @@ func (fp *FactoryProperties) UnmarshalJSON(body []byte) error {
}
fp.Version = &version
}
case "purviewConfiguration":
if v != nil {
var purviewConfiguration PurviewConfiguration
err = json.Unmarshal(*v, &purviewConfiguration)
if err != nil {
return err
}
fp.PurviewConfiguration = &purviewConfiguration
}
case "repoConfiguration":
if v != nil {
repoConfiguration, err := unmarshalBasicFactoryRepoConfiguration(*v)
Expand Down Expand Up @@ -193768,6 +193784,8 @@ type PowerQuerySink struct {
Script *string `json:"script,omitempty"`
// SchemaLinkedService - Schema linked service reference.
SchemaLinkedService *LinkedServiceReference `json:"schemaLinkedService,omitempty"`
// RejectedDataLinkedService - Rejected data linked service reference.
RejectedDataLinkedService *LinkedServiceReference `json:"rejectedDataLinkedService,omitempty"`
// Name - Transformation name.
Name *string `json:"name,omitempty"`
// Description - Transformation description.
Expand Down Expand Up @@ -196259,6 +196277,12 @@ type PrivateLinkResourcesWrapper struct {
Value *[]PrivateLinkResource `json:"value,omitempty"`
}

// PurviewConfiguration purview configuration.
type PurviewConfiguration struct {
// PurviewResourceID - Purview resource id.
PurviewResourceID *string `json:"purviewResourceId,omitempty"`
}

// QueryDataFlowDebugSessionsResponse a list of active debug sessions.
type QueryDataFlowDebugSessionsResponse struct {
autorest.Response `json:"-"`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,112 @@
# Change History
# Unreleased

## Breaking Changes

### Removed Constants

1. IntegrationRuntimeState.Initial
1. IntegrationRuntimeState.Limited
1. IntegrationRuntimeState.NeedRegistration
1. IntegrationRuntimeState.Offline
1. IntegrationRuntimeState.Stopping
1. ManagedIntegrationRuntimeNodeStatus.ManagedIntegrationRuntimeNodeStatusAvailable
1. ManagedIntegrationRuntimeNodeStatus.ManagedIntegrationRuntimeNodeStatusRecycling
1. ManagedIntegrationRuntimeNodeStatus.ManagedIntegrationRuntimeNodeStatusStarting
1. ManagedIntegrationRuntimeNodeStatus.ManagedIntegrationRuntimeNodeStatusUnavailable
1. TriggerRuntimeState.TriggerRuntimeStateDisabled
1. TriggerRuntimeState.TriggerRuntimeStateStarted
1. TriggerRuntimeState.TriggerRuntimeStateStopped

### Signature Changes

#### Const Types

1. Online changed type from IntegrationRuntimeState to DynamicsDeploymentType
1. Started changed type from IntegrationRuntimeState to TriggerRuntimeState
1. Starting changed type from IntegrationRuntimeState to ManagedIntegrationRuntimeNodeStatus
1. Stopped changed type from IntegrationRuntimeState to TriggerRuntimeState

#### Struct Fields

1. AzureSearchIndexSink.WriteBehavior changed type from interface{} to AzureSearchIndexWriteBehaviorType
1. CassandraSource.ConsistencyLevel changed type from interface{} to CassandraSourceReadConsistencyLevels
1. DatasetDeflateCompression.Level changed type from interface{} to DatasetCompressionLevel
1. DatasetGZipCompression.Level changed type from interface{} to DatasetCompressionLevel
1. DatasetZipDeflateCompression.Level changed type from interface{} to DatasetCompressionLevel
1. DynamicsLinkedServiceTypeProperties.AuthenticationType changed type from interface{} to DynamicsAuthenticationType
1. DynamicsLinkedServiceTypeProperties.DeploymentType changed type from interface{} to DynamicsDeploymentType
1. DynamicsSink.WriteBehavior changed type from interface{} to *string
1. PolybaseSettings.RejectType changed type from interface{} to PolybaseSettingsRejectType
1. SalesforceSink.WriteBehavior changed type from interface{} to SalesforceSinkWriteBehavior
1. SalesforceSource.ReadBehavior changed type from interface{} to SalesforceSourceReadBehavior
1. SapCloudForCustomerSink.WriteBehavior changed type from interface{} to SapCloudForCustomerSinkWriteBehavior
1. StoredProcedureParameter.Type changed type from interface{} to StoredProcedureParameterType

## Additive Changes

### New Constants

1. AzureSearchIndexWriteBehaviorType.Merge
1. AzureSearchIndexWriteBehaviorType.Upload
1. CassandraSourceReadConsistencyLevels.ALL
1. CassandraSourceReadConsistencyLevels.EACHQUORUM
1. CassandraSourceReadConsistencyLevels.LOCALONE
1. CassandraSourceReadConsistencyLevels.LOCALQUORUM
1. CassandraSourceReadConsistencyLevels.LOCALSERIAL
1. CassandraSourceReadConsistencyLevels.ONE
1. CassandraSourceReadConsistencyLevels.QUORUM
1. CassandraSourceReadConsistencyLevels.SERIAL
1. CassandraSourceReadConsistencyLevels.THREE
1. CassandraSourceReadConsistencyLevels.TWO
1. DatasetCompressionLevel.Fastest
1. DatasetCompressionLevel.Optimal
1. DynamicsAuthenticationType.Ifd
1. DynamicsAuthenticationType.Office365
1. DynamicsDeploymentType.OnPremisesWithIfd
1. IntegrationRuntimeState.IntegrationRuntimeStateInitial
1. IntegrationRuntimeState.IntegrationRuntimeStateLimited
1. IntegrationRuntimeState.IntegrationRuntimeStateNeedRegistration
1. IntegrationRuntimeState.IntegrationRuntimeStateOffline
1. IntegrationRuntimeState.IntegrationRuntimeStateOnline
1. IntegrationRuntimeState.IntegrationRuntimeStateStarted
1. IntegrationRuntimeState.IntegrationRuntimeStateStarting
1. IntegrationRuntimeState.IntegrationRuntimeStateStopped
1. IntegrationRuntimeState.IntegrationRuntimeStateStopping
1. ManagedIntegrationRuntimeNodeStatus.Available
1. ManagedIntegrationRuntimeNodeStatus.Recycling
1. ManagedIntegrationRuntimeNodeStatus.Unavailable
1. PolybaseSettingsRejectType.Percentage
1. PolybaseSettingsRejectType.Value
1. SalesforceSinkWriteBehavior.Insert
1. SalesforceSinkWriteBehavior.Upsert
1. SalesforceSourceReadBehavior.Query
1. SalesforceSourceReadBehavior.QueryAll
1. SapCloudForCustomerSinkWriteBehavior.SapCloudForCustomerSinkWriteBehaviorInsert
1. SapCloudForCustomerSinkWriteBehavior.SapCloudForCustomerSinkWriteBehaviorUpdate
1. StoredProcedureParameterType.Boolean
1. StoredProcedureParameterType.Date
1. StoredProcedureParameterType.Decimal
1. StoredProcedureParameterType.GUID
1. StoredProcedureParameterType.Int
1. StoredProcedureParameterType.Int64
1. StoredProcedureParameterType.String
1. TriggerRuntimeState.Disabled

### New Funcs

1. PossibleAzureSearchIndexWriteBehaviorTypeValues() []AzureSearchIndexWriteBehaviorType
1. PossibleCassandraSourceReadConsistencyLevelsValues() []CassandraSourceReadConsistencyLevels
1. PossibleDatasetCompressionLevelValues() []DatasetCompressionLevel
1. PossibleDynamicsAuthenticationTypeValues() []DynamicsAuthenticationType
1. PossibleDynamicsDeploymentTypeValues() []DynamicsDeploymentType
1. PossiblePolybaseSettingsRejectTypeValues() []PolybaseSettingsRejectType
1. PossibleSalesforceSinkWriteBehaviorValues() []SalesforceSinkWriteBehavior
1. PossibleSalesforceSourceReadBehaviorValues() []SalesforceSourceReadBehavior
1. PossibleSapCloudForCustomerSinkWriteBehaviorValues() []SapCloudForCustomerSinkWriteBehavior
1. PossibleStoredProcedureParameterTypeValues() []StoredProcedureParameterType

### Struct Changes

#### New Struct Fields

1. WebActivityTypeProperties.DisableCertValidation
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"commit": "3c764635e7d442b3e74caf593029fcd440b3ef82",
"commit": "435261ac6c32d48f7eb09d64e8a64a581baec14c",
"readme": "/_/azure-rest-api-specs/specification/datafactory/resource-manager/readme.md",
"tag": "package-2017-09-preview",
"use": "@microsoft.azure/autorest.go@2.1.187",
Expand Down
Loading