|
7769 | 7769 | "description": "Metadata item value. Type: string (or Expression with resultType string)." |
7770 | 7770 | } |
7771 | 7771 | } |
| 7772 | + }, |
| 7773 | + "SynapseNotebookActivity": { |
| 7774 | + "description": "Execute Synapse notebook activity.", |
| 7775 | + "type": "object", |
| 7776 | + "x-ms-discriminator-value": "SynapseNotebook", |
| 7777 | + "allOf": [ |
| 7778 | + { |
| 7779 | + "$ref": "#/definitions/ExecutionActivity" |
| 7780 | + } |
| 7781 | + ], |
| 7782 | + "properties": { |
| 7783 | + "typeProperties": { |
| 7784 | + "x-ms-client-flatten": true, |
| 7785 | + "description": "Execute Synapse notebook activity properties.", |
| 7786 | + "$ref": "#/definitions/SynapseNotebookActivityTypeProperties" |
| 7787 | + } |
| 7788 | + }, |
| 7789 | + "required": [ |
| 7790 | + "typeProperties" |
| 7791 | + ] |
| 7792 | + }, |
| 7793 | + "SynapseNotebookActivityTypeProperties": { |
| 7794 | + "description": "Execute Synapse notebook activity properties.", |
| 7795 | + "type": "object", |
| 7796 | + "properties": { |
| 7797 | + "notebook": { |
| 7798 | + "description": "Synapse notebook reference.", |
| 7799 | + "$ref": "#/definitions/SynapseNotebookReference" |
| 7800 | + }, |
| 7801 | + "sparkPool": { |
| 7802 | + "description": "The name of the big data pool which will be used to execute the notebook.", |
| 7803 | + "$ref": "#/definitions/BigDataPoolParametrizationReference" |
| 7804 | + }, |
| 7805 | + "parameters": { |
| 7806 | + "description": "Notebook parameters.", |
| 7807 | + "type": "object", |
| 7808 | + "additionalProperties": { |
| 7809 | + "$ref": "#/definitions/NotebookParameter" |
| 7810 | + } |
| 7811 | + }, |
| 7812 | + "executorSize": { |
| 7813 | + "type": "object", |
| 7814 | + "description": "Number of core and memory to be used for executors allocated in the specified Spark pool for the session, which will be used for overriding 'executorCores' and 'executorMemory' of the notebook you provide. Type: string (or Expression with resultType string)." |
| 7815 | + }, |
| 7816 | + "conf": { |
| 7817 | + "type": "object", |
| 7818 | + "description": "Spark configuration properties, which will override the 'conf' of the notebook you provide." |
| 7819 | + }, |
| 7820 | + "driverSize": { |
| 7821 | + "type": "object", |
| 7822 | + "description": "Number of core and memory to be used for driver allocated in the specified Spark pool for the session, which will be used for overriding 'driverCores' and 'driverMemory' of the notebook you provide. Type: string (or Expression with resultType string)." |
| 7823 | + }, |
| 7824 | + "numExecutors": { |
| 7825 | + "description": "Number of executors to launch for this session, which will override the 'numExecutors' of the notebook you provide.", |
| 7826 | + "type": "integer", |
| 7827 | + "format": "int32" |
| 7828 | + } |
| 7829 | + }, |
| 7830 | + "required": [ |
| 7831 | + "notebook" |
| 7832 | + ] |
| 7833 | + }, |
| 7834 | + "SynapseNotebookReference": { |
| 7835 | + "description": "Synapse notebook reference type.", |
| 7836 | + "type": "object", |
| 7837 | + "properties": { |
| 7838 | + "type": { |
| 7839 | + "type": "string", |
| 7840 | + "description": "Synapse notebook reference type.", |
| 7841 | + "enum": [ |
| 7842 | + "NotebookReference" |
| 7843 | + ], |
| 7844 | + "x-ms-enum": { |
| 7845 | + "name": "NotebookReferenceType", |
| 7846 | + "modelAsString": true |
| 7847 | + } |
| 7848 | + }, |
| 7849 | + "referenceName": { |
| 7850 | + "type": "object", |
| 7851 | + "description": "Reference notebook name. Type: string (or Expression with resultType string)." |
| 7852 | + } |
| 7853 | + }, |
| 7854 | + "required": [ |
| 7855 | + "type", |
| 7856 | + "referenceName" |
| 7857 | + ] |
| 7858 | + }, |
| 7859 | + "BigDataPoolParametrizationReference": { |
| 7860 | + "description": "Big data pool reference type.", |
| 7861 | + "type": "object", |
| 7862 | + "properties": { |
| 7863 | + "type": { |
| 7864 | + "type": "string", |
| 7865 | + "description": "Big data pool reference type.", |
| 7866 | + "enum": [ |
| 7867 | + "BigDataPoolReference" |
| 7868 | + ], |
| 7869 | + "x-ms-enum": { |
| 7870 | + "name": "BigDataPoolReferenceType", |
| 7871 | + "modelAsString": true |
| 7872 | + } |
| 7873 | + }, |
| 7874 | + "referenceName": { |
| 7875 | + "type": "object", |
| 7876 | + "description": "Reference big data pool name. Type: string (or Expression with resultType string)." |
| 7877 | + } |
| 7878 | + }, |
| 7879 | + "required": [ |
| 7880 | + "type", |
| 7881 | + "referenceName" |
| 7882 | + ] |
| 7883 | + }, |
| 7884 | + "NotebookParameter": { |
| 7885 | + "description": "Notebook parameter.", |
| 7886 | + "type": "object", |
| 7887 | + "properties": { |
| 7888 | + "value": { |
| 7889 | + "type": "object", |
| 7890 | + "description": "Notebook parameter value. Type: string (or Expression with resultType string).", |
| 7891 | + "x-nullable": true |
| 7892 | + }, |
| 7893 | + "type": { |
| 7894 | + "description": "Notebook parameter type.", |
| 7895 | + "$ref": "#/definitions/NotebookParameterType" |
| 7896 | + } |
| 7897 | + } |
| 7898 | + }, |
| 7899 | + "NotebookParameterType": { |
| 7900 | + "description": "Notebook parameter type.", |
| 7901 | + "type": "string", |
| 7902 | + "enum": [ |
| 7903 | + "string", |
| 7904 | + "int", |
| 7905 | + "float", |
| 7906 | + "bool" |
| 7907 | + ], |
| 7908 | + "x-ms-enum": { |
| 7909 | + "name": "NotebookParameterType", |
| 7910 | + "modelAsString": true |
| 7911 | + } |
| 7912 | + }, |
| 7913 | + "SynapseSparkJobDefinitionActivity": { |
| 7914 | + "description": "Execute spark job activity.", |
| 7915 | + "type": "object", |
| 7916 | + "x-ms-discriminator-value": "SparkJob", |
| 7917 | + "allOf": [ |
| 7918 | + { |
| 7919 | + "$ref": "#/definitions/ExecutionActivity" |
| 7920 | + } |
| 7921 | + ], |
| 7922 | + "properties": { |
| 7923 | + "typeProperties": { |
| 7924 | + "x-ms-client-flatten": true, |
| 7925 | + "description": "Execute spark job activity properties.", |
| 7926 | + "$ref": "#/definitions/SynapseSparkJobActivityTypeProperties" |
| 7927 | + } |
| 7928 | + }, |
| 7929 | + "required": [ |
| 7930 | + "typeProperties" |
| 7931 | + ] |
| 7932 | + }, |
| 7933 | + "SynapseSparkJobActivityTypeProperties": { |
| 7934 | + "description": "Execute spark job activity properties.", |
| 7935 | + "type": "object", |
| 7936 | + "properties": { |
| 7937 | + "sparkJob": { |
| 7938 | + "description": "Synapse spark job reference.", |
| 7939 | + "$ref": "#/definitions/SynapseSparkJobReference" |
| 7940 | + }, |
| 7941 | + "args": { |
| 7942 | + "x-ms-client-name": "arguments", |
| 7943 | + "description": "User specified arguments to SynapseSparkJobDefinitionActivity.", |
| 7944 | + "type": "array", |
| 7945 | + "items": { |
| 7946 | + "description": "Type: string (or Expression with resultType string)." |
| 7947 | + }, |
| 7948 | + "x-ms-identifiers": [] |
| 7949 | + }, |
| 7950 | + "file": { |
| 7951 | + "type": "object", |
| 7952 | + "description": "The main file used for the job, which will override the 'file' of the spark job definition you provide. Type: string (or Expression with resultType string)." |
| 7953 | + }, |
| 7954 | + "className": { |
| 7955 | + "type": "object", |
| 7956 | + "description": "The fully-qualified identifier or the main class that is in the main definition file, which will override the 'className' of the spark job definition you provide. Type: string (or Expression with resultType string)." |
| 7957 | + }, |
| 7958 | + "files": { |
| 7959 | + "description": "Additional files used for reference in the main definition file, which will override the 'files' of the spark job definition you provide.", |
| 7960 | + "type": "array", |
| 7961 | + "items": { |
| 7962 | + "description": "Type: string (or Expression with resultType string)." |
| 7963 | + }, |
| 7964 | + "x-ms-identifiers": [] |
| 7965 | + }, |
| 7966 | + "targetBigDataPool": { |
| 7967 | + "$ref": "#/definitions/BigDataPoolParametrizationReference", |
| 7968 | + "description": "The name of the big data pool which will be used to execute the spark batch job, which will override the 'targetBigDataPool' of the spark job definition you provide." |
| 7969 | + }, |
| 7970 | + "executorSize": { |
| 7971 | + "type": "object", |
| 7972 | + "description": "Number of core and memory to be used for executors allocated in the specified Spark pool for the job, which will be used for overriding 'executorCores' and 'executorMemory' of the spark job definition you provide. Type: string (or Expression with resultType string)." |
| 7973 | + }, |
| 7974 | + "conf": { |
| 7975 | + "type": "object", |
| 7976 | + "description": "Spark configuration properties, which will override the 'conf' of the spark job definition you provide." |
| 7977 | + }, |
| 7978 | + "driverSize": { |
| 7979 | + "type": "object", |
| 7980 | + "description": "Number of core and memory to be used for driver allocated in the specified Spark pool for the job, which will be used for overriding 'driverCores' and 'driverMemory' of the spark job definition you provide. Type: string (or Expression with resultType string)." |
| 7981 | + }, |
| 7982 | + "numExecutors": { |
| 7983 | + "description": "Number of executors to launch for this job, which will override the 'numExecutors' of the spark job definition you provide.", |
| 7984 | + "type": "integer", |
| 7985 | + "format": "int32" |
| 7986 | + } |
| 7987 | + }, |
| 7988 | + "required": [ |
| 7989 | + "sparkJob" |
| 7990 | + ] |
| 7991 | + }, |
| 7992 | + "SynapseSparkJobReference": { |
| 7993 | + "description": "Synapse spark job reference type.", |
| 7994 | + "type": "object", |
| 7995 | + "properties": { |
| 7996 | + "type": { |
| 7997 | + "type": "string", |
| 7998 | + "description": "Synapse spark job reference type.", |
| 7999 | + "enum": [ |
| 8000 | + "SparkJobDefinitionReference" |
| 8001 | + ], |
| 8002 | + "x-ms-enum": { |
| 8003 | + "name": "SparkJobReferenceType", |
| 8004 | + "modelAsString": true |
| 8005 | + } |
| 8006 | + }, |
| 8007 | + "referenceName": { |
| 8008 | + "type": "string", |
| 8009 | + "description": "Reference spark job name." |
| 8010 | + } |
| 8011 | + }, |
| 8012 | + "required": [ |
| 8013 | + "type", |
| 8014 | + "referenceName" |
| 8015 | + ] |
7772 | 8016 | } |
7773 | 8017 | } |
7774 | 8018 | } |
0 commit comments