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
/** Object that contains details about the status of the authentication process. */
5415
+
status?: StatusDetails;
5421
5416
headers?: OutgoingHttpHeaders;
5422
5417
}
5423
5418
@@ -5431,11 +5426,6 @@ namespace DiscoveryV1 {
5431
5426
WEB_CRAWL='web_crawl',
5432
5427
CLOUD_OBJECT_STORAGE='cloud_object_storage',
5433
5428
}
5434
-
/** The current status of this set of credentials. `connected` indicates that the credentials are available to use with the source configuration of a collection. `invalid` refers to the credentials (for example, the password provided has expired) and must be corrected before they can be used with a collection. */
5435
-
exportenumStatus{
5436
-
CONNECTED='connected',
5437
-
INVALID='invalid',
5438
-
}
5439
5429
}
5440
5430
5441
5431
/** Parameters for the `getCredentials` operation. */
@@ -5466,11 +5456,8 @@ namespace DiscoveryV1 {
5466
5456
* Obtain credentials for your source from the administrator of the source.
5467
5457
*/
5468
5458
credentialDetails?: CredentialDetails;
5469
-
/** The current status of this set of credentials. `connected` indicates that the credentials are available to
5470
-
* use with the source configuration of a collection. `invalid` refers to the credentials (for example, the
5471
-
* password provided has expired) and must be corrected before they can be used with a collection.
/** Object that contains details about the status of the authentication process. */
5460
+
status?: StatusDetails;
5474
5461
headers?: OutgoingHttpHeaders;
5475
5462
}
5476
5463
@@ -5484,11 +5471,6 @@ namespace DiscoveryV1 {
5484
5471
WEB_CRAWL='web_crawl',
5485
5472
CLOUD_OBJECT_STORAGE='cloud_object_storage',
5486
5473
}
5487
-
/** The current status of this set of credentials. `connected` indicates that the credentials are available to use with the source configuration of a collection. `invalid` refers to the credentials (for example, the password provided has expired) and must be corrected before they can be used with a collection. */
5488
-
exportenumStatus{
5489
-
CONNECTED='connected',
5490
-
INVALID='invalid',
5491
-
}
5492
5474
}
5493
5475
5494
5476
/** Parameters for the `deleteCredentials` operation. */
@@ -5777,11 +5759,8 @@ namespace DiscoveryV1 {
5777
5759
* Obtain credentials for your source from the administrator of the source.
5778
5760
*/
5779
5761
credential_details?: CredentialDetails;
5780
-
/** The current status of this set of credentials. `connected` indicates that the credentials are available to
5781
-
* use with the source configuration of a collection. `invalid` refers to the credentials (for example, the
5782
-
* password provided has expired) and must be corrected before they can be used with a collection.
5783
-
*/
5784
-
status?: string;
5762
+
/** Object that contains details about the status of the authentication process. */
5763
+
status?: StatusDetails;
5785
5764
}
5786
5765
5787
5766
/** Object containing array of credential definitions. */
@@ -6819,6 +6798,14 @@ namespace DiscoveryV1 {
6819
6798
next_crawl?: string;
6820
6799
}
6821
6800
6801
+
/** Object that contains details about the status of the authentication process. */
6802
+
exportinterfaceStatusDetails{
6803
+
/** Indicates whether the credential is accepted by the target data source. */
6804
+
authentication?: boolean;
6805
+
/** If `authentication` is `false`, a message describes why the authentication was unsuccessful. */
6806
+
error_message?: string;
6807
+
}
6808
+
6822
6809
/** An object defining a single tokenizaion rule. */
0 commit comments