@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
36 lines (35 loc) • 1.17 kB
TypeScript
import AnalyticsOutput from './AnalyticsOutput';
import AnalyticsOutputType from './AnalyticsOutputType';
import GoogleCloudRegion from './GoogleCloudRegion';
/**
* @export
* @class AnalyticsGcsServiceAccountOutput
*/
export declare class AnalyticsGcsServiceAccountOutput extends AnalyticsOutput {
/**
* Discriminator property for AnalyticsOutput
* @type {string}
* @memberof AnalyticsGcsServiceAccountOutput
*/
readonly type: AnalyticsOutputType;
/**
* GCS projectId (required)
* @type {string}
* @memberof AnalyticsGcsServiceAccountOutput
*/
serviceAccountCredentials?: string;
/**
* Name of the bucket (required)
* @type {string}
* @memberof AnalyticsGcsServiceAccountOutput
*/
bucketName?: string;
/**
* The cloud region in which the bucket is located. Is used to determine the ideal location for your encodings automatically.
* @type {GoogleCloudRegion}
* @memberof AnalyticsGcsServiceAccountOutput
*/
cloudRegion?: GoogleCloudRegion;
constructor(obj?: Partial<AnalyticsGcsServiceAccountOutput>);
}
export default AnalyticsGcsServiceAccountOutput;