/** * MySQL Database Service API * The API for the MySQL Database Service * OpenAPI spec version: 20190415 * Contact: mysql-cloud-dev_ww_grp@oracle.com * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * An Object Storage PAR from which to import the DB System initial data. * */ export interface CreateDbSystemSourceImportFromUrlDetails extends model.CreateDbSystemSourceDetails { /** * The Pre-Authenticated Request (PAR) of a bucket/prefix or PAR of a @.manifest.json object from the Object Storage. * Check [Using Pre-Authenticated Requests](https://docs.oracle.com/en-us/iaas/Content/Object/Tasks/usingpreauthenticatedrequests.htm) * for information related to PAR creation. * Please create PAR with \"Permit object reads\" access type and \"Enable Object Listing\" permission when using a bucket/prefix PAR. * Please create PAR with \"Permit object reads\" access type when using a @.manifest.json object PAR. * */ "sourceUrl": string; "sourceType": string; } export declare namespace CreateDbSystemSourceImportFromUrlDetails { function getJsonObj(obj: CreateDbSystemSourceImportFromUrlDetails, isParentJsonObj?: boolean): object; const sourceType = "IMPORTURL"; function getDeserializedJsonObj(obj: CreateDbSystemSourceImportFromUrlDetails, isParentJsonObj?: boolean): object; }