@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
36 lines • 1.9 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { KalturaTypesFactory } from '../kaltura-types-factory';
import { KalturaAmazonS3StorageProfileFilesPermissionLevel } from './KalturaAmazonS3StorageProfileFilesPermissionLevel';
import { KalturaStorageProfile } from './KalturaStorageProfile';
var KalturaAmazonS3StorageProfile = (function (_super) {
__extends(KalturaAmazonS3StorageProfile, _super);
function KalturaAmazonS3StorageProfile(data) {
return _super.call(this, data) || this;
}
KalturaAmazonS3StorageProfile.prototype._getMetadata = function () {
var result = _super.prototype._getMetadata.call(this);
Object.assign(result.properties, {
objectType: { type: 'c', default: 'KalturaAmazonS3StorageProfile' },
filesPermissionInS3: { type: 'es', subTypeConstructor: KalturaAmazonS3StorageProfileFilesPermissionLevel, subType: 'KalturaAmazonS3StorageProfileFilesPermissionLevel' },
s3Region: { type: 's' },
sseType: { type: 's' },
sseKmsKeyId: { type: 's' },
signatureType: { type: 's' },
endPoint: { type: 's' }
});
return result;
};
return KalturaAmazonS3StorageProfile;
}(KalturaStorageProfile));
export { KalturaAmazonS3StorageProfile };
KalturaTypesFactory.registerType('KalturaAmazonS3StorageProfile', KalturaAmazonS3StorageProfile);
//# sourceMappingURL=KalturaAmazonS3StorageProfile.js.map