@azure/synapse-monitoring 1.0.0-alpha.20241126.1 → 1.0.0-alpha.20241127.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/package.json +1 -1
- package/dist/synapse-monitoring.d.ts +0 -90
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/synapse/synapse-monitoring/README.md",
|
|
6
6
|
"repository": "github:Azure/azure-sdk-for-js",
|
|
7
7
|
"sdk-type": "client",
|
|
8
|
-
"version": "1.0.0-alpha.
|
|
8
|
+
"version": "1.0.0-alpha.20241127.1",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@azure/core-auth": "^1.9.0",
|
|
11
11
|
"@azure/core-client": "^1.9.2",
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
import type * as coreAuth from '@azure/core-auth';
|
|
2
|
-
import * as coreClient from '@azure/core-client';
|
|
3
|
-
|
|
4
|
-
/** Interface representing a Monitoring. */
|
|
5
|
-
export declare interface Monitoring {
|
|
6
|
-
/**
|
|
7
|
-
* Get list of spark applications for the workspace.
|
|
8
|
-
* @param options - The options parameters.
|
|
9
|
-
*/
|
|
10
|
-
getSparkJobList(options?: MonitoringGetSparkJobListOptionalParams): Promise<MonitoringGetSparkJobListResponse>;
|
|
11
|
-
/**
|
|
12
|
-
* Get SQL OD/DW Query for the workspace.
|
|
13
|
-
* @param options - The options parameters.
|
|
14
|
-
*/
|
|
15
|
-
getSqlJobQueryString(options?: MonitoringGetSqlJobQueryStringOptionalParams): Promise<MonitoringGetSqlJobQueryStringResponse>;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export declare class MonitoringClient extends coreClient.ServiceClient {
|
|
19
|
-
endpoint: string;
|
|
20
|
-
apiVersion: string;
|
|
21
|
-
/**
|
|
22
|
-
* Initializes a new instance of the MonitoringClient class.
|
|
23
|
-
* @param credentials - Subscription credentials which uniquely identify client subscription.
|
|
24
|
-
* @param endpoint - The workspace development endpoint, for example
|
|
25
|
-
* https://myworkspace.dev.azuresynapse.net.
|
|
26
|
-
* @param options - The parameter options
|
|
27
|
-
*/
|
|
28
|
-
constructor(credentials: coreAuth.TokenCredential, endpoint: string, options?: MonitoringClientOptionalParams);
|
|
29
|
-
/** A function that adds a policy that sets the api-version (or equivalent) to reflect the library version. */
|
|
30
|
-
private addCustomApiVersionPolicy;
|
|
31
|
-
monitoring: Monitoring;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
/** Optional parameters. */
|
|
35
|
-
export declare interface MonitoringClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
36
|
-
/** Api Version */
|
|
37
|
-
apiVersion?: string;
|
|
38
|
-
/** Overrides client endpoint. */
|
|
39
|
-
endpoint?: string;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/** Optional parameters. */
|
|
43
|
-
export declare interface MonitoringGetSparkJobListOptionalParams extends coreClient.OperationOptions {
|
|
44
|
-
/** Can provide a guid, which is helpful for debugging and to provide better customer support */
|
|
45
|
-
xMsClientRequestId?: string;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
/** Contains response data for the getSparkJobList operation. */
|
|
49
|
-
export declare type MonitoringGetSparkJobListResponse = SparkJobListViewResponse;
|
|
50
|
-
|
|
51
|
-
/** Optional parameters. */
|
|
52
|
-
export declare interface MonitoringGetSqlJobQueryStringOptionalParams extends coreClient.OperationOptions {
|
|
53
|
-
/** Can provide a guid, which is helpful for debugging and to provide better customer support */
|
|
54
|
-
xMsClientRequestId?: string;
|
|
55
|
-
filter?: string;
|
|
56
|
-
orderby?: string;
|
|
57
|
-
skip?: string;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/** Contains response data for the getSqlJobQueryString operation. */
|
|
61
|
-
export declare type MonitoringGetSqlJobQueryStringResponse = SqlQueryStringDataModel;
|
|
62
|
-
|
|
63
|
-
export declare interface SparkJob {
|
|
64
|
-
state?: string;
|
|
65
|
-
name?: string;
|
|
66
|
-
submitter?: string;
|
|
67
|
-
compute?: string;
|
|
68
|
-
sparkApplicationId?: string;
|
|
69
|
-
livyId?: string;
|
|
70
|
-
timing?: string[];
|
|
71
|
-
sparkJobDefinition?: string;
|
|
72
|
-
pipeline?: SparkJob[];
|
|
73
|
-
jobType?: string;
|
|
74
|
-
submitTime?: Date;
|
|
75
|
-
endTime?: Date;
|
|
76
|
-
queuedDuration?: string;
|
|
77
|
-
runningDuration?: string;
|
|
78
|
-
totalDuration?: string;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export declare interface SparkJobListViewResponse {
|
|
82
|
-
nJobs?: number;
|
|
83
|
-
sparkJobs?: SparkJob[];
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
export declare interface SqlQueryStringDataModel {
|
|
87
|
-
query?: string;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
export { }
|