@salesforce/lds-adapters-platform-cdp-machine-learning 1.272.0 → 1.273.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/es/es2018/platform-cdp-machine-learning.js +1538 -293
- package/dist/es/es2018/types/src/generated/adapters/createCdpMlConfiguredModel.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/updateCdpMlConfiguredModel.d.ts +12 -9
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -1
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/resources/patchSsotMachineLearningWorkspacesModelsByModelIdOrNameAndWorkspaceIdOrName.d.ts +12 -9
- package/dist/es/es2018/types/src/generated/resources/postSsotMachineLearningWorkspacesModelsByWorkspaceIdOrName.d.ts +12 -9
- package/dist/es/es2018/types/src/generated/types/CdpAssetBaseRepresentation.d.ts +7 -7
- package/dist/es/es2018/types/src/generated/types/CdpAssetReferenceInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/CdpAssetReferenceRepresentation.d.ts +13 -13
- package/dist/es/es2018/types/src/generated/types/CdpMlConfiguredModelInputRepresentation.d.ts +22 -19
- package/dist/es/es2018/types/src/generated/types/CdpMlConfiguredModelRepresentation.d.ts +15 -15
- package/dist/es/es2018/types/src/generated/types/CdpMlCustomizableFieldDefinitionInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/CdpMlCustomizableFieldInputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/CdpMlModelArtifactBaseRepresentation.d.ts +19 -19
- package/dist/es/es2018/types/src/generated/types/CdpMlModelArtifactCollectionRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/CdpMlModelParameterOverrideInputRepresentation.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/types/CdpMlModelTypeRepresentation.d.ts +7 -7
- package/dist/es/es2018/types/src/generated/types/CdpMlWorkspaceCollectionRepresentation.d.ts +5 -5
- package/dist/es/es2018/types/src/generated/types/CdpMlWorkspaceDetailRepresentation.d.ts +27 -27
- package/dist/es/es2018/types/src/generated/types/CdpMlWorkspaceRepresentation.d.ts +23 -23
- package/dist/es/es2018/types/src/generated/types/CdpPaginatedResponseBaseRepresentation.d.ts +3 -3
- package/package.json +3 -3
- package/sfdc/index.js +1473 -228
- package/src/raml/api.raml +132 -78
- package/src/raml/luvio.raml +1 -1
- package/dist/es/es2018/types/src/generated/adapters/createCdpMlConfiguredModelCollection.d.ts +0 -25
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { CdpMlCustomizableFieldInputRepresentation as types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation } from '../types/CdpMlCustomizableFieldInputRepresentation';
|
|
4
|
+
import { CdpAssetReferenceInputRepresentation as types_CdpAssetReferenceInputRepresentation_CdpAssetReferenceInputRepresentation } from '../types/CdpAssetReferenceInputRepresentation';
|
|
5
|
+
import { CdpMlModelParameterOverrideInputRepresentation as types_CdpMlModelParameterOverrideInputRepresentation_CdpMlModelParameterOverrideInputRepresentation } from '../types/CdpMlModelParameterOverrideInputRepresentation';
|
|
6
|
+
import { ResourceRequestConfig as resources_postSsotMachineLearningWorkspacesModelsByWorkspaceIdOrName_ResourceRequestConfig } from '../resources/postSsotMachineLearningWorkspacesModelsByWorkspaceIdOrName';
|
|
7
|
+
import { CdpMlConfiguredModelRepresentation as types_CdpMlConfiguredModelRepresentation_CdpMlConfiguredModelRepresentation } from '../types/CdpMlConfiguredModelRepresentation';
|
|
8
|
+
export declare const adapterName = "createCdpMlConfiguredModel";
|
|
9
|
+
export declare const createCdpMlConfiguredModel_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
10
|
+
export declare const createCdpMlConfiguredModel_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
11
|
+
export interface CreateCdpMlConfiguredModelConfig {
|
|
12
|
+
workspaceIdOrName: string;
|
|
13
|
+
actionableFields?: Array<types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
14
|
+
artifact?: types_CdpAssetReferenceInputRepresentation_CdpAssetReferenceInputRepresentation;
|
|
15
|
+
capability?: string;
|
|
16
|
+
customizableFields?: Array<types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
17
|
+
description?: string | null;
|
|
18
|
+
filter?: {};
|
|
19
|
+
label?: string | null;
|
|
20
|
+
parameterOverrides?: Array<types_CdpMlModelParameterOverrideInputRepresentation_CdpMlModelParameterOverrideInputRepresentation>;
|
|
21
|
+
position?: number;
|
|
22
|
+
status?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare const createResourceParams: (config: CreateCdpMlConfiguredModelConfig) => resources_postSsotMachineLearningWorkspacesModelsByWorkspaceIdOrName_ResourceRequestConfig;
|
|
25
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateCdpMlConfiguredModelConfig>): adapter$45$utils_Untrusted<CreateCdpMlConfiguredModelConfig>;
|
|
26
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): CreateCdpMlConfiguredModelConfig | null;
|
|
27
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: CreateCdpMlConfiguredModelConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_CdpMlConfiguredModelRepresentation_CdpMlConfiguredModelRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_CdpMlConfiguredModelRepresentation_CdpMlConfiguredModelRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_CdpMlConfiguredModelRepresentation_CdpMlConfiguredModelRepresentation, any>>;
|
|
28
|
+
export declare const createCdpMlConfiguredModelAdapterFactory: $64$luvio_engine_AdapterFactory<CreateCdpMlConfiguredModelConfig, types_CdpMlConfiguredModelRepresentation_CdpMlConfiguredModelRepresentation>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
2
|
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { CdpMlCustomizableFieldInputRepresentation as types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation } from '../types/CdpMlCustomizableFieldInputRepresentation';
|
|
4
|
+
import { CdpAssetReferenceInputRepresentation as types_CdpAssetReferenceInputRepresentation_CdpAssetReferenceInputRepresentation } from '../types/CdpAssetReferenceInputRepresentation';
|
|
5
|
+
import { CdpMlModelParameterOverrideInputRepresentation as types_CdpMlModelParameterOverrideInputRepresentation_CdpMlModelParameterOverrideInputRepresentation } from '../types/CdpMlModelParameterOverrideInputRepresentation';
|
|
3
6
|
import { ResourceRequestConfig as resources_patchSsotMachineLearningWorkspacesModelsByModelIdOrNameAndWorkspaceIdOrName_ResourceRequestConfig } from '../resources/patchSsotMachineLearningWorkspacesModelsByModelIdOrNameAndWorkspaceIdOrName';
|
|
4
7
|
import { CdpMlConfiguredModelRepresentation as types_CdpMlConfiguredModelRepresentation_CdpMlConfiguredModelRepresentation } from '../types/CdpMlConfiguredModelRepresentation';
|
|
5
8
|
export declare const adapterName = "updateCdpMlConfiguredModel";
|
|
@@ -8,16 +11,16 @@ export declare const updateCdpMlConfiguredModel_ConfigPropertyNames: adapter$45$
|
|
|
8
11
|
export interface UpdateCdpMlConfiguredModelConfig {
|
|
9
12
|
modelIdOrName: string;
|
|
10
13
|
workspaceIdOrName: string;
|
|
11
|
-
actionableFields
|
|
12
|
-
artifact?:
|
|
13
|
-
capability
|
|
14
|
-
customizableFields
|
|
15
|
-
description?: string;
|
|
14
|
+
actionableFields?: Array<types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
15
|
+
artifact?: types_CdpAssetReferenceInputRepresentation_CdpAssetReferenceInputRepresentation;
|
|
16
|
+
capability?: string;
|
|
17
|
+
customizableFields?: Array<types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
18
|
+
description?: string | null;
|
|
16
19
|
filter?: {};
|
|
17
|
-
label?: string;
|
|
18
|
-
parameterOverrides
|
|
19
|
-
position
|
|
20
|
-
status
|
|
20
|
+
label?: string | null;
|
|
21
|
+
parameterOverrides?: Array<types_CdpMlModelParameterOverrideInputRepresentation_CdpMlModelParameterOverrideInputRepresentation>;
|
|
22
|
+
position?: number;
|
|
23
|
+
status?: string;
|
|
21
24
|
}
|
|
22
25
|
export declare const createResourceParams: (config: UpdateCdpMlConfiguredModelConfig) => resources_patchSsotMachineLearningWorkspacesModelsByModelIdOrNameAndWorkspaceIdOrName_ResourceRequestConfig;
|
|
23
26
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateCdpMlConfiguredModelConfig>): adapter$45$utils_Untrusted<UpdateCdpMlConfiguredModelConfig>;
|
|
@@ -3,6 +3,6 @@ export { getCdpMlModelArtifactAdapterFactory } from '../adapters/getCdpMlModelAr
|
|
|
3
3
|
export { getCdpMlWorkspaceCollectionAdapterFactory } from '../adapters/getCdpMlWorkspaceCollection';
|
|
4
4
|
export { getCdpMlWorkspaceAdapterFactory } from '../adapters/getCdpMlWorkspace';
|
|
5
5
|
export { getCdpMlConfiguredModelCollectionAdapterFactory } from '../adapters/getCdpMlConfiguredModelCollection';
|
|
6
|
-
export {
|
|
6
|
+
export { createCdpMlConfiguredModelAdapterFactory } from '../adapters/createCdpMlConfiguredModel';
|
|
7
7
|
export { getCdpMlConfiguredModelAdapterFactory } from '../adapters/getCdpMlConfiguredModel';
|
|
8
8
|
export { updateCdpMlConfiguredModelAdapterFactory } from '../adapters/updateCdpMlConfiguredModel';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare let
|
|
1
|
+
declare let createCdpMlConfiguredModel: any;
|
|
2
2
|
declare let getCdpMlConfiguredModel: any;
|
|
3
3
|
declare let getCdpMlConfiguredModelCollection: any;
|
|
4
4
|
declare let getCdpMlModelArtifact: any;
|
|
@@ -13,4 +13,4 @@ declare let getCdpMlModelArtifact_imperative: any;
|
|
|
13
13
|
declare let getCdpMlModelArtifactCollection_imperative: any;
|
|
14
14
|
declare let getCdpMlWorkspace_imperative: any;
|
|
15
15
|
declare let getCdpMlWorkspaceCollection_imperative: any;
|
|
16
|
-
export {
|
|
16
|
+
export { createCdpMlConfiguredModel, getCdpMlConfiguredModel, getCdpMlConfiguredModelCollection, getCdpMlModelArtifact, getCdpMlModelArtifactCollection, getCdpMlWorkspace, getCdpMlWorkspaceCollection, getCdpMlWorkspaceNotifyChange, updateCdpMlConfiguredModel, getCdpMlConfiguredModel_imperative, getCdpMlConfiguredModelCollection_imperative, getCdpMlModelArtifact_imperative, getCdpMlModelArtifactCollection_imperative, getCdpMlWorkspace_imperative, getCdpMlWorkspaceCollection_imperative, };
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { CdpMlCustomizableFieldInputRepresentation as types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation } from '../types/CdpMlCustomizableFieldInputRepresentation';
|
|
2
|
+
import { CdpAssetReferenceInputRepresentation as types_CdpAssetReferenceInputRepresentation_CdpAssetReferenceInputRepresentation } from '../types/CdpAssetReferenceInputRepresentation';
|
|
3
|
+
import { CdpMlModelParameterOverrideInputRepresentation as types_CdpMlModelParameterOverrideInputRepresentation_CdpMlModelParameterOverrideInputRepresentation } from '../types/CdpMlModelParameterOverrideInputRepresentation';
|
|
1
4
|
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
5
|
import { CdpMlConfiguredModelRepresentation as types_CdpMlConfiguredModelRepresentation_CdpMlConfiguredModelRepresentation } from '../types/CdpMlConfiguredModelRepresentation';
|
|
3
6
|
export interface ResourceRequestConfig {
|
|
@@ -6,16 +9,16 @@ export interface ResourceRequestConfig {
|
|
|
6
9
|
workspaceIdOrName: string;
|
|
7
10
|
};
|
|
8
11
|
body: {
|
|
9
|
-
actionableFields
|
|
10
|
-
artifact?:
|
|
11
|
-
capability
|
|
12
|
-
customizableFields
|
|
13
|
-
description?: string;
|
|
12
|
+
actionableFields?: Array<types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
13
|
+
artifact?: types_CdpAssetReferenceInputRepresentation_CdpAssetReferenceInputRepresentation;
|
|
14
|
+
capability?: string;
|
|
15
|
+
customizableFields?: Array<types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
16
|
+
description?: string | null;
|
|
14
17
|
filter?: {};
|
|
15
|
-
label?: string;
|
|
16
|
-
parameterOverrides
|
|
17
|
-
position
|
|
18
|
-
status
|
|
18
|
+
label?: string | null;
|
|
19
|
+
parameterOverrides?: Array<types_CdpMlModelParameterOverrideInputRepresentation_CdpMlModelParameterOverrideInputRepresentation>;
|
|
20
|
+
position?: number;
|
|
21
|
+
status?: string;
|
|
19
22
|
};
|
|
20
23
|
}
|
|
21
24
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { CdpMlCustomizableFieldInputRepresentation as types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation } from '../types/CdpMlCustomizableFieldInputRepresentation';
|
|
2
|
+
import { CdpAssetReferenceInputRepresentation as types_CdpAssetReferenceInputRepresentation_CdpAssetReferenceInputRepresentation } from '../types/CdpAssetReferenceInputRepresentation';
|
|
3
|
+
import { CdpMlModelParameterOverrideInputRepresentation as types_CdpMlModelParameterOverrideInputRepresentation_CdpMlModelParameterOverrideInputRepresentation } from '../types/CdpMlModelParameterOverrideInputRepresentation';
|
|
1
4
|
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
5
|
import { CdpMlConfiguredModelRepresentation as types_CdpMlConfiguredModelRepresentation_CdpMlConfiguredModelRepresentation } from '../types/CdpMlConfiguredModelRepresentation';
|
|
3
6
|
export interface ResourceRequestConfig {
|
|
@@ -5,16 +8,16 @@ export interface ResourceRequestConfig {
|
|
|
5
8
|
workspaceIdOrName: string;
|
|
6
9
|
};
|
|
7
10
|
body: {
|
|
8
|
-
actionableFields
|
|
9
|
-
artifact?:
|
|
10
|
-
capability
|
|
11
|
-
customizableFields
|
|
12
|
-
description?: string;
|
|
11
|
+
actionableFields?: Array<types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
12
|
+
artifact?: types_CdpAssetReferenceInputRepresentation_CdpAssetReferenceInputRepresentation;
|
|
13
|
+
capability?: string;
|
|
14
|
+
customizableFields?: Array<types_CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
15
|
+
description?: string | null;
|
|
13
16
|
filter?: {};
|
|
14
|
-
label?: string;
|
|
15
|
-
parameterOverrides
|
|
16
|
-
position
|
|
17
|
-
status
|
|
17
|
+
label?: string | null;
|
|
18
|
+
parameterOverrides?: Array<types_CdpMlModelParameterOverrideInputRepresentation_CdpMlModelParameterOverrideInputRepresentation>;
|
|
19
|
+
position?: number;
|
|
20
|
+
status?: string;
|
|
18
21
|
};
|
|
19
22
|
}
|
|
20
23
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CdpUserRepresentation as CdpUserRepresentation_CdpUserRepresentation } from './CdpUserRepresentation';
|
|
2
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "2fb8dce9a92cdd7d4eb6b61909d49c41";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: CdpAssetBaseRepresentation, existing: CdpAssetBaseRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpAssetBaseRepresentationNormalized;
|
|
@@ -17,18 +17,18 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
17
17
|
export interface CdpAssetBaseRepresentationNormalized {
|
|
18
18
|
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
19
19
|
/** Created date */
|
|
20
|
-
createdDate?: string;
|
|
20
|
+
createdDate?: string | null;
|
|
21
21
|
/** The 18 character ID of the asset */
|
|
22
22
|
id: string;
|
|
23
23
|
/** Label of the asset */
|
|
24
24
|
label: string;
|
|
25
25
|
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
26
26
|
/** Last modified date */
|
|
27
|
-
lastModifiedDate?: string;
|
|
27
|
+
lastModifiedDate?: string | null;
|
|
28
28
|
/** Name of the asset */
|
|
29
29
|
name: string;
|
|
30
30
|
/** Namespace of the asset */
|
|
31
|
-
namespace?: string;
|
|
31
|
+
namespace?: string | null;
|
|
32
32
|
/** Url */
|
|
33
33
|
url: string;
|
|
34
34
|
}
|
|
@@ -40,12 +40,12 @@ export interface CdpAssetBaseRepresentationNormalized {
|
|
|
40
40
|
*/
|
|
41
41
|
export interface CdpAssetBaseRepresentation {
|
|
42
42
|
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
43
|
-
createdDate?: string;
|
|
43
|
+
createdDate?: string | null;
|
|
44
44
|
id: string;
|
|
45
45
|
label: string;
|
|
46
46
|
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
47
|
-
lastModifiedDate?: string;
|
|
47
|
+
lastModifiedDate?: string | null;
|
|
48
48
|
name: string;
|
|
49
|
-
namespace?: string;
|
|
49
|
+
namespace?: string | null;
|
|
50
50
|
url: string;
|
|
51
51
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "948444e55f564d1011c723383a3462b6";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpAssetReferenceInputRepresentation, existing: CdpAssetReferenceInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpAssetReferenceInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CdpAssetReferenceInputRepresentationNormalized, incoming: CdpAssetReferenceInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpAssetReferenceInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents an asset
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface CdpAssetReferenceInputRepresentationNormalized {
|
|
17
|
+
/** Id */
|
|
18
|
+
id?: string | null;
|
|
19
|
+
/** Name */
|
|
20
|
+
name?: string | null;
|
|
21
|
+
/** Namespace */
|
|
22
|
+
namespace?: string | null;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Represents an asset
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface CdpAssetReferenceInputRepresentation {
|
|
31
|
+
id?: string | null;
|
|
32
|
+
name?: string | null;
|
|
33
|
+
namespace?: string | null;
|
|
34
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CdpUserRepresentation as CdpUserRepresentation_CdpUserRepresentation } from './CdpUserRepresentation';
|
|
2
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "6570104952ab820ec4585a250e1b81ef";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: CdpAssetReferenceRepresentation, existing: CdpAssetReferenceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpAssetReferenceRepresentationNormalized;
|
|
@@ -17,20 +17,20 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
17
17
|
export interface CdpAssetReferenceRepresentationNormalized {
|
|
18
18
|
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
19
19
|
/** Created date */
|
|
20
|
-
createdDate?: string;
|
|
20
|
+
createdDate?: string | null;
|
|
21
21
|
/** The 18 character ID of the asset */
|
|
22
22
|
id?: string;
|
|
23
23
|
/** Label of the asset */
|
|
24
|
-
label?: string;
|
|
24
|
+
label?: string | null;
|
|
25
25
|
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
26
26
|
/** Last modified date */
|
|
27
|
-
lastModifiedDate?: string;
|
|
27
|
+
lastModifiedDate?: string | null;
|
|
28
28
|
/** Name of the asset */
|
|
29
|
-
name?: string;
|
|
29
|
+
name?: string | null;
|
|
30
30
|
/** Namespace of the asset */
|
|
31
|
-
namespace?: string;
|
|
31
|
+
namespace?: string | null;
|
|
32
32
|
/** Url */
|
|
33
|
-
url?: string;
|
|
33
|
+
url?: string | null;
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
36
|
* Represents Cdp Asset Reference
|
|
@@ -40,12 +40,12 @@ export interface CdpAssetReferenceRepresentationNormalized {
|
|
|
40
40
|
*/
|
|
41
41
|
export interface CdpAssetReferenceRepresentation {
|
|
42
42
|
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
43
|
-
createdDate?: string;
|
|
43
|
+
createdDate?: string | null;
|
|
44
44
|
id?: string;
|
|
45
|
-
label?: string;
|
|
45
|
+
label?: string | null;
|
|
46
46
|
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
47
|
-
lastModifiedDate?: string;
|
|
48
|
-
name?: string;
|
|
49
|
-
namespace?: string;
|
|
50
|
-
url?: string;
|
|
47
|
+
lastModifiedDate?: string | null;
|
|
48
|
+
name?: string | null;
|
|
49
|
+
namespace?: string | null;
|
|
50
|
+
url?: string | null;
|
|
51
51
|
}
|
package/dist/es/es2018/types/src/generated/types/CdpMlConfiguredModelInputRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { CdpMlCustomizableFieldInputRepresentation as CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation } from './CdpMlCustomizableFieldInputRepresentation';
|
|
2
|
+
import { CdpAssetReferenceInputRepresentation as CdpAssetReferenceInputRepresentation_CdpAssetReferenceInputRepresentation } from './CdpAssetReferenceInputRepresentation';
|
|
3
|
+
import { CdpMlModelParameterOverrideInputRepresentation as CdpMlModelParameterOverrideInputRepresentation_CdpMlModelParameterOverrideInputRepresentation } from './CdpMlModelParameterOverrideInputRepresentation';
|
|
1
4
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
5
|
export declare const TTL = 1000;
|
|
3
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "d44cb1543a6f472fef08ad75102c98b1";
|
|
4
7
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
8
|
export declare const RepresentationType: string;
|
|
6
9
|
export declare function normalize(input: CdpMlConfiguredModelInputRepresentation, existing: CdpMlConfiguredModelInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpMlConfiguredModelInputRepresentationNormalized;
|
|
@@ -16,25 +19,25 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
16
19
|
*/
|
|
17
20
|
export interface CdpMlConfiguredModelInputRepresentationNormalized {
|
|
18
21
|
/** Actionable Fields */
|
|
19
|
-
actionableFields
|
|
22
|
+
actionableFields?: Array<CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
20
23
|
/** Artifact */
|
|
21
|
-
artifact?:
|
|
24
|
+
artifact?: CdpAssetReferenceInputRepresentation_CdpAssetReferenceInputRepresentation;
|
|
22
25
|
/** Model capability */
|
|
23
|
-
capability
|
|
26
|
+
capability?: string;
|
|
24
27
|
/** Customizable Fields */
|
|
25
|
-
customizableFields
|
|
28
|
+
customizableFields?: Array<CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
26
29
|
/** Model description */
|
|
27
|
-
description?: string;
|
|
30
|
+
description?: string | null;
|
|
28
31
|
/** Filter */
|
|
29
32
|
filter?: {};
|
|
30
33
|
/** Model label */
|
|
31
|
-
label?: string;
|
|
34
|
+
label?: string | null;
|
|
32
35
|
/** Model Parameter override */
|
|
33
|
-
parameterOverrides
|
|
36
|
+
parameterOverrides?: Array<CdpMlModelParameterOverrideInputRepresentation_CdpMlModelParameterOverrideInputRepresentation>;
|
|
34
37
|
/** Position */
|
|
35
|
-
position
|
|
38
|
+
position?: number;
|
|
36
39
|
/** Model status */
|
|
37
|
-
status
|
|
40
|
+
status?: string;
|
|
38
41
|
}
|
|
39
42
|
/**
|
|
40
43
|
* Input representation for a Cdp Ml Configured Model (Active Partition)
|
|
@@ -43,14 +46,14 @@ export interface CdpMlConfiguredModelInputRepresentationNormalized {
|
|
|
43
46
|
* (none)
|
|
44
47
|
*/
|
|
45
48
|
export interface CdpMlConfiguredModelInputRepresentation {
|
|
46
|
-
actionableFields
|
|
47
|
-
artifact?:
|
|
48
|
-
capability
|
|
49
|
-
customizableFields
|
|
50
|
-
description?: string;
|
|
49
|
+
actionableFields?: Array<CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
50
|
+
artifact?: CdpAssetReferenceInputRepresentation_CdpAssetReferenceInputRepresentation;
|
|
51
|
+
capability?: string;
|
|
52
|
+
customizableFields?: Array<CdpMlCustomizableFieldInputRepresentation_CdpMlCustomizableFieldInputRepresentation>;
|
|
53
|
+
description?: string | null;
|
|
51
54
|
filter?: {};
|
|
52
|
-
label?: string;
|
|
53
|
-
parameterOverrides
|
|
54
|
-
position
|
|
55
|
-
status
|
|
55
|
+
label?: string | null;
|
|
56
|
+
parameterOverrides?: Array<CdpMlModelParameterOverrideInputRepresentation_CdpMlModelParameterOverrideInputRepresentation>;
|
|
57
|
+
position?: number;
|
|
58
|
+
status?: string;
|
|
56
59
|
}
|
|
@@ -5,7 +5,7 @@ import { CdpMlFilterRepresentation as CdpMlFilterRepresentation_CdpMlFilterRepre
|
|
|
5
5
|
import { CdpMlModelParameterOverrideBaseRepresentation as CdpMlModelParameterOverrideBaseRepresentation_CdpMlModelParameterOverrideBaseRepresentation } from './CdpMlModelParameterOverrideBaseRepresentation';
|
|
6
6
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
7
7
|
export declare const TTL = 1000;
|
|
8
|
-
export declare const VERSION = "
|
|
8
|
+
export declare const VERSION = "f9608bc4ae3825a8da2fc0992ae87b6e";
|
|
9
9
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
10
10
|
export declare const RepresentationType: string;
|
|
11
11
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -30,7 +30,7 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
30
30
|
*/
|
|
31
31
|
export interface CdpMlConfiguredModelRepresentationNormalized {
|
|
32
32
|
/** List of actionable fields */
|
|
33
|
-
actionableFields
|
|
33
|
+
actionableFields?: Array<CdpMlCustomizableFieldRepresentation_CdpMlCustomizableFieldRepresentation>;
|
|
34
34
|
/** AI model */
|
|
35
35
|
artifact: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
36
36
|
/** Model capability */
|
|
@@ -38,16 +38,16 @@ export interface CdpMlConfiguredModelRepresentationNormalized {
|
|
|
38
38
|
/** Created by */
|
|
39
39
|
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
40
40
|
/** Created date */
|
|
41
|
-
createdDate?: string;
|
|
41
|
+
createdDate?: string | null;
|
|
42
42
|
/** List of customizable fields */
|
|
43
43
|
customizableFields: Array<CdpMlCustomizableFieldRepresentation_CdpMlCustomizableFieldRepresentation>;
|
|
44
44
|
/** Model description */
|
|
45
|
-
description?: string;
|
|
45
|
+
description?: string | null;
|
|
46
46
|
filter: CdpMlFilterRepresentation_CdpMlFilterRepresentation;
|
|
47
47
|
/** The 18 character ID of the asset */
|
|
48
48
|
id?: string;
|
|
49
49
|
/** Label of the asset */
|
|
50
|
-
label?: string;
|
|
50
|
+
label?: string | null;
|
|
51
51
|
/** Last activated by */
|
|
52
52
|
lastActivatedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
53
53
|
/** Last activated date */
|
|
@@ -55,13 +55,13 @@ export interface CdpMlConfiguredModelRepresentationNormalized {
|
|
|
55
55
|
/** Last modified by */
|
|
56
56
|
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
57
57
|
/** Last modified date */
|
|
58
|
-
lastModifiedDate?: string;
|
|
58
|
+
lastModifiedDate?: string | null;
|
|
59
59
|
/** Live metrics url */
|
|
60
|
-
metricsUrl?: string;
|
|
60
|
+
metricsUrl?: string | null;
|
|
61
61
|
/** Name of the asset */
|
|
62
62
|
name: string;
|
|
63
63
|
/** Namespace of the asset */
|
|
64
|
-
namespace
|
|
64
|
+
namespace?: string | null;
|
|
65
65
|
/** List of Model Parameter Overrides */
|
|
66
66
|
parameterOverrides: Array<CdpMlModelParameterOverrideBaseRepresentation_CdpMlModelParameterOverrideBaseRepresentation>;
|
|
67
67
|
/** Model position */
|
|
@@ -78,23 +78,23 @@ export interface CdpMlConfiguredModelRepresentationNormalized {
|
|
|
78
78
|
* modelIdOrName (string): name
|
|
79
79
|
*/
|
|
80
80
|
export interface CdpMlConfiguredModelRepresentation {
|
|
81
|
-
actionableFields
|
|
81
|
+
actionableFields?: Array<CdpMlCustomizableFieldRepresentation_CdpMlCustomizableFieldRepresentation>;
|
|
82
82
|
artifact: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
83
83
|
capability: string;
|
|
84
84
|
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
85
|
-
createdDate?: string;
|
|
85
|
+
createdDate?: string | null;
|
|
86
86
|
customizableFields: Array<CdpMlCustomizableFieldRepresentation_CdpMlCustomizableFieldRepresentation>;
|
|
87
|
-
description?: string;
|
|
87
|
+
description?: string | null;
|
|
88
88
|
filter: CdpMlFilterRepresentation_CdpMlFilterRepresentation;
|
|
89
89
|
id?: string;
|
|
90
|
-
label?: string;
|
|
90
|
+
label?: string | null;
|
|
91
91
|
lastActivatedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
92
92
|
lastActivatedDate?: string;
|
|
93
93
|
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
94
|
-
lastModifiedDate?: string;
|
|
95
|
-
metricsUrl?: string;
|
|
94
|
+
lastModifiedDate?: string | null;
|
|
95
|
+
metricsUrl?: string | null;
|
|
96
96
|
name: string;
|
|
97
|
-
namespace
|
|
97
|
+
namespace?: string | null;
|
|
98
98
|
parameterOverrides: Array<CdpMlModelParameterOverrideBaseRepresentation_CdpMlModelParameterOverrideBaseRepresentation>;
|
|
99
99
|
position: number;
|
|
100
100
|
status: string;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "2649e55f9d472f8e9ded81f24039ca35";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: CdpMlCustomizableFieldDefinitionInputRepresentation, existing: CdpMlCustomizableFieldDefinitionInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpMlCustomizableFieldDefinitionInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: CdpMlCustomizableFieldDefinitionInputRepresentationNormalized, incoming: CdpMlCustomizableFieldDefinitionInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpMlCustomizableFieldDefinitionInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation for a Cdp Ml Customizable Field Definition
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface CdpMlCustomizableFieldDefinitionInputRepresentationNormalized {
|
|
17
|
+
/** Filter */
|
|
18
|
+
filter: {};
|
|
19
|
+
/** Template Text */
|
|
20
|
+
templateText: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Input representation for a Cdp Ml Customizable Field Definition
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface CdpMlCustomizableFieldDefinitionInputRepresentation {
|
|
29
|
+
filter: {};
|
|
30
|
+
templateText: string;
|
|
31
|
+
}
|
package/dist/es/es2018/types/src/generated/types/CdpMlCustomizableFieldInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { CdpMlCustomizableFieldDefinitionInputRepresentation as CdpMlCustomizableFieldDefinitionInputRepresentation_CdpMlCustomizableFieldDefinitionInputRepresentation } from './CdpMlCustomizableFieldDefinitionInputRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const VERSION = "a0835397620ac991fcb43b5d4ad9123f";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: CdpMlCustomizableFieldInputRepresentation, existing: CdpMlCustomizableFieldInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpMlCustomizableFieldInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: CdpMlCustomizableFieldInputRepresentationNormalized, incoming: CdpMlCustomizableFieldInputRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: CdpMlCustomizableFieldInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for a Cdp Ml Customizable Field
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface CdpMlCustomizableFieldInputRepresentationNormalized {
|
|
18
|
+
/** Custom Definitions */
|
|
19
|
+
customDefinitions: Array<CdpMlCustomizableFieldDefinitionInputRepresentation_CdpMlCustomizableFieldDefinitionInputRepresentation>;
|
|
20
|
+
/** Name */
|
|
21
|
+
name: string;
|
|
22
|
+
/** Type */
|
|
23
|
+
type: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Input representation for a Cdp Ml Customizable Field
|
|
27
|
+
*
|
|
28
|
+
* Keys:
|
|
29
|
+
* (none)
|
|
30
|
+
*/
|
|
31
|
+
export interface CdpMlCustomizableFieldInputRepresentation {
|
|
32
|
+
customDefinitions: Array<CdpMlCustomizableFieldDefinitionInputRepresentation_CdpMlCustomizableFieldDefinitionInputRepresentation>;
|
|
33
|
+
name: string;
|
|
34
|
+
type: string;
|
|
35
|
+
}
|
|
@@ -5,7 +5,7 @@ import { CdpMlModelParameterDefinitionBaseRepresentation as CdpMlModelParameterD
|
|
|
5
5
|
import { CdpAssetReferenceRepresentation as CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation } from './CdpAssetReferenceRepresentation';
|
|
6
6
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
7
7
|
export declare const TTL = 1000;
|
|
8
|
-
export declare const VERSION = "
|
|
8
|
+
export declare const VERSION = "6d28f4bb028ba6cba885d3f305c117f4";
|
|
9
9
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
10
10
|
export declare const RepresentationType: string;
|
|
11
11
|
export declare function normalize(input: CdpMlModelArtifactBaseRepresentation, existing: CdpMlModelArtifactBaseRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): CdpMlModelArtifactBaseRepresentationNormalized;
|
|
@@ -21,27 +21,27 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CdpMlModelArtifactBaseRepresentationNormalized {
|
|
23
23
|
/** Created by */
|
|
24
|
-
createdBy
|
|
24
|
+
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
25
25
|
/** Created date */
|
|
26
|
-
createdDate
|
|
26
|
+
createdDate?: string | null;
|
|
27
27
|
/** Description */
|
|
28
|
-
description?: string;
|
|
28
|
+
description?: string | null;
|
|
29
29
|
/** The 18 character ID of the asset */
|
|
30
|
-
id
|
|
30
|
+
id?: string;
|
|
31
31
|
/** Input Fields */
|
|
32
32
|
inputFields: Array<CdpMlModelInputFieldBaseRepresentation_CdpMlModelInputFieldBaseRepresentation>;
|
|
33
33
|
/** Label of the asset */
|
|
34
|
-
label?: string;
|
|
34
|
+
label?: string | null;
|
|
35
35
|
/** Last modified by */
|
|
36
|
-
lastModifiedBy
|
|
36
|
+
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
37
37
|
/** Last modified date */
|
|
38
|
-
lastModifiedDate
|
|
38
|
+
lastModifiedDate?: string | null;
|
|
39
39
|
/** Model Type */
|
|
40
40
|
modelType: string;
|
|
41
41
|
/** Name of the asset */
|
|
42
42
|
name: string;
|
|
43
43
|
/** Namespace of the asset */
|
|
44
|
-
namespace?: string;
|
|
44
|
+
namespace?: string | null;
|
|
45
45
|
/** Output Fields */
|
|
46
46
|
outputFields: Array<CdpMlModelOutputFieldRepresentation_CdpMlModelOutputFieldRepresentation>;
|
|
47
47
|
/** List of Model Parameter Definitions */
|
|
@@ -49,7 +49,7 @@ export interface CdpMlModelArtifactBaseRepresentationNormalized {
|
|
|
49
49
|
/** Runtime Type */
|
|
50
50
|
runtimeType: string;
|
|
51
51
|
/** Source */
|
|
52
|
-
source
|
|
52
|
+
source?: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
53
53
|
/** SourceType */
|
|
54
54
|
sourceType: string;
|
|
55
55
|
/** Url */
|
|
@@ -62,21 +62,21 @@ export interface CdpMlModelArtifactBaseRepresentationNormalized {
|
|
|
62
62
|
* (none)
|
|
63
63
|
*/
|
|
64
64
|
export interface CdpMlModelArtifactBaseRepresentation {
|
|
65
|
-
createdBy
|
|
66
|
-
createdDate
|
|
67
|
-
description?: string;
|
|
68
|
-
id
|
|
65
|
+
createdBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
66
|
+
createdDate?: string | null;
|
|
67
|
+
description?: string | null;
|
|
68
|
+
id?: string;
|
|
69
69
|
inputFields: Array<CdpMlModelInputFieldBaseRepresentation_CdpMlModelInputFieldBaseRepresentation>;
|
|
70
|
-
label?: string;
|
|
71
|
-
lastModifiedBy
|
|
72
|
-
lastModifiedDate
|
|
70
|
+
label?: string | null;
|
|
71
|
+
lastModifiedBy?: CdpUserRepresentation_CdpUserRepresentation;
|
|
72
|
+
lastModifiedDate?: string | null;
|
|
73
73
|
modelType: string;
|
|
74
74
|
name: string;
|
|
75
|
-
namespace?: string;
|
|
75
|
+
namespace?: string | null;
|
|
76
76
|
outputFields: Array<CdpMlModelOutputFieldRepresentation_CdpMlModelOutputFieldRepresentation>;
|
|
77
77
|
parameters: Array<CdpMlModelParameterDefinitionBaseRepresentation_CdpMlModelParameterDefinitionBaseRepresentation>;
|
|
78
78
|
runtimeType: string;
|
|
79
|
-
source
|
|
79
|
+
source?: CdpAssetReferenceRepresentation_CdpAssetReferenceRepresentation;
|
|
80
80
|
sourceType: string;
|
|
81
81
|
url: string;
|
|
82
82
|
}
|