@databricks/sdk-oauth 0.0.0-dev → 0.1.0-dev.2
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/LICENSE +203 -0
- package/dist/v1/client.d.ts +57 -0
- package/dist/v1/client.d.ts.map +1 -0
- package/dist/v1/client.js +364 -0
- package/dist/v1/client.js.map +1 -0
- package/dist/v1/index.d.ts +3 -0
- package/dist/v1/index.d.ts.map +1 -0
- package/dist/v1/index.js +3 -0
- package/dist/v1/index.js.map +1 -0
- package/dist/v1/model.d.ts +229 -0
- package/dist/v1/model.d.ts.map +1 -0
- package/dist/v1/model.js +225 -0
- package/dist/v1/model.js.map +1 -0
- package/dist/v1/transport.d.ts +5 -0
- package/dist/v1/transport.d.ts.map +1 -0
- package/dist/v1/transport.js +57 -0
- package/dist/v1/transport.js.map +1 -0
- package/dist/v1/utils.d.ts +21 -0
- package/dist/v1/utils.d.ts.map +1 -0
- package/dist/v1/utils.js +113 -0
- package/dist/v1/utils.js.map +1 -0
- package/package.json +38 -4
- package/src/v1/client.ts +522 -0
- package/src/v1/index.ts +30 -0
- package/src/v1/model.ts +493 -0
- package/src/v1/transport.ts +73 -0
- package/src/v1/utils.ts +156 -0
- package/README.md +0 -1
- package/index.js +0 -1
package/dist/v1/utils.js
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.
|
|
2
|
+
import { execute } from '@databricks/sdk-core/ops';
|
|
3
|
+
import { ApiError } from '@databricks/sdk-core/apierror';
|
|
4
|
+
import JSONBig from 'json-bigint';
|
|
5
|
+
// JSON codec that preserves int64 precision. On the way in, large integer
|
|
6
|
+
// literals come back as bigint instead of being rounded to JS Number. On the
|
|
7
|
+
// way out, bigint values are emitted as raw JSON number digits.
|
|
8
|
+
const jsonBigint = JSONBig({ useNativeBigInt: true });
|
|
9
|
+
/**
|
|
10
|
+
* Translates public CallOptions to the internal Options shape accepted by
|
|
11
|
+
* execute(). Even though the shapes match today, this isolates the public
|
|
12
|
+
* API from the executor's internal type so they can diverge.
|
|
13
|
+
*/
|
|
14
|
+
export async function executeCall(call, options) {
|
|
15
|
+
const opts = {
|
|
16
|
+
...(options?.retrier !== undefined && { retrier: options.retrier }),
|
|
17
|
+
...(options?.rateLimiter !== undefined && {
|
|
18
|
+
rateLimiter: options.rateLimiter,
|
|
19
|
+
}),
|
|
20
|
+
...(options?.timeout !== undefined && { timeout: options.timeout }),
|
|
21
|
+
};
|
|
22
|
+
return execute(options?.signal, call, opts);
|
|
23
|
+
}
|
|
24
|
+
async function readAll(body) {
|
|
25
|
+
if (body === null) {
|
|
26
|
+
return new Uint8Array(0);
|
|
27
|
+
}
|
|
28
|
+
const reader = body.getReader();
|
|
29
|
+
const chunks = [];
|
|
30
|
+
for (;;) {
|
|
31
|
+
const { done, value } = await reader.read();
|
|
32
|
+
if (done) {
|
|
33
|
+
break;
|
|
34
|
+
}
|
|
35
|
+
chunks.push(value);
|
|
36
|
+
}
|
|
37
|
+
const totalLength = chunks.reduce((acc, chunk) => acc + chunk.length, 0);
|
|
38
|
+
const result = new Uint8Array(totalLength);
|
|
39
|
+
let offset = 0;
|
|
40
|
+
for (const chunk of chunks) {
|
|
41
|
+
result.set(chunk, offset);
|
|
42
|
+
offset += chunk.length;
|
|
43
|
+
}
|
|
44
|
+
return result;
|
|
45
|
+
}
|
|
46
|
+
export async function executeHttpCall(opts) {
|
|
47
|
+
opts.logger.debug('HTTP request', {
|
|
48
|
+
method: opts.request.method,
|
|
49
|
+
url: opts.request.url,
|
|
50
|
+
});
|
|
51
|
+
let resp;
|
|
52
|
+
try {
|
|
53
|
+
resp = await opts.httpClient.send(opts.request);
|
|
54
|
+
}
|
|
55
|
+
catch (e) {
|
|
56
|
+
opts.logger.debug('HTTP request failed');
|
|
57
|
+
throw e;
|
|
58
|
+
}
|
|
59
|
+
const body = await readAll(resp.body);
|
|
60
|
+
opts.logger.debug('HTTP response', {
|
|
61
|
+
statusCode: resp.statusCode,
|
|
62
|
+
body: new TextDecoder().decode(body),
|
|
63
|
+
});
|
|
64
|
+
const apiErr = ApiError.fromHttpError(resp.statusCode, resp.headers, body);
|
|
65
|
+
if (apiErr !== undefined) {
|
|
66
|
+
throw apiErr;
|
|
67
|
+
}
|
|
68
|
+
return body;
|
|
69
|
+
}
|
|
70
|
+
export function buildHttpRequest(method, url, headers, signal, body) {
|
|
71
|
+
const req = { url, method, headers };
|
|
72
|
+
if (body !== undefined) {
|
|
73
|
+
req.body = body;
|
|
74
|
+
}
|
|
75
|
+
if (signal !== undefined) {
|
|
76
|
+
req.signal = signal;
|
|
77
|
+
}
|
|
78
|
+
return req;
|
|
79
|
+
}
|
|
80
|
+
export function parseResponse(body, schema) {
|
|
81
|
+
const text = new TextDecoder().decode(body);
|
|
82
|
+
const parsed = jsonBigint.parse(text);
|
|
83
|
+
return schema.parse(parsed);
|
|
84
|
+
}
|
|
85
|
+
export function marshalRequest(data, schema) {
|
|
86
|
+
return jsonBigint.stringify(schema.parse(data));
|
|
87
|
+
}
|
|
88
|
+
export function flattenQueryParams(prefix, value, params) {
|
|
89
|
+
if (value === null || value === undefined) {
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
if (Array.isArray(value)) {
|
|
93
|
+
// arrays of objects are not yet supported
|
|
94
|
+
for (const item of value) {
|
|
95
|
+
params.append(prefix, String(item));
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
else if (typeof value === 'object') {
|
|
99
|
+
for (const [key, val] of Object.entries(value)) {
|
|
100
|
+
flattenQueryParams(`${prefix}.${key}`, val, params);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
else if (typeof value === 'string' ||
|
|
104
|
+
typeof value === 'number' ||
|
|
105
|
+
typeof value === 'boolean' ||
|
|
106
|
+
typeof value === 'bigint') {
|
|
107
|
+
params.append(prefix, String(value));
|
|
108
|
+
}
|
|
109
|
+
else {
|
|
110
|
+
throw new Error(`Unsupported query parameter type: ${typeof value}`);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/v1/utils.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@databricks/sdk-oauth",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
"
|
|
3
|
+
"version": "0.1.0-dev.2",
|
|
4
|
+
"description": "",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
"./v1": {
|
|
8
|
+
"types": "./dist/v1/index.d.ts",
|
|
9
|
+
"import": "./dist/v1/index.js"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"src",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsc -b",
|
|
19
|
+
"lint": "eslint src --ext .ts",
|
|
20
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
21
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
22
|
+
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
25
|
+
"test": "echo 'no tests'",
|
|
26
|
+
"test:browser": "echo 'no tests'"
|
|
27
|
+
},
|
|
28
|
+
"author": "Databricks",
|
|
29
|
+
"license": "Apache-2.0",
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@databricks/sdk-auth": ">=0.1.0-dev.3 <1.0.0",
|
|
32
|
+
"@databricks/sdk-core": ">=0.1.0-dev.4 <1.0.0",
|
|
33
|
+
"@databricks/sdk-options": ">=0.1.0-dev.3 <1.0.0",
|
|
34
|
+
"@js-temporal/polyfill": "^0.5.0",
|
|
35
|
+
"json-bigint": "^1.0.0",
|
|
36
|
+
"zod": "^4.3.6"
|
|
37
|
+
},
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=22.0.0"
|
|
40
|
+
}
|
|
7
41
|
}
|
package/src/v1/client.ts
ADDED
|
@@ -0,0 +1,522 @@
|
|
|
1
|
+
// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
import {VERSION as AUTH_VERSION} from '@databricks/sdk-auth';
|
|
4
|
+
import {createDefault} from '@databricks/sdk-core/clientinfo';
|
|
5
|
+
import type {Logger} from '@databricks/sdk-core/logger';
|
|
6
|
+
import {NoOpLogger} from '@databricks/sdk-core/logger';
|
|
7
|
+
import type {CallOptions} from '@databricks/sdk-options/call';
|
|
8
|
+
import type {ClientOptions} from '@databricks/sdk-options/client';
|
|
9
|
+
import type {HttpClient} from '@databricks/sdk-core/http';
|
|
10
|
+
import {newHttpClient} from './transport';
|
|
11
|
+
import {
|
|
12
|
+
buildHttpRequest,
|
|
13
|
+
executeCall,
|
|
14
|
+
executeHttpCall,
|
|
15
|
+
marshalRequest,
|
|
16
|
+
parseResponse,
|
|
17
|
+
} from './utils';
|
|
18
|
+
import pkgJson from '../../package.json' with {type: 'json'};
|
|
19
|
+
import type {
|
|
20
|
+
CreateCustomOAuthAppIntegrationRequest,
|
|
21
|
+
CreatePublishedOAuthAppIntegrationRequest,
|
|
22
|
+
CreatePublishedOAuthAppIntegrationRequest_Response,
|
|
23
|
+
CustomOAuthAppIntegration,
|
|
24
|
+
CustomOAuthAppIntegrationSecret,
|
|
25
|
+
DeleteCustomOAuthAppIntegrationRequest,
|
|
26
|
+
DeleteCustomOAuthAppIntegrationRequest_Response,
|
|
27
|
+
DeletePublishedOAuthAppIntegrationRequest,
|
|
28
|
+
DeletePublishedOAuthAppIntegrationRequest_Response,
|
|
29
|
+
GetCustomOAuthAppIntegrationRequest,
|
|
30
|
+
GetPublishedOAuthAppIntegrationRequest,
|
|
31
|
+
ListCustomOAuthAppIntegrationsRequest,
|
|
32
|
+
ListCustomOAuthAppIntegrationsRequest_Response,
|
|
33
|
+
ListPublishedOAuthAppIntegrationsRequest,
|
|
34
|
+
ListPublishedOAuthAppIntegrationsRequest_Response,
|
|
35
|
+
ListPublishedOAuthAppsRequest,
|
|
36
|
+
ListPublishedOAuthAppsRequest_Response,
|
|
37
|
+
PublishedOAuthApp,
|
|
38
|
+
PublishedOAuthAppIntegration,
|
|
39
|
+
UpdateCustomOAuthAppIntegrationRequest,
|
|
40
|
+
UpdateCustomOAuthAppIntegrationRequest_Response,
|
|
41
|
+
UpdatePublishedOAuthAppIntegrationRequest,
|
|
42
|
+
UpdatePublishedOAuthAppIntegrationRequest_Response,
|
|
43
|
+
} from './model';
|
|
44
|
+
import {
|
|
45
|
+
marshalCreateCustomOAuthAppIntegrationRequestSchema,
|
|
46
|
+
marshalCreatePublishedOAuthAppIntegrationRequestSchema,
|
|
47
|
+
marshalUpdateCustomOAuthAppIntegrationRequestSchema,
|
|
48
|
+
marshalUpdatePublishedOAuthAppIntegrationRequestSchema,
|
|
49
|
+
unmarshalCreatePublishedOAuthAppIntegrationRequest_ResponseSchema,
|
|
50
|
+
unmarshalCustomOAuthAppIntegrationSchema,
|
|
51
|
+
unmarshalCustomOAuthAppIntegrationSecretSchema,
|
|
52
|
+
unmarshalDeleteCustomOAuthAppIntegrationRequest_ResponseSchema,
|
|
53
|
+
unmarshalDeletePublishedOAuthAppIntegrationRequest_ResponseSchema,
|
|
54
|
+
unmarshalListCustomOAuthAppIntegrationsRequest_ResponseSchema,
|
|
55
|
+
unmarshalListPublishedOAuthAppIntegrationsRequest_ResponseSchema,
|
|
56
|
+
unmarshalListPublishedOAuthAppsRequest_ResponseSchema,
|
|
57
|
+
unmarshalPublishedOAuthAppIntegrationSchema,
|
|
58
|
+
unmarshalUpdateCustomOAuthAppIntegrationRequest_ResponseSchema,
|
|
59
|
+
unmarshalUpdatePublishedOAuthAppIntegrationRequest_ResponseSchema,
|
|
60
|
+
} from './model';
|
|
61
|
+
|
|
62
|
+
// Package identity segment for this client to be used in the User-Agent header.
|
|
63
|
+
const PACKAGE_SEGMENT = {
|
|
64
|
+
key: 'sdk-js-' + pkgJson.name.replace(/^@[^/]+\/sdk-/, ''),
|
|
65
|
+
value: pkgJson.version,
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export class OAuthClient {
|
|
69
|
+
private readonly host: string;
|
|
70
|
+
// Fallback for endpoints whose path contains {account_id}. If the request
|
|
71
|
+
// already carries an accountId, that value wins.
|
|
72
|
+
private readonly accountId: string | undefined;
|
|
73
|
+
private readonly httpClient: HttpClient;
|
|
74
|
+
private readonly logger: Logger;
|
|
75
|
+
// User-Agent header value. Composed once at construction from
|
|
76
|
+
// createDefault() merged with this package's identity and the active
|
|
77
|
+
// credential's name.
|
|
78
|
+
private readonly userAgent: string;
|
|
79
|
+
|
|
80
|
+
constructor(options: ClientOptions) {
|
|
81
|
+
if (options.host === undefined) {
|
|
82
|
+
throw new Error('Host is required.');
|
|
83
|
+
}
|
|
84
|
+
this.host = options.host.replace(/\/$/, '');
|
|
85
|
+
this.accountId = options.accountId;
|
|
86
|
+
this.logger = options.logger ?? new NoOpLogger();
|
|
87
|
+
const info = createDefault()
|
|
88
|
+
.with(PACKAGE_SEGMENT)
|
|
89
|
+
.with({key: 'sdk-js-auth', value: AUTH_VERSION})
|
|
90
|
+
.with({key: 'auth', value: options.credentials?.name() ?? 'default'});
|
|
91
|
+
this.userAgent = info.toString();
|
|
92
|
+
this.httpClient = newHttpClient(options);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Create Custom OAuth App Integration.
|
|
97
|
+
*
|
|
98
|
+
* You can retrieve the custom OAuth app integration via :method:CustomAppIntegration/get.
|
|
99
|
+
*/
|
|
100
|
+
async createCustomOAuthAppIntegration(
|
|
101
|
+
req: CreateCustomOAuthAppIntegrationRequest,
|
|
102
|
+
options?: CallOptions
|
|
103
|
+
): Promise<CustomOAuthAppIntegrationSecret> {
|
|
104
|
+
const url = `${this.host}/api/2.0/accounts/${req.accountId ?? this.accountId ?? ''}/oauth2/custom-app-integrations`;
|
|
105
|
+
const body = marshalRequest(
|
|
106
|
+
req,
|
|
107
|
+
marshalCreateCustomOAuthAppIntegrationRequestSchema
|
|
108
|
+
);
|
|
109
|
+
let resp: CustomOAuthAppIntegrationSecret | undefined;
|
|
110
|
+
const call = async (callSignal?: AbortSignal): Promise<void> => {
|
|
111
|
+
const headers = new Headers({'Content-Type': 'application/json'});
|
|
112
|
+
headers.set('User-Agent', this.userAgent);
|
|
113
|
+
const httpReq = buildHttpRequest('POST', url, headers, callSignal, body);
|
|
114
|
+
const respBody = await executeHttpCall({
|
|
115
|
+
request: httpReq,
|
|
116
|
+
httpClient: this.httpClient,
|
|
117
|
+
logger: this.logger,
|
|
118
|
+
});
|
|
119
|
+
resp = parseResponse(
|
|
120
|
+
respBody,
|
|
121
|
+
unmarshalCustomOAuthAppIntegrationSecretSchema
|
|
122
|
+
);
|
|
123
|
+
};
|
|
124
|
+
await executeCall(call, options);
|
|
125
|
+
if (resp === undefined) {
|
|
126
|
+
throw new Error('operation completed without a result.');
|
|
127
|
+
}
|
|
128
|
+
return resp;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Create Published OAuth App Integration.
|
|
133
|
+
*
|
|
134
|
+
* You can retrieve the published OAuth app integration via :method:PublishedAppIntegration/get.
|
|
135
|
+
*/
|
|
136
|
+
async createPublishedOAuthAppIntegration(
|
|
137
|
+
req: CreatePublishedOAuthAppIntegrationRequest,
|
|
138
|
+
options?: CallOptions
|
|
139
|
+
): Promise<CreatePublishedOAuthAppIntegrationRequest_Response> {
|
|
140
|
+
const url = `${this.host}/api/2.0/accounts/${req.accountId ?? this.accountId ?? ''}/oauth2/published-app-integrations`;
|
|
141
|
+
const body = marshalRequest(
|
|
142
|
+
req,
|
|
143
|
+
marshalCreatePublishedOAuthAppIntegrationRequestSchema
|
|
144
|
+
);
|
|
145
|
+
let resp: CreatePublishedOAuthAppIntegrationRequest_Response | undefined;
|
|
146
|
+
const call = async (callSignal?: AbortSignal): Promise<void> => {
|
|
147
|
+
const headers = new Headers({'Content-Type': 'application/json'});
|
|
148
|
+
headers.set('User-Agent', this.userAgent);
|
|
149
|
+
const httpReq = buildHttpRequest('POST', url, headers, callSignal, body);
|
|
150
|
+
const respBody = await executeHttpCall({
|
|
151
|
+
request: httpReq,
|
|
152
|
+
httpClient: this.httpClient,
|
|
153
|
+
logger: this.logger,
|
|
154
|
+
});
|
|
155
|
+
resp = parseResponse(
|
|
156
|
+
respBody,
|
|
157
|
+
unmarshalCreatePublishedOAuthAppIntegrationRequest_ResponseSchema
|
|
158
|
+
);
|
|
159
|
+
};
|
|
160
|
+
await executeCall(call, options);
|
|
161
|
+
if (resp === undefined) {
|
|
162
|
+
throw new Error('operation completed without a result.');
|
|
163
|
+
}
|
|
164
|
+
return resp;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* Delete an existing Custom OAuth App Integration.
|
|
169
|
+
* You can retrieve the custom OAuth app integration via :method:CustomAppIntegration/get.
|
|
170
|
+
*/
|
|
171
|
+
async deleteCustomOAuthAppIntegration(
|
|
172
|
+
req: DeleteCustomOAuthAppIntegrationRequest,
|
|
173
|
+
options?: CallOptions
|
|
174
|
+
): Promise<DeleteCustomOAuthAppIntegrationRequest_Response> {
|
|
175
|
+
const url = `${this.host}/api/2.0/accounts/${req.accountId ?? this.accountId ?? ''}/oauth2/custom-app-integrations/${req.integrationId ?? ''}`;
|
|
176
|
+
let resp: DeleteCustomOAuthAppIntegrationRequest_Response | undefined;
|
|
177
|
+
const call = async (callSignal?: AbortSignal): Promise<void> => {
|
|
178
|
+
const headers = new Headers();
|
|
179
|
+
headers.set('User-Agent', this.userAgent);
|
|
180
|
+
const httpReq = buildHttpRequest('DELETE', url, headers, callSignal);
|
|
181
|
+
const respBody = await executeHttpCall({
|
|
182
|
+
request: httpReq,
|
|
183
|
+
httpClient: this.httpClient,
|
|
184
|
+
logger: this.logger,
|
|
185
|
+
});
|
|
186
|
+
resp = parseResponse(
|
|
187
|
+
respBody,
|
|
188
|
+
unmarshalDeleteCustomOAuthAppIntegrationRequest_ResponseSchema
|
|
189
|
+
);
|
|
190
|
+
};
|
|
191
|
+
await executeCall(call, options);
|
|
192
|
+
if (resp === undefined) {
|
|
193
|
+
throw new Error('operation completed without a result.');
|
|
194
|
+
}
|
|
195
|
+
return resp;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* Delete an existing Published OAuth App Integration.
|
|
200
|
+
* You can retrieve the published OAuth app integration via :method:PublishedAppIntegration/get.
|
|
201
|
+
*/
|
|
202
|
+
async deletePublishedOAuthAppIntegration(
|
|
203
|
+
req: DeletePublishedOAuthAppIntegrationRequest,
|
|
204
|
+
options?: CallOptions
|
|
205
|
+
): Promise<DeletePublishedOAuthAppIntegrationRequest_Response> {
|
|
206
|
+
const url = `${this.host}/api/2.0/accounts/${req.accountId ?? this.accountId ?? ''}/oauth2/published-app-integrations/${req.integrationId ?? ''}`;
|
|
207
|
+
let resp: DeletePublishedOAuthAppIntegrationRequest_Response | undefined;
|
|
208
|
+
const call = async (callSignal?: AbortSignal): Promise<void> => {
|
|
209
|
+
const headers = new Headers();
|
|
210
|
+
headers.set('User-Agent', this.userAgent);
|
|
211
|
+
const httpReq = buildHttpRequest('DELETE', url, headers, callSignal);
|
|
212
|
+
const respBody = await executeHttpCall({
|
|
213
|
+
request: httpReq,
|
|
214
|
+
httpClient: this.httpClient,
|
|
215
|
+
logger: this.logger,
|
|
216
|
+
});
|
|
217
|
+
resp = parseResponse(
|
|
218
|
+
respBody,
|
|
219
|
+
unmarshalDeletePublishedOAuthAppIntegrationRequest_ResponseSchema
|
|
220
|
+
);
|
|
221
|
+
};
|
|
222
|
+
await executeCall(call, options);
|
|
223
|
+
if (resp === undefined) {
|
|
224
|
+
throw new Error('operation completed without a result.');
|
|
225
|
+
}
|
|
226
|
+
return resp;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
/** Gets the Custom OAuth App Integration for the given integration id. */
|
|
230
|
+
async getCustomOAuthAppIntegration(
|
|
231
|
+
req: GetCustomOAuthAppIntegrationRequest,
|
|
232
|
+
options?: CallOptions
|
|
233
|
+
): Promise<CustomOAuthAppIntegration> {
|
|
234
|
+
const url = `${this.host}/api/2.0/accounts/${req.accountId ?? this.accountId ?? ''}/oauth2/custom-app-integrations/${req.integrationId ?? ''}`;
|
|
235
|
+
let resp: CustomOAuthAppIntegration | undefined;
|
|
236
|
+
const call = async (callSignal?: AbortSignal): Promise<void> => {
|
|
237
|
+
const headers = new Headers();
|
|
238
|
+
headers.set('User-Agent', this.userAgent);
|
|
239
|
+
const httpReq = buildHttpRequest('GET', url, headers, callSignal);
|
|
240
|
+
const respBody = await executeHttpCall({
|
|
241
|
+
request: httpReq,
|
|
242
|
+
httpClient: this.httpClient,
|
|
243
|
+
logger: this.logger,
|
|
244
|
+
});
|
|
245
|
+
resp = parseResponse(respBody, unmarshalCustomOAuthAppIntegrationSchema);
|
|
246
|
+
};
|
|
247
|
+
await executeCall(call, options);
|
|
248
|
+
if (resp === undefined) {
|
|
249
|
+
throw new Error('operation completed without a result.');
|
|
250
|
+
}
|
|
251
|
+
return resp;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/** Gets the Published OAuth App Integration for the given integration id. */
|
|
255
|
+
async getPublishedOAuthAppIntegration(
|
|
256
|
+
req: GetPublishedOAuthAppIntegrationRequest,
|
|
257
|
+
options?: CallOptions
|
|
258
|
+
): Promise<PublishedOAuthAppIntegration> {
|
|
259
|
+
const url = `${this.host}/api/2.0/accounts/${req.accountId ?? this.accountId ?? ''}/oauth2/published-app-integrations/${req.integrationId ?? ''}`;
|
|
260
|
+
let resp: PublishedOAuthAppIntegration | undefined;
|
|
261
|
+
const call = async (callSignal?: AbortSignal): Promise<void> => {
|
|
262
|
+
const headers = new Headers();
|
|
263
|
+
headers.set('User-Agent', this.userAgent);
|
|
264
|
+
const httpReq = buildHttpRequest('GET', url, headers, callSignal);
|
|
265
|
+
const respBody = await executeHttpCall({
|
|
266
|
+
request: httpReq,
|
|
267
|
+
httpClient: this.httpClient,
|
|
268
|
+
logger: this.logger,
|
|
269
|
+
});
|
|
270
|
+
resp = parseResponse(
|
|
271
|
+
respBody,
|
|
272
|
+
unmarshalPublishedOAuthAppIntegrationSchema
|
|
273
|
+
);
|
|
274
|
+
};
|
|
275
|
+
await executeCall(call, options);
|
|
276
|
+
if (resp === undefined) {
|
|
277
|
+
throw new Error('operation completed without a result.');
|
|
278
|
+
}
|
|
279
|
+
return resp;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
/** Get the list of custom OAuth app integrations for the specified <Account> */
|
|
283
|
+
async listCustomOAuthAppIntegrations(
|
|
284
|
+
req: ListCustomOAuthAppIntegrationsRequest,
|
|
285
|
+
options?: CallOptions
|
|
286
|
+
): Promise<ListCustomOAuthAppIntegrationsRequest_Response> {
|
|
287
|
+
const url = `${this.host}/api/2.0/accounts/${req.accountId ?? this.accountId ?? ''}/oauth2/custom-app-integrations`;
|
|
288
|
+
const params = new URLSearchParams();
|
|
289
|
+
if (req.pageToken !== undefined) {
|
|
290
|
+
params.append('page_token', req.pageToken);
|
|
291
|
+
}
|
|
292
|
+
if (req.pageSize !== undefined) {
|
|
293
|
+
params.append('page_size', String(req.pageSize));
|
|
294
|
+
}
|
|
295
|
+
if (req.includeCreatorUsername !== undefined) {
|
|
296
|
+
params.append(
|
|
297
|
+
'include_creator_username',
|
|
298
|
+
String(req.includeCreatorUsername)
|
|
299
|
+
);
|
|
300
|
+
}
|
|
301
|
+
const query = params.toString();
|
|
302
|
+
const fullUrl = query !== '' ? `${url}?${query}` : url;
|
|
303
|
+
let resp: ListCustomOAuthAppIntegrationsRequest_Response | undefined;
|
|
304
|
+
const call = async (callSignal?: AbortSignal): Promise<void> => {
|
|
305
|
+
const headers = new Headers();
|
|
306
|
+
headers.set('User-Agent', this.userAgent);
|
|
307
|
+
const httpReq = buildHttpRequest('GET', fullUrl, headers, callSignal);
|
|
308
|
+
const respBody = await executeHttpCall({
|
|
309
|
+
request: httpReq,
|
|
310
|
+
httpClient: this.httpClient,
|
|
311
|
+
logger: this.logger,
|
|
312
|
+
});
|
|
313
|
+
resp = parseResponse(
|
|
314
|
+
respBody,
|
|
315
|
+
unmarshalListCustomOAuthAppIntegrationsRequest_ResponseSchema
|
|
316
|
+
);
|
|
317
|
+
};
|
|
318
|
+
await executeCall(call, options);
|
|
319
|
+
if (resp === undefined) {
|
|
320
|
+
throw new Error('operation completed without a result.');
|
|
321
|
+
}
|
|
322
|
+
return resp;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
async *listCustomOAuthAppIntegrationsIter(
|
|
326
|
+
req: ListCustomOAuthAppIntegrationsRequest,
|
|
327
|
+
options?: CallOptions
|
|
328
|
+
): AsyncGenerator<CustomOAuthAppIntegration> {
|
|
329
|
+
const pageReq: ListCustomOAuthAppIntegrationsRequest = {...req};
|
|
330
|
+
for (;;) {
|
|
331
|
+
const resp = await this.listCustomOAuthAppIntegrations(pageReq, options);
|
|
332
|
+
for (const item of resp.apps ?? []) {
|
|
333
|
+
yield item;
|
|
334
|
+
}
|
|
335
|
+
if (resp.nextPageToken === undefined || resp.nextPageToken === '') {
|
|
336
|
+
return;
|
|
337
|
+
}
|
|
338
|
+
pageReq.pageToken = resp.nextPageToken;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
/** Get the list of published OAuth app integrations for the specified <Account> */
|
|
343
|
+
async listPublishedOAuthAppIntegrations(
|
|
344
|
+
req: ListPublishedOAuthAppIntegrationsRequest,
|
|
345
|
+
options?: CallOptions
|
|
346
|
+
): Promise<ListPublishedOAuthAppIntegrationsRequest_Response> {
|
|
347
|
+
const url = `${this.host}/api/2.0/accounts/${req.accountId ?? this.accountId ?? ''}/oauth2/published-app-integrations`;
|
|
348
|
+
const params = new URLSearchParams();
|
|
349
|
+
if (req.pageToken !== undefined) {
|
|
350
|
+
params.append('page_token', req.pageToken);
|
|
351
|
+
}
|
|
352
|
+
if (req.pageSize !== undefined) {
|
|
353
|
+
params.append('page_size', String(req.pageSize));
|
|
354
|
+
}
|
|
355
|
+
const query = params.toString();
|
|
356
|
+
const fullUrl = query !== '' ? `${url}?${query}` : url;
|
|
357
|
+
let resp: ListPublishedOAuthAppIntegrationsRequest_Response | undefined;
|
|
358
|
+
const call = async (callSignal?: AbortSignal): Promise<void> => {
|
|
359
|
+
const headers = new Headers();
|
|
360
|
+
headers.set('User-Agent', this.userAgent);
|
|
361
|
+
const httpReq = buildHttpRequest('GET', fullUrl, headers, callSignal);
|
|
362
|
+
const respBody = await executeHttpCall({
|
|
363
|
+
request: httpReq,
|
|
364
|
+
httpClient: this.httpClient,
|
|
365
|
+
logger: this.logger,
|
|
366
|
+
});
|
|
367
|
+
resp = parseResponse(
|
|
368
|
+
respBody,
|
|
369
|
+
unmarshalListPublishedOAuthAppIntegrationsRequest_ResponseSchema
|
|
370
|
+
);
|
|
371
|
+
};
|
|
372
|
+
await executeCall(call, options);
|
|
373
|
+
if (resp === undefined) {
|
|
374
|
+
throw new Error('operation completed without a result.');
|
|
375
|
+
}
|
|
376
|
+
return resp;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
async *listPublishedOAuthAppIntegrationsIter(
|
|
380
|
+
req: ListPublishedOAuthAppIntegrationsRequest,
|
|
381
|
+
options?: CallOptions
|
|
382
|
+
): AsyncGenerator<PublishedOAuthAppIntegration> {
|
|
383
|
+
const pageReq: ListPublishedOAuthAppIntegrationsRequest = {...req};
|
|
384
|
+
for (;;) {
|
|
385
|
+
const resp = await this.listPublishedOAuthAppIntegrations(
|
|
386
|
+
pageReq,
|
|
387
|
+
options
|
|
388
|
+
);
|
|
389
|
+
for (const item of resp.apps ?? []) {
|
|
390
|
+
yield item;
|
|
391
|
+
}
|
|
392
|
+
if (resp.nextPageToken === undefined || resp.nextPageToken === '') {
|
|
393
|
+
return;
|
|
394
|
+
}
|
|
395
|
+
pageReq.pageToken = resp.nextPageToken;
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
/** Get all the available published OAuth apps in <Databricks>. */
|
|
400
|
+
async listPublishedOAuthApps(
|
|
401
|
+
req: ListPublishedOAuthAppsRequest,
|
|
402
|
+
options?: CallOptions
|
|
403
|
+
): Promise<ListPublishedOAuthAppsRequest_Response> {
|
|
404
|
+
const url = `${this.host}/api/2.0/accounts/${req.accountId ?? this.accountId ?? ''}/oauth2/published-apps`;
|
|
405
|
+
const params = new URLSearchParams();
|
|
406
|
+
if (req.pageToken !== undefined) {
|
|
407
|
+
params.append('page_token', req.pageToken);
|
|
408
|
+
}
|
|
409
|
+
if (req.pageSize !== undefined) {
|
|
410
|
+
params.append('page_size', String(req.pageSize));
|
|
411
|
+
}
|
|
412
|
+
const query = params.toString();
|
|
413
|
+
const fullUrl = query !== '' ? `${url}?${query}` : url;
|
|
414
|
+
let resp: ListPublishedOAuthAppsRequest_Response | undefined;
|
|
415
|
+
const call = async (callSignal?: AbortSignal): Promise<void> => {
|
|
416
|
+
const headers = new Headers();
|
|
417
|
+
headers.set('User-Agent', this.userAgent);
|
|
418
|
+
const httpReq = buildHttpRequest('GET', fullUrl, headers, callSignal);
|
|
419
|
+
const respBody = await executeHttpCall({
|
|
420
|
+
request: httpReq,
|
|
421
|
+
httpClient: this.httpClient,
|
|
422
|
+
logger: this.logger,
|
|
423
|
+
});
|
|
424
|
+
resp = parseResponse(
|
|
425
|
+
respBody,
|
|
426
|
+
unmarshalListPublishedOAuthAppsRequest_ResponseSchema
|
|
427
|
+
);
|
|
428
|
+
};
|
|
429
|
+
await executeCall(call, options);
|
|
430
|
+
if (resp === undefined) {
|
|
431
|
+
throw new Error('operation completed without a result.');
|
|
432
|
+
}
|
|
433
|
+
return resp;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
async *listPublishedOAuthAppsIter(
|
|
437
|
+
req: ListPublishedOAuthAppsRequest,
|
|
438
|
+
options?: CallOptions
|
|
439
|
+
): AsyncGenerator<PublishedOAuthApp> {
|
|
440
|
+
const pageReq: ListPublishedOAuthAppsRequest = {...req};
|
|
441
|
+
for (;;) {
|
|
442
|
+
const resp = await this.listPublishedOAuthApps(pageReq, options);
|
|
443
|
+
for (const item of resp.apps ?? []) {
|
|
444
|
+
yield item;
|
|
445
|
+
}
|
|
446
|
+
if (resp.nextPageToken === undefined || resp.nextPageToken === '') {
|
|
447
|
+
return;
|
|
448
|
+
}
|
|
449
|
+
pageReq.pageToken = resp.nextPageToken;
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* Updates an existing custom OAuth App Integration.
|
|
455
|
+
* You can retrieve the custom OAuth app integration via :method:CustomAppIntegration/get.
|
|
456
|
+
*/
|
|
457
|
+
async updateCustomOAuthAppIntegration(
|
|
458
|
+
req: UpdateCustomOAuthAppIntegrationRequest,
|
|
459
|
+
options?: CallOptions
|
|
460
|
+
): Promise<UpdateCustomOAuthAppIntegrationRequest_Response> {
|
|
461
|
+
const url = `${this.host}/api/2.0/accounts/${req.accountId ?? this.accountId ?? ''}/oauth2/custom-app-integrations/${req.integrationId ?? ''}`;
|
|
462
|
+
const body = marshalRequest(
|
|
463
|
+
req,
|
|
464
|
+
marshalUpdateCustomOAuthAppIntegrationRequestSchema
|
|
465
|
+
);
|
|
466
|
+
let resp: UpdateCustomOAuthAppIntegrationRequest_Response | undefined;
|
|
467
|
+
const call = async (callSignal?: AbortSignal): Promise<void> => {
|
|
468
|
+
const headers = new Headers({'Content-Type': 'application/json'});
|
|
469
|
+
headers.set('User-Agent', this.userAgent);
|
|
470
|
+
const httpReq = buildHttpRequest('PATCH', url, headers, callSignal, body);
|
|
471
|
+
const respBody = await executeHttpCall({
|
|
472
|
+
request: httpReq,
|
|
473
|
+
httpClient: this.httpClient,
|
|
474
|
+
logger: this.logger,
|
|
475
|
+
});
|
|
476
|
+
resp = parseResponse(
|
|
477
|
+
respBody,
|
|
478
|
+
unmarshalUpdateCustomOAuthAppIntegrationRequest_ResponseSchema
|
|
479
|
+
);
|
|
480
|
+
};
|
|
481
|
+
await executeCall(call, options);
|
|
482
|
+
if (resp === undefined) {
|
|
483
|
+
throw new Error('operation completed without a result.');
|
|
484
|
+
}
|
|
485
|
+
return resp;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
/**
|
|
489
|
+
* Updates an existing published OAuth App Integration.
|
|
490
|
+
* You can retrieve the published OAuth app integration via :method:PublishedAppIntegration/get.
|
|
491
|
+
*/
|
|
492
|
+
async updatePublishedOAuthAppIntegration(
|
|
493
|
+
req: UpdatePublishedOAuthAppIntegrationRequest,
|
|
494
|
+
options?: CallOptions
|
|
495
|
+
): Promise<UpdatePublishedOAuthAppIntegrationRequest_Response> {
|
|
496
|
+
const url = `${this.host}/api/2.0/accounts/${req.accountId ?? this.accountId ?? ''}/oauth2/published-app-integrations/${req.integrationId ?? ''}`;
|
|
497
|
+
const body = marshalRequest(
|
|
498
|
+
req,
|
|
499
|
+
marshalUpdatePublishedOAuthAppIntegrationRequestSchema
|
|
500
|
+
);
|
|
501
|
+
let resp: UpdatePublishedOAuthAppIntegrationRequest_Response | undefined;
|
|
502
|
+
const call = async (callSignal?: AbortSignal): Promise<void> => {
|
|
503
|
+
const headers = new Headers({'Content-Type': 'application/json'});
|
|
504
|
+
headers.set('User-Agent', this.userAgent);
|
|
505
|
+
const httpReq = buildHttpRequest('PATCH', url, headers, callSignal, body);
|
|
506
|
+
const respBody = await executeHttpCall({
|
|
507
|
+
request: httpReq,
|
|
508
|
+
httpClient: this.httpClient,
|
|
509
|
+
logger: this.logger,
|
|
510
|
+
});
|
|
511
|
+
resp = parseResponse(
|
|
512
|
+
respBody,
|
|
513
|
+
unmarshalUpdatePublishedOAuthAppIntegrationRequest_ResponseSchema
|
|
514
|
+
);
|
|
515
|
+
};
|
|
516
|
+
await executeCall(call, options);
|
|
517
|
+
if (resp === undefined) {
|
|
518
|
+
throw new Error('operation completed without a result.');
|
|
519
|
+
}
|
|
520
|
+
return resp;
|
|
521
|
+
}
|
|
522
|
+
}
|