INPUT_OBJECT

EngineFilter

link GraphQL Schema definition

1input EngineFilter {
4
2# Name of engine to filter by
3name: String
7
5# Supply the type of string match to apply.
6nameMatch: StringMatch
11
8# Search by exact name(case insensitive). This field is ignored if also filtering
9# by `name`.
10exactName: String
14
12# Provide a list of engine states to filter by
13state: [EngineState!]
17
15# Language supported by the engine
16language: String
20
18# Provide a list of engine category names to filter by
19category: [String!]
23
21# Filter engines that require a library
22libraryRequired: Boolean
26
24# Provide a list of engine type names to filter by
25type: [EngineTypeFilter!]
29
27# Provide a list of rating from 0 to 5 to filter by.
28rating: [Int]
32
30# Specify the deployment model of the engine.
31deploymentModel: DeploymentModel
35
33# Provide a list of deployment models to filter by
34deploymentModels: [DeploymentModel!]
38
36# Provide a list of distribution types to filter by
37distributionTypes: [EngineDistributionType!]
41
39# Specify the minimum price of the engine.
40priceMin: Int
44
42# Specify the maximum price of the engine.
43priceMax: Int
47
45# Specify the minimum FedRamp impact level of the engine.
46fedRampImpactLevelMin: Int
50
48# Specify the minimum FedRamp impact level of the engine.
49fedRampImpactLevelMax: Int
53
51# Filter engines that can be trainable via API.
52trainableViaApi: Boolean
56
54# Filter engines by cluster size.
55clusterSize: ClusterSize
59
57# Provide a list of cluster sizes to filter by
58clusterSizes: [ClusterSize!]
62
60# Filter engines by gpu supported.
61gpuSupported: SupportedGPU
65
63# Provide a list of supported gpus to filter by
64gpusSupported: [SupportedGPU!]
68
66# Provide a list of engine modes to filter by
67mode: [EngineMode!]
71
69# Types of engine runtime to filter by. nodeRed or notebook
70manifestRuntime: [String]
74
72# Provide a list of engine runtime types to filter by
73runtimeType: [String!]
77
75# Provide a list of supported input formats to filter by
76supportedInputFormats: [String!]
80
78# Filter engines by max media length in ms
79maxMediaLengthMs: Int
83
81# Filter engines that are certified
82isCertified: Boolean
86
84# Filter engines that are public
85isPublic: Boolean
89
87# Filter by date/time field
88dateTimeFilter: [EngineDateTimeFilter!]
92
90# Filter logical operation ( AND, OR )
91entityTagOperation: filterCombineOperator
95
93# Filter by tags associated with engines
94entityTags: [EntityTagFilter]
101
96# Filter by a list of input types that an engine's single engine jobs support.
97# When matchAny is true, engines will be returned if they support ANY of the input
98# types. When matchAny is false or not defined, engines will be returned if they
99# support ALL of the input types.
100engineTemplateInputTypes: EngineTemplateInputTypes
102}