UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

11 lines 575 B
import { StorageClassEnum } from './storage/StorageClassEnum'; /** Copy object input. */ export interface StorageCopyObjectIn { /** Target Storage class. When copying an object within the same bucket with the same key, specify a different storage class to change an object's storage class. */ storageClass?: StorageClassEnum; /** Target bucket name. Can be the same as source bucket name to copy an object within the same bucket. */ targetBucket: string; /** Target object key. */ targetKey: string; } //# sourceMappingURL=StorageCopyObjectIn.d.ts.map