Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# Release History

## 1.0.0-beta.4 (Unreleased)
## 1.0.0-beta.4 (2023-09-26)

### Features Added

### Breaking Changes
- Upgraded API version.

### Bugs Fixed

- Fixed an issue that exception throws when `Uri` type field is empty during deserialization of `SelfHostedIntegrationRuntimeStatus`.

### Other Changes

## 1.0.0-beta.3 (2023-08-02)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5504,6 +5504,8 @@ public partial class PipelineExternalComputeScaleProperties
{
public PipelineExternalComputeScaleProperties() { }
public System.Collections.Generic.IDictionary<string, System.BinaryData> AdditionalProperties { get { throw null; } }
public int? NumberOfExternalNodes { get { throw null; } set { } }
public int? NumberOfPipelineNodes { get { throw null; } set { } }
public int? TimeToLive { get { throw null; } set { } }
}
public partial class PipelineVariableSpecification
Expand Down Expand Up @@ -6373,6 +6375,7 @@ public SelfDependencyTumblingWindowTriggerReference(string offset) { }
public partial class SelfHostedIntegrationRuntime : Azure.ResourceManager.DataFactory.Models.DataFactoryIntegrationRuntimeProperties
{
public SelfHostedIntegrationRuntime() { }
public bool? IsSelfContainedInteractiveAuthoringEnabled { get { throw null; } set { } }
public Azure.ResourceManager.DataFactory.Models.LinkedIntegrationRuntimeType LinkedInfo { get { throw null; } set { } }
}
public partial class SelfHostedIntegrationRuntimeNode
Expand Down Expand Up @@ -6429,6 +6432,7 @@ internal SelfHostedIntegrationRuntimeStatus() { }
public System.Collections.Generic.IReadOnlyDictionary<string, string> Capabilities { get { throw null; } }
public System.DateTimeOffset? CreatedOn { get { throw null; } }
public Azure.ResourceManager.DataFactory.Models.IntegrationRuntimeInternalChannelEncryptionMode? InternalChannelEncryption { get { throw null; } }
public bool? IsSelfContainedInteractiveAuthoringEnabled { get { throw null; } }
public string LatestVersion { get { throw null; } }
public System.Collections.Generic.IReadOnlyList<Azure.ResourceManager.DataFactory.Models.LinkedIntegrationRuntime> Links { get { throw null; } }
public System.TimeSpan? LocalTimeZoneOffset { get { throw null; } }
Expand Down

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

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

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

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

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

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

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ generate-model-factory: false
csharp: true
library-name: DataFactory
namespace: Azure.ResourceManager.DataFactory
require: https://github.com/Azure/azure-rest-api-specs/blob/6885351bec8d6a2cea85c5aa793e53616e5f517b/specification/datafactory/resource-manager/readme.md
require: https://github.com/Azure/azure-rest-api-specs/blob/24c9b5a8982cb081662b27ef8ab93da3389b0160/specification/datafactory/resource-manager/readme.md
output-folder: $(this-folder)/Generated
clear-output-folder: true
sample-gen:
Expand Down Expand Up @@ -214,8 +214,10 @@ rename-mapping:
SecretBase: DataFactorySecret
SecureInputOutputPolicy.secureInput: IsSecureInputEnabled
SecureInputOutputPolicy.secureOutput: IsSecureOutputEnabled
SelfHostedIntegrationRuntimeStatus.typeProperties.createTime: CreatedOn
SelfHostedIntegrationRuntime.typeProperties.selfContainedInteractiveAuthoringEnabled: IsSelfContainedInteractiveAuthoringEnabled
SelfHostedIntegrationRuntimeNode.expiryTime: ExpireOn
SelfHostedIntegrationRuntimeStatus.typeProperties.createTime: CreatedOn
SelfHostedIntegrationRuntimeStatus.typeProperties.selfContainedInteractiveAuthoringEnabled: IsSelfContainedInteractiveAuthoringEnabled
SelfHostedIntegrationRuntimeStatus.typeProperties.taskQueueId: -|uuid
SelfHostedIntegrationRuntimeStatus.typeProperties.serviceUrls: ServiceUriStringList
SubResourceDebugResource: DataFactoryDebugInfo
Expand Down