@salesforce/lds-adapters-platform-cdp-machine-learning 1.313.0 → 1.315.0
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 +188 -65
- package/dist/es/es2018/types/src/generated/types/CdpMlModelArtifactBaseRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/MlConfiguredModelRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/MlDeprecationConfigurationRepresentation.d.ts +38 -0
- package/package.json +3 -3
- package/sfdc/index.js +203 -80
- package/src/raml/api.raml +32 -3
package/src/raml/api.raml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
securedBy:
|
|
3
3
|
- OAuth2
|
|
4
4
|
title: Salesforce Connect API
|
|
5
|
-
version: '
|
|
5
|
+
version: '63.0'
|
|
6
6
|
mediaType: application/json
|
|
7
7
|
protocols:
|
|
8
8
|
- https
|
|
@@ -211,6 +211,9 @@ types:
|
|
|
211
211
|
discriminator: modelType
|
|
212
212
|
type: object
|
|
213
213
|
properties:
|
|
214
|
+
deprecationConfiguration?:
|
|
215
|
+
description: Deprecation strategy when the model is deprecated
|
|
216
|
+
type: MlDeprecationConfigurationRepresentation
|
|
214
217
|
description?:
|
|
215
218
|
description: Description
|
|
216
219
|
type: string | nil
|
|
@@ -268,8 +271,11 @@ types:
|
|
|
268
271
|
description: Model artifact status
|
|
269
272
|
type: string
|
|
270
273
|
enum:
|
|
274
|
+
- Deprecated
|
|
271
275
|
- Disabled
|
|
276
|
+
- Draft
|
|
272
277
|
- Enabled
|
|
278
|
+
- Rerouted
|
|
273
279
|
syncStatus?:
|
|
274
280
|
description: Sync status
|
|
275
281
|
type: string
|
|
@@ -457,9 +463,10 @@ types:
|
|
|
457
463
|
description: Model status
|
|
458
464
|
type: string
|
|
459
465
|
enum:
|
|
466
|
+
- Deprecated
|
|
460
467
|
- Disabled
|
|
461
|
-
- Draft
|
|
462
468
|
- Enabled
|
|
469
|
+
- Rerouted
|
|
463
470
|
createdBy?:
|
|
464
471
|
description: Created by
|
|
465
472
|
type: CdpUserRepresentation
|
|
@@ -1140,6 +1147,9 @@ types:
|
|
|
1140
1147
|
- SageMaker
|
|
1141
1148
|
- VertexAI
|
|
1142
1149
|
- Bedrock
|
|
1150
|
+
deprecationConfiguration?:
|
|
1151
|
+
description: Deprecation strategy when the model is deprecated
|
|
1152
|
+
type: MlDeprecationConfigurationRepresentation
|
|
1143
1153
|
description?:
|
|
1144
1154
|
description: User defined description
|
|
1145
1155
|
type: string | nil
|
|
@@ -1175,9 +1185,10 @@ types:
|
|
|
1175
1185
|
description: Model status
|
|
1176
1186
|
type: string
|
|
1177
1187
|
enum:
|
|
1188
|
+
- Deprecated
|
|
1178
1189
|
- Disabled
|
|
1179
|
-
- Draft
|
|
1180
1190
|
- Enabled
|
|
1191
|
+
- Rerouted
|
|
1181
1192
|
createdBy?:
|
|
1182
1193
|
description: Created by
|
|
1183
1194
|
type: CdpUserRepresentation
|
|
@@ -1492,6 +1503,24 @@ types:
|
|
|
1492
1503
|
enum:
|
|
1493
1504
|
- Disabled
|
|
1494
1505
|
- Enabled
|
|
1506
|
+
MlDeprecationConfigurationRepresentation:
|
|
1507
|
+
description: Ml Deprecation Configuration Representation
|
|
1508
|
+
type: object
|
|
1509
|
+
properties:
|
|
1510
|
+
deprecationDate?:
|
|
1511
|
+
description: Deprecation date
|
|
1512
|
+
type: string | nil
|
|
1513
|
+
endOfLifeDate?:
|
|
1514
|
+
description: End of life date
|
|
1515
|
+
type: string | nil
|
|
1516
|
+
endOfLifePolicy?:
|
|
1517
|
+
description: End of life policy
|
|
1518
|
+
type: string | nil
|
|
1519
|
+
enum:
|
|
1520
|
+
- RollOver
|
|
1521
|
+
rollOverModelArtifactReference?:
|
|
1522
|
+
description: Roll over model artifact reference if policy is rollover
|
|
1523
|
+
type: CdpAssetReferenceRepresentation
|
|
1495
1524
|
CdpMlPredictRawDataInputRepresentation:
|
|
1496
1525
|
description: Raw Data Input Representation
|
|
1497
1526
|
type: object
|