@azure/synapse-spark 1.0.0-alpha.20241028.1 → 1.0.0-alpha.20241030.1

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/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/models/index.ts","../src/tracing.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/sparkBatch.ts","../src/operations/sparkSessionOperations.ts","../src/sparkClient.ts"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\n/** Response for batch list operation. */\nexport interface SparkBatchJobCollection {\n /** The start index of fetched sessions. */\n from: number;\n /** Number of sessions fetched. */\n total: number;\n /** Batch list */\n sessions?: SparkBatchJob[];\n}\n\nexport interface SparkBatchJob {\n livyInfo?: SparkBatchJobState;\n /** The batch name. */\n name?: string;\n /** The workspace name. */\n workspaceName?: string;\n /** The Spark pool name. */\n sparkPoolName?: string;\n /** The submitter name. */\n submitterName?: string;\n /** The submitter identifier. */\n submitterId?: string;\n /** The artifact identifier. */\n artifactId?: string;\n /** The job type. */\n jobType?: SparkJobType;\n /** The Spark batch job result. */\n result?: SparkBatchJobResultType;\n /** The scheduler information. */\n scheduler?: SparkScheduler;\n /** The plugin information. */\n plugin?: SparkServicePlugin;\n /** The error information. */\n errors?: SparkServiceError[];\n /** The tags. */\n tags?: { [propertyName: string]: string };\n /** The session Id. */\n id: number;\n /** The application id of this session */\n appId?: string;\n /** The detailed application info. */\n appInfo?: { [propertyName: string]: string };\n /** The batch state */\n state?: LivyStates;\n /** The log lines. */\n logLines?: string[];\n}\n\nexport interface SparkBatchJobState {\n /** the time that at which \"not_started\" livy state was first seen. */\n notStartedAt?: Date;\n /** the time that at which \"starting\" livy state was first seen. */\n startingAt?: Date;\n /** the time that at which \"running\" livy state was first seen. */\n runningAt?: Date;\n /** time that at which \"dead\" livy state was first seen. */\n deadAt?: Date;\n /** the time that at which \"success\" livy state was first seen. */\n successAt?: Date;\n /** the time that at which \"killed\" livy state was first seen. */\n terminatedAt?: Date;\n /** the time that at which \"recovering\" livy state was first seen. */\n recoveringAt?: Date;\n /** the Spark job state. */\n currentState?: string;\n jobCreationRequest?: SparkRequest;\n}\n\nexport interface SparkRequest {\n name?: string;\n file?: string;\n className?: string;\n arguments?: string[];\n jars?: string[];\n pythonFiles?: string[];\n files?: string[];\n archives?: string[];\n /** Dictionary of <string> */\n configuration?: { [propertyName: string]: string };\n driverMemory?: string;\n driverCores?: number;\n executorMemory?: string;\n executorCores?: number;\n executorCount?: number;\n}\n\nexport interface SparkScheduler {\n submittedAt?: Date;\n scheduledAt?: Date;\n endedAt?: Date;\n cancellationRequestedAt?: Date;\n currentState?: SchedulerCurrentState;\n}\n\nexport interface SparkServicePlugin {\n preparationStartedAt?: Date;\n resourceAcquisitionStartedAt?: Date;\n submissionStartedAt?: Date;\n monitoringStartedAt?: Date;\n cleanupStartedAt?: Date;\n currentState?: PluginCurrentState;\n}\n\nexport interface SparkServiceError {\n message?: string;\n errorCode?: string;\n source?: SparkErrorSource;\n}\n\nexport interface SparkBatchJobOptions {\n /** Dictionary of <string> */\n tags?: { [propertyName: string]: string };\n artifactId?: string;\n name: string;\n file: string;\n className?: string;\n arguments?: string[];\n jars?: string[];\n pythonFiles?: string[];\n files?: string[];\n archives?: string[];\n /** Dictionary of <string> */\n configuration?: { [propertyName: string]: string };\n driverMemory?: string;\n driverCores?: number;\n executorMemory?: string;\n executorCores?: number;\n executorCount?: number;\n}\n\nexport interface SparkSessionCollection {\n from: number;\n total: number;\n sessions?: SparkSession[];\n}\n\nexport interface SparkSession {\n livyInfo?: SparkSessionState;\n name?: string;\n workspaceName?: string;\n sparkPoolName?: string;\n submitterName?: string;\n submitterId?: string;\n artifactId?: string;\n /** The job type. */\n jobType?: SparkJobType;\n result?: SparkSessionResultType;\n scheduler?: SparkScheduler;\n plugin?: SparkServicePlugin;\n errors?: SparkServiceError[];\n /** Dictionary of <string> */\n tags?: { [propertyName: string]: string };\n id: number;\n appId?: string;\n /** Dictionary of <string> */\n appInfo?: { [propertyName: string]: string };\n /** The session state. */\n state?: LivyStates;\n logLines?: string[];\n}\n\nexport interface SparkSessionState {\n notStartedAt?: Date;\n startingAt?: Date;\n idleAt?: Date;\n deadAt?: Date;\n shuttingDownAt?: Date;\n terminatedAt?: Date;\n recoveringAt?: Date;\n busyAt?: Date;\n errorAt?: Date;\n currentState?: string;\n jobCreationRequest?: SparkRequest;\n}\n\nexport interface SparkSessionOptions {\n /** Dictionary of <string> */\n tags?: { [propertyName: string]: string };\n artifactId?: string;\n name: string;\n file?: string;\n className?: string;\n arguments?: string[];\n jars?: string[];\n pythonFiles?: string[];\n files?: string[];\n archives?: string[];\n /** Dictionary of <string> */\n configuration?: { [propertyName: string]: string };\n driverMemory?: string;\n driverCores?: number;\n executorMemory?: string;\n executorCores?: number;\n executorCount?: number;\n}\n\nexport interface SparkStatementCollection {\n total: number;\n statements?: SparkStatement[];\n}\n\nexport interface SparkStatement {\n id: number;\n code?: string;\n state?: LivyStatementStates;\n output?: SparkStatementOutput;\n}\n\nexport interface SparkStatementOutput {\n status?: string;\n executionCount: number;\n /** Any object */\n data?: Record<string, unknown>;\n errorName?: string;\n errorValue?: string;\n traceback?: string[];\n}\n\nexport interface SparkStatementOptions {\n code?: string;\n kind?: SparkStatementLanguageType;\n}\n\nexport interface SparkStatementCancellationResult {\n /** The msg property from the Livy API. The value is always \"canceled\". */\n message?: string;\n}\n\n/** Known values of {@link SparkJobType} that the service accepts. */\nexport enum KnownSparkJobType {\n /** SparkBatch */\n SparkBatch = \"SparkBatch\",\n /** SparkSession */\n SparkSession = \"SparkSession\"\n}\n\n/**\n * Defines values for SparkJobType. \\\n * {@link KnownSparkJobType} can be used interchangeably with SparkJobType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **SparkBatch** \\\n * **SparkSession**\n */\nexport type SparkJobType = string;\n\n/** Known values of {@link SparkBatchJobResultType} that the service accepts. */\nexport enum KnownSparkBatchJobResultType {\n /** Uncertain */\n Uncertain = \"Uncertain\",\n /** Succeeded */\n Succeeded = \"Succeeded\",\n /** Failed */\n Failed = \"Failed\",\n /** Cancelled */\n Cancelled = \"Cancelled\"\n}\n\n/**\n * Defines values for SparkBatchJobResultType. \\\n * {@link KnownSparkBatchJobResultType} can be used interchangeably with SparkBatchJobResultType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Uncertain** \\\n * **Succeeded** \\\n * **Failed** \\\n * **Cancelled**\n */\nexport type SparkBatchJobResultType = string;\n\n/** Known values of {@link SchedulerCurrentState} that the service accepts. */\nexport enum KnownSchedulerCurrentState {\n /** Queued */\n Queued = \"Queued\",\n /** Scheduled */\n Scheduled = \"Scheduled\",\n /** Ended */\n Ended = \"Ended\"\n}\n\n/**\n * Defines values for SchedulerCurrentState. \\\n * {@link KnownSchedulerCurrentState} can be used interchangeably with SchedulerCurrentState,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Queued** \\\n * **Scheduled** \\\n * **Ended**\n */\nexport type SchedulerCurrentState = string;\n\n/** Known values of {@link PluginCurrentState} that the service accepts. */\nexport enum KnownPluginCurrentState {\n /** Preparation */\n Preparation = \"Preparation\",\n /** ResourceAcquisition */\n ResourceAcquisition = \"ResourceAcquisition\",\n /** Queued */\n Queued = \"Queued\",\n /** Submission */\n Submission = \"Submission\",\n /** Monitoring */\n Monitoring = \"Monitoring\",\n /** Cleanup */\n Cleanup = \"Cleanup\",\n /** Ended */\n Ended = \"Ended\"\n}\n\n/**\n * Defines values for PluginCurrentState. \\\n * {@link KnownPluginCurrentState} can be used interchangeably with PluginCurrentState,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Preparation** \\\n * **ResourceAcquisition** \\\n * **Queued** \\\n * **Submission** \\\n * **Monitoring** \\\n * **Cleanup** \\\n * **Ended**\n */\nexport type PluginCurrentState = string;\n\n/** Known values of {@link SparkErrorSource} that the service accepts. */\nexport enum KnownSparkErrorSource {\n /** System */\n System = \"System\",\n /** User */\n User = \"User\",\n /** Unknown */\n Unknown = \"Unknown\",\n /** Dependency */\n Dependency = \"Dependency\"\n}\n\n/**\n * Defines values for SparkErrorSource. \\\n * {@link KnownSparkErrorSource} can be used interchangeably with SparkErrorSource,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **System** \\\n * **User** \\\n * **Unknown** \\\n * **Dependency**\n */\nexport type SparkErrorSource = string;\n\n/** Known values of {@link LivyStates} that the service accepts. */\nexport enum KnownLivyStates {\n /** NotStarted */\n NotStarted = \"not_started\",\n /** Starting */\n Starting = \"starting\",\n /** Idle */\n Idle = \"idle\",\n /** Busy */\n Busy = \"busy\",\n /** ShuttingDown */\n ShuttingDown = \"shutting_down\",\n /** Error */\n Error = \"error\",\n /** Dead */\n Dead = \"dead\",\n /** Killed */\n Killed = \"killed\",\n /** Success */\n Success = \"success\",\n /** Running */\n Running = \"running\",\n /** Recovering */\n Recovering = \"recovering\"\n}\n\n/**\n * Defines values for LivyStates. \\\n * {@link KnownLivyStates} can be used interchangeably with LivyStates,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **not_started** \\\n * **starting** \\\n * **idle** \\\n * **busy** \\\n * **shutting_down** \\\n * **error** \\\n * **dead** \\\n * **killed** \\\n * **success** \\\n * **running** \\\n * **recovering**\n */\nexport type LivyStates = string;\n\n/** Known values of {@link SparkSessionResultType} that the service accepts. */\nexport enum KnownSparkSessionResultType {\n /** Uncertain */\n Uncertain = \"Uncertain\",\n /** Succeeded */\n Succeeded = \"Succeeded\",\n /** Failed */\n Failed = \"Failed\",\n /** Cancelled */\n Cancelled = \"Cancelled\"\n}\n\n/**\n * Defines values for SparkSessionResultType. \\\n * {@link KnownSparkSessionResultType} can be used interchangeably with SparkSessionResultType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Uncertain** \\\n * **Succeeded** \\\n * **Failed** \\\n * **Cancelled**\n */\nexport type SparkSessionResultType = string;\n\n/** Known values of {@link LivyStatementStates} that the service accepts. */\nexport enum KnownLivyStatementStates {\n /** Waiting */\n Waiting = \"waiting\",\n /** Running */\n Running = \"running\",\n /** Available */\n Available = \"available\",\n /** Error */\n Error = \"error\",\n /** Cancelling */\n Cancelling = \"cancelling\",\n /** Cancelled */\n Cancelled = \"cancelled\"\n}\n\n/**\n * Defines values for LivyStatementStates. \\\n * {@link KnownLivyStatementStates} can be used interchangeably with LivyStatementStates,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **waiting** \\\n * **running** \\\n * **available** \\\n * **error** \\\n * **cancelling** \\\n * **cancelled**\n */\nexport type LivyStatementStates = string;\n\n/** Known values of {@link SparkStatementLanguageType} that the service accepts. */\nexport enum KnownSparkStatementLanguageType {\n /** Spark */\n Spark = \"spark\",\n /** PySpark */\n PySpark = \"pyspark\",\n /** DotNetSpark */\n DotNetSpark = \"dotnetspark\",\n /** Sql */\n Sql = \"sql\"\n}\n\n/**\n * Defines values for SparkStatementLanguageType. \\\n * {@link KnownSparkStatementLanguageType} can be used interchangeably with SparkStatementLanguageType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **spark** \\\n * **pyspark** \\\n * **dotnetspark** \\\n * **sql**\n */\nexport type SparkStatementLanguageType = string;\n\n/** Optional parameters. */\nexport interface SparkBatchGetSparkBatchJobsOptionalParams\n extends coreClient.OperationOptions {\n /** Optional param specifying which index the list should begin from. */\n fromParam?: number;\n /**\n * Optional param specifying the size of the returned list.\n * By default it is 20 and that is the maximum.\n */\n size?: number;\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the getSparkBatchJobs operation. */\nexport type SparkBatchGetSparkBatchJobsResponse = SparkBatchJobCollection;\n\n/** Optional parameters. */\nexport interface SparkBatchCreateSparkBatchJobOptionalParams\n extends coreClient.OperationOptions {\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the createSparkBatchJob operation. */\nexport type SparkBatchCreateSparkBatchJobResponse = SparkBatchJob;\n\n/** Optional parameters. */\nexport interface SparkBatchGetSparkBatchJobOptionalParams\n extends coreClient.OperationOptions {\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the getSparkBatchJob operation. */\nexport type SparkBatchGetSparkBatchJobResponse = SparkBatchJob;\n\n/** Optional parameters. */\nexport interface SparkBatchCancelSparkBatchJobOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface SparkSessionGetSparkSessionsOptionalParams\n extends coreClient.OperationOptions {\n /** Optional param specifying which index the list should begin from. */\n fromParam?: number;\n /**\n * Optional param specifying the size of the returned list.\n * By default it is 20 and that is the maximum.\n */\n size?: number;\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the getSparkSessions operation. */\nexport type SparkSessionGetSparkSessionsResponse = SparkSessionCollection;\n\n/** Optional parameters. */\nexport interface SparkSessionCreateSparkSessionOptionalParams\n extends coreClient.OperationOptions {\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the createSparkSession operation. */\nexport type SparkSessionCreateSparkSessionResponse = SparkSession;\n\n/** Optional parameters. */\nexport interface SparkSessionGetSparkSessionOptionalParams\n extends coreClient.OperationOptions {\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the getSparkSession operation. */\nexport type SparkSessionGetSparkSessionResponse = SparkSession;\n\n/** Optional parameters. */\nexport interface SparkSessionCancelSparkSessionOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface SparkSessionResetSparkSessionTimeoutOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface SparkSessionGetSparkStatementsOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the getSparkStatements operation. */\nexport type SparkSessionGetSparkStatementsResponse = SparkStatementCollection;\n\n/** Optional parameters. */\nexport interface SparkSessionCreateSparkStatementOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the createSparkStatement operation. */\nexport type SparkSessionCreateSparkStatementResponse = SparkStatement;\n\n/** Optional parameters. */\nexport interface SparkSessionGetSparkStatementOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the getSparkStatement operation. */\nexport type SparkSessionGetSparkStatementResponse = SparkStatement;\n\n/** Optional parameters. */\nexport interface SparkSessionCancelSparkStatementOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the cancelSparkStatement operation. */\nexport type SparkSessionCancelSparkStatementResponse = SparkStatementCancellationResult;\n\n/** Optional parameters. */\nexport interface SparkClientOptionalParams\n extends coreClient.ServiceClientOptions {\n /** Valid api-version for the request. */\n livyApiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { createTracingClient } from \"@azure/core-tracing\";\n\nexport const tracingClient = createTracingClient({\n namespace: \"Azure.Synapse.Spark\",\n packageName: \"@azure/synapse-spark\",\n packageVersion: \"1.0.0-beta.6\"\n});\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport const SparkBatchJobCollection: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkBatchJobCollection\",\n modelProperties: {\n from: {\n serializedName: \"from\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n total: {\n serializedName: \"total\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n sessions: {\n serializedName: \"sessions\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SparkBatchJob\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkBatchJob: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkBatchJob\",\n modelProperties: {\n livyInfo: {\n serializedName: \"livyInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkBatchJobState\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n workspaceName: {\n serializedName: \"workspaceName\",\n type: {\n name: \"String\"\n }\n },\n sparkPoolName: {\n serializedName: \"sparkPoolName\",\n type: {\n name: \"String\"\n }\n },\n submitterName: {\n serializedName: \"submitterName\",\n type: {\n name: \"String\"\n }\n },\n submitterId: {\n serializedName: \"submitterId\",\n type: {\n name: \"String\"\n }\n },\n artifactId: {\n serializedName: \"artifactId\",\n type: {\n name: \"String\"\n }\n },\n jobType: {\n serializedName: \"jobType\",\n type: {\n name: \"String\"\n }\n },\n result: {\n serializedName: \"result\",\n type: {\n name: \"String\"\n }\n },\n scheduler: {\n serializedName: \"schedulerInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkScheduler\"\n }\n },\n plugin: {\n serializedName: \"pluginInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkServicePlugin\"\n }\n },\n errors: {\n serializedName: \"errorInfo\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SparkServiceError\"\n }\n }\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n id: {\n serializedName: \"id\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n appId: {\n serializedName: \"appId\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n appInfo: {\n serializedName: \"appInfo\",\n nullable: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n state: {\n serializedName: \"state\",\n type: {\n name: \"String\"\n }\n },\n logLines: {\n serializedName: \"log\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkBatchJobState: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkBatchJobState\",\n modelProperties: {\n notStartedAt: {\n serializedName: \"notStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n startingAt: {\n serializedName: \"startingAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n runningAt: {\n serializedName: \"runningAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n deadAt: {\n serializedName: \"deadAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n successAt: {\n serializedName: \"successAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n terminatedAt: {\n serializedName: \"killedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n recoveringAt: {\n serializedName: \"recoveringAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n currentState: {\n serializedName: \"currentState\",\n type: {\n name: \"String\"\n }\n },\n jobCreationRequest: {\n serializedName: \"jobCreationRequest\",\n type: {\n name: \"Composite\",\n className: \"SparkRequest\"\n }\n }\n }\n }\n};\n\nexport const SparkRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkRequest\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n file: {\n serializedName: \"file\",\n type: {\n name: \"String\"\n }\n },\n className: {\n serializedName: \"className\",\n type: {\n name: \"String\"\n }\n },\n arguments: {\n serializedName: \"args\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n jars: {\n serializedName: \"jars\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n pythonFiles: {\n serializedName: \"pyFiles\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n files: {\n serializedName: \"files\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n archives: {\n serializedName: \"archives\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n configuration: {\n serializedName: \"conf\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n driverMemory: {\n serializedName: \"driverMemory\",\n type: {\n name: \"String\"\n }\n },\n driverCores: {\n serializedName: \"driverCores\",\n type: {\n name: \"Number\"\n }\n },\n executorMemory: {\n serializedName: \"executorMemory\",\n type: {\n name: \"String\"\n }\n },\n executorCores: {\n serializedName: \"executorCores\",\n type: {\n name: \"Number\"\n }\n },\n executorCount: {\n serializedName: \"numExecutors\",\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const SparkScheduler: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkScheduler\",\n modelProperties: {\n submittedAt: {\n serializedName: \"submittedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n scheduledAt: {\n serializedName: \"scheduledAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n endedAt: {\n serializedName: \"endedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n cancellationRequestedAt: {\n serializedName: \"cancellationRequestedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n currentState: {\n serializedName: \"currentState\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SparkServicePlugin: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkServicePlugin\",\n modelProperties: {\n preparationStartedAt: {\n serializedName: \"preparationStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n resourceAcquisitionStartedAt: {\n serializedName: \"resourceAcquisitionStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n submissionStartedAt: {\n serializedName: \"submissionStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n monitoringStartedAt: {\n serializedName: \"monitoringStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n cleanupStartedAt: {\n serializedName: \"cleanupStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n currentState: {\n serializedName: \"currentState\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SparkServiceError: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkServiceError\",\n modelProperties: {\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n },\n errorCode: {\n serializedName: \"errorCode\",\n type: {\n name: \"String\"\n }\n },\n source: {\n serializedName: \"source\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SparkBatchJobOptions: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkBatchJobOptions\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n artifactId: {\n serializedName: \"artifactId\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n file: {\n serializedName: \"file\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n className: {\n serializedName: \"className\",\n type: {\n name: \"String\"\n }\n },\n arguments: {\n serializedName: \"args\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n jars: {\n serializedName: \"jars\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n pythonFiles: {\n serializedName: \"pyFiles\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n files: {\n serializedName: \"files\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n archives: {\n serializedName: \"archives\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n configuration: {\n serializedName: \"conf\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n driverMemory: {\n serializedName: \"driverMemory\",\n type: {\n name: \"String\"\n }\n },\n driverCores: {\n serializedName: \"driverCores\",\n type: {\n name: \"Number\"\n }\n },\n executorMemory: {\n serializedName: \"executorMemory\",\n type: {\n name: \"String\"\n }\n },\n executorCores: {\n serializedName: \"executorCores\",\n type: {\n name: \"Number\"\n }\n },\n executorCount: {\n serializedName: \"numExecutors\",\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const SparkSessionCollection: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkSessionCollection\",\n modelProperties: {\n from: {\n serializedName: \"from\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n total: {\n serializedName: \"total\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n sessions: {\n serializedName: \"sessions\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SparkSession\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkSession: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkSession\",\n modelProperties: {\n livyInfo: {\n serializedName: \"livyInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkSessionState\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n workspaceName: {\n serializedName: \"workspaceName\",\n type: {\n name: \"String\"\n }\n },\n sparkPoolName: {\n serializedName: \"sparkPoolName\",\n type: {\n name: \"String\"\n }\n },\n submitterName: {\n serializedName: \"submitterName\",\n type: {\n name: \"String\"\n }\n },\n submitterId: {\n serializedName: \"submitterId\",\n type: {\n name: \"String\"\n }\n },\n artifactId: {\n serializedName: \"artifactId\",\n type: {\n name: \"String\"\n }\n },\n jobType: {\n serializedName: \"jobType\",\n type: {\n name: \"String\"\n }\n },\n result: {\n serializedName: \"result\",\n type: {\n name: \"String\"\n }\n },\n scheduler: {\n serializedName: \"schedulerInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkScheduler\"\n }\n },\n plugin: {\n serializedName: \"pluginInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkServicePlugin\"\n }\n },\n errors: {\n serializedName: \"errorInfo\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SparkServiceError\"\n }\n }\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n id: {\n serializedName: \"id\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n appId: {\n serializedName: \"appId\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n appInfo: {\n serializedName: \"appInfo\",\n nullable: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n state: {\n serializedName: \"state\",\n type: {\n name: \"String\"\n }\n },\n logLines: {\n serializedName: \"log\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkSessionState: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkSessionState\",\n modelProperties: {\n notStartedAt: {\n serializedName: \"notStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n startingAt: {\n serializedName: \"startingAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n idleAt: {\n serializedName: \"idleAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n deadAt: {\n serializedName: \"deadAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n shuttingDownAt: {\n serializedName: \"shuttingDownAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n terminatedAt: {\n serializedName: \"killedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n recoveringAt: {\n serializedName: \"recoveringAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n busyAt: {\n serializedName: \"busyAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n errorAt: {\n serializedName: \"errorAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n currentState: {\n serializedName: \"currentState\",\n type: {\n name: \"String\"\n }\n },\n jobCreationRequest: {\n serializedName: \"jobCreationRequest\",\n type: {\n name: \"Composite\",\n className: \"SparkRequest\"\n }\n }\n }\n }\n};\n\nexport const SparkSessionOptions: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkSessionOptions\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n artifactId: {\n serializedName: \"artifactId\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n file: {\n serializedName: \"file\",\n type: {\n name: \"String\"\n }\n },\n className: {\n serializedName: \"className\",\n type: {\n name: \"String\"\n }\n },\n arguments: {\n serializedName: \"args\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n jars: {\n serializedName: \"jars\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n pythonFiles: {\n serializedName: \"pyFiles\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n files: {\n serializedName: \"files\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n archives: {\n serializedName: \"archives\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n configuration: {\n serializedName: \"conf\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n driverMemory: {\n serializedName: \"driverMemory\",\n type: {\n name: \"String\"\n }\n },\n driverCores: {\n serializedName: \"driverCores\",\n type: {\n name: \"Number\"\n }\n },\n executorMemory: {\n serializedName: \"executorMemory\",\n type: {\n name: \"String\"\n }\n },\n executorCores: {\n serializedName: \"executorCores\",\n type: {\n name: \"Number\"\n }\n },\n executorCount: {\n serializedName: \"numExecutors\",\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const SparkStatementCollection: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkStatementCollection\",\n modelProperties: {\n total: {\n serializedName: \"total_statements\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n statements: {\n serializedName: \"statements\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SparkStatement\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkStatement: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkStatement\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n state: {\n serializedName: \"state\",\n type: {\n name: \"String\"\n }\n },\n output: {\n serializedName: \"output\",\n type: {\n name: \"Composite\",\n className: \"SparkStatementOutput\"\n }\n }\n }\n }\n};\n\nexport const SparkStatementOutput: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkStatementOutput\",\n modelProperties: {\n status: {\n serializedName: \"status\",\n type: {\n name: \"String\"\n }\n },\n executionCount: {\n serializedName: \"execution_count\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n data: {\n serializedName: \"data\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n },\n errorName: {\n serializedName: \"ename\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n errorValue: {\n serializedName: \"evalue\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n traceback: {\n serializedName: \"traceback\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkStatementOptions: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkStatementOptions\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n kind: {\n serializedName: \"kind\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SparkStatementCancellationResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkStatementCancellationResult\",\n modelProperties: {\n message: {\n serializedName: \"msg\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\nimport {\n SparkBatchJobOptions as SparkBatchJobOptionsMapper,\n SparkSessionOptions as SparkSessionOptionsMapper,\n SparkStatementOptions as SparkStatementOptionsMapper\n} from \"../models/mappers\";\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const endpoint: OperationURLParameter = {\n parameterPath: \"endpoint\",\n mapper: {\n serializedName: \"endpoint\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const livyApiVersion: OperationURLParameter = {\n parameterPath: \"livyApiVersion\",\n mapper: {\n serializedName: \"livyApiVersion\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const sparkPoolName: OperationURLParameter = {\n parameterPath: \"sparkPoolName\",\n mapper: {\n serializedName: \"sparkPoolName\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const fromParam: OperationQueryParameter = {\n parameterPath: [\"options\", \"from\"],\n mapper: {\n serializedName: \"from\",\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const size: OperationQueryParameter = {\n parameterPath: [\"options\", \"size\"],\n mapper: {\n serializedName: \"size\",\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const detailed: OperationQueryParameter = {\n parameterPath: [\"options\", \"detailed\"],\n mapper: {\n serializedName: \"detailed\",\n type: {\n name: \"Boolean\"\n }\n }\n};\n\nexport const contentType: OperationParameter = {\n parameterPath: [\"options\", \"contentType\"],\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Content-Type\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const sparkBatchJobOptions: OperationParameter = {\n parameterPath: \"sparkBatchJobOptions\",\n mapper: SparkBatchJobOptionsMapper\n};\n\nexport const batchId: OperationURLParameter = {\n parameterPath: \"batchId\",\n mapper: {\n serializedName: \"batchId\",\n required: true,\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const sparkSessionOptions: OperationParameter = {\n parameterPath: \"sparkSessionOptions\",\n mapper: SparkSessionOptionsMapper\n};\n\nexport const sessionId: OperationURLParameter = {\n parameterPath: \"sessionId\",\n mapper: {\n serializedName: \"sessionId\",\n required: true,\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const sparkStatementOptions: OperationParameter = {\n parameterPath: \"sparkStatementOptions\",\n mapper: SparkStatementOptionsMapper\n};\n\nexport const statementId: OperationURLParameter = {\n parameterPath: \"statementId\",\n mapper: {\n serializedName: \"statementId\",\n required: true,\n type: {\n name: \"Number\"\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { tracingClient } from \"../tracing\";\nimport { SparkBatch } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { SparkClient } from \"../sparkClient\";\nimport {\n SparkBatchGetSparkBatchJobsOptionalParams,\n SparkBatchGetSparkBatchJobsResponse,\n SparkBatchJobOptions,\n SparkBatchCreateSparkBatchJobOptionalParams,\n SparkBatchCreateSparkBatchJobResponse,\n SparkBatchGetSparkBatchJobOptionalParams,\n SparkBatchGetSparkBatchJobResponse,\n SparkBatchCancelSparkBatchJobOptionalParams\n} from \"../models\";\n\n/** Class containing SparkBatch operations. */\nexport class SparkBatchImpl implements SparkBatch {\n private readonly client: SparkClient;\n\n /**\n * Initialize a new instance of the class SparkBatch class.\n * @param client Reference to the service client\n */\n constructor(client: SparkClient) {\n this.client = client;\n }\n\n /**\n * List all spark batch jobs which are running under a particular spark pool.\n * @param options The options parameters.\n */\n async getSparkBatchJobs(\n options?: SparkBatchGetSparkBatchJobsOptionalParams\n ): Promise<SparkBatchGetSparkBatchJobsResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkBatchJobs\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { options },\n getSparkBatchJobsOperationSpec\n ) as Promise<SparkBatchGetSparkBatchJobsResponse>;\n }\n );\n }\n\n /**\n * Create new spark batch job.\n * @param sparkBatchJobOptions Livy compatible batch job request payload.\n * @param options The options parameters.\n */\n async createSparkBatchJob(\n sparkBatchJobOptions: SparkBatchJobOptions,\n options?: SparkBatchCreateSparkBatchJobOptionalParams\n ): Promise<SparkBatchCreateSparkBatchJobResponse> {\n return tracingClient.withSpan(\n \"SparkClient.createSparkBatchJob\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sparkBatchJobOptions, options },\n createSparkBatchJobOperationSpec\n ) as Promise<SparkBatchCreateSparkBatchJobResponse>;\n }\n );\n }\n\n /**\n * Gets a single spark batch job.\n * @param batchId Identifier for the batch job.\n * @param options The options parameters.\n */\n async getSparkBatchJob(\n batchId: number,\n options?: SparkBatchGetSparkBatchJobOptionalParams\n ): Promise<SparkBatchGetSparkBatchJobResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkBatchJob\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { batchId, options },\n getSparkBatchJobOperationSpec\n ) as Promise<SparkBatchGetSparkBatchJobResponse>;\n }\n );\n }\n\n /**\n * Cancels a running spark batch job.\n * @param batchId Identifier for the batch job.\n * @param options The options parameters.\n */\n async cancelSparkBatchJob(\n batchId: number,\n options?: SparkBatchCancelSparkBatchJobOptionalParams\n ): Promise<void> {\n return tracingClient.withSpan(\n \"SparkClient.cancelSparkBatchJob\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { batchId, options },\n cancelSparkBatchJobOperationSpec\n ) as Promise<void>;\n }\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst getSparkBatchJobsOperationSpec: coreClient.OperationSpec = {\n path: \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/batches\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkBatchJobCollection\n }\n },\n queryParameters: [Parameters.fromParam, Parameters.size, Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createSparkBatchJobOperationSpec: coreClient.OperationSpec = {\n path: \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/batches\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkBatchJob\n }\n },\n requestBody: Parameters.sparkBatchJobOptions,\n queryParameters: [Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst getSparkBatchJobOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/batches/{batchId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkBatchJob\n }\n },\n queryParameters: [Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.batchId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst cancelSparkBatchJobOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/batches/{batchId}\",\n httpMethod: \"DELETE\",\n responses: { 200: {} },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.batchId\n ],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { tracingClient } from \"../tracing\";\nimport { SparkSessionOperations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { SparkClient } from \"../sparkClient\";\nimport {\n SparkSessionGetSparkSessionsOptionalParams,\n SparkSessionGetSparkSessionsResponse,\n SparkSessionOptions,\n SparkSessionCreateSparkSessionOptionalParams,\n SparkSessionCreateSparkSessionResponse,\n SparkSessionGetSparkSessionOptionalParams,\n SparkSessionGetSparkSessionResponse,\n SparkSessionCancelSparkSessionOptionalParams,\n SparkSessionResetSparkSessionTimeoutOptionalParams,\n SparkSessionGetSparkStatementsOptionalParams,\n SparkSessionGetSparkStatementsResponse,\n SparkStatementOptions,\n SparkSessionCreateSparkStatementOptionalParams,\n SparkSessionCreateSparkStatementResponse,\n SparkSessionGetSparkStatementOptionalParams,\n SparkSessionGetSparkStatementResponse,\n SparkSessionCancelSparkStatementOptionalParams,\n SparkSessionCancelSparkStatementResponse\n} from \"../models\";\n\n/** Class containing SparkSessionOperations operations. */\nexport class SparkSessionOperationsImpl implements SparkSessionOperations {\n private readonly client: SparkClient;\n\n /**\n * Initialize a new instance of the class SparkSessionOperations class.\n * @param client Reference to the service client\n */\n constructor(client: SparkClient) {\n this.client = client;\n }\n\n /**\n * List all spark sessions which are running under a particular spark pool.\n * @param options The options parameters.\n */\n async getSparkSessions(\n options?: SparkSessionGetSparkSessionsOptionalParams\n ): Promise<SparkSessionGetSparkSessionsResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkSessions\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { options },\n getSparkSessionsOperationSpec\n ) as Promise<SparkSessionGetSparkSessionsResponse>;\n }\n );\n }\n\n /**\n * Create new spark session.\n * @param sparkSessionOptions Livy compatible batch job request payload.\n * @param options The options parameters.\n */\n async createSparkSession(\n sparkSessionOptions: SparkSessionOptions,\n options?: SparkSessionCreateSparkSessionOptionalParams\n ): Promise<SparkSessionCreateSparkSessionResponse> {\n return tracingClient.withSpan(\n \"SparkClient.createSparkSession\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sparkSessionOptions, options },\n createSparkSessionOperationSpec\n ) as Promise<SparkSessionCreateSparkSessionResponse>;\n }\n );\n }\n\n /**\n * Gets a single spark session.\n * @param sessionId Identifier for the session.\n * @param options The options parameters.\n */\n async getSparkSession(\n sessionId: number,\n options?: SparkSessionGetSparkSessionOptionalParams\n ): Promise<SparkSessionGetSparkSessionResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkSession\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, options },\n getSparkSessionOperationSpec\n ) as Promise<SparkSessionGetSparkSessionResponse>;\n }\n );\n }\n\n /**\n * Cancels a running spark session.\n * @param sessionId Identifier for the session.\n * @param options The options parameters.\n */\n async cancelSparkSession(\n sessionId: number,\n options?: SparkSessionCancelSparkSessionOptionalParams\n ): Promise<void> {\n return tracingClient.withSpan(\n \"SparkClient.cancelSparkSession\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, options },\n cancelSparkSessionOperationSpec\n ) as Promise<void>;\n }\n );\n }\n\n /**\n * Sends a keep alive call to the current session to reset the session timeout.\n * @param sessionId Identifier for the session.\n * @param options The options parameters.\n */\n async resetSparkSessionTimeout(\n sessionId: number,\n options?: SparkSessionResetSparkSessionTimeoutOptionalParams\n ): Promise<void> {\n return tracingClient.withSpan(\n \"SparkClient.resetSparkSessionTimeout\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, options },\n resetSparkSessionTimeoutOperationSpec\n ) as Promise<void>;\n }\n );\n }\n\n /**\n * Gets a list of statements within a spark session.\n * @param sessionId Identifier for the session.\n * @param options The options parameters.\n */\n async getSparkStatements(\n sessionId: number,\n options?: SparkSessionGetSparkStatementsOptionalParams\n ): Promise<SparkSessionGetSparkStatementsResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkStatements\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, options },\n getSparkStatementsOperationSpec\n ) as Promise<SparkSessionGetSparkStatementsResponse>;\n }\n );\n }\n\n /**\n * Create statement within a spark session.\n * @param sessionId Identifier for the session.\n * @param sparkStatementOptions Livy compatible batch job request payload.\n * @param options The options parameters.\n */\n async createSparkStatement(\n sessionId: number,\n sparkStatementOptions: SparkStatementOptions,\n options?: SparkSessionCreateSparkStatementOptionalParams\n ): Promise<SparkSessionCreateSparkStatementResponse> {\n return tracingClient.withSpan(\n \"SparkClient.createSparkStatement\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, sparkStatementOptions, options },\n createSparkStatementOperationSpec\n ) as Promise<SparkSessionCreateSparkStatementResponse>;\n }\n );\n }\n\n /**\n * Gets a single statement within a spark session.\n * @param sessionId Identifier for the session.\n * @param statementId Identifier for the statement.\n * @param options The options parameters.\n */\n async getSparkStatement(\n sessionId: number,\n statementId: number,\n options?: SparkSessionGetSparkStatementOptionalParams\n ): Promise<SparkSessionGetSparkStatementResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkStatement\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, statementId, options },\n getSparkStatementOperationSpec\n ) as Promise<SparkSessionGetSparkStatementResponse>;\n }\n );\n }\n\n /**\n * Kill a statement within a session.\n * @param sessionId Identifier for the session.\n * @param statementId Identifier for the statement.\n * @param options The options parameters.\n */\n async cancelSparkStatement(\n sessionId: number,\n statementId: number,\n options?: SparkSessionCancelSparkStatementOptionalParams\n ): Promise<SparkSessionCancelSparkStatementResponse> {\n return tracingClient.withSpan(\n \"SparkClient.cancelSparkStatement\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, statementId, options },\n cancelSparkStatementOperationSpec\n ) as Promise<SparkSessionCancelSparkStatementResponse>;\n }\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst getSparkSessionsOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkSessionCollection\n }\n },\n queryParameters: [Parameters.fromParam, Parameters.size, Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createSparkSessionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkSession\n }\n },\n requestBody: Parameters.sparkSessionOptions,\n queryParameters: [Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst getSparkSessionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkSession\n }\n },\n queryParameters: [Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst cancelSparkSessionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}\",\n httpMethod: \"DELETE\",\n responses: { 200: {} },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId\n ],\n serializer\n};\nconst resetSparkSessionTimeoutOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/reset-timeout\",\n httpMethod: \"PUT\",\n responses: { 200: {} },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId\n ],\n serializer\n};\nconst getSparkStatementsOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/statements\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkStatementCollection\n }\n },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createSparkStatementOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/statements\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkStatement\n }\n },\n requestBody: Parameters.sparkStatementOptions,\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst getSparkStatementOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/statements/{statementId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkStatement\n }\n },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId,\n Parameters.statementId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst cancelSparkStatementOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/statements/{statementId}/cancel\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkStatementCancellationResult\n }\n },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId,\n Parameters.statementId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\nimport * as coreRestPipeline from \"@azure/core-rest-pipeline\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport { SparkBatchImpl, SparkSessionOperationsImpl } from \"./operations\";\nimport { SparkBatch, SparkSessionOperations } from \"./operationsInterfaces\";\nimport { SparkClientOptionalParams } from \"./models\";\n\n/**\n * Represents the Synapse Spark client operations.\n */\nexport class SparkClient extends coreClient.ServiceClient {\n endpoint: string;\n livyApiVersion: string;\n sparkPoolName: string;\n\n /**\n * Initializes a new instance of the SparkClient class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param endpoint The workspace development endpoint, for example\n * https://myworkspace.dev.azuresynapse.net.\n * @param sparkPoolName Name of the spark pool.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n endpoint: string,\n sparkPoolName: string,\n options?: SparkClientOptionalParams\n ) {\n if (credentials === undefined) {\n throw new Error(\"'credentials' cannot be null\");\n }\n if (endpoint === undefined) {\n throw new Error(\"'endpoint' cannot be null\");\n }\n if (sparkPoolName === undefined) {\n throw new Error(\"'sparkPoolName' cannot be null\");\n }\n\n // Initializing default values for options\n if (!options) {\n options = {};\n }\n const defaults: SparkClientOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-synapse-spark/1.0.0-beta.6`;\n const userAgentPrefix =\n options.userAgentOptions && options.userAgentOptions.userAgentPrefix\n ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`\n : `${packageDetails}`;\n\n if (!options.credentialScopes) {\n options.credentialScopes = [\"https://dev.azuresynapse.net/.default\"];\n }\n const optionsWithDefaults = {\n ...defaults,\n ...options,\n userAgentOptions: {\n userAgentPrefix\n },\n baseUri: options.endpoint ?? options.baseUri ?? \"{endpoint}\"\n };\n super(optionsWithDefaults);\n\n if (options?.pipeline && options.pipeline.getOrderedPolicies().length > 0) {\n const pipelinePolicies: coreRestPipeline.PipelinePolicy[] = options.pipeline.getOrderedPolicies();\n const bearerTokenAuthenticationPolicyFound = pipelinePolicies.some(\n (pipelinePolicy) =>\n pipelinePolicy.name ===\n coreRestPipeline.bearerTokenAuthenticationPolicyName\n );\n if (!bearerTokenAuthenticationPolicyFound) {\n this.pipeline.removePolicy({\n name: coreRestPipeline.bearerTokenAuthenticationPolicyName\n });\n this.pipeline.addPolicy(\n coreRestPipeline.bearerTokenAuthenticationPolicy({\n scopes: `${optionsWithDefaults.baseUri}/.default`,\n challengeCallbacks: {\n authorizeRequestOnChallenge:\n coreClient.authorizeRequestOnClaimChallenge\n }\n })\n );\n }\n }\n // Parameter assignments\n this.endpoint = endpoint;\n this.sparkPoolName = sparkPoolName;\n\n // Assigning values to Constant parameters\n this.livyApiVersion = options.livyApiVersion || \"2019-11-01-preview\";\n this.sparkBatch = new SparkBatchImpl(this);\n this.sparkSessionOperations = new SparkSessionOperationsImpl(this);\n }\n\n sparkBatch: SparkBatch;\n sparkSessionOperations: SparkSessionOperations;\n}\n"],"names":["KnownSparkJobType","KnownSparkBatchJobResultType","KnownSchedulerCurrentState","KnownPluginCurrentState","KnownSparkErrorSource","KnownLivyStates","KnownSparkSessionResultType","KnownLivyStatementStates","KnownSparkStatementLanguageType","createTracingClient","SparkBatchJobOptionsMapper","SparkSessionOptionsMapper","SparkStatementOptionsMapper","serializer","coreClient","Mappers.SparkBatchJobCollection","Parameters.fromParam","Parameters.size","Parameters.detailed","Parameters.endpoint","Parameters.livyApiVersion","Parameters.sparkPoolName","Parameters.accept","Mappers.SparkBatchJob","Parameters.sparkBatchJobOptions","Parameters.contentType","Parameters.batchId","Mappers.SparkSessionCollection","Mappers.SparkSession","Parameters.sparkSessionOptions","Parameters.sessionId","Mappers.SparkStatementCollection","Mappers.SparkStatement","Parameters.sparkStatementOptions","Parameters.statementId","Mappers.SparkStatementCancellationResult","coreRestPipeline"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../src/models/index.ts","../src/tracing.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/sparkBatch.ts","../src/operations/sparkSessionOperations.ts","../src/sparkClient.ts"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\n/** Response for batch list operation. */\nexport interface SparkBatchJobCollection {\n /** The start index of fetched sessions. */\n from: number;\n /** Number of sessions fetched. */\n total: number;\n /** Batch list */\n sessions?: SparkBatchJob[];\n}\n\nexport interface SparkBatchJob {\n livyInfo?: SparkBatchJobState;\n /** The batch name. */\n name?: string;\n /** The workspace name. */\n workspaceName?: string;\n /** The Spark pool name. */\n sparkPoolName?: string;\n /** The submitter name. */\n submitterName?: string;\n /** The submitter identifier. */\n submitterId?: string;\n /** The artifact identifier. */\n artifactId?: string;\n /** The job type. */\n jobType?: SparkJobType;\n /** The Spark batch job result. */\n result?: SparkBatchJobResultType;\n /** The scheduler information. */\n scheduler?: SparkScheduler;\n /** The plugin information. */\n plugin?: SparkServicePlugin;\n /** The error information. */\n errors?: SparkServiceError[];\n /** The tags. */\n tags?: { [propertyName: string]: string };\n /** The session Id. */\n id: number;\n /** The application id of this session */\n appId?: string;\n /** The detailed application info. */\n appInfo?: { [propertyName: string]: string };\n /** The batch state */\n state?: LivyStates;\n /** The log lines. */\n logLines?: string[];\n}\n\nexport interface SparkBatchJobState {\n /** the time that at which \"not_started\" livy state was first seen. */\n notStartedAt?: Date;\n /** the time that at which \"starting\" livy state was first seen. */\n startingAt?: Date;\n /** the time that at which \"running\" livy state was first seen. */\n runningAt?: Date;\n /** time that at which \"dead\" livy state was first seen. */\n deadAt?: Date;\n /** the time that at which \"success\" livy state was first seen. */\n successAt?: Date;\n /** the time that at which \"killed\" livy state was first seen. */\n terminatedAt?: Date;\n /** the time that at which \"recovering\" livy state was first seen. */\n recoveringAt?: Date;\n /** the Spark job state. */\n currentState?: string;\n jobCreationRequest?: SparkRequest;\n}\n\nexport interface SparkRequest {\n name?: string;\n file?: string;\n className?: string;\n arguments?: string[];\n jars?: string[];\n pythonFiles?: string[];\n files?: string[];\n archives?: string[];\n /** Dictionary of <string> */\n configuration?: { [propertyName: string]: string };\n driverMemory?: string;\n driverCores?: number;\n executorMemory?: string;\n executorCores?: number;\n executorCount?: number;\n}\n\nexport interface SparkScheduler {\n submittedAt?: Date;\n scheduledAt?: Date;\n endedAt?: Date;\n cancellationRequestedAt?: Date;\n currentState?: SchedulerCurrentState;\n}\n\nexport interface SparkServicePlugin {\n preparationStartedAt?: Date;\n resourceAcquisitionStartedAt?: Date;\n submissionStartedAt?: Date;\n monitoringStartedAt?: Date;\n cleanupStartedAt?: Date;\n currentState?: PluginCurrentState;\n}\n\nexport interface SparkServiceError {\n message?: string;\n errorCode?: string;\n source?: SparkErrorSource;\n}\n\nexport interface SparkBatchJobOptions {\n /** Dictionary of <string> */\n tags?: { [propertyName: string]: string };\n artifactId?: string;\n name: string;\n file: string;\n className?: string;\n arguments?: string[];\n jars?: string[];\n pythonFiles?: string[];\n files?: string[];\n archives?: string[];\n /** Dictionary of <string> */\n configuration?: { [propertyName: string]: string };\n driverMemory?: string;\n driverCores?: number;\n executorMemory?: string;\n executorCores?: number;\n executorCount?: number;\n}\n\nexport interface SparkSessionCollection {\n from: number;\n total: number;\n sessions?: SparkSession[];\n}\n\nexport interface SparkSession {\n livyInfo?: SparkSessionState;\n name?: string;\n workspaceName?: string;\n sparkPoolName?: string;\n submitterName?: string;\n submitterId?: string;\n artifactId?: string;\n /** The job type. */\n jobType?: SparkJobType;\n result?: SparkSessionResultType;\n scheduler?: SparkScheduler;\n plugin?: SparkServicePlugin;\n errors?: SparkServiceError[];\n /** Dictionary of <string> */\n tags?: { [propertyName: string]: string };\n id: number;\n appId?: string;\n /** Dictionary of <string> */\n appInfo?: { [propertyName: string]: string };\n /** The session state. */\n state?: LivyStates;\n logLines?: string[];\n}\n\nexport interface SparkSessionState {\n notStartedAt?: Date;\n startingAt?: Date;\n idleAt?: Date;\n deadAt?: Date;\n shuttingDownAt?: Date;\n terminatedAt?: Date;\n recoveringAt?: Date;\n busyAt?: Date;\n errorAt?: Date;\n currentState?: string;\n jobCreationRequest?: SparkRequest;\n}\n\nexport interface SparkSessionOptions {\n /** Dictionary of <string> */\n tags?: { [propertyName: string]: string };\n artifactId?: string;\n name: string;\n file?: string;\n className?: string;\n arguments?: string[];\n jars?: string[];\n pythonFiles?: string[];\n files?: string[];\n archives?: string[];\n /** Dictionary of <string> */\n configuration?: { [propertyName: string]: string };\n driverMemory?: string;\n driverCores?: number;\n executorMemory?: string;\n executorCores?: number;\n executorCount?: number;\n}\n\nexport interface SparkStatementCollection {\n total: number;\n statements?: SparkStatement[];\n}\n\nexport interface SparkStatement {\n id: number;\n code?: string;\n state?: LivyStatementStates;\n output?: SparkStatementOutput;\n}\n\nexport interface SparkStatementOutput {\n status?: string;\n executionCount: number;\n /** Any object */\n data?: Record<string, unknown>;\n errorName?: string;\n errorValue?: string;\n traceback?: string[];\n}\n\nexport interface SparkStatementOptions {\n code?: string;\n kind?: SparkStatementLanguageType;\n}\n\nexport interface SparkStatementCancellationResult {\n /** The msg property from the Livy API. The value is always \"canceled\". */\n message?: string;\n}\n\n/** Known values of {@link SparkJobType} that the service accepts. */\nexport enum KnownSparkJobType {\n /** SparkBatch */\n SparkBatch = \"SparkBatch\",\n /** SparkSession */\n SparkSession = \"SparkSession\"\n}\n\n/**\n * Defines values for SparkJobType. \\\n * {@link KnownSparkJobType} can be used interchangeably with SparkJobType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **SparkBatch** \\\n * **SparkSession**\n */\nexport type SparkJobType = string;\n\n/** Known values of {@link SparkBatchJobResultType} that the service accepts. */\nexport enum KnownSparkBatchJobResultType {\n /** Uncertain */\n Uncertain = \"Uncertain\",\n /** Succeeded */\n Succeeded = \"Succeeded\",\n /** Failed */\n Failed = \"Failed\",\n /** Cancelled */\n Cancelled = \"Cancelled\"\n}\n\n/**\n * Defines values for SparkBatchJobResultType. \\\n * {@link KnownSparkBatchJobResultType} can be used interchangeably with SparkBatchJobResultType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Uncertain** \\\n * **Succeeded** \\\n * **Failed** \\\n * **Cancelled**\n */\nexport type SparkBatchJobResultType = string;\n\n/** Known values of {@link SchedulerCurrentState} that the service accepts. */\nexport enum KnownSchedulerCurrentState {\n /** Queued */\n Queued = \"Queued\",\n /** Scheduled */\n Scheduled = \"Scheduled\",\n /** Ended */\n Ended = \"Ended\"\n}\n\n/**\n * Defines values for SchedulerCurrentState. \\\n * {@link KnownSchedulerCurrentState} can be used interchangeably with SchedulerCurrentState,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Queued** \\\n * **Scheduled** \\\n * **Ended**\n */\nexport type SchedulerCurrentState = string;\n\n/** Known values of {@link PluginCurrentState} that the service accepts. */\nexport enum KnownPluginCurrentState {\n /** Preparation */\n Preparation = \"Preparation\",\n /** ResourceAcquisition */\n ResourceAcquisition = \"ResourceAcquisition\",\n /** Queued */\n Queued = \"Queued\",\n /** Submission */\n Submission = \"Submission\",\n /** Monitoring */\n Monitoring = \"Monitoring\",\n /** Cleanup */\n Cleanup = \"Cleanup\",\n /** Ended */\n Ended = \"Ended\"\n}\n\n/**\n * Defines values for PluginCurrentState. \\\n * {@link KnownPluginCurrentState} can be used interchangeably with PluginCurrentState,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Preparation** \\\n * **ResourceAcquisition** \\\n * **Queued** \\\n * **Submission** \\\n * **Monitoring** \\\n * **Cleanup** \\\n * **Ended**\n */\nexport type PluginCurrentState = string;\n\n/** Known values of {@link SparkErrorSource} that the service accepts. */\nexport enum KnownSparkErrorSource {\n /** System */\n System = \"System\",\n /** User */\n User = \"User\",\n /** Unknown */\n Unknown = \"Unknown\",\n /** Dependency */\n Dependency = \"Dependency\"\n}\n\n/**\n * Defines values for SparkErrorSource. \\\n * {@link KnownSparkErrorSource} can be used interchangeably with SparkErrorSource,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **System** \\\n * **User** \\\n * **Unknown** \\\n * **Dependency**\n */\nexport type SparkErrorSource = string;\n\n/** Known values of {@link LivyStates} that the service accepts. */\nexport enum KnownLivyStates {\n /** NotStarted */\n NotStarted = \"not_started\",\n /** Starting */\n Starting = \"starting\",\n /** Idle */\n Idle = \"idle\",\n /** Busy */\n Busy = \"busy\",\n /** ShuttingDown */\n ShuttingDown = \"shutting_down\",\n /** Error */\n Error = \"error\",\n /** Dead */\n Dead = \"dead\",\n /** Killed */\n Killed = \"killed\",\n /** Success */\n Success = \"success\",\n /** Running */\n Running = \"running\",\n /** Recovering */\n Recovering = \"recovering\"\n}\n\n/**\n * Defines values for LivyStates. \\\n * {@link KnownLivyStates} can be used interchangeably with LivyStates,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **not_started** \\\n * **starting** \\\n * **idle** \\\n * **busy** \\\n * **shutting_down** \\\n * **error** \\\n * **dead** \\\n * **killed** \\\n * **success** \\\n * **running** \\\n * **recovering**\n */\nexport type LivyStates = string;\n\n/** Known values of {@link SparkSessionResultType} that the service accepts. */\nexport enum KnownSparkSessionResultType {\n /** Uncertain */\n Uncertain = \"Uncertain\",\n /** Succeeded */\n Succeeded = \"Succeeded\",\n /** Failed */\n Failed = \"Failed\",\n /** Cancelled */\n Cancelled = \"Cancelled\"\n}\n\n/**\n * Defines values for SparkSessionResultType. \\\n * {@link KnownSparkSessionResultType} can be used interchangeably with SparkSessionResultType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Uncertain** \\\n * **Succeeded** \\\n * **Failed** \\\n * **Cancelled**\n */\nexport type SparkSessionResultType = string;\n\n/** Known values of {@link LivyStatementStates} that the service accepts. */\nexport enum KnownLivyStatementStates {\n /** Waiting */\n Waiting = \"waiting\",\n /** Running */\n Running = \"running\",\n /** Available */\n Available = \"available\",\n /** Error */\n Error = \"error\",\n /** Cancelling */\n Cancelling = \"cancelling\",\n /** Cancelled */\n Cancelled = \"cancelled\"\n}\n\n/**\n * Defines values for LivyStatementStates. \\\n * {@link KnownLivyStatementStates} can be used interchangeably with LivyStatementStates,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **waiting** \\\n * **running** \\\n * **available** \\\n * **error** \\\n * **cancelling** \\\n * **cancelled**\n */\nexport type LivyStatementStates = string;\n\n/** Known values of {@link SparkStatementLanguageType} that the service accepts. */\nexport enum KnownSparkStatementLanguageType {\n /** Spark */\n Spark = \"spark\",\n /** PySpark */\n PySpark = \"pyspark\",\n /** DotNetSpark */\n DotNetSpark = \"dotnetspark\",\n /** Sql */\n Sql = \"sql\"\n}\n\n/**\n * Defines values for SparkStatementLanguageType. \\\n * {@link KnownSparkStatementLanguageType} can be used interchangeably with SparkStatementLanguageType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **spark** \\\n * **pyspark** \\\n * **dotnetspark** \\\n * **sql**\n */\nexport type SparkStatementLanguageType = string;\n\n/** Optional parameters. */\nexport interface SparkBatchGetSparkBatchJobsOptionalParams\n extends coreClient.OperationOptions {\n /** Optional param specifying which index the list should begin from. */\n fromParam?: number;\n /**\n * Optional param specifying the size of the returned list.\n * By default it is 20 and that is the maximum.\n */\n size?: number;\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the getSparkBatchJobs operation. */\nexport type SparkBatchGetSparkBatchJobsResponse = SparkBatchJobCollection;\n\n/** Optional parameters. */\nexport interface SparkBatchCreateSparkBatchJobOptionalParams\n extends coreClient.OperationOptions {\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the createSparkBatchJob operation. */\nexport type SparkBatchCreateSparkBatchJobResponse = SparkBatchJob;\n\n/** Optional parameters. */\nexport interface SparkBatchGetSparkBatchJobOptionalParams\n extends coreClient.OperationOptions {\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the getSparkBatchJob operation. */\nexport type SparkBatchGetSparkBatchJobResponse = SparkBatchJob;\n\n/** Optional parameters. */\nexport interface SparkBatchCancelSparkBatchJobOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface SparkSessionGetSparkSessionsOptionalParams\n extends coreClient.OperationOptions {\n /** Optional param specifying which index the list should begin from. */\n fromParam?: number;\n /**\n * Optional param specifying the size of the returned list.\n * By default it is 20 and that is the maximum.\n */\n size?: number;\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the getSparkSessions operation. */\nexport type SparkSessionGetSparkSessionsResponse = SparkSessionCollection;\n\n/** Optional parameters. */\nexport interface SparkSessionCreateSparkSessionOptionalParams\n extends coreClient.OperationOptions {\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the createSparkSession operation. */\nexport type SparkSessionCreateSparkSessionResponse = SparkSession;\n\n/** Optional parameters. */\nexport interface SparkSessionGetSparkSessionOptionalParams\n extends coreClient.OperationOptions {\n /** Optional query param specifying whether detailed response is returned beyond plain livy. */\n detailed?: boolean;\n}\n\n/** Contains response data for the getSparkSession operation. */\nexport type SparkSessionGetSparkSessionResponse = SparkSession;\n\n/** Optional parameters. */\nexport interface SparkSessionCancelSparkSessionOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface SparkSessionResetSparkSessionTimeoutOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface SparkSessionGetSparkStatementsOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the getSparkStatements operation. */\nexport type SparkSessionGetSparkStatementsResponse = SparkStatementCollection;\n\n/** Optional parameters. */\nexport interface SparkSessionCreateSparkStatementOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the createSparkStatement operation. */\nexport type SparkSessionCreateSparkStatementResponse = SparkStatement;\n\n/** Optional parameters. */\nexport interface SparkSessionGetSparkStatementOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the getSparkStatement operation. */\nexport type SparkSessionGetSparkStatementResponse = SparkStatement;\n\n/** Optional parameters. */\nexport interface SparkSessionCancelSparkStatementOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the cancelSparkStatement operation. */\nexport type SparkSessionCancelSparkStatementResponse = SparkStatementCancellationResult;\n\n/** Optional parameters. */\nexport interface SparkClientOptionalParams\n extends coreClient.ServiceClientOptions {\n /** Valid api-version for the request. */\n livyApiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { createTracingClient } from \"@azure/core-tracing\";\n\nexport const tracingClient = createTracingClient({\n namespace: \"Azure.Synapse.Spark\",\n packageName: \"@azure/synapse-spark\",\n packageVersion: \"1.0.0-beta.6\"\n});\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport const SparkBatchJobCollection: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkBatchJobCollection\",\n modelProperties: {\n from: {\n serializedName: \"from\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n total: {\n serializedName: \"total\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n sessions: {\n serializedName: \"sessions\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SparkBatchJob\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkBatchJob: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkBatchJob\",\n modelProperties: {\n livyInfo: {\n serializedName: \"livyInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkBatchJobState\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n workspaceName: {\n serializedName: \"workspaceName\",\n type: {\n name: \"String\"\n }\n },\n sparkPoolName: {\n serializedName: \"sparkPoolName\",\n type: {\n name: \"String\"\n }\n },\n submitterName: {\n serializedName: \"submitterName\",\n type: {\n name: \"String\"\n }\n },\n submitterId: {\n serializedName: \"submitterId\",\n type: {\n name: \"String\"\n }\n },\n artifactId: {\n serializedName: \"artifactId\",\n type: {\n name: \"String\"\n }\n },\n jobType: {\n serializedName: \"jobType\",\n type: {\n name: \"String\"\n }\n },\n result: {\n serializedName: \"result\",\n type: {\n name: \"String\"\n }\n },\n scheduler: {\n serializedName: \"schedulerInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkScheduler\"\n }\n },\n plugin: {\n serializedName: \"pluginInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkServicePlugin\"\n }\n },\n errors: {\n serializedName: \"errorInfo\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SparkServiceError\"\n }\n }\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n id: {\n serializedName: \"id\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n appId: {\n serializedName: \"appId\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n appInfo: {\n serializedName: \"appInfo\",\n nullable: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n state: {\n serializedName: \"state\",\n type: {\n name: \"String\"\n }\n },\n logLines: {\n serializedName: \"log\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkBatchJobState: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkBatchJobState\",\n modelProperties: {\n notStartedAt: {\n serializedName: \"notStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n startingAt: {\n serializedName: \"startingAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n runningAt: {\n serializedName: \"runningAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n deadAt: {\n serializedName: \"deadAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n successAt: {\n serializedName: \"successAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n terminatedAt: {\n serializedName: \"killedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n recoveringAt: {\n serializedName: \"recoveringAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n currentState: {\n serializedName: \"currentState\",\n type: {\n name: \"String\"\n }\n },\n jobCreationRequest: {\n serializedName: \"jobCreationRequest\",\n type: {\n name: \"Composite\",\n className: \"SparkRequest\"\n }\n }\n }\n }\n};\n\nexport const SparkRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkRequest\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n file: {\n serializedName: \"file\",\n type: {\n name: \"String\"\n }\n },\n className: {\n serializedName: \"className\",\n type: {\n name: \"String\"\n }\n },\n arguments: {\n serializedName: \"args\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n jars: {\n serializedName: \"jars\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n pythonFiles: {\n serializedName: \"pyFiles\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n files: {\n serializedName: \"files\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n archives: {\n serializedName: \"archives\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n configuration: {\n serializedName: \"conf\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n driverMemory: {\n serializedName: \"driverMemory\",\n type: {\n name: \"String\"\n }\n },\n driverCores: {\n serializedName: \"driverCores\",\n type: {\n name: \"Number\"\n }\n },\n executorMemory: {\n serializedName: \"executorMemory\",\n type: {\n name: \"String\"\n }\n },\n executorCores: {\n serializedName: \"executorCores\",\n type: {\n name: \"Number\"\n }\n },\n executorCount: {\n serializedName: \"numExecutors\",\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const SparkScheduler: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkScheduler\",\n modelProperties: {\n submittedAt: {\n serializedName: \"submittedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n scheduledAt: {\n serializedName: \"scheduledAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n endedAt: {\n serializedName: \"endedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n cancellationRequestedAt: {\n serializedName: \"cancellationRequestedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n currentState: {\n serializedName: \"currentState\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SparkServicePlugin: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkServicePlugin\",\n modelProperties: {\n preparationStartedAt: {\n serializedName: \"preparationStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n resourceAcquisitionStartedAt: {\n serializedName: \"resourceAcquisitionStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n submissionStartedAt: {\n serializedName: \"submissionStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n monitoringStartedAt: {\n serializedName: \"monitoringStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n cleanupStartedAt: {\n serializedName: \"cleanupStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n currentState: {\n serializedName: \"currentState\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SparkServiceError: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkServiceError\",\n modelProperties: {\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n },\n errorCode: {\n serializedName: \"errorCode\",\n type: {\n name: \"String\"\n }\n },\n source: {\n serializedName: \"source\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SparkBatchJobOptions: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkBatchJobOptions\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n artifactId: {\n serializedName: \"artifactId\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n file: {\n serializedName: \"file\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n className: {\n serializedName: \"className\",\n type: {\n name: \"String\"\n }\n },\n arguments: {\n serializedName: \"args\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n jars: {\n serializedName: \"jars\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n pythonFiles: {\n serializedName: \"pyFiles\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n files: {\n serializedName: \"files\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n archives: {\n serializedName: \"archives\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n configuration: {\n serializedName: \"conf\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n driverMemory: {\n serializedName: \"driverMemory\",\n type: {\n name: \"String\"\n }\n },\n driverCores: {\n serializedName: \"driverCores\",\n type: {\n name: \"Number\"\n }\n },\n executorMemory: {\n serializedName: \"executorMemory\",\n type: {\n name: \"String\"\n }\n },\n executorCores: {\n serializedName: \"executorCores\",\n type: {\n name: \"Number\"\n }\n },\n executorCount: {\n serializedName: \"numExecutors\",\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const SparkSessionCollection: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkSessionCollection\",\n modelProperties: {\n from: {\n serializedName: \"from\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n total: {\n serializedName: \"total\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n sessions: {\n serializedName: \"sessions\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SparkSession\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkSession: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkSession\",\n modelProperties: {\n livyInfo: {\n serializedName: \"livyInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkSessionState\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n workspaceName: {\n serializedName: \"workspaceName\",\n type: {\n name: \"String\"\n }\n },\n sparkPoolName: {\n serializedName: \"sparkPoolName\",\n type: {\n name: \"String\"\n }\n },\n submitterName: {\n serializedName: \"submitterName\",\n type: {\n name: \"String\"\n }\n },\n submitterId: {\n serializedName: \"submitterId\",\n type: {\n name: \"String\"\n }\n },\n artifactId: {\n serializedName: \"artifactId\",\n type: {\n name: \"String\"\n }\n },\n jobType: {\n serializedName: \"jobType\",\n type: {\n name: \"String\"\n }\n },\n result: {\n serializedName: \"result\",\n type: {\n name: \"String\"\n }\n },\n scheduler: {\n serializedName: \"schedulerInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkScheduler\"\n }\n },\n plugin: {\n serializedName: \"pluginInfo\",\n type: {\n name: \"Composite\",\n className: \"SparkServicePlugin\"\n }\n },\n errors: {\n serializedName: \"errorInfo\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SparkServiceError\"\n }\n }\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n id: {\n serializedName: \"id\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n appId: {\n serializedName: \"appId\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n appInfo: {\n serializedName: \"appInfo\",\n nullable: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n state: {\n serializedName: \"state\",\n type: {\n name: \"String\"\n }\n },\n logLines: {\n serializedName: \"log\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkSessionState: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkSessionState\",\n modelProperties: {\n notStartedAt: {\n serializedName: \"notStartedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n startingAt: {\n serializedName: \"startingAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n idleAt: {\n serializedName: \"idleAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n deadAt: {\n serializedName: \"deadAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n shuttingDownAt: {\n serializedName: \"shuttingDownAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n terminatedAt: {\n serializedName: \"killedAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n recoveringAt: {\n serializedName: \"recoveringAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n busyAt: {\n serializedName: \"busyAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n errorAt: {\n serializedName: \"errorAt\",\n nullable: true,\n type: {\n name: \"DateTime\"\n }\n },\n currentState: {\n serializedName: \"currentState\",\n type: {\n name: \"String\"\n }\n },\n jobCreationRequest: {\n serializedName: \"jobCreationRequest\",\n type: {\n name: \"Composite\",\n className: \"SparkRequest\"\n }\n }\n }\n }\n};\n\nexport const SparkSessionOptions: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkSessionOptions\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n artifactId: {\n serializedName: \"artifactId\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n file: {\n serializedName: \"file\",\n type: {\n name: \"String\"\n }\n },\n className: {\n serializedName: \"className\",\n type: {\n name: \"String\"\n }\n },\n arguments: {\n serializedName: \"args\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n jars: {\n serializedName: \"jars\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n pythonFiles: {\n serializedName: \"pyFiles\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n files: {\n serializedName: \"files\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n archives: {\n serializedName: \"archives\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n configuration: {\n serializedName: \"conf\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n driverMemory: {\n serializedName: \"driverMemory\",\n type: {\n name: \"String\"\n }\n },\n driverCores: {\n serializedName: \"driverCores\",\n type: {\n name: \"Number\"\n }\n },\n executorMemory: {\n serializedName: \"executorMemory\",\n type: {\n name: \"String\"\n }\n },\n executorCores: {\n serializedName: \"executorCores\",\n type: {\n name: \"Number\"\n }\n },\n executorCount: {\n serializedName: \"numExecutors\",\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const SparkStatementCollection: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkStatementCollection\",\n modelProperties: {\n total: {\n serializedName: \"total_statements\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n statements: {\n serializedName: \"statements\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SparkStatement\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkStatement: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkStatement\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n state: {\n serializedName: \"state\",\n type: {\n name: \"String\"\n }\n },\n output: {\n serializedName: \"output\",\n type: {\n name: \"Composite\",\n className: \"SparkStatementOutput\"\n }\n }\n }\n }\n};\n\nexport const SparkStatementOutput: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkStatementOutput\",\n modelProperties: {\n status: {\n serializedName: \"status\",\n type: {\n name: \"String\"\n }\n },\n executionCount: {\n serializedName: \"execution_count\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n data: {\n serializedName: \"data\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n },\n errorName: {\n serializedName: \"ename\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n errorValue: {\n serializedName: \"evalue\",\n nullable: true,\n type: {\n name: \"String\"\n }\n },\n traceback: {\n serializedName: \"traceback\",\n nullable: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const SparkStatementOptions: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkStatementOptions\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n kind: {\n serializedName: \"kind\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SparkStatementCancellationResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SparkStatementCancellationResult\",\n modelProperties: {\n message: {\n serializedName: \"msg\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\nimport {\n SparkBatchJobOptions as SparkBatchJobOptionsMapper,\n SparkSessionOptions as SparkSessionOptionsMapper,\n SparkStatementOptions as SparkStatementOptionsMapper\n} from \"../models/mappers\";\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const endpoint: OperationURLParameter = {\n parameterPath: \"endpoint\",\n mapper: {\n serializedName: \"endpoint\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const livyApiVersion: OperationURLParameter = {\n parameterPath: \"livyApiVersion\",\n mapper: {\n serializedName: \"livyApiVersion\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const sparkPoolName: OperationURLParameter = {\n parameterPath: \"sparkPoolName\",\n mapper: {\n serializedName: \"sparkPoolName\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const fromParam: OperationQueryParameter = {\n parameterPath: [\"options\", \"from\"],\n mapper: {\n serializedName: \"from\",\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const size: OperationQueryParameter = {\n parameterPath: [\"options\", \"size\"],\n mapper: {\n serializedName: \"size\",\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const detailed: OperationQueryParameter = {\n parameterPath: [\"options\", \"detailed\"],\n mapper: {\n serializedName: \"detailed\",\n type: {\n name: \"Boolean\"\n }\n }\n};\n\nexport const contentType: OperationParameter = {\n parameterPath: [\"options\", \"contentType\"],\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Content-Type\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const sparkBatchJobOptions: OperationParameter = {\n parameterPath: \"sparkBatchJobOptions\",\n mapper: SparkBatchJobOptionsMapper\n};\n\nexport const batchId: OperationURLParameter = {\n parameterPath: \"batchId\",\n mapper: {\n serializedName: \"batchId\",\n required: true,\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const sparkSessionOptions: OperationParameter = {\n parameterPath: \"sparkSessionOptions\",\n mapper: SparkSessionOptionsMapper\n};\n\nexport const sessionId: OperationURLParameter = {\n parameterPath: \"sessionId\",\n mapper: {\n serializedName: \"sessionId\",\n required: true,\n type: {\n name: \"Number\"\n }\n }\n};\n\nexport const sparkStatementOptions: OperationParameter = {\n parameterPath: \"sparkStatementOptions\",\n mapper: SparkStatementOptionsMapper\n};\n\nexport const statementId: OperationURLParameter = {\n parameterPath: \"statementId\",\n mapper: {\n serializedName: \"statementId\",\n required: true,\n type: {\n name: \"Number\"\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { tracingClient } from \"../tracing\";\nimport { SparkBatch } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { SparkClient } from \"../sparkClient\";\nimport {\n SparkBatchGetSparkBatchJobsOptionalParams,\n SparkBatchGetSparkBatchJobsResponse,\n SparkBatchJobOptions,\n SparkBatchCreateSparkBatchJobOptionalParams,\n SparkBatchCreateSparkBatchJobResponse,\n SparkBatchGetSparkBatchJobOptionalParams,\n SparkBatchGetSparkBatchJobResponse,\n SparkBatchCancelSparkBatchJobOptionalParams\n} from \"../models\";\n\n/** Class containing SparkBatch operations. */\nexport class SparkBatchImpl implements SparkBatch {\n private readonly client: SparkClient;\n\n /**\n * Initialize a new instance of the class SparkBatch class.\n * @param client Reference to the service client\n */\n constructor(client: SparkClient) {\n this.client = client;\n }\n\n /**\n * List all spark batch jobs which are running under a particular spark pool.\n * @param options The options parameters.\n */\n async getSparkBatchJobs(\n options?: SparkBatchGetSparkBatchJobsOptionalParams\n ): Promise<SparkBatchGetSparkBatchJobsResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkBatchJobs\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { options },\n getSparkBatchJobsOperationSpec\n ) as Promise<SparkBatchGetSparkBatchJobsResponse>;\n }\n );\n }\n\n /**\n * Create new spark batch job.\n * @param sparkBatchJobOptions Livy compatible batch job request payload.\n * @param options The options parameters.\n */\n async createSparkBatchJob(\n sparkBatchJobOptions: SparkBatchJobOptions,\n options?: SparkBatchCreateSparkBatchJobOptionalParams\n ): Promise<SparkBatchCreateSparkBatchJobResponse> {\n return tracingClient.withSpan(\n \"SparkClient.createSparkBatchJob\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sparkBatchJobOptions, options },\n createSparkBatchJobOperationSpec\n ) as Promise<SparkBatchCreateSparkBatchJobResponse>;\n }\n );\n }\n\n /**\n * Gets a single spark batch job.\n * @param batchId Identifier for the batch job.\n * @param options The options parameters.\n */\n async getSparkBatchJob(\n batchId: number,\n options?: SparkBatchGetSparkBatchJobOptionalParams\n ): Promise<SparkBatchGetSparkBatchJobResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkBatchJob\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { batchId, options },\n getSparkBatchJobOperationSpec\n ) as Promise<SparkBatchGetSparkBatchJobResponse>;\n }\n );\n }\n\n /**\n * Cancels a running spark batch job.\n * @param batchId Identifier for the batch job.\n * @param options The options parameters.\n */\n async cancelSparkBatchJob(\n batchId: number,\n options?: SparkBatchCancelSparkBatchJobOptionalParams\n ): Promise<void> {\n return tracingClient.withSpan(\n \"SparkClient.cancelSparkBatchJob\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { batchId, options },\n cancelSparkBatchJobOperationSpec\n ) as Promise<void>;\n }\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst getSparkBatchJobsOperationSpec: coreClient.OperationSpec = {\n path: \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/batches\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkBatchJobCollection\n }\n },\n queryParameters: [Parameters.fromParam, Parameters.size, Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createSparkBatchJobOperationSpec: coreClient.OperationSpec = {\n path: \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/batches\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkBatchJob\n }\n },\n requestBody: Parameters.sparkBatchJobOptions,\n queryParameters: [Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst getSparkBatchJobOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/batches/{batchId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkBatchJob\n }\n },\n queryParameters: [Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.batchId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst cancelSparkBatchJobOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/batches/{batchId}\",\n httpMethod: \"DELETE\",\n responses: { 200: {} },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.batchId\n ],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { tracingClient } from \"../tracing\";\nimport { SparkSessionOperations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { SparkClient } from \"../sparkClient\";\nimport {\n SparkSessionGetSparkSessionsOptionalParams,\n SparkSessionGetSparkSessionsResponse,\n SparkSessionOptions,\n SparkSessionCreateSparkSessionOptionalParams,\n SparkSessionCreateSparkSessionResponse,\n SparkSessionGetSparkSessionOptionalParams,\n SparkSessionGetSparkSessionResponse,\n SparkSessionCancelSparkSessionOptionalParams,\n SparkSessionResetSparkSessionTimeoutOptionalParams,\n SparkSessionGetSparkStatementsOptionalParams,\n SparkSessionGetSparkStatementsResponse,\n SparkStatementOptions,\n SparkSessionCreateSparkStatementOptionalParams,\n SparkSessionCreateSparkStatementResponse,\n SparkSessionGetSparkStatementOptionalParams,\n SparkSessionGetSparkStatementResponse,\n SparkSessionCancelSparkStatementOptionalParams,\n SparkSessionCancelSparkStatementResponse\n} from \"../models\";\n\n/** Class containing SparkSessionOperations operations. */\nexport class SparkSessionOperationsImpl implements SparkSessionOperations {\n private readonly client: SparkClient;\n\n /**\n * Initialize a new instance of the class SparkSessionOperations class.\n * @param client Reference to the service client\n */\n constructor(client: SparkClient) {\n this.client = client;\n }\n\n /**\n * List all spark sessions which are running under a particular spark pool.\n * @param options The options parameters.\n */\n async getSparkSessions(\n options?: SparkSessionGetSparkSessionsOptionalParams\n ): Promise<SparkSessionGetSparkSessionsResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkSessions\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { options },\n getSparkSessionsOperationSpec\n ) as Promise<SparkSessionGetSparkSessionsResponse>;\n }\n );\n }\n\n /**\n * Create new spark session.\n * @param sparkSessionOptions Livy compatible batch job request payload.\n * @param options The options parameters.\n */\n async createSparkSession(\n sparkSessionOptions: SparkSessionOptions,\n options?: SparkSessionCreateSparkSessionOptionalParams\n ): Promise<SparkSessionCreateSparkSessionResponse> {\n return tracingClient.withSpan(\n \"SparkClient.createSparkSession\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sparkSessionOptions, options },\n createSparkSessionOperationSpec\n ) as Promise<SparkSessionCreateSparkSessionResponse>;\n }\n );\n }\n\n /**\n * Gets a single spark session.\n * @param sessionId Identifier for the session.\n * @param options The options parameters.\n */\n async getSparkSession(\n sessionId: number,\n options?: SparkSessionGetSparkSessionOptionalParams\n ): Promise<SparkSessionGetSparkSessionResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkSession\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, options },\n getSparkSessionOperationSpec\n ) as Promise<SparkSessionGetSparkSessionResponse>;\n }\n );\n }\n\n /**\n * Cancels a running spark session.\n * @param sessionId Identifier for the session.\n * @param options The options parameters.\n */\n async cancelSparkSession(\n sessionId: number,\n options?: SparkSessionCancelSparkSessionOptionalParams\n ): Promise<void> {\n return tracingClient.withSpan(\n \"SparkClient.cancelSparkSession\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, options },\n cancelSparkSessionOperationSpec\n ) as Promise<void>;\n }\n );\n }\n\n /**\n * Sends a keep alive call to the current session to reset the session timeout.\n * @param sessionId Identifier for the session.\n * @param options The options parameters.\n */\n async resetSparkSessionTimeout(\n sessionId: number,\n options?: SparkSessionResetSparkSessionTimeoutOptionalParams\n ): Promise<void> {\n return tracingClient.withSpan(\n \"SparkClient.resetSparkSessionTimeout\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, options },\n resetSparkSessionTimeoutOperationSpec\n ) as Promise<void>;\n }\n );\n }\n\n /**\n * Gets a list of statements within a spark session.\n * @param sessionId Identifier for the session.\n * @param options The options parameters.\n */\n async getSparkStatements(\n sessionId: number,\n options?: SparkSessionGetSparkStatementsOptionalParams\n ): Promise<SparkSessionGetSparkStatementsResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkStatements\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, options },\n getSparkStatementsOperationSpec\n ) as Promise<SparkSessionGetSparkStatementsResponse>;\n }\n );\n }\n\n /**\n * Create statement within a spark session.\n * @param sessionId Identifier for the session.\n * @param sparkStatementOptions Livy compatible batch job request payload.\n * @param options The options parameters.\n */\n async createSparkStatement(\n sessionId: number,\n sparkStatementOptions: SparkStatementOptions,\n options?: SparkSessionCreateSparkStatementOptionalParams\n ): Promise<SparkSessionCreateSparkStatementResponse> {\n return tracingClient.withSpan(\n \"SparkClient.createSparkStatement\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, sparkStatementOptions, options },\n createSparkStatementOperationSpec\n ) as Promise<SparkSessionCreateSparkStatementResponse>;\n }\n );\n }\n\n /**\n * Gets a single statement within a spark session.\n * @param sessionId Identifier for the session.\n * @param statementId Identifier for the statement.\n * @param options The options parameters.\n */\n async getSparkStatement(\n sessionId: number,\n statementId: number,\n options?: SparkSessionGetSparkStatementOptionalParams\n ): Promise<SparkSessionGetSparkStatementResponse> {\n return tracingClient.withSpan(\n \"SparkClient.getSparkStatement\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, statementId, options },\n getSparkStatementOperationSpec\n ) as Promise<SparkSessionGetSparkStatementResponse>;\n }\n );\n }\n\n /**\n * Kill a statement within a session.\n * @param sessionId Identifier for the session.\n * @param statementId Identifier for the statement.\n * @param options The options parameters.\n */\n async cancelSparkStatement(\n sessionId: number,\n statementId: number,\n options?: SparkSessionCancelSparkStatementOptionalParams\n ): Promise<SparkSessionCancelSparkStatementResponse> {\n return tracingClient.withSpan(\n \"SparkClient.cancelSparkStatement\",\n options ?? {},\n async (options) => {\n return this.client.sendOperationRequest(\n { sessionId, statementId, options },\n cancelSparkStatementOperationSpec\n ) as Promise<SparkSessionCancelSparkStatementResponse>;\n }\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst getSparkSessionsOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkSessionCollection\n }\n },\n queryParameters: [Parameters.fromParam, Parameters.size, Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createSparkSessionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkSession\n }\n },\n requestBody: Parameters.sparkSessionOptions,\n queryParameters: [Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst getSparkSessionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkSession\n }\n },\n queryParameters: [Parameters.detailed],\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst cancelSparkSessionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}\",\n httpMethod: \"DELETE\",\n responses: { 200: {} },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId\n ],\n serializer\n};\nconst resetSparkSessionTimeoutOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/reset-timeout\",\n httpMethod: \"PUT\",\n responses: { 200: {} },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId\n ],\n serializer\n};\nconst getSparkStatementsOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/statements\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkStatementCollection\n }\n },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createSparkStatementOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/statements\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkStatement\n }\n },\n requestBody: Parameters.sparkStatementOptions,\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst getSparkStatementOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/statements/{statementId}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkStatement\n }\n },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId,\n Parameters.statementId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst cancelSparkStatementOperationSpec: coreClient.OperationSpec = {\n path:\n \"/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/statements/{statementId}/cancel\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.SparkStatementCancellationResult\n }\n },\n urlParameters: [\n Parameters.endpoint,\n Parameters.livyApiVersion,\n Parameters.sparkPoolName,\n Parameters.sessionId,\n Parameters.statementId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\nimport * as coreRestPipeline from \"@azure/core-rest-pipeline\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport { SparkBatchImpl, SparkSessionOperationsImpl } from \"./operations\";\nimport { SparkBatch, SparkSessionOperations } from \"./operationsInterfaces\";\nimport { SparkClientOptionalParams } from \"./models\";\n\n/**\n * Represents the Synapse Spark client operations.\n */\nexport class SparkClient extends coreClient.ServiceClient {\n endpoint: string;\n livyApiVersion: string;\n sparkPoolName: string;\n\n /**\n * Initializes a new instance of the SparkClient class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param endpoint The workspace development endpoint, for example\n * https://myworkspace.dev.azuresynapse.net.\n * @param sparkPoolName Name of the spark pool.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n endpoint: string,\n sparkPoolName: string,\n options?: SparkClientOptionalParams\n ) {\n if (credentials === undefined) {\n throw new Error(\"'credentials' cannot be null\");\n }\n if (endpoint === undefined) {\n throw new Error(\"'endpoint' cannot be null\");\n }\n if (sparkPoolName === undefined) {\n throw new Error(\"'sparkPoolName' cannot be null\");\n }\n\n // Initializing default values for options\n if (!options) {\n options = {};\n }\n const defaults: SparkClientOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-synapse-spark/1.0.0-beta.6`;\n const userAgentPrefix =\n options.userAgentOptions && options.userAgentOptions.userAgentPrefix\n ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`\n : `${packageDetails}`;\n\n if (!options.credentialScopes) {\n options.credentialScopes = [\"https://dev.azuresynapse.net/.default\"];\n }\n const optionsWithDefaults = {\n ...defaults,\n ...options,\n userAgentOptions: {\n userAgentPrefix\n },\n baseUri: options.endpoint ?? options.baseUri ?? \"{endpoint}\"\n };\n super(optionsWithDefaults);\n\n if (options?.pipeline && options.pipeline.getOrderedPolicies().length > 0) {\n const pipelinePolicies: coreRestPipeline.PipelinePolicy[] = options.pipeline.getOrderedPolicies();\n const bearerTokenAuthenticationPolicyFound = pipelinePolicies.some(\n (pipelinePolicy) =>\n pipelinePolicy.name ===\n coreRestPipeline.bearerTokenAuthenticationPolicyName\n );\n if (!bearerTokenAuthenticationPolicyFound) {\n this.pipeline.removePolicy({\n name: coreRestPipeline.bearerTokenAuthenticationPolicyName\n });\n this.pipeline.addPolicy(\n coreRestPipeline.bearerTokenAuthenticationPolicy({\n scopes: `${optionsWithDefaults.baseUri}/.default`,\n challengeCallbacks: {\n authorizeRequestOnChallenge:\n coreClient.authorizeRequestOnClaimChallenge\n }\n })\n );\n }\n }\n // Parameter assignments\n this.endpoint = endpoint;\n this.sparkPoolName = sparkPoolName;\n\n // Assigning values to Constant parameters\n this.livyApiVersion = options.livyApiVersion || \"2019-11-01-preview\";\n this.sparkBatch = new SparkBatchImpl(this);\n this.sparkSessionOperations = new SparkSessionOperationsImpl(this);\n }\n\n sparkBatch: SparkBatch;\n sparkSessionOperations: SparkSessionOperations;\n}\n"],"names":["KnownSparkJobType","KnownSparkBatchJobResultType","KnownSchedulerCurrentState","KnownPluginCurrentState","KnownSparkErrorSource","KnownLivyStates","KnownSparkSessionResultType","KnownLivyStatementStates","KnownSparkStatementLanguageType","createTracingClient","SparkBatchJobOptionsMapper","SparkSessionOptionsMapper","SparkStatementOptionsMapper","serializer","coreClient","Mappers.SparkBatchJobCollection","Parameters.fromParam","Parameters.size","Parameters.detailed","Parameters.endpoint","Parameters.livyApiVersion","Parameters.sparkPoolName","Parameters.accept","Mappers.SparkBatchJob","Parameters.sparkBatchJobOptions","Parameters.contentType","Parameters.batchId","Mappers.SparkSessionCollection","Mappers.SparkSession","Parameters.sparkSessionOptions","Parameters.sessionId","Mappers.SparkStatementCollection","Mappers.SparkStatement","Parameters.sparkStatementOptions","Parameters.statementId","Mappers.SparkStatementCancellationResult","coreRestPipeline"],"mappings":"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"}
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/synapse/synapse-spark/README.md",
6
6
  "repository": "github:Azure/azure-sdk-for-js",
7
7
  "sdk-type": "client",
8
- "version": "1.0.0-alpha.20241028.1",
8
+ "version": "1.0.0-alpha.20241030.1",
9
9
  "dependencies": {
10
10
  "@azure/core-auth": "^1.3.0",
11
11
  "@azure/core-client": "^1.0.0",