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 @azure/arm-datafactory] [Data Factory] Add logLevel/enableReliableLogging to LogStorageSettings #1729

Open
wants to merge 2 commits into
base: sdkAutomation/@azure_arm-datafactory
Choose a base branch
from
Open
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
Expand Up @@ -32,6 +32,8 @@ class DataFactoryManagementClient extends DataFactoryManagementClientContext {
triggerRuns: operations.TriggerRuns;
dataFlows: operations.DataFlows;
dataFlowDebugSession: operations.DataFlowDebugSession;
managedVirtualNetworks: operations.ManagedVirtualNetworks;
managedPrivateEndpoints: operations.ManagedPrivateEndpoints;

/**
* Initializes a new instance of the DataFactoryManagementClient class.
Expand All @@ -56,6 +58,8 @@ class DataFactoryManagementClient extends DataFactoryManagementClientContext {
this.triggerRuns = new operations.TriggerRuns(this);
this.dataFlows = new operations.DataFlows(this);
this.dataFlowDebugSession = new operations.DataFlowDebugSession(this);
this.managedVirtualNetworks = new operations.ManagedVirtualNetworks(this);
this.managedPrivateEndpoints = new operations.ManagedPrivateEndpoints(this);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export {
AzureFileStorageLinkedService,
AzureFileStorageLocation,
AzureFileStorageReadSettings,
AzureFileStorageWriteSettings,
AzureFunctionActivity,
AzureFunctionLinkedService,
AzureKeyVaultLinkedService,
Expand Down Expand Up @@ -121,6 +122,7 @@ export {
ConcurLinkedService,
ConcurObjectDataset,
ConcurSource,
ConnectionStateProperties,
ControlActivity,
CopyActivity,
CopySink,
Expand Down Expand Up @@ -306,6 +308,10 @@ export {
MagentoObjectDataset,
MagentoSource,
ManagedIntegrationRuntime,
ManagedPrivateEndpoint,
ManagedPrivateEndpointResource,
ManagedVirtualNetwork,
ManagedVirtualNetworkResource,
MappingDataFlow,
MariaDBLinkedService,
MariaDBSource,
Expand Down
6 changes: 6 additions & 0 deletions sdk/datafactory/arm-datafactory/src/models/datasetsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export {
AzureFileStorageLinkedService,
AzureFileStorageLocation,
AzureFileStorageReadSettings,
AzureFileStorageWriteSettings,
AzureFunctionActivity,
AzureFunctionLinkedService,
AzureKeyVaultLinkedService,
Expand Down Expand Up @@ -121,6 +122,7 @@ export {
ConcurLinkedService,
ConcurObjectDataset,
ConcurSource,
ConnectionStateProperties,
ControlActivity,
CopyActivity,
CopySink,
Expand Down Expand Up @@ -306,6 +308,10 @@ export {
MagentoObjectDataset,
MagentoSource,
ManagedIntegrationRuntime,
ManagedPrivateEndpoint,
ManagedPrivateEndpointResource,
ManagedVirtualNetwork,
ManagedVirtualNetworkResource,
MappingDataFlow,
MariaDBLinkedService,
MariaDBSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
export {
discriminators,
CloudError,
ExposureControlBatchRequest,
ExposureControlBatchResponse,
ExposureControlRequest,
ExposureControlResponse
} from "../models/mappers";
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export {
AzureFileStorageLinkedService,
AzureFileStorageLocation,
AzureFileStorageReadSettings,
AzureFileStorageWriteSettings,
AzureFunctionActivity,
AzureFunctionLinkedService,
AzureKeyVaultLinkedService,
Expand Down Expand Up @@ -122,6 +123,7 @@ export {
ConcurLinkedService,
ConcurObjectDataset,
ConcurSource,
ConnectionStateProperties,
ControlActivity,
CopyActivity,
CopySink,
Expand Down Expand Up @@ -311,6 +313,10 @@ export {
MagentoObjectDataset,
MagentoSource,
ManagedIntegrationRuntime,
ManagedPrivateEndpoint,
ManagedPrivateEndpointResource,
ManagedVirtualNetwork,
ManagedVirtualNetworkResource,
MappingDataFlow,
MariaDBLinkedService,
MariaDBSource,
Expand Down
Loading