@azure/arm-datafactory 10.2.1-alpha.20220325.1 → 10.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -10
- package/dist/index.js +83 -23
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.d.ts.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +3 -2
- package/dist-esm/src/dataFactoryManagementClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +64 -7
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +20 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +1 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +32 -12
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/operations/dataFlowDebugSession.d.ts.map +1 -1
- package/dist-esm/src/operations/dataFlowDebugSession.js +6 -2
- package/dist-esm/src/operations/dataFlowDebugSession.js.map +1 -1
- package/dist-esm/src/operations/integrationRuntimeObjectMetadata.d.ts.map +1 -1
- package/dist-esm/src/operations/integrationRuntimeObjectMetadata.js +3 -1
- package/dist-esm/src/operations/integrationRuntimeObjectMetadata.js.map +1 -1
- package/dist-esm/src/operations/integrationRuntimes.d.ts.map +1 -1
- package/dist-esm/src/operations/integrationRuntimes.js +6 -2
- package/dist-esm/src/operations/integrationRuntimes.js.map +1 -1
- package/dist-esm/src/operations/triggers.d.ts.map +1 -1
- package/dist-esm/src/operations/triggers.js +12 -4
- package/dist-esm/src/operations/triggers.js.map +1 -1
- package/package.json +2 -2
- package/review/arm-datafactory.api.md +49 -7
- package/src/dataFactoryManagementClient.ts +3 -2
- package/src/models/index.ts +73 -7
- package/src/models/mappers.ts +34 -11
- package/src/operations/dataFlowDebugSession.ts +6 -2
- package/src/operations/integrationRuntimeObjectMetadata.ts +3 -1
- package/src/operations/integrationRuntimes.ts +6 -2
- package/src/operations/triggers.ts +12 -4
- package/types/arm-datafactory.d.ts +73 -7
- package/types/tsdoc-metadata.json +1 -1
package/src/models/index.ts
CHANGED
|
@@ -2342,7 +2342,7 @@ export interface DataFlowReference {
|
|
|
2342
2342
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
2343
2343
|
[property: string]: any;
|
|
2344
2344
|
/** Data flow reference type. */
|
|
2345
|
-
type:
|
|
2345
|
+
type: DataFlowReferenceType;
|
|
2346
2346
|
/** Reference data flow name. */
|
|
2347
2347
|
referenceName: string;
|
|
2348
2348
|
/** Reference data flow parameters from dataset. */
|
|
@@ -2354,7 +2354,7 @@ export interface DataFlowReference {
|
|
|
2354
2354
|
/** Managed Virtual Network reference type. */
|
|
2355
2355
|
export interface ManagedVirtualNetworkReference {
|
|
2356
2356
|
/** Managed Virtual Network reference type. */
|
|
2357
|
-
type:
|
|
2357
|
+
type: ManagedVirtualNetworkReferenceType;
|
|
2358
2358
|
/** Reference ManagedVirtualNetwork name. */
|
|
2359
2359
|
referenceName: string;
|
|
2360
2360
|
}
|
|
@@ -2364,7 +2364,7 @@ export interface CredentialReference {
|
|
|
2364
2364
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
2365
2365
|
[property: string]: any;
|
|
2366
2366
|
/** Credential reference type. */
|
|
2367
|
-
type:
|
|
2367
|
+
type: CredentialReferenceType;
|
|
2368
2368
|
/** Reference credential name. */
|
|
2369
2369
|
referenceName: string;
|
|
2370
2370
|
}
|
|
@@ -3444,6 +3444,14 @@ export interface CustomActivityReferenceObject {
|
|
|
3444
3444
|
datasets?: DatasetReference[];
|
|
3445
3445
|
}
|
|
3446
3446
|
|
|
3447
|
+
/** Execution policy for an execute pipeline activity. */
|
|
3448
|
+
export interface ExecutePipelineActivityPolicy {
|
|
3449
|
+
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
3450
|
+
[property: string]: any;
|
|
3451
|
+
/** When set to true, Input from activity is considered as secure and will not be logged to monitoring. */
|
|
3452
|
+
secureInput?: boolean;
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3447
3455
|
/** Web activity authentication properties. */
|
|
3448
3456
|
export interface WebActivityAuthentication {
|
|
3449
3457
|
/** Web activity authentication (Basic/ClientCertificate/MSI/ServicePrincipal) */
|
|
@@ -3608,7 +3616,7 @@ export interface DependencyReference {
|
|
|
3608
3616
|
/** Trigger reference type. */
|
|
3609
3617
|
export interface TriggerReference {
|
|
3610
3618
|
/** Trigger reference type. */
|
|
3611
|
-
type:
|
|
3619
|
+
type: TriggerReferenceType;
|
|
3612
3620
|
/** Reference trigger name. */
|
|
3613
3621
|
referenceName: string;
|
|
3614
3622
|
}
|
|
@@ -9157,6 +9165,8 @@ export type SelfDependencyTumblingWindowTriggerReference = DependencyReference &
|
|
|
9157
9165
|
export type ExecutePipelineActivity = ControlActivity & {
|
|
9158
9166
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
9159
9167
|
type: "ExecutePipeline";
|
|
9168
|
+
/** Execute pipeline activity policy. */
|
|
9169
|
+
policy?: ExecutePipelineActivityPolicy;
|
|
9160
9170
|
/** Pipeline reference. */
|
|
9161
9171
|
pipeline: PipelineReference;
|
|
9162
9172
|
/** Pipeline parameters. */
|
|
@@ -9514,9 +9524,7 @@ export type SqlServerStoredProcedureActivity = ExecutionActivity & {
|
|
|
9514
9524
|
/** Stored procedure name. Type: string (or Expression with resultType string). */
|
|
9515
9525
|
storedProcedureName: Record<string, unknown>;
|
|
9516
9526
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
9517
|
-
storedProcedureParameters?:
|
|
9518
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
9519
|
-
};
|
|
9527
|
+
storedProcedureParameters?: Record<string, unknown>;
|
|
9520
9528
|
};
|
|
9521
9529
|
|
|
9522
9530
|
/** Delete activity. */
|
|
@@ -9573,6 +9581,8 @@ export type WebActivity = ExecutionActivity & {
|
|
|
9573
9581
|
body?: Record<string, unknown>;
|
|
9574
9582
|
/** Authentication method used for calling the endpoint. */
|
|
9575
9583
|
authentication?: WebActivityAuthentication;
|
|
9584
|
+
/** When set to true, Certificate validation will be disabled. */
|
|
9585
|
+
disableCertValidation?: boolean;
|
|
9576
9586
|
/** List of datasets passed to web endpoint. */
|
|
9577
9587
|
datasets?: DatasetReference[];
|
|
9578
9588
|
/** List of linked services passed to web endpoint. */
|
|
@@ -10851,6 +10861,48 @@ export enum KnownDataFlowDebugCommandType {
|
|
|
10851
10861
|
*/
|
|
10852
10862
|
export type DataFlowDebugCommandType = string;
|
|
10853
10863
|
|
|
10864
|
+
/** Known values of {@link DataFlowReferenceType} that the service accepts. */
|
|
10865
|
+
export enum KnownDataFlowReferenceType {
|
|
10866
|
+
DataFlowReference = "DataFlowReference"
|
|
10867
|
+
}
|
|
10868
|
+
|
|
10869
|
+
/**
|
|
10870
|
+
* Defines values for DataFlowReferenceType. \
|
|
10871
|
+
* {@link KnownDataFlowReferenceType} can be used interchangeably with DataFlowReferenceType,
|
|
10872
|
+
* this enum contains the known values that the service supports.
|
|
10873
|
+
* ### Known values supported by the service
|
|
10874
|
+
* **DataFlowReference**
|
|
10875
|
+
*/
|
|
10876
|
+
export type DataFlowReferenceType = string;
|
|
10877
|
+
|
|
10878
|
+
/** Known values of {@link ManagedVirtualNetworkReferenceType} that the service accepts. */
|
|
10879
|
+
export enum KnownManagedVirtualNetworkReferenceType {
|
|
10880
|
+
ManagedVirtualNetworkReference = "ManagedVirtualNetworkReference"
|
|
10881
|
+
}
|
|
10882
|
+
|
|
10883
|
+
/**
|
|
10884
|
+
* Defines values for ManagedVirtualNetworkReferenceType. \
|
|
10885
|
+
* {@link KnownManagedVirtualNetworkReferenceType} can be used interchangeably with ManagedVirtualNetworkReferenceType,
|
|
10886
|
+
* this enum contains the known values that the service supports.
|
|
10887
|
+
* ### Known values supported by the service
|
|
10888
|
+
* **ManagedVirtualNetworkReference**
|
|
10889
|
+
*/
|
|
10890
|
+
export type ManagedVirtualNetworkReferenceType = string;
|
|
10891
|
+
|
|
10892
|
+
/** Known values of {@link CredentialReferenceType} that the service accepts. */
|
|
10893
|
+
export enum KnownCredentialReferenceType {
|
|
10894
|
+
CredentialReference = "CredentialReference"
|
|
10895
|
+
}
|
|
10896
|
+
|
|
10897
|
+
/**
|
|
10898
|
+
* Defines values for CredentialReferenceType. \
|
|
10899
|
+
* {@link KnownCredentialReferenceType} can be used interchangeably with CredentialReferenceType,
|
|
10900
|
+
* this enum contains the known values that the service supports.
|
|
10901
|
+
* ### Known values supported by the service
|
|
10902
|
+
* **CredentialReference**
|
|
10903
|
+
*/
|
|
10904
|
+
export type CredentialReferenceType = string;
|
|
10905
|
+
|
|
10854
10906
|
/** Known values of {@link DataFlowComputeType} that the service accepts. */
|
|
10855
10907
|
export enum KnownDataFlowComputeType {
|
|
10856
10908
|
General = "General",
|
|
@@ -11905,6 +11957,20 @@ export enum KnownTumblingWindowFrequency {
|
|
|
11905
11957
|
*/
|
|
11906
11958
|
export type TumblingWindowFrequency = string;
|
|
11907
11959
|
|
|
11960
|
+
/** Known values of {@link TriggerReferenceType} that the service accepts. */
|
|
11961
|
+
export enum KnownTriggerReferenceType {
|
|
11962
|
+
TriggerReference = "TriggerReference"
|
|
11963
|
+
}
|
|
11964
|
+
|
|
11965
|
+
/**
|
|
11966
|
+
* Defines values for TriggerReferenceType. \
|
|
11967
|
+
* {@link KnownTriggerReferenceType} can be used interchangeably with TriggerReferenceType,
|
|
11968
|
+
* this enum contains the known values that the service supports.
|
|
11969
|
+
* ### Known values supported by the service
|
|
11970
|
+
* **TriggerReference**
|
|
11971
|
+
*/
|
|
11972
|
+
export type TriggerReferenceType = string;
|
|
11973
|
+
|
|
11908
11974
|
/** Known values of {@link JsonFormatFilePattern} that the service accepts. */
|
|
11909
11975
|
export enum KnownJsonFormatFilePattern {
|
|
11910
11976
|
SetOfObjects = "setOfObjects",
|
package/src/models/mappers.ts
CHANGED
|
@@ -3892,9 +3892,8 @@ export const DataFlowReference: coreClient.CompositeMapper = {
|
|
|
3892
3892
|
additionalProperties: { type: { name: "Object" } },
|
|
3893
3893
|
modelProperties: {
|
|
3894
3894
|
type: {
|
|
3895
|
-
defaultValue: "DataFlowReference",
|
|
3896
|
-
isConstant: true,
|
|
3897
3895
|
serializedName: "type",
|
|
3896
|
+
required: true,
|
|
3898
3897
|
type: {
|
|
3899
3898
|
name: "String"
|
|
3900
3899
|
}
|
|
@@ -3932,9 +3931,8 @@ export const ManagedVirtualNetworkReference: coreClient.CompositeMapper = {
|
|
|
3932
3931
|
className: "ManagedVirtualNetworkReference",
|
|
3933
3932
|
modelProperties: {
|
|
3934
3933
|
type: {
|
|
3935
|
-
defaultValue: "ManagedVirtualNetworkReference",
|
|
3936
|
-
isConstant: true,
|
|
3937
3934
|
serializedName: "type",
|
|
3935
|
+
required: true,
|
|
3938
3936
|
type: {
|
|
3939
3937
|
name: "String"
|
|
3940
3938
|
}
|
|
@@ -3957,9 +3955,8 @@ export const CredentialReference: coreClient.CompositeMapper = {
|
|
|
3957
3955
|
additionalProperties: { type: { name: "Object" } },
|
|
3958
3956
|
modelProperties: {
|
|
3959
3957
|
type: {
|
|
3960
|
-
defaultValue: "CredentialReference",
|
|
3961
|
-
isConstant: true,
|
|
3962
3958
|
serializedName: "type",
|
|
3959
|
+
required: true,
|
|
3963
3960
|
type: {
|
|
3964
3961
|
name: "String"
|
|
3965
3962
|
}
|
|
@@ -6492,6 +6489,22 @@ export const CustomActivityReferenceObject: coreClient.CompositeMapper = {
|
|
|
6492
6489
|
}
|
|
6493
6490
|
};
|
|
6494
6491
|
|
|
6492
|
+
export const ExecutePipelineActivityPolicy: coreClient.CompositeMapper = {
|
|
6493
|
+
type: {
|
|
6494
|
+
name: "Composite",
|
|
6495
|
+
className: "ExecutePipelineActivityPolicy",
|
|
6496
|
+
additionalProperties: { type: { name: "Object" } },
|
|
6497
|
+
modelProperties: {
|
|
6498
|
+
secureInput: {
|
|
6499
|
+
serializedName: "secureInput",
|
|
6500
|
+
type: {
|
|
6501
|
+
name: "Boolean"
|
|
6502
|
+
}
|
|
6503
|
+
}
|
|
6504
|
+
}
|
|
6505
|
+
}
|
|
6506
|
+
};
|
|
6507
|
+
|
|
6495
6508
|
export const WebActivityAuthentication: coreClient.CompositeMapper = {
|
|
6496
6509
|
type: {
|
|
6497
6510
|
name: "Composite",
|
|
@@ -7014,9 +7027,8 @@ export const TriggerReference: coreClient.CompositeMapper = {
|
|
|
7014
7027
|
className: "TriggerReference",
|
|
7015
7028
|
modelProperties: {
|
|
7016
7029
|
type: {
|
|
7017
|
-
defaultValue: "TriggerReference",
|
|
7018
|
-
isConstant: true,
|
|
7019
7030
|
serializedName: "type",
|
|
7031
|
+
required: true,
|
|
7020
7032
|
type: {
|
|
7021
7033
|
name: "String"
|
|
7022
7034
|
}
|
|
@@ -23426,6 +23438,13 @@ export const ExecutePipelineActivity: coreClient.CompositeMapper = {
|
|
|
23426
23438
|
polymorphicDiscriminator: Activity.type.polymorphicDiscriminator,
|
|
23427
23439
|
modelProperties: {
|
|
23428
23440
|
...ControlActivity.type.modelProperties,
|
|
23441
|
+
policy: {
|
|
23442
|
+
serializedName: "policy",
|
|
23443
|
+
type: {
|
|
23444
|
+
name: "Composite",
|
|
23445
|
+
className: "ExecutePipelineActivityPolicy"
|
|
23446
|
+
}
|
|
23447
|
+
},
|
|
23429
23448
|
pipeline: {
|
|
23430
23449
|
serializedName: "typeProperties.pipeline",
|
|
23431
23450
|
type: {
|
|
@@ -24673,9 +24692,7 @@ export const SqlServerStoredProcedureActivity: coreClient.CompositeMapper = {
|
|
|
24673
24692
|
serializedName: "typeProperties.storedProcedureParameters",
|
|
24674
24693
|
type: {
|
|
24675
24694
|
name: "Dictionary",
|
|
24676
|
-
value: {
|
|
24677
|
-
type: { name: "Composite", className: "StoredProcedureParameter" }
|
|
24678
|
-
}
|
|
24695
|
+
value: { type: { name: "any" } }
|
|
24679
24696
|
}
|
|
24680
24697
|
}
|
|
24681
24698
|
}
|
|
@@ -24850,6 +24867,12 @@ export const WebActivity: coreClient.CompositeMapper = {
|
|
|
24850
24867
|
className: "WebActivityAuthentication"
|
|
24851
24868
|
}
|
|
24852
24869
|
},
|
|
24870
|
+
disableCertValidation: {
|
|
24871
|
+
serializedName: "typeProperties.disableCertValidation",
|
|
24872
|
+
type: {
|
|
24873
|
+
name: "Boolean"
|
|
24874
|
+
}
|
|
24875
|
+
},
|
|
24853
24876
|
datasets: {
|
|
24854
24877
|
serializedName: "typeProperties.datasets",
|
|
24855
24878
|
type: {
|
|
@@ -179,10 +179,12 @@ export class DataFlowDebugSessionImpl implements DataFlowDebugSession {
|
|
|
179
179
|
{ resourceGroupName, factoryName, request, options },
|
|
180
180
|
createOperationSpec
|
|
181
181
|
);
|
|
182
|
-
|
|
182
|
+
const poller = new LroEngine(lro, {
|
|
183
183
|
resumeFrom: options?.resumeFrom,
|
|
184
184
|
intervalInMs: options?.updateIntervalInMs
|
|
185
185
|
});
|
|
186
|
+
await poller.poll();
|
|
187
|
+
return poller;
|
|
186
188
|
}
|
|
187
189
|
|
|
188
190
|
/**
|
|
@@ -324,10 +326,12 @@ export class DataFlowDebugSessionImpl implements DataFlowDebugSession {
|
|
|
324
326
|
{ resourceGroupName, factoryName, request, options },
|
|
325
327
|
executeCommandOperationSpec
|
|
326
328
|
);
|
|
327
|
-
|
|
329
|
+
const poller = new LroEngine(lro, {
|
|
328
330
|
resumeFrom: options?.resumeFrom,
|
|
329
331
|
intervalInMs: options?.updateIntervalInMs
|
|
330
332
|
});
|
|
333
|
+
await poller.poll();
|
|
334
|
+
return poller;
|
|
331
335
|
}
|
|
332
336
|
|
|
333
337
|
/**
|
|
@@ -95,10 +95,12 @@ export class IntegrationRuntimeObjectMetadataImpl
|
|
|
95
95
|
{ resourceGroupName, factoryName, integrationRuntimeName, options },
|
|
96
96
|
refreshOperationSpec
|
|
97
97
|
);
|
|
98
|
-
|
|
98
|
+
const poller = new LroEngine(lro, {
|
|
99
99
|
resumeFrom: options?.resumeFrom,
|
|
100
100
|
intervalInMs: options?.updateIntervalInMs
|
|
101
101
|
});
|
|
102
|
+
await poller.poll();
|
|
103
|
+
return poller;
|
|
102
104
|
}
|
|
103
105
|
|
|
104
106
|
/**
|
|
@@ -415,10 +415,12 @@ export class IntegrationRuntimesImpl implements IntegrationRuntimes {
|
|
|
415
415
|
{ resourceGroupName, factoryName, integrationRuntimeName, options },
|
|
416
416
|
startOperationSpec
|
|
417
417
|
);
|
|
418
|
-
|
|
418
|
+
const poller = new LroEngine(lro, {
|
|
419
419
|
resumeFrom: options?.resumeFrom,
|
|
420
420
|
intervalInMs: options?.updateIntervalInMs
|
|
421
421
|
});
|
|
422
|
+
await poller.poll();
|
|
423
|
+
return poller;
|
|
422
424
|
}
|
|
423
425
|
|
|
424
426
|
/**
|
|
@@ -500,10 +502,12 @@ export class IntegrationRuntimesImpl implements IntegrationRuntimes {
|
|
|
500
502
|
{ resourceGroupName, factoryName, integrationRuntimeName, options },
|
|
501
503
|
stopOperationSpec
|
|
502
504
|
);
|
|
503
|
-
|
|
505
|
+
const poller = new LroEngine(lro, {
|
|
504
506
|
resumeFrom: options?.resumeFrom,
|
|
505
507
|
intervalInMs: options?.updateIntervalInMs
|
|
506
508
|
});
|
|
509
|
+
await poller.poll();
|
|
510
|
+
return poller;
|
|
507
511
|
}
|
|
508
512
|
|
|
509
513
|
/**
|
|
@@ -279,10 +279,12 @@ export class TriggersImpl implements Triggers {
|
|
|
279
279
|
{ resourceGroupName, factoryName, triggerName, options },
|
|
280
280
|
subscribeToEventsOperationSpec
|
|
281
281
|
);
|
|
282
|
-
|
|
282
|
+
const poller = new LroEngine(lro, {
|
|
283
283
|
resumeFrom: options?.resumeFrom,
|
|
284
284
|
intervalInMs: options?.updateIntervalInMs
|
|
285
285
|
});
|
|
286
|
+
await poller.poll();
|
|
287
|
+
return poller;
|
|
286
288
|
}
|
|
287
289
|
|
|
288
290
|
/**
|
|
@@ -388,10 +390,12 @@ export class TriggersImpl implements Triggers {
|
|
|
388
390
|
{ resourceGroupName, factoryName, triggerName, options },
|
|
389
391
|
unsubscribeFromEventsOperationSpec
|
|
390
392
|
);
|
|
391
|
-
|
|
393
|
+
const poller = new LroEngine(lro, {
|
|
392
394
|
resumeFrom: options?.resumeFrom,
|
|
393
395
|
intervalInMs: options?.updateIntervalInMs
|
|
394
396
|
});
|
|
397
|
+
await poller.poll();
|
|
398
|
+
return poller;
|
|
395
399
|
}
|
|
396
400
|
|
|
397
401
|
/**
|
|
@@ -473,10 +477,12 @@ export class TriggersImpl implements Triggers {
|
|
|
473
477
|
{ resourceGroupName, factoryName, triggerName, options },
|
|
474
478
|
startOperationSpec
|
|
475
479
|
);
|
|
476
|
-
|
|
480
|
+
const poller = new LroEngine(lro, {
|
|
477
481
|
resumeFrom: options?.resumeFrom,
|
|
478
482
|
intervalInMs: options?.updateIntervalInMs
|
|
479
483
|
});
|
|
484
|
+
await poller.poll();
|
|
485
|
+
return poller;
|
|
480
486
|
}
|
|
481
487
|
|
|
482
488
|
/**
|
|
@@ -558,10 +564,12 @@ export class TriggersImpl implements Triggers {
|
|
|
558
564
|
{ resourceGroupName, factoryName, triggerName, options },
|
|
559
565
|
stopOperationSpec
|
|
560
566
|
);
|
|
561
|
-
|
|
567
|
+
const poller = new LroEngine(lro, {
|
|
562
568
|
resumeFrom: options?.resumeFrom,
|
|
563
569
|
intervalInMs: options?.updateIntervalInMs
|
|
564
570
|
});
|
|
571
|
+
await poller.poll();
|
|
572
|
+
return poller;
|
|
565
573
|
}
|
|
566
574
|
|
|
567
575
|
/**
|
|
@@ -2375,11 +2375,20 @@ export declare interface CredentialReference {
|
|
|
2375
2375
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
2376
2376
|
[property: string]: any;
|
|
2377
2377
|
/** Credential reference type. */
|
|
2378
|
-
type:
|
|
2378
|
+
type: CredentialReferenceType;
|
|
2379
2379
|
/** Reference credential name. */
|
|
2380
2380
|
referenceName: string;
|
|
2381
2381
|
}
|
|
2382
2382
|
|
|
2383
|
+
/**
|
|
2384
|
+
* Defines values for CredentialReferenceType. \
|
|
2385
|
+
* {@link KnownCredentialReferenceType} can be used interchangeably with CredentialReferenceType,
|
|
2386
|
+
* this enum contains the known values that the service supports.
|
|
2387
|
+
* ### Known values supported by the service
|
|
2388
|
+
* **CredentialReference**
|
|
2389
|
+
*/
|
|
2390
|
+
export declare type CredentialReferenceType = string;
|
|
2391
|
+
|
|
2383
2392
|
/** Credential resource type. */
|
|
2384
2393
|
export declare type CredentialResource = SubResource & {
|
|
2385
2394
|
/** Properties of credentials. */
|
|
@@ -2806,7 +2815,7 @@ export declare interface DataFlowReference {
|
|
|
2806
2815
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
2807
2816
|
[property: string]: any;
|
|
2808
2817
|
/** Data flow reference type. */
|
|
2809
|
-
type:
|
|
2818
|
+
type: DataFlowReferenceType;
|
|
2810
2819
|
/** Reference data flow name. */
|
|
2811
2820
|
referenceName: string;
|
|
2812
2821
|
/** Reference data flow parameters from dataset. */
|
|
@@ -2817,6 +2826,15 @@ export declare interface DataFlowReference {
|
|
|
2817
2826
|
};
|
|
2818
2827
|
}
|
|
2819
2828
|
|
|
2829
|
+
/**
|
|
2830
|
+
* Defines values for DataFlowReferenceType. \
|
|
2831
|
+
* {@link KnownDataFlowReferenceType} can be used interchangeably with DataFlowReferenceType,
|
|
2832
|
+
* this enum contains the known values that the service supports.
|
|
2833
|
+
* ### Known values supported by the service
|
|
2834
|
+
* **DataFlowReference**
|
|
2835
|
+
*/
|
|
2836
|
+
export declare type DataFlowReferenceType = string;
|
|
2837
|
+
|
|
2820
2838
|
/** Data flow resource type. */
|
|
2821
2839
|
export declare type DataFlowResource = SubResource & {
|
|
2822
2840
|
/** Data flow properties. */
|
|
@@ -3765,6 +3783,8 @@ export declare interface ExecuteDataFlowActivityTypePropertiesCompute {
|
|
|
3765
3783
|
export declare type ExecutePipelineActivity = ControlActivity & {
|
|
3766
3784
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
|
3767
3785
|
type: "ExecutePipeline";
|
|
3786
|
+
/** Execute pipeline activity policy. */
|
|
3787
|
+
policy?: ExecutePipelineActivityPolicy;
|
|
3768
3788
|
/** Pipeline reference. */
|
|
3769
3789
|
pipeline: PipelineReference;
|
|
3770
3790
|
/** Pipeline parameters. */
|
|
@@ -3775,6 +3795,14 @@ export declare type ExecutePipelineActivity = ControlActivity & {
|
|
|
3775
3795
|
waitOnCompletion?: boolean;
|
|
3776
3796
|
};
|
|
3777
3797
|
|
|
3798
|
+
/** Execution policy for an execute pipeline activity. */
|
|
3799
|
+
export declare interface ExecutePipelineActivityPolicy {
|
|
3800
|
+
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
3801
|
+
[property: string]: any;
|
|
3802
|
+
/** When set to true, Input from activity is considered as secure and will not be logged to monitoring. */
|
|
3803
|
+
secureInput?: boolean;
|
|
3804
|
+
}
|
|
3805
|
+
|
|
3778
3806
|
/** Execute power query data flow activity properties. */
|
|
3779
3807
|
export declare type ExecutePowerQueryActivityTypeProperties = ExecuteDataFlowActivityTypeProperties & {
|
|
3780
3808
|
/** (Deprecated. Please use Queries). List of Power Query activity sinks mapped to a queryName. */
|
|
@@ -6504,6 +6532,11 @@ export declare enum KnownCosmosDbServicePrincipalCredentialType {
|
|
|
6504
6532
|
ServicePrincipalCert = "ServicePrincipalCert"
|
|
6505
6533
|
}
|
|
6506
6534
|
|
|
6535
|
+
/** Known values of {@link CredentialReferenceType} that the service accepts. */
|
|
6536
|
+
export declare enum KnownCredentialReferenceType {
|
|
6537
|
+
CredentialReference = "CredentialReference"
|
|
6538
|
+
}
|
|
6539
|
+
|
|
6507
6540
|
/** Known values of {@link DataFlowComputeType} that the service accepts. */
|
|
6508
6541
|
export declare enum KnownDataFlowComputeType {
|
|
6509
6542
|
General = "General",
|
|
@@ -6518,6 +6551,11 @@ export declare enum KnownDataFlowDebugCommandType {
|
|
|
6518
6551
|
ExecuteExpressionQuery = "executeExpressionQuery"
|
|
6519
6552
|
}
|
|
6520
6553
|
|
|
6554
|
+
/** Known values of {@link DataFlowReferenceType} that the service accepts. */
|
|
6555
|
+
export declare enum KnownDataFlowReferenceType {
|
|
6556
|
+
DataFlowReference = "DataFlowReference"
|
|
6557
|
+
}
|
|
6558
|
+
|
|
6521
6559
|
/** Known values of {@link DatasetCompressionLevel} that the service accepts. */
|
|
6522
6560
|
export declare enum KnownDatasetCompressionLevel {
|
|
6523
6561
|
Optimal = "Optimal",
|
|
@@ -6749,6 +6787,11 @@ export declare enum KnownManagedIntegrationRuntimeNodeStatus {
|
|
|
6749
6787
|
Unavailable = "Unavailable"
|
|
6750
6788
|
}
|
|
6751
6789
|
|
|
6790
|
+
/** Known values of {@link ManagedVirtualNetworkReferenceType} that the service accepts. */
|
|
6791
|
+
export declare enum KnownManagedVirtualNetworkReferenceType {
|
|
6792
|
+
ManagedVirtualNetworkReference = "ManagedVirtualNetworkReference"
|
|
6793
|
+
}
|
|
6794
|
+
|
|
6752
6795
|
/** Known values of {@link MongoDbAuthenticationType} that the service accepts. */
|
|
6753
6796
|
export declare enum KnownMongoDbAuthenticationType {
|
|
6754
6797
|
Basic = "Basic",
|
|
@@ -7102,6 +7145,11 @@ export declare enum KnownTeradataPartitionOption {
|
|
|
7102
7145
|
DynamicRange = "DynamicRange"
|
|
7103
7146
|
}
|
|
7104
7147
|
|
|
7148
|
+
/** Known values of {@link TriggerReferenceType} that the service accepts. */
|
|
7149
|
+
export declare enum KnownTriggerReferenceType {
|
|
7150
|
+
TriggerReference = "TriggerReference"
|
|
7151
|
+
}
|
|
7152
|
+
|
|
7105
7153
|
/** Known values of {@link TriggerRunStatus} that the service accepts. */
|
|
7106
7154
|
export declare enum KnownTriggerRunStatus {
|
|
7107
7155
|
Succeeded = "Succeeded",
|
|
@@ -7705,11 +7753,20 @@ export declare interface ManagedVirtualNetworkListResponse {
|
|
|
7705
7753
|
/** Managed Virtual Network reference type. */
|
|
7706
7754
|
export declare interface ManagedVirtualNetworkReference {
|
|
7707
7755
|
/** Managed Virtual Network reference type. */
|
|
7708
|
-
type:
|
|
7756
|
+
type: ManagedVirtualNetworkReferenceType;
|
|
7709
7757
|
/** Reference ManagedVirtualNetwork name. */
|
|
7710
7758
|
referenceName: string;
|
|
7711
7759
|
}
|
|
7712
7760
|
|
|
7761
|
+
/**
|
|
7762
|
+
* Defines values for ManagedVirtualNetworkReferenceType. \
|
|
7763
|
+
* {@link KnownManagedVirtualNetworkReferenceType} can be used interchangeably with ManagedVirtualNetworkReferenceType,
|
|
7764
|
+
* this enum contains the known values that the service supports.
|
|
7765
|
+
* ### Known values supported by the service
|
|
7766
|
+
* **ManagedVirtualNetworkReference**
|
|
7767
|
+
*/
|
|
7768
|
+
export declare type ManagedVirtualNetworkReferenceType = string;
|
|
7769
|
+
|
|
7713
7770
|
/** Managed Virtual Network resource type. */
|
|
7714
7771
|
export declare type ManagedVirtualNetworkResource = SubResource & {
|
|
7715
7772
|
/** Managed Virtual Network properties. */
|
|
@@ -11356,9 +11413,7 @@ export declare type SqlServerStoredProcedureActivity = ExecutionActivity & {
|
|
|
11356
11413
|
/** Stored procedure name. Type: string (or Expression with resultType string). */
|
|
11357
11414
|
storedProcedureName: Record<string, unknown>;
|
|
11358
11415
|
/** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
|
|
11359
|
-
storedProcedureParameters?:
|
|
11360
|
-
[propertyName: string]: StoredProcedureParameter;
|
|
11361
|
-
};
|
|
11416
|
+
storedProcedureParameters?: Record<string, unknown>;
|
|
11362
11417
|
};
|
|
11363
11418
|
|
|
11364
11419
|
/** The on-premises SQL Server dataset. */
|
|
@@ -12141,11 +12196,20 @@ export declare interface TriggerQueryResponse {
|
|
|
12141
12196
|
/** Trigger reference type. */
|
|
12142
12197
|
export declare interface TriggerReference {
|
|
12143
12198
|
/** Trigger reference type. */
|
|
12144
|
-
type:
|
|
12199
|
+
type: TriggerReferenceType;
|
|
12145
12200
|
/** Reference trigger name. */
|
|
12146
12201
|
referenceName: string;
|
|
12147
12202
|
}
|
|
12148
12203
|
|
|
12204
|
+
/**
|
|
12205
|
+
* Defines values for TriggerReferenceType. \
|
|
12206
|
+
* {@link KnownTriggerReferenceType} can be used interchangeably with TriggerReferenceType,
|
|
12207
|
+
* this enum contains the known values that the service supports.
|
|
12208
|
+
* ### Known values supported by the service
|
|
12209
|
+
* **TriggerReference**
|
|
12210
|
+
*/
|
|
12211
|
+
export declare type TriggerReferenceType = string;
|
|
12212
|
+
|
|
12149
12213
|
/** Trigger resource type. */
|
|
12150
12214
|
export declare type TriggerResource = SubResource & {
|
|
12151
12215
|
/** Properties of the trigger. */
|
|
@@ -12709,6 +12773,8 @@ export declare type WebActivity = ExecutionActivity & {
|
|
|
12709
12773
|
body?: Record<string, unknown>;
|
|
12710
12774
|
/** Authentication method used for calling the endpoint. */
|
|
12711
12775
|
authentication?: WebActivityAuthentication;
|
|
12776
|
+
/** When set to true, Certificate validation will be disabled. */
|
|
12777
|
+
disableCertValidation?: boolean;
|
|
12712
12778
|
/** List of datasets passed to web endpoint. */
|
|
12713
12779
|
datasets?: DatasetReference[];
|
|
12714
12780
|
/** List of linked services passed to web endpoint. */
|