Show / Hide Table of Contents

Class CreateDbSystemSourceImportFromUrlDetails

An Object Storage PAR from which to import the DB System initial data.

Inheritance
object
CreateDbSystemSourceDetails
CreateDbSystemSourceImportFromUrlDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MysqlService.Models
Assembly: OCI.DotNetSDK.Mysql.dll
Syntax
public class CreateDbSystemSourceImportFromUrlDetails : CreateDbSystemSourceDetails

Properties

SourceUrl

Declaration
[Required(ErrorMessage = "SourceUrl is required.")]
[JsonProperty(PropertyName = "sourceUrl")]
public string SourceUrl { get; set; }
Property Value
Type Description
string

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 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.

Remarks

Required

In this article
Back to top