oci.Database.AutonomousDatabaseSoftwareImage
Explore with Pulumi AI
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/v2/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.StringMap{
"Department": pulumi.String("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, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = 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.
Constructor 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", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
});
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.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var autonomousDatabaseSoftwareImageResource = new AutonomousDatabaseSoftwareImage("autonomousDatabaseSoftwareImageResource", AutonomousDatabaseSoftwareImageArgs.builder()
.compartmentId("string")
.displayName("string")
.imageShapeFamily("string")
.sourceCdbId("string")
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.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": "string",
},
freeform_tags={
"string": "string",
})
const autonomousDatabaseSoftwareImageResource = new oci.database.AutonomousDatabaseSoftwareImage("autonomousDatabaseSoftwareImageResource", {
compartmentId: "string",
displayName: "string",
imageShapeFamily: "string",
sourceCdbId: "string",
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
});
type: oci:Database:AutonomousDatabaseSoftwareImage
properties:
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
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:
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Display
Name string - The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
- Image
Shape stringFamily - To what shape the image is meant for.
- Source
Cdb stringId 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
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Dictionary<string, string>
- (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 string - (Updatable) The OCID of the compartment.
- Display
Name string - The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
- Image
Shape stringFamily - To what shape the image is meant for.
- Source
Cdb stringId 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
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- map[string]string
- (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 String - (Updatable) The OCID of the compartment.
- display
Name String - The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
- image
Shape StringFamily - To what shape the image is meant for.
- source
Cdb StringId 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
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String,String>
- (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 string - (Updatable) The OCID of the compartment.
- display
Name string - The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
- image
Shape stringFamily - To what shape the image is meant for.
- source
Cdb stringId 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
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[key: string]: string}
- (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_ strfamily - To what shape the image is meant for.
- source_
cdb_ strid 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
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Mapping[str, str]
- (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 String - (Updatable) The OCID of the compartment.
- display
Name String - The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
- image
Shape StringFamily - To what shape the image is meant for.
- source
Cdb StringId 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
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String>
- (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:
- Autonomous
Dsi List<string>One Off Patches - One-off patches included in the Autonomous Database Software Image
- Database
Version 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.
- Lifecycle
Details string - Detailed message for the lifecycle state.
- Release
Update string - The Release Updates.
- State string
- The current state of the Autonomous Database Software Image.
- Time
Created string - The date and time the Autonomous Database Software Image was created.
- Autonomous
Dsi []stringOne Off Patches - One-off patches included in the Autonomous Database Software Image
- Database
Version 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.
- Lifecycle
Details string - Detailed message for the lifecycle state.
- Release
Update string - The Release Updates.
- State string
- The current state of the Autonomous Database Software Image.
- Time
Created string - The date and time the Autonomous Database Software Image was created.
- autonomous
Dsi List<String>One Off Patches - One-off patches included in the Autonomous Database Software Image
- database
Version 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.
- lifecycle
Details String - Detailed message for the lifecycle state.
- release
Update String - The Release Updates.
- state String
- The current state of the Autonomous Database Software Image.
- time
Created String - The date and time the Autonomous Database Software Image was created.
- autonomous
Dsi string[]One Off Patches - One-off patches included in the Autonomous Database Software Image
- database
Version 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.
- lifecycle
Details string - Detailed message for the lifecycle state.
- release
Update string - The Release Updates.
- state string
- The current state of the Autonomous Database Software Image.
- time
Created string - The date and time the Autonomous Database Software Image was created.
- autonomous_
dsi_ Sequence[str]one_ off_ patches - 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.
- autonomous
Dsi List<String>One Off Patches - One-off patches included in the Autonomous Database Software Image
- database
Version 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.
- lifecycle
Details String - Detailed message for the lifecycle state.
- release
Update String - The Release Updates.
- state String
- The current state of the Autonomous Database Software Image.
- time
Created 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, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = 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.
- Autonomous
Dsi List<string>One Off Patches - One-off patches included in the Autonomous Database Software Image
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Database
Version string - The database version with which the Autonomous Database Software Image is to be built.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
- Dictionary<string, string>
- (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 stringFamily - To what shape the image is meant for.
- Lifecycle
Details string - Detailed message for the lifecycle state.
- Release
Update string - The Release Updates.
- Source
Cdb stringId 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.
- Time
Created string - The date and time the Autonomous Database Software Image was created.
- Autonomous
Dsi []stringOne Off Patches - One-off patches included in the Autonomous Database Software Image
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Database
Version string - The database version with which the Autonomous Database Software Image is to be built.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
- map[string]string
- (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 stringFamily - To what shape the image is meant for.
- Lifecycle
Details string - Detailed message for the lifecycle state.
- Release
Update string - The Release Updates.
- Source
Cdb stringId 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.
- Time
Created string - The date and time the Autonomous Database Software Image was created.
- autonomous
Dsi List<String>One Off Patches - One-off patches included in the Autonomous Database Software Image
- compartment
Id String - (Updatable) The OCID of the compartment.
- database
Version String - The database version with which the Autonomous Database Software Image is to be built.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
- Map<String,String>
- (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 StringFamily - To what shape the image is meant for.
- lifecycle
Details String - Detailed message for the lifecycle state.
- release
Update String - The Release Updates.
- source
Cdb StringId 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.
- time
Created String - The date and time the Autonomous Database Software Image was created.
- autonomous
Dsi string[]One Off Patches - One-off patches included in the Autonomous Database Software Image
- compartment
Id string - (Updatable) The OCID of the compartment.
- database
Version string - The database version with which the Autonomous Database Software Image is to be built.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string - The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
- {[key: string]: string}
- (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 stringFamily - To what shape the image is meant for.
- lifecycle
Details string - Detailed message for the lifecycle state.
- release
Update string - The Release Updates.
- source
Cdb stringId 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.
- time
Created string - The date and time the Autonomous Database Software Image was created.
- autonomous_
dsi_ Sequence[str]one_ off_ patches - 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.
- Mapping[str, str]
- (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.
- Mapping[str, str]
- (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_ strfamily - 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_ strid 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.
- autonomous
Dsi List<String>One Off Patches - One-off patches included in the Autonomous Database Software Image
- compartment
Id String - (Updatable) The OCID of the compartment.
- database
Version String - The database version with which the Autonomous Database Software Image is to be built.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The user-friendly name for the Autonomous Database Software Image. The name does not have to be unique.
- Map<String>
- (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 StringFamily - To what shape the image is meant for.
- lifecycle
Details String - Detailed message for the lifecycle state.
- release
Update String - The Release Updates.
- source
Cdb StringId 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.
- time
Created 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.