oci.Database.OneoffPatch
Explore with Pulumi AI
This resource provides the Oneoff Patch resource in Oracle Cloud Infrastructure Database service.
Creates one-off patch for specified database version to download.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testOneoffPatch = new Oci.Database.OneoffPatch("testOneoffPatch", new()
{
CompartmentId = @var.Compartment_id,
DbVersion = @var.Oneoff_patch_db_version,
DisplayName = @var.Oneoff_patch_display_name,
ReleaseUpdate = @var.Oneoff_patch_release_update,
DefinedTags = @var.Oneoff_patch_defined_tags,
FreeformTags =
{
{ "Department", "Finance" },
},
OneOffPatches = @var.Oneoff_patch_one_off_patches,
});
});
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.NewOneoffPatch(ctx, "testOneoffPatch", &Database.OneoffPatchArgs{
CompartmentId: pulumi.Any(_var.Compartment_id),
DbVersion: pulumi.Any(_var.Oneoff_patch_db_version),
DisplayName: pulumi.Any(_var.Oneoff_patch_display_name),
ReleaseUpdate: pulumi.Any(_var.Oneoff_patch_release_update),
DefinedTags: pulumi.Any(_var.Oneoff_patch_defined_tags),
FreeformTags: pulumi.Map{
"Department": pulumi.Any("Finance"),
},
OneOffPatches: pulumi.Any(_var.Oneoff_patch_one_off_patches),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.OneoffPatch;
import com.pulumi.oci.Database.OneoffPatchArgs;
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 testOneoffPatch = new OneoffPatch("testOneoffPatch", OneoffPatchArgs.builder()
.compartmentId(var_.compartment_id())
.dbVersion(var_.oneoff_patch_db_version())
.displayName(var_.oneoff_patch_display_name())
.releaseUpdate(var_.oneoff_patch_release_update())
.definedTags(var_.oneoff_patch_defined_tags())
.freeformTags(Map.of("Department", "Finance"))
.oneOffPatches(var_.oneoff_patch_one_off_patches())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_oneoff_patch = oci.database.OneoffPatch("testOneoffPatch",
compartment_id=var["compartment_id"],
db_version=var["oneoff_patch_db_version"],
display_name=var["oneoff_patch_display_name"],
release_update=var["oneoff_patch_release_update"],
defined_tags=var["oneoff_patch_defined_tags"],
freeform_tags={
"Department": "Finance",
},
one_off_patches=var["oneoff_patch_one_off_patches"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOneoffPatch = new oci.database.OneoffPatch("testOneoffPatch", {
compartmentId: _var.compartment_id,
dbVersion: _var.oneoff_patch_db_version,
displayName: _var.oneoff_patch_display_name,
releaseUpdate: _var.oneoff_patch_release_update,
definedTags: _var.oneoff_patch_defined_tags,
freeformTags: {
Department: "Finance",
},
oneOffPatches: _var.oneoff_patch_one_off_patches,
});
resources:
testOneoffPatch:
type: oci:Database:OneoffPatch
properties:
#Required
compartmentId: ${var.compartment_id}
dbVersion: ${var.oneoff_patch_db_version}
displayName: ${var.oneoff_patch_display_name}
releaseUpdate: ${var.oneoff_patch_release_update}
#Optional
definedTags: ${var.oneoff_patch_defined_tags}
freeformTags:
Department: Finance
oneOffPatches: ${var.oneoff_patch_one_off_patches}
Create OneoffPatch Resource
new OneoffPatch(name: string, args: OneoffPatchArgs, opts?: CustomResourceOptions);
@overload
def OneoffPatch(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
db_version: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
download_oneoff_patch_trigger: Optional[int] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
one_off_patches: Optional[Sequence[str]] = None,
release_update: Optional[str] = None)
@overload
def OneoffPatch(resource_name: str,
args: OneoffPatchArgs,
opts: Optional[ResourceOptions] = None)
func NewOneoffPatch(ctx *Context, name string, args OneoffPatchArgs, opts ...ResourceOption) (*OneoffPatch, error)
public OneoffPatch(string name, OneoffPatchArgs args, CustomResourceOptions? opts = null)
public OneoffPatch(String name, OneoffPatchArgs args)
public OneoffPatch(String name, OneoffPatchArgs args, CustomResourceOptions options)
type: oci:Database:OneoffPatch
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OneoffPatchArgs
- 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 OneoffPatchArgs
- 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 OneoffPatchArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OneoffPatchArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OneoffPatchArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
OneoffPatch 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 OneoffPatch resource accepts the following input properties:
- Compartment
Id string (Updatable) The OCID of the compartment.
- Db
Version string A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- Display
Name string One-off patch name.
- Release
Update string The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Download
Oneoff intPatch Trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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, 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"}
- One
Off List<string>Patches List of one-off patches for Database Homes.
- Compartment
Id string (Updatable) The OCID of the compartment.
- Db
Version string A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- Display
Name string One-off patch name.
- Release
Update string The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Download
Oneoff intPatch Trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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]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"}
- One
Off []stringPatches List of one-off patches for Database Homes.
- compartment
Id String (Updatable) The OCID of the compartment.
- db
Version String A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- display
Name String One-off patch name.
- release
Update String The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- download
Oneoff IntegerPatch Trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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,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"}
- one
Off List<String>Patches List of one-off patches for Database Homes.
- compartment
Id string (Updatable) The OCID of the compartment.
- db
Version string A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- display
Name string One-off patch name.
- release
Update string The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- download
Oneoff numberPatch Trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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]: 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"}
- one
Off string[]Patches List of one-off patches for Database Homes.
- compartment_
id str (Updatable) The OCID of the compartment.
- db_
version str A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- display_
name str One-off patch name.
- release_
update str The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- download_
oneoff_ intpatch_ trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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, 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"}
- one_
off_ Sequence[str]patches List of one-off patches for Database Homes.
- compartment
Id String (Updatable) The OCID of the compartment.
- db
Version String A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- display
Name String One-off patch name.
- release
Update String The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- download
Oneoff NumberPatch Trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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<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"}
- one
Off List<String>Patches List of one-off patches for Database Homes.
Outputs
All input properties are implicitly available as output properties. Additionally, the OneoffPatch resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string Detailed message for the lifecycle state.
- Sha256sum string
SHA-256 checksum of the one-off patch.
- Size
In doubleKbs The size of one-off patch in kilobytes.
- State string
The current state of the one-off patch.
- Time
Created string The date and time one-off patch was created.
- Time
Of stringExpiration The date and time until which the one-off patch will be available for download.
- Time
Updated string The date and time one-off patch was updated.
- Id string
The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string Detailed message for the lifecycle state.
- Sha256sum string
SHA-256 checksum of the one-off patch.
- Size
In float64Kbs The size of one-off patch in kilobytes.
- State string
The current state of the one-off patch.
- Time
Created string The date and time one-off patch was created.
- Time
Of stringExpiration The date and time until which the one-off patch will be available for download.
- Time
Updated string The date and time one-off patch was updated.
- id String
The provider-assigned unique ID for this managed resource.
- lifecycle
Details String Detailed message for the lifecycle state.
- sha256sum String
SHA-256 checksum of the one-off patch.
- size
In DoubleKbs The size of one-off patch in kilobytes.
- state String
The current state of the one-off patch.
- time
Created String The date and time one-off patch was created.
- time
Of StringExpiration The date and time until which the one-off patch will be available for download.
- time
Updated String The date and time one-off patch was updated.
- id string
The provider-assigned unique ID for this managed resource.
- lifecycle
Details string Detailed message for the lifecycle state.
- sha256sum string
SHA-256 checksum of the one-off patch.
- size
In numberKbs The size of one-off patch in kilobytes.
- state string
The current state of the one-off patch.
- time
Created string The date and time one-off patch was created.
- time
Of stringExpiration The date and time until which the one-off patch will be available for download.
- time
Updated string The date and time one-off patch was updated.
- id str
The provider-assigned unique ID for this managed resource.
- lifecycle_
details str Detailed message for the lifecycle state.
- sha256sum str
SHA-256 checksum of the one-off patch.
- size_
in_ floatkbs The size of one-off patch in kilobytes.
- state str
The current state of the one-off patch.
- time_
created str The date and time one-off patch was created.
- time_
of_ strexpiration The date and time until which the one-off patch will be available for download.
- time_
updated str The date and time one-off patch was updated.
- id String
The provider-assigned unique ID for this managed resource.
- lifecycle
Details String Detailed message for the lifecycle state.
- sha256sum String
SHA-256 checksum of the one-off patch.
- size
In NumberKbs The size of one-off patch in kilobytes.
- state String
The current state of the one-off patch.
- time
Created String The date and time one-off patch was created.
- time
Of StringExpiration The date and time until which the one-off patch will be available for download.
- time
Updated String The date and time one-off patch was updated.
Look up Existing OneoffPatch Resource
Get an existing OneoffPatch 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?: OneoffPatchState, opts?: CustomResourceOptions): OneoffPatch
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
db_version: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
download_oneoff_patch_trigger: Optional[int] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
lifecycle_details: Optional[str] = None,
one_off_patches: Optional[Sequence[str]] = None,
release_update: Optional[str] = None,
sha256sum: Optional[str] = None,
size_in_kbs: Optional[float] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
time_of_expiration: Optional[str] = None,
time_updated: Optional[str] = None) -> OneoffPatch
func GetOneoffPatch(ctx *Context, name string, id IDInput, state *OneoffPatchState, opts ...ResourceOption) (*OneoffPatch, error)
public static OneoffPatch Get(string name, Input<string> id, OneoffPatchState? state, CustomResourceOptions? opts = null)
public static OneoffPatch get(String name, Output<String> id, OneoffPatchState 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.
- Compartment
Id string (Updatable) The OCID of the compartment.
- Db
Version string A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string One-off patch name.
- Download
Oneoff intPatch Trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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, 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"}
- Lifecycle
Details string Detailed message for the lifecycle state.
- One
Off List<string>Patches List of one-off patches for Database Homes.
- Release
Update string The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- Sha256sum string
SHA-256 checksum of the one-off patch.
- Size
In doubleKbs The size of one-off patch in kilobytes.
- State string
The current state of the one-off patch.
- Time
Created string The date and time one-off patch was created.
- Time
Of stringExpiration The date and time until which the one-off patch will be available for download.
- Time
Updated string The date and time one-off patch was updated.
- Compartment
Id string (Updatable) The OCID of the compartment.
- Db
Version string A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string One-off patch name.
- Download
Oneoff intPatch Trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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]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"}
- Lifecycle
Details string Detailed message for the lifecycle state.
- One
Off []stringPatches List of one-off patches for Database Homes.
- Release
Update string The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- Sha256sum string
SHA-256 checksum of the one-off patch.
- Size
In float64Kbs The size of one-off patch in kilobytes.
- State string
The current state of the one-off patch.
- Time
Created string The date and time one-off patch was created.
- Time
Of stringExpiration The date and time until which the one-off patch will be available for download.
- Time
Updated string The date and time one-off patch was updated.
- compartment
Id String (Updatable) The OCID of the compartment.
- db
Version String A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String One-off patch name.
- download
Oneoff IntegerPatch Trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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,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"}
- lifecycle
Details String Detailed message for the lifecycle state.
- one
Off List<String>Patches List of one-off patches for Database Homes.
- release
Update String The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- sha256sum String
SHA-256 checksum of the one-off patch.
- size
In DoubleKbs The size of one-off patch in kilobytes.
- state String
The current state of the one-off patch.
- time
Created String The date and time one-off patch was created.
- time
Of StringExpiration The date and time until which the one-off patch will be available for download.
- time
Updated String The date and time one-off patch was updated.
- compartment
Id string (Updatable) The OCID of the compartment.
- db
Version string A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string One-off patch name.
- download
Oneoff numberPatch Trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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]: 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"}
- lifecycle
Details string Detailed message for the lifecycle state.
- one
Off string[]Patches List of one-off patches for Database Homes.
- release
Update string The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- sha256sum string
SHA-256 checksum of the one-off patch.
- size
In numberKbs The size of one-off patch in kilobytes.
- state string
The current state of the one-off patch.
- time
Created string The date and time one-off patch was created.
- time
Of stringExpiration The date and time until which the one-off patch will be available for download.
- time
Updated string The date and time one-off patch was updated.
- compartment_
id str (Updatable) The OCID of the compartment.
- db_
version str A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- 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 One-off patch name.
- download_
oneoff_ intpatch_ trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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, 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"}
- lifecycle_
details str Detailed message for the lifecycle state.
- one_
off_ Sequence[str]patches List of one-off patches for Database Homes.
- release_
update str The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- sha256sum str
SHA-256 checksum of the one-off patch.
- size_
in_ floatkbs The size of one-off patch in kilobytes.
- state str
The current state of the one-off patch.
- time_
created str The date and time one-off patch was created.
- time_
of_ strexpiration The date and time until which the one-off patch will be available for download.
- time_
updated str The date and time one-off patch was updated.
- compartment
Id String (Updatable) The OCID of the compartment.
- db
Version String A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String One-off patch name.
- download
Oneoff NumberPatch Trigger (Updatable) An optional property when incremented triggers Download Oneoff Patch. Could be set to any integer value.
** 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<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"}
- lifecycle
Details String Detailed message for the lifecycle state.
- one
Off List<String>Patches List of one-off patches for Database Homes.
- release
Update String The PSU or PBP or Release Updates. To get a list of supported versions, use the ListDbVersions operation.
- sha256sum String
SHA-256 checksum of the one-off patch.
- size
In NumberKbs The size of one-off patch in kilobytes.
- state String
The current state of the one-off patch.
- time
Created String The date and time one-off patch was created.
- time
Of StringExpiration The date and time until which the one-off patch will be available for download.
- time
Updated String The date and time one-off patch was updated.
Import
OneoffPatches can be imported using the id
, e.g.
$ pulumi import oci:Database/oneoffPatch:OneoffPatch test_oneoff_patch "id"
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.