Fix comments on GoogleGcsUrlReader

Signed-off-by: Martina Iglesias Fernandez <martina@roadie.io>
This commit is contained in:
Martina Iglesias Fernandez
2021-03-19 17:10:15 +01:00
parent 9c4cedf268
commit e4cdec27e9
8 changed files with 196 additions and 66 deletions
+14
View File
@@ -149,5 +149,19 @@ export interface Config {
*/
baseUrl?: string;
}>;
/** Integration configuration for Google Cloud Storage */
googleGcs?: Array<{
/**
* Service account email used to authenticate requests.
* @visibility secret
*/
clientEmail?: string;
/**
* Service account private key used to authenticate requests.
* @visibility secret
*/
privateKey?: string;
}>;
};
}