Show / Hide Table of Contents

Class CreateDatabaseSoftwareImageDetails

Parameters for creating a database software image in the specified compartment.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Inheritance
object
CreateDatabaseSoftwareImageDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class CreateDatabaseSoftwareImageDetails

Properties

CompartmentId

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

The OCID of the compartment the database software image belongs in.

Remarks

Required

DatabaseSoftwareImageOneOffPatches

Declaration
[JsonProperty(PropertyName = "databaseSoftwareImageOneOffPatches")]
public List<string> DatabaseSoftwareImageOneOffPatches { get; set; }
Property Value
Type Description
List<string>

List of one-off patches for Database Homes.

DatabaseVersion

Declaration
[JsonProperty(PropertyName = "databaseVersion")]
public string DatabaseVersion { get; set; }
Property Value
Type Description
string

The database version with which the database software image is to be built.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

DisplayName

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

The user-friendly name for the database software image. The name does not have to be unique.

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

ImageShapeFamily

Declaration
[JsonProperty(PropertyName = "imageShapeFamily")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateDatabaseSoftwareImageDetails.ImageShapeFamilyEnum? ImageShapeFamily { get; set; }
Property Value
Type Description
CreateDatabaseSoftwareImageDetails.ImageShapeFamilyEnum?

To what shape the image is meant for.

ImageType

Declaration
[JsonProperty(PropertyName = "imageType")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateDatabaseSoftwareImageDetails.ImageTypeEnum? ImageType { get; set; }
Property Value
Type Description
CreateDatabaseSoftwareImageDetails.ImageTypeEnum?

The type of software image. Can be grid or database.

LsInventory

Declaration
[JsonProperty(PropertyName = "lsInventory")]
public string LsInventory { get; set; }
Property Value
Type Description
string

The output from the OPatch lsInventory command, which is passed as a string.

PatchSet

Declaration
[JsonProperty(PropertyName = "patchSet")]
public string PatchSet { get; set; }
Property Value
Type Description
string

The PSU or PBP or Release Updates. To get a list of supported versions, use the {@link #listDbVersions(ListDbVersionsRequest) listDbVersions} operation.

SourceDbHomeId

Declaration
[JsonProperty(PropertyName = "sourceDbHomeId")]
public string SourceDbHomeId { get; set; }
Property Value
Type Description
string

The OCID of the Database Home.

In this article
Back to top