You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string). */
6537
6531
policyId?: any;
6532
+
/** A set of optional, user-specified cluster attributes key-value pairs. */
6533
+
newClusterAttributes?: { [propertyName: string]: any };
6534
+
/** Cluster option (Fixed / Autoscaling / Single Node) to enables the cluster nodes to be fixed or automatically scale between the minimum and maximum number of nodes, based on load. Single node clusters consists of a driver but no workers. Type: string (or Expression with resultType string). */
6535
+
clusterOption?: any;
6536
+
/** Access mode for data secured in unity catalog. Type: string (or Expression with resultType string). */
6537
+
dataSecurityMode?: any;
6538
6538
/** The credential reference containing authentication information. */
/** The timeout within which the webhook should be called back. If there is no value specified, it defaults to 10 minutes. Type: string. Pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
10319
10331
timeout?: string;
10320
10332
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string). */
10321
-
headers?: { [propertyName: string]: string };
10333
+
headers?: { [propertyName: string]: any };
10322
10334
/** Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string). */
10323
10335
body?: any;
10324
10336
/** Authentication method used for calling the endpoint. */
/** Web activity target endpoint and path. Type: string (or Expression with resultType string). */
10595
10607
url: any;
10596
10608
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string). */
10597
-
headers?: { [propertyName: string]: string };
10609
+
headers?: { [propertyName: string]: any };
10598
10610
/** Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string). */
10599
10611
body?: any;
10600
10612
/** Authentication method used for calling the endpoint. */
/** Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string) */
10739
10751
functionName: any;
10740
10752
/** Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string). */
10741
-
headers?: { [propertyName: string]: string };
10753
+
headers?: { [propertyName: string]: any };
10742
10754
/** Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string). */
0 commit comments