-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathshields.ts
84 lines (73 loc) · 2.37 KB
/
shields.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import { isRequestOptions } from '../core';
import * as Core from '../core';
import * as ShieldsAPI from './shields';
export class Shields extends APIResource {
list(params?: ShieldListParams, options?: Core.RequestOptions): Core.APIPromise<ShieldSpec>;
list(options?: Core.RequestOptions): Core.APIPromise<ShieldSpec>;
list(
params: ShieldListParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<ShieldSpec> {
if (isRequestOptions(params)) {
return this.list({}, params);
}
const { 'X-LlamaStack-ProviderData': xLlamaStackProviderData } = params;
return this._client.get('/shields/list', {
...options,
headers: {
...(xLlamaStackProviderData != null ?
{ 'X-LlamaStack-ProviderData': xLlamaStackProviderData }
: undefined),
...options?.headers,
},
});
}
get(params: ShieldGetParams, options?: Core.RequestOptions): Core.APIPromise<ShieldSpec | null> {
const { 'X-LlamaStack-ProviderData': xLlamaStackProviderData, ...query } = params;
return this._client.get('/shields/get', {
query,
...options,
headers: {
...(xLlamaStackProviderData != null ?
{ 'X-LlamaStack-ProviderData': xLlamaStackProviderData }
: undefined),
...options?.headers,
},
});
}
}
export interface ShieldSpec {
provider_config: ShieldSpec.ProviderConfig;
shield_type: string;
}
export namespace ShieldSpec {
export interface ProviderConfig {
config: Record<string, boolean | number | string | Array<unknown> | unknown | null>;
provider_id: string;
}
}
export interface ShieldListParams {
/**
* JSON-encoded provider data which will be made available to the adapter servicing
* the API
*/
'X-LlamaStack-ProviderData'?: string;
}
export interface ShieldGetParams {
/**
* Query param:
*/
shield_type: string;
/**
* Header param: JSON-encoded provider data which will be made available to the
* adapter servicing the API
*/
'X-LlamaStack-ProviderData'?: string;
}
export namespace Shields {
export import ShieldSpec = ShieldsAPI.ShieldSpec;
export import ShieldListParams = ShieldsAPI.ShieldListParams;
export import ShieldGetParams = ShieldsAPI.ShieldGetParams;
}