1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. AutonomousDatabaseSoftwareImage
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

oci.Database.AutonomousDatabaseSoftwareImage

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

    This resource provides the Autonomous Database Software Image resource in Oracle Cloud Infrastructure Database service.

    create Autonomous Database Software Image in the specified compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAutonomousDatabaseSoftwareImage = new oci.database.AutonomousDatabaseSoftwareImage("test_autonomous_database_software_image", {
        compartmentId: compartmentId,
        displayName: autonomousDatabaseSoftwareImageDisplayName,
        imageShapeFamily: autonomousDatabaseSoftwareImageImageShapeFamily,
        sourceCdbId: testSourceCdb.id,
        definedTags: autonomousDatabaseSoftwareImageDefinedTags,
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_autonomous_database_software_image = oci.database.AutonomousDatabaseSoftwareImage("test_autonomous_database_software_image",
        compartment_id=compartment_id,
        display_name=autonomous_database_software_image_display_name,
        image_shape_family=autonomous_database_software_image_image_shape_family,
        source_cdb_id=test_source_cdb["id"],
        defined_tags=autonomous_database_software_image_defined_tags,
        freeform_tags={
            "Department": "Finance",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Database.NewAutonomousDatabaseSoftwareImage(ctx, "test_autonomous_database_software_image", &Database.AutonomousDatabaseSoftwareImageArgs{
    			CompartmentId:    pulumi.Any(compartmentId),
    			DisplayName:      pulumi.Any(autonomousDatabaseSoftwareImageDisplayName),
    			ImageShapeFamily: pulumi.Any(autonomousDatabaseSoftwareImageImageShapeFamily),
    			SourceCdbId:      pulumi.Any(testSourceCdb.Id),
    			DefinedTags:      pulumi.Any(autonomousDatabaseSoftwareImageDefinedTags),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testAutonomousDatabaseSoftwareImage = new Oci.Database.AutonomousDatabaseSoftwareImage("test_autonomous_database_software_image", new()
        {
            CompartmentId = compartmentId,
            DisplayName = autonomousDatabaseSoftwareImageDisplayName,
            ImageShapeFamily = autonomousDatabaseSoftwareImageImageShapeFamily,
            SourceCdbId = testSourceCdb.Id,
            DefinedTags = autonomousDatabaseSoftwareImageDefinedTags,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.AutonomousDatabaseSoftwareImage;
    import com.pulumi.oci.Database.AutonomousDatabaseSoftwareImageArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testAutonomousDatabaseSoftwareImage = new AutonomousDatabaseSoftwareImage("testAutonomousDatabaseSoftwareImage", AutonomousDatabaseSoftwareImageArgs.builder()        
                .compartmentId(compartmentId)
                .displayName(autonomousDatabaseSoftwareImageDisplayName)
                .imageShapeFamily(autonomousDatabaseSoftwareImageImageShapeFamily)
                .sourceCdbId(testSourceCdb.id())
                .definedTags(autonomousDatabaseSoftwareImageDefinedTags)
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testAutonomousDatabaseSoftwareImage:
        type: oci:Database:AutonomousDatabaseSoftwareImage
        name: test_autonomous_database_software_image
        properties:
          compartmentId: ${compartmentId}
          displayName: ${autonomousDatabaseSoftwareImageDisplayName}
          imageShapeFamily: ${autonomousDatabaseSoftwareImageImageShapeFamily}
          sourceCdbId: ${testSourceCdb.id}
          definedTags: ${autonomousDatabaseSoftwareImageDefinedTags}
          freeformTags:
            Department: Finance
    

    Create AutonomousDatabaseSoftwareImage Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AutonomousDatabaseSoftwareImage(name: string, args: AutonomousDatabaseSoftwareImageArgs, opts?: CustomResourceOptions);
    @overload
    def AutonomousDatabaseSoftwareImage(resource_name: str,
                                        args: AutonomousDatabaseSoftwareImageArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def AutonomousDatabaseSoftwareImage(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        compartment_id: Optional[str] = None,
                                        display_name: Optional[str] = None,
                                        image_shape_family: Optional[str] = None,
                                        source_cdb_id: Optional[str] = None,
                                        defined_tags: Optional[Mapping[str, Any]] = None,
                                        freeform_tags: Optional[Mapping[str, Any]] = None)
    func NewAutonomousDatabaseSoftwareImage(ctx *Context, name string, args AutonomousDatabaseSoftwareImageArgs, opts ...ResourceOption) (*AutonomousDatabaseSoftwareImage, error)
    public AutonomousDatabaseSoftwareImage(string name, AutonomousDatabaseSoftwareImageArgs args, CustomResourceOptions? opts = null)
    public AutonomousDatabaseSoftwareImage(String name, AutonomousDatabaseSoftwareImageArgs args)
    public AutonomousDatabaseSoftwareImage(String name, AutonomousDatabaseSoftwareImageArgs args, CustomResourceOptions options)
    
    type: oci:Database:AutonomousDatabaseSoftwareImage
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AutonomousDatabaseSoftwareImageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AutonomousDatabaseSoftwareImageArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AutonomousDatabaseSoftwareImageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AutonomousDatabaseSoftwareImageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AutonomousDatabaseSoftwareImageArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var autonomousDatabaseSoftwareImageResource = new Oci.Database.AutonomousDatabaseSoftwareImage("autonomousDatabaseSoftwareImageResource", new()
    {
        CompartmentId = "string",
        DisplayName = "string",
        ImageShapeFamily = "string",
        SourceCdbId = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        FreeformTags = 
        {
            { "string", "any" },
        },
    });
    
    example, err := Database.NewAutonomousDatabaseSoftwareImage(ctx, "autonomousDatabaseSoftwareImageResource", &Database.AutonomousDatabaseSoftwareImageArgs{
    	CompartmentId:    pulumi.String("string"),
    	DisplayName:      pulumi.String("string"),
    	ImageShapeFamily: pulumi.String("string"),
    	SourceCdbId:      pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    })
    
    var autonomousDatabaseSoftwareImageResource = new AutonomousDatabaseSoftwareImage("autonomousDatabaseSoftwareImageResource", AutonomousDatabaseSoftwareImageArgs.builder()        
        .compartmentId("string")
        .displayName("string")
        .imageShapeFamily("string")
        .sourceCdbId("string")
        .definedTags(Map.of("string", "any"))
        .freeformTags(Map.of("string", "any"))
        .build());
    
    autonomous_database_software_image_resource = oci.database.AutonomousDatabaseSoftwareImage("autonomousDatabaseSoftwareImageResource",
        compartment_id="string",
        display_name="string",
        image_shape_family="string",
        source_cdb_id="string",
        defined_tags={
            "string": "any",
        },
        freeform_tags={
            "string": "any",
        })
    
    const autonomousDatabaseSoftwareImageResource = new oci.database.AutonomousDatabaseSoftwareImage("autonomousDatabaseSoftwareImageResource", {
        compartmentId: "string",
        displayName: "string",
        imageShapeFamily: "string",
        sourceCdbId: "string",
        definedTags: {
            string: "any",
        },
        freeformTags: {
            string: "any",
        },
    });
    
    type: oci:Database:AutonomousDatabaseSoftwareImage
    properties:
        compartmentId: string
        definedTags:
            string: any
        displayName: string
        freeformTags:
            string: any
        imageShapeFamily: string
        sourceCdbId: string
    

    AutonomousDatabaseSoftwareImage Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The AutonomousDatabaseSoftwareImage resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment.
    DisplayName string
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    ImageShapeFamily string
    To what shape the image is meant for.
    SourceCdbId string

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags Dictionary<string, object>
    (Updatable) 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"}
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DisplayName string
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    ImageShapeFamily string
    To what shape the image is meant for.
    SourceCdbId string

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags map[string]interface{}
    (Updatable) 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"}
    compartmentId String
    (Updatable) The OCID of the compartment.
    displayName String
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    imageShapeFamily String
    To what shape the image is meant for.
    sourceCdbId String

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<String,Object>
    (Updatable) 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"}
    compartmentId string
    (Updatable) The OCID of the compartment.
    displayName string
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    imageShapeFamily string
    To what shape the image is meant for.
    sourceCdbId string

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags {[key: string]: any}
    (Updatable) 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"}
    compartment_id str
    (Updatable) The OCID of the compartment.
    display_name str
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    image_shape_family str
    To what shape the image is meant for.
    source_cdb_id str

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeform_tags Mapping[str, Any]
    (Updatable) 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"}
    compartmentId String
    (Updatable) The OCID of the compartment.
    displayName String
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    imageShapeFamily String
    To what shape the image is meant for.
    sourceCdbId String

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<Any>
    (Updatable) 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"}

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AutonomousDatabaseSoftwareImage resource produces the following output properties:

    AutonomousDsiOneOffPatches List<string>
    One-off patches included in the Autonomous Database Software Image
    DatabaseVersion string
    The database version with which the Autonomous Database Software Image is to be built.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    Detailed message for the lifecycle state.
    ReleaseUpdate string
    The Release Updates.
    State string
    The current state of the Autonomous Database Software Image.
    TimeCreated string
    The date and time the Autonomous Database Software Image was created.
    AutonomousDsiOneOffPatches []string
    One-off patches included in the Autonomous Database Software Image
    DatabaseVersion string
    The database version with which the Autonomous Database Software Image is to be built.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    Detailed message for the lifecycle state.
    ReleaseUpdate string
    The Release Updates.
    State string
    The current state of the Autonomous Database Software Image.
    TimeCreated string
    The date and time the Autonomous Database Software Image was created.
    autonomousDsiOneOffPatches List<String>
    One-off patches included in the Autonomous Database Software Image
    databaseVersion String
    The database version with which the Autonomous Database Software Image is to be built.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    Detailed message for the lifecycle state.
    releaseUpdate String
    The Release Updates.
    state String
    The current state of the Autonomous Database Software Image.
    timeCreated String
    The date and time the Autonomous Database Software Image was created.
    autonomousDsiOneOffPatches string[]
    One-off patches included in the Autonomous Database Software Image
    databaseVersion string
    The database version with which the Autonomous Database Software Image is to be built.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    Detailed message for the lifecycle state.
    releaseUpdate string
    The Release Updates.
    state string
    The current state of the Autonomous Database Software Image.
    timeCreated string
    The date and time the Autonomous Database Software Image was created.
    autonomous_dsi_one_off_patches Sequence[str]
    One-off patches included in the Autonomous Database Software Image
    database_version str
    The database version with which the Autonomous Database Software Image is to be built.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    Detailed message for the lifecycle state.
    release_update str
    The Release Updates.
    state str
    The current state of the Autonomous Database Software Image.
    time_created str
    The date and time the Autonomous Database Software Image was created.
    autonomousDsiOneOffPatches List<String>
    One-off patches included in the Autonomous Database Software Image
    databaseVersion String
    The database version with which the Autonomous Database Software Image is to be built.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    Detailed message for the lifecycle state.
    releaseUpdate String
    The Release Updates.
    state String
    The current state of the Autonomous Database Software Image.
    timeCreated String
    The date and time the Autonomous Database Software Image was created.

    Look up Existing AutonomousDatabaseSoftwareImage Resource

    Get an existing AutonomousDatabaseSoftwareImage resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AutonomousDatabaseSoftwareImageState, opts?: CustomResourceOptions): AutonomousDatabaseSoftwareImage
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            autonomous_dsi_one_off_patches: Optional[Sequence[str]] = None,
            compartment_id: Optional[str] = None,
            database_version: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            image_shape_family: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            release_update: Optional[str] = None,
            source_cdb_id: Optional[str] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None) -> AutonomousDatabaseSoftwareImage
    func GetAutonomousDatabaseSoftwareImage(ctx *Context, name string, id IDInput, state *AutonomousDatabaseSoftwareImageState, opts ...ResourceOption) (*AutonomousDatabaseSoftwareImage, error)
    public static AutonomousDatabaseSoftwareImage Get(string name, Input<string> id, AutonomousDatabaseSoftwareImageState? state, CustomResourceOptions? opts = null)
    public static AutonomousDatabaseSoftwareImage get(String name, Output<String> id, AutonomousDatabaseSoftwareImageState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AutonomousDsiOneOffPatches List<string>
    One-off patches included in the Autonomous Database Software Image
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DatabaseVersion string
    The database version with which the Autonomous Database Software Image is to be built.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    FreeformTags Dictionary<string, object>
    (Updatable) 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 string
    To what shape the image is meant for.
    LifecycleDetails string
    Detailed message for the lifecycle state.
    ReleaseUpdate string
    The Release Updates.
    SourceCdbId string

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    State string
    The current state of the Autonomous Database Software Image.
    TimeCreated string
    The date and time the Autonomous Database Software Image was created.
    AutonomousDsiOneOffPatches []string
    One-off patches included in the Autonomous Database Software Image
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DatabaseVersion string
    The database version with which the Autonomous Database Software Image is to be built.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    FreeformTags map[string]interface{}
    (Updatable) 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 string
    To what shape the image is meant for.
    LifecycleDetails string
    Detailed message for the lifecycle state.
    ReleaseUpdate string
    The Release Updates.
    SourceCdbId string

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    State string
    The current state of the Autonomous Database Software Image.
    TimeCreated string
    The date and time the Autonomous Database Software Image was created.
    autonomousDsiOneOffPatches List<String>
    One-off patches included in the Autonomous Database Software Image
    compartmentId String
    (Updatable) The OCID of the compartment.
    databaseVersion String
    The database version with which the Autonomous Database Software Image is to be built.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    freeformTags Map<String,Object>
    (Updatable) 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 String
    To what shape the image is meant for.
    lifecycleDetails String
    Detailed message for the lifecycle state.
    releaseUpdate String
    The Release Updates.
    sourceCdbId String

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state String
    The current state of the Autonomous Database Software Image.
    timeCreated String
    The date and time the Autonomous Database Software Image was created.
    autonomousDsiOneOffPatches string[]
    One-off patches included in the Autonomous Database Software Image
    compartmentId string
    (Updatable) The OCID of the compartment.
    databaseVersion string
    The database version with which the Autonomous Database Software Image is to be built.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName string
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    freeformTags {[key: string]: any}
    (Updatable) 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 string
    To what shape the image is meant for.
    lifecycleDetails string
    Detailed message for the lifecycle state.
    releaseUpdate string
    The Release Updates.
    sourceCdbId string

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state string
    The current state of the Autonomous Database Software Image.
    timeCreated string
    The date and time the Autonomous Database Software Image was created.
    autonomous_dsi_one_off_patches Sequence[str]
    One-off patches included in the Autonomous Database Software Image
    compartment_id str
    (Updatable) The OCID of the compartment.
    database_version str
    The database version with which the Autonomous Database Software Image is to be built.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    display_name str
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    freeform_tags Mapping[str, Any]
    (Updatable) 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"}
    image_shape_family str
    To what shape the image is meant for.
    lifecycle_details str
    Detailed message for the lifecycle state.
    release_update str
    The Release Updates.
    source_cdb_id str

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state str
    The current state of the Autonomous Database Software Image.
    time_created str
    The date and time the Autonomous Database Software Image was created.
    autonomousDsiOneOffPatches List<String>
    One-off patches included in the Autonomous Database Software Image
    compartmentId String
    (Updatable) The OCID of the compartment.
    databaseVersion String
    The database version with which the Autonomous Database Software Image is to be built.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
    freeformTags Map<Any>
    (Updatable) 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 String
    To what shape the image is meant for.
    lifecycleDetails String
    Detailed message for the lifecycle state.
    releaseUpdate String
    The Release Updates.
    sourceCdbId String

    The source Autonomous Container Database OCID from which to create Autonomous Database Software Image.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state String
    The current state of the Autonomous Database Software Image.
    timeCreated String
    The date and time the Autonomous Database Software Image was created.

    Import

    AutonomousDatabaseSoftwareImages can be imported using the id, e.g.

    $ pulumi import oci:Database/autonomousDatabaseSoftwareImage:AutonomousDatabaseSoftwareImage test_autonomous_database_software_image "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi