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 encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4111
4113
encryptedCredential?: Record<string, unknown>;
4114
+
/** The credential reference containing authentication information. */
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4141
4145
encryptedCredential?: Record<string, unknown>;
4146
+
/** The credential reference containing authentication information. */
/** The credential reference containing authentication information. */
4707
4713
credential?: CredentialReference;
4714
+
/** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string). */
/** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5816
5826
encryptedCredential?: Record<string, unknown>;
5827
+
/** The credential reference containing authentication information. */
5828
+
credential?: CredentialReference;
5829
+
/** Workspace resource id for databricks REST API. Type: string (or Expression with resultType string). */
/** This activity will fail within its own scope and output a custom error message and error code. The error message and code can provided either as a string literal or as an expression that can be evaluated to a string at runtime. The activity scope can be the whole pipeline or a control activity (e.g. foreach, switch, until), if the fail activity is contained in it. */
9114
+
export type FailActivity = ControlActivity & {
9115
+
/** Polymorphic discriminator, which specifies the different types this object can be */
9116
+
type: "Fail";
9117
+
/** The error message that surfaced in the Fail activity. It can be dynamic content that's evaluated to a non empty/blank string at runtime. Type: string (or Expression with resultType string). */
9118
+
message: Record<string, unknown>;
9119
+
/** The error code that categorizes the error type of the Fail activity. It can be dynamic content that's evaluated to a non empty/blank string at runtime. Type: string (or Expression with resultType string). */
9120
+
errorCode: Record<string, unknown>;
9121
+
};
9122
+
9094
9123
/** This activity executes inner activities until the specified boolean expression results to true or timeout is reached, whichever is earlier. */
9095
9124
export type UntilActivity = ControlActivity & {
9096
9125
/** Polymorphic discriminator, which specifies the different types this object can be */
0 commit comments