@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
36 lines (35 loc) • 1.02 kB
TypeScript
import GoogleCloudRegion from './GoogleCloudRegion';
import Input from './Input';
import InputType from './InputType';
/**
* @export
* @class GcsServiceAccountInput
*/
export declare class GcsServiceAccountInput extends Input {
/**
* Discriminator property for Input
* @type {string}
* @memberof GcsServiceAccountInput
*/
readonly type: InputType;
/**
* GCS projectId (required)
* @type {string}
* @memberof GcsServiceAccountInput
*/
serviceAccountCredentials?: string;
/**
* Name of the bucket (required)
* @type {string}
* @memberof GcsServiceAccountInput
*/
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 GcsServiceAccountInput
*/
cloudRegion?: GoogleCloudRegion;
constructor(obj?: Partial<GcsServiceAccountInput>);
}
export default GcsServiceAccountInput;