You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Size that the environment should be increased to. Environment size cannot be modified when using a Lite
4388
-
* plan. Environment size can only increased and not decreased.
4389
-
*/
4387
+
/** Size to change the environment to. **Note:** Lite plan users cannot change the environment size. */
4390
4388
size?: UpdateEnvironmentConstants.Size|string;
4391
4389
headers?: OutgoingHttpHeaders;
4392
4390
}
4393
4391
4394
4392
/** Constants for the `updateEnvironment` operation. */
4395
4393
exportnamespaceUpdateEnvironmentConstants{
4396
-
/** Size that the environment should be increased to. Environment size cannot be modified when using a Lite plan. Environment size can only increased and not decreased. */
4394
+
/** Size to change the environment to. **Note:** Lite plan users cannot change the environment size. */
4397
4395
exportenumSize{
4398
4396
S='S',
4399
4397
MS='MS',
@@ -5880,26 +5878,26 @@ namespace DiscoveryV1 {
5880
5878
source_field: string;
5881
5879
/** Indicates that the enrichments will overwrite the destination_field field if it already exists. */
5882
5880
overwrite?: boolean;
5883
-
/** Name of the enrichment service to call. Current options are `natural_language_understanding` and `elements`.
5884
-
*
5885
-
* When using `natual_language_understanding`, the **options** object must contain Natural Language Understanding
5886
-
* options.
5881
+
/** Name of the enrichment service to call. The only supported option is `natural_language_understanding`. The
5882
+
* `elements` option is deprecated and support ended on 10 July 2020.
5887
5883
*
5888
-
* When using `elements` the **options** object must contain Element Classification options. Additionally, when
5889
-
* using the `elements` enrichment the configuration specified and files ingested must meet all the criteria
* The **options** object must contain Natural Language Understanding options.
5892
5885
*/
5893
5886
enrichment: string;
5894
5887
/** If true, then most errors generated during the enrichment process will be treated as warnings and will not
5895
5888
* cause the document to fail processing.
5896
5889
*/
5897
5890
ignore_downstream_errors?: boolean;
5898
-
/** Options which are specific to a particular enrichment. */
5891
+
/** Options that are specific to a particular enrichment.
5892
+
*
5893
+
* The `elements` enrichment type is deprecated. Use the [Create a
5894
+
* project](https://cloud.ibm.com/apidocs/discovery-data#createproject) method of the Discovery v2 API to create a
5895
+
* `content_intelligence` project type instead.
5896
+
*/
5899
5897
options?: EnrichmentOptions;
5900
5898
}
5901
5899
5902
-
/** Options which are specific to a particular enrichment. */
5900
+
/** Options that are specific to a particular enrichment. The `elements` enrichment type is deprecated. Use the [Create a project](https://cloud.ibm.com/apidocs/discovery-data#createproject) method of the Discovery v2 API to create a `content_intelligence` project type instead. */
5903
5901
exportinterfaceEnrichmentOptions{
5904
5902
/** Object containing Natural Language Understanding features to be used. */
5905
5903
features?: NluEnrichmentFeatures;
@@ -5909,9 +5907,7 @@ namespace DiscoveryV1 {
5909
5907
* features support all languages, automatic detection is recommended.
5910
5908
*/
5911
5909
language?: string;
5912
-
/** For use with `elements` enrichments only. The element extraction model to use. The only model available is
5913
-
* `contract`.
5914
-
*/
5910
+
/** The element extraction model to use, which can be `contract` only. The `elements` enrichment is deprecated. */
5915
5911
model?: string;
5916
5912
}
5917
5913
@@ -6802,7 +6798,7 @@ namespace DiscoveryV1 {
6802
6798
exportinterfaceStatusDetails{
6803
6799
/** Indicates whether the credential is accepted by the target data source. */
6804
6800
authenticated?: boolean;
6805
-
/** If `authenticated` is `false`, a message describes why the authentication was unsuccessful. */
6801
+
/** If `authenticated` is `false`, a message describes why authentication is unsuccessful. */
0 commit comments