Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi
oci.Dblm.getPatchManagementDatabases
Explore with Pulumi AI
This data source provides the list of Patch Management Databases in Oracle Cloud Infrastructure Dblm service.
Gets the list of databases
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testPatchManagementDatabases = oci.Dblm.getPatchManagementDatabases({
compartmentId: compartmentId,
databaseRelease: patchManagementDatabaseDatabaseRelease,
databaseType: patchManagementDatabaseDatabaseType,
displayName: patchManagementDatabaseDisplayName,
drifterPatchId: testPatch.id,
imageCompliance: patchManagementDatabaseImageCompliance,
imageId: testImage.id,
severityTypes: patchManagementDatabaseSeverityType,
state: patchManagementDatabaseState,
});
import pulumi
import pulumi_oci as oci
test_patch_management_databases = oci.Dblm.get_patch_management_databases(compartment_id=compartment_id,
database_release=patch_management_database_database_release,
database_type=patch_management_database_database_type,
display_name=patch_management_database_display_name,
drifter_patch_id=test_patch["id"],
image_compliance=patch_management_database_image_compliance,
image_id=test_image["id"],
severity_types=patch_management_database_severity_type,
state=patch_management_database_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/dblm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dblm.GetPatchManagementDatabases(ctx, &dblm.GetPatchManagementDatabasesArgs{
CompartmentId: pulumi.StringRef(compartmentId),
DatabaseRelease: pulumi.StringRef(patchManagementDatabaseDatabaseRelease),
DatabaseType: pulumi.StringRef(patchManagementDatabaseDatabaseType),
DisplayName: pulumi.StringRef(patchManagementDatabaseDisplayName),
DrifterPatchId: pulumi.IntRef(testPatch.Id),
ImageCompliance: pulumi.StringRef(patchManagementDatabaseImageCompliance),
ImageId: pulumi.StringRef(testImage.Id),
SeverityTypes: patchManagementDatabaseSeverityType,
State: pulumi.StringRef(patchManagementDatabaseState),
}, nil)
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 testPatchManagementDatabases = Oci.Dblm.GetPatchManagementDatabases.Invoke(new()
{
CompartmentId = compartmentId,
DatabaseRelease = patchManagementDatabaseDatabaseRelease,
DatabaseType = patchManagementDatabaseDatabaseType,
DisplayName = patchManagementDatabaseDisplayName,
DrifterPatchId = testPatch.Id,
ImageCompliance = patchManagementDatabaseImageCompliance,
ImageId = testImage.Id,
SeverityTypes = patchManagementDatabaseSeverityType,
State = patchManagementDatabaseState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Dblm.DblmFunctions;
import com.pulumi.oci.Dblm.inputs.GetPatchManagementDatabasesArgs;
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) {
final var testPatchManagementDatabases = DblmFunctions.getPatchManagementDatabases(GetPatchManagementDatabasesArgs.builder()
.compartmentId(compartmentId)
.databaseRelease(patchManagementDatabaseDatabaseRelease)
.databaseType(patchManagementDatabaseDatabaseType)
.displayName(patchManagementDatabaseDisplayName)
.drifterPatchId(testPatch.id())
.imageCompliance(patchManagementDatabaseImageCompliance)
.imageId(testImage.id())
.severityTypes(patchManagementDatabaseSeverityType)
.state(patchManagementDatabaseState)
.build());
}
}
variables:
testPatchManagementDatabases:
fn::invoke:
function: oci:Dblm:getPatchManagementDatabases
arguments:
compartmentId: ${compartmentId}
databaseRelease: ${patchManagementDatabaseDatabaseRelease}
databaseType: ${patchManagementDatabaseDatabaseType}
displayName: ${patchManagementDatabaseDisplayName}
drifterPatchId: ${testPatch.id}
imageCompliance: ${patchManagementDatabaseImageCompliance}
imageId: ${testImage.id}
severityTypes: ${patchManagementDatabaseSeverityType}
state: ${patchManagementDatabaseState}
Using getPatchManagementDatabases
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getPatchManagementDatabases(args: GetPatchManagementDatabasesArgs, opts?: InvokeOptions): Promise<GetPatchManagementDatabasesResult>
function getPatchManagementDatabasesOutput(args: GetPatchManagementDatabasesOutputArgs, opts?: InvokeOptions): Output<GetPatchManagementDatabasesResult>
def get_patch_management_databases(compartment_id: Optional[str] = None,
database_release: Optional[str] = None,
database_type: Optional[str] = None,
display_name: Optional[str] = None,
drifter_patch_id: Optional[int] = None,
filters: Optional[Sequence[_dblm.GetPatchManagementDatabasesFilter]] = None,
image_compliance: Optional[str] = None,
image_id: Optional[str] = None,
severity_types: Optional[Sequence[str]] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetPatchManagementDatabasesResult
def get_patch_management_databases_output(compartment_id: Optional[pulumi.Input[str]] = None,
database_release: Optional[pulumi.Input[str]] = None,
database_type: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
drifter_patch_id: Optional[pulumi.Input[int]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dblm.GetPatchManagementDatabasesFilterArgs]]]] = None,
image_compliance: Optional[pulumi.Input[str]] = None,
image_id: Optional[pulumi.Input[str]] = None,
severity_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetPatchManagementDatabasesResult]
func GetPatchManagementDatabases(ctx *Context, args *GetPatchManagementDatabasesArgs, opts ...InvokeOption) (*GetPatchManagementDatabasesResult, error)
func GetPatchManagementDatabasesOutput(ctx *Context, args *GetPatchManagementDatabasesOutputArgs, opts ...InvokeOption) GetPatchManagementDatabasesResultOutput
> Note: This function is named GetPatchManagementDatabases
in the Go SDK.
public static class GetPatchManagementDatabases
{
public static Task<GetPatchManagementDatabasesResult> InvokeAsync(GetPatchManagementDatabasesArgs args, InvokeOptions? opts = null)
public static Output<GetPatchManagementDatabasesResult> Invoke(GetPatchManagementDatabasesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetPatchManagementDatabasesResult> getPatchManagementDatabases(GetPatchManagementDatabasesArgs args, InvokeOptions options)
public static Output<GetPatchManagementDatabasesResult> getPatchManagementDatabases(GetPatchManagementDatabasesArgs args, InvokeOptions options)
fn::invoke:
function: oci:Dblm/getPatchManagementDatabases:getPatchManagementDatabases
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The ID of the compartment in which to list resources.
- Database
Release string - A filter to return only database that match the given release version.
- Database
Type string - Filter by database type. Possible values Single Instance or RAC.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Drifter
Patch intId - A filter to return only database that have given patchId as additional patch (drifter from image version).
- Filters
List<Get
Patch Management Databases Filter> - Image
Compliance string - Filter databases by image compliance status.
- Image
Id string - Subscribed image
- Severity
Types List<string> - Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- Compartment
Id string - The ID of the compartment in which to list resources.
- Database
Release string - A filter to return only database that match the given release version.
- Database
Type string - Filter by database type. Possible values Single Instance or RAC.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Drifter
Patch intId - A filter to return only database that have given patchId as additional patch (drifter from image version).
- Filters
[]Get
Patch Management Databases Filter - Image
Compliance string - Filter databases by image compliance status.
- Image
Id string - Subscribed image
- Severity
Types []string - Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartment
Id String - The ID of the compartment in which to list resources.
- database
Release String - A filter to return only database that match the given release version.
- database
Type String - Filter by database type. Possible values Single Instance or RAC.
- display
Name String - A filter to return only resources that match the entire display name given.
- drifter
Patch IntegerId - A filter to return only database that have given patchId as additional patch (drifter from image version).
- filters
List<Get
Patch Management Databases Filter> - image
Compliance String - Filter databases by image compliance status.
- image
Id String - Subscribed image
- severity
Types List<String> - Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartment
Id string - The ID of the compartment in which to list resources.
- database
Release string - A filter to return only database that match the given release version.
- database
Type string - Filter by database type. Possible values Single Instance or RAC.
- display
Name string - A filter to return only resources that match the entire display name given.
- drifter
Patch numberId - A filter to return only database that have given patchId as additional patch (drifter from image version).
- filters
Get
Patch Management Databases Filter[] - image
Compliance string - Filter databases by image compliance status.
- image
Id string - Subscribed image
- severity
Types string[] - Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
- state string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartment_
id str - The ID of the compartment in which to list resources.
- database_
release str - A filter to return only database that match the given release version.
- database_
type str - Filter by database type. Possible values Single Instance or RAC.
- display_
name str - A filter to return only resources that match the entire display name given.
- drifter_
patch_ intid - A filter to return only database that have given patchId as additional patch (drifter from image version).
- filters
Sequence[dblm.
Get Patch Management Databases Filter] - image_
compliance str - Filter databases by image compliance status.
- image_
id str - Subscribed image
- severity_
types Sequence[str] - Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
- state str
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartment
Id String - The ID of the compartment in which to list resources.
- database
Release String - A filter to return only database that match the given release version.
- database
Type String - Filter by database type. Possible values Single Instance or RAC.
- display
Name String - A filter to return only resources that match the entire display name given.
- drifter
Patch NumberId - A filter to return only database that have given patchId as additional patch (drifter from image version).
- filters List<Property Map>
- image
Compliance String - Filter databases by image compliance status.
- image
Id String - Subscribed image
- severity
Types List<String> - Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
getPatchManagementDatabases Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Patch
Databases List<GetCollections Patch Management Databases Patch Databases Collection> - The list of patch_databases_collection.
- Compartment
Id string - Database
Release string - Database
Type string - Database type.
- Display
Name string - Drifter
Patch intId - Filters
List<Get
Patch Management Databases Filter> - Image
Compliance string - Image
Id string - Image identifier.
- Severity
Types List<string> - State string
- The current state of the database.
- Id string
- The provider-assigned unique ID for this managed resource.
- Patch
Databases []GetCollections Patch Management Databases Patch Databases Collection - The list of patch_databases_collection.
- Compartment
Id string - Database
Release string - Database
Type string - Database type.
- Display
Name string - Drifter
Patch intId - Filters
[]Get
Patch Management Databases Filter - Image
Compliance string - Image
Id string - Image identifier.
- Severity
Types []string - State string
- The current state of the database.
- id String
- The provider-assigned unique ID for this managed resource.
- patch
Databases List<GetCollections Patch Management Databases Patch Databases Collection> - The list of patch_databases_collection.
- compartment
Id String - database
Release String - database
Type String - Database type.
- display
Name String - drifter
Patch IntegerId - filters
List<Get
Patch Management Databases Filter> - image
Compliance String - image
Id String - Image identifier.
- severity
Types List<String> - state String
- The current state of the database.
- id string
- The provider-assigned unique ID for this managed resource.
- patch
Databases GetCollections Patch Management Databases Patch Databases Collection[] - The list of patch_databases_collection.
- compartment
Id string - database
Release string - database
Type string - Database type.
- display
Name string - drifter
Patch numberId - filters
Get
Patch Management Databases Filter[] - image
Compliance string - image
Id string - Image identifier.
- severity
Types string[] - state string
- The current state of the database.
- id str
- The provider-assigned unique ID for this managed resource.
- patch_
databases_ Sequence[dblm.collections Get Patch Management Databases Patch Databases Collection] - The list of patch_databases_collection.
- compartment_
id str - database_
release str - database_
type str - Database type.
- display_
name str - drifter_
patch_ intid - filters
Sequence[dblm.
Get Patch Management Databases Filter] - image_
compliance str - image_
id str - Image identifier.
- severity_
types Sequence[str] - state str
- The current state of the database.
- id String
- The provider-assigned unique ID for this managed resource.
- patch
Databases List<Property Map>Collections - The list of patch_databases_collection.
- compartment
Id String - database
Release String - database
Type String - Database type.
- display
Name String - drifter
Patch NumberId - filters List<Property Map>
- image
Compliance String - image
Id String - Image identifier.
- severity
Types List<String> - state String
- The current state of the database.
Supporting Types
GetPatchManagementDatabasesFilter
GetPatchManagementDatabasesPatchDatabasesCollection
- Items
List<Get
Patch Management Databases Patch Databases Collection Item> - List of patchDatabases.
- Items
[]Get
Patch Management Databases Patch Databases Collection Item - List of patchDatabases.
- items
List<Get
Patch Management Databases Patch Databases Collection Item> - List of patchDatabases.
- items
Get
Patch Management Databases Patch Databases Collection Item[] - List of patchDatabases.
- items
Sequence[dblm.
Get Patch Management Databases Patch Databases Collection Item] - List of patchDatabases.
- items List<Property Map>
- List of patchDatabases.
GetPatchManagementDatabasesPatchDatabasesCollectionItem
- Additional
Patches List<GetPatch Management Databases Patch Databases Collection Item Additional Patch> - List of additional patches on database.
- Current
Patch stringWatermark - This is the hashcode representing the list of patches applied.
- Database
Id string - Database ocid.
- Database
Name string - Database name.
- Database
Type string - Filter by database type. Possible values Single Instance or RAC.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Host
Or stringCluster - For SI, hosted on host and for RAC, host on cluster.
- Image
Details List<GetPatch Management Databases Patch Databases Collection Item Image Detail> - Image details containing the subscribed image, its status, version, owner and time of creation.
- Oracle
Home stringPath - Path to the Oracle home.
- Patch
Activity List<GetDetails Patch Management Databases Patch Databases Collection Item Patch Activity Detail> - Details of deploy, update and migrate-listener(only for single Instance database) operations for this resource.
- Patch
Compliance List<GetDetails Patch Management Databases Patch Databases Collection Item Patch Compliance Detail> - Patch Compliance Status
- Patch
User string - Intermediate user to be used for patching, created and maintained by customers. This user requires sudo access to switch as Oracle home owner and root user
- Release string
- Database release.
- Release
Full stringVersion - Database release full version.
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- Sudo
File stringPath - Path to sudo binary (executable) file
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Vulnerabilities
Summaries List<GetPatch Management Databases Patch Databases Collection Item Vulnerabilities Summary> - Summary of vulnerabilities found in registered resources grouped by severity.
- Additional
Patches []GetPatch Management Databases Patch Databases Collection Item Additional Patch - List of additional patches on database.
- Current
Patch stringWatermark - This is the hashcode representing the list of patches applied.
- Database
Id string - Database ocid.
- Database
Name string - Database name.
- Database
Type string - Filter by database type. Possible values Single Instance or RAC.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Host
Or stringCluster - For SI, hosted on host and for RAC, host on cluster.
- Image
Details []GetPatch Management Databases Patch Databases Collection Item Image Detail - Image details containing the subscribed image, its status, version, owner and time of creation.
- Oracle
Home stringPath - Path to the Oracle home.
- Patch
Activity []GetDetails Patch Management Databases Patch Databases Collection Item Patch Activity Detail - Details of deploy, update and migrate-listener(only for single Instance database) operations for this resource.
- Patch
Compliance []GetDetails Patch Management Databases Patch Databases Collection Item Patch Compliance Detail - Patch Compliance Status
- Patch
User string - Intermediate user to be used for patching, created and maintained by customers. This user requires sudo access to switch as Oracle home owner and root user
- Release string
- Database release.
- Release
Full stringVersion - Database release full version.
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- Sudo
File stringPath - Path to sudo binary (executable) file
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Vulnerabilities
Summaries []GetPatch Management Databases Patch Databases Collection Item Vulnerabilities Summary - Summary of vulnerabilities found in registered resources grouped by severity.
- additional
Patches List<GetPatch Management Databases Patch Databases Collection Item Additional Patch> - List of additional patches on database.
- current
Patch StringWatermark - This is the hashcode representing the list of patches applied.
- database
Id String - Database ocid.
- database
Name String - Database name.
- database
Type String - Filter by database type. Possible values Single Instance or RAC.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- host
Or StringCluster - For SI, hosted on host and for RAC, host on cluster.
- image
Details List<GetPatch Management Databases Patch Databases Collection Item Image Detail> - Image details containing the subscribed image, its status, version, owner and time of creation.
- oracle
Home StringPath - Path to the Oracle home.
- patch
Activity List<GetDetails Patch Management Databases Patch Databases Collection Item Patch Activity Detail> - Details of deploy, update and migrate-listener(only for single Instance database) operations for this resource.
- patch
Compliance List<GetDetails Patch Management Databases Patch Databases Collection Item Patch Compliance Detail> - Patch Compliance Status
- patch
User String - Intermediate user to be used for patching, created and maintained by customers. This user requires sudo access to switch as Oracle home owner and root user
- release String
- Database release.
- release
Full StringVersion - Database release full version.
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- sudo
File StringPath - Path to sudo binary (executable) file
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- vulnerabilities
Summaries List<GetPatch Management Databases Patch Databases Collection Item Vulnerabilities Summary> - Summary of vulnerabilities found in registered resources grouped by severity.
- additional
Patches GetPatch Management Databases Patch Databases Collection Item Additional Patch[] - List of additional patches on database.
- current
Patch stringWatermark - This is the hashcode representing the list of patches applied.
- database
Id string - Database ocid.
- database
Name string - Database name.
- database
Type string - Filter by database type. Possible values Single Instance or RAC.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- host
Or stringCluster - For SI, hosted on host and for RAC, host on cluster.
- image
Details GetPatch Management Databases Patch Databases Collection Item Image Detail[] - Image details containing the subscribed image, its status, version, owner and time of creation.
- oracle
Home stringPath - Path to the Oracle home.
- patch
Activity GetDetails Patch Management Databases Patch Databases Collection Item Patch Activity Detail[] - Details of deploy, update and migrate-listener(only for single Instance database) operations for this resource.
- patch
Compliance GetDetails Patch Management Databases Patch Databases Collection Item Patch Compliance Detail[] - Patch Compliance Status
- patch
User string - Intermediate user to be used for patching, created and maintained by customers. This user requires sudo access to switch as Oracle home owner and root user
- release string
- Database release.
- release
Full stringVersion - Database release full version.
- state string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- sudo
File stringPath - Path to sudo binary (executable) file
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- vulnerabilities
Summaries GetPatch Management Databases Patch Databases Collection Item Vulnerabilities Summary[] - Summary of vulnerabilities found in registered resources grouped by severity.
- additional_
patches Sequence[dblm.Get Patch Management Databases Patch Databases Collection Item Additional Patch] - List of additional patches on database.
- current_
patch_ strwatermark - This is the hashcode representing the list of patches applied.
- database_
id str - Database ocid.
- database_
name str - Database name.
- database_
type str - Filter by database type. Possible values Single Instance or RAC.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- host_
or_ strcluster - For SI, hosted on host and for RAC, host on cluster.
- image_
details Sequence[dblm.Get Patch Management Databases Patch Databases Collection Item Image Detail] - Image details containing the subscribed image, its status, version, owner and time of creation.
- oracle_
home_ strpath - Path to the Oracle home.
- patch_
activity_ Sequence[dblm.details Get Patch Management Databases Patch Databases Collection Item Patch Activity Detail] - Details of deploy, update and migrate-listener(only for single Instance database) operations for this resource.
- patch_
compliance_ Sequence[dblm.details Get Patch Management Databases Patch Databases Collection Item Patch Compliance Detail] - Patch Compliance Status
- patch_
user str - Intermediate user to be used for patching, created and maintained by customers. This user requires sudo access to switch as Oracle home owner and root user
- release str
- Database release.
- release_
full_ strversion - Database release full version.
- state str
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- sudo_
file_ strpath - Path to sudo binary (executable) file
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- vulnerabilities_
summaries Sequence[dblm.Get Patch Management Databases Patch Databases Collection Item Vulnerabilities Summary] - Summary of vulnerabilities found in registered resources grouped by severity.
- additional
Patches List<Property Map> - List of additional patches on database.
- current
Patch StringWatermark - This is the hashcode representing the list of patches applied.
- database
Id String - Database ocid.
- database
Name String - Database name.
- database
Type String - Filter by database type. Possible values Single Instance or RAC.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- host
Or StringCluster - For SI, hosted on host and for RAC, host on cluster.
- image
Details List<Property Map> - Image details containing the subscribed image, its status, version, owner and time of creation.
- oracle
Home StringPath - Path to the Oracle home.
- patch
Activity List<Property Map>Details - Details of deploy, update and migrate-listener(only for single Instance database) operations for this resource.
- patch
Compliance List<Property Map>Details - Patch Compliance Status
- patch
User String - Intermediate user to be used for patching, created and maintained by customers. This user requires sudo access to switch as Oracle home owner and root user
- release String
- Database release.
- release
Full StringVersion - Database release full version.
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- sudo
File StringPath - Path to sudo binary (executable) file
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- vulnerabilities
Summaries List<Property Map> - Summary of vulnerabilities found in registered resources grouped by severity.
GetPatchManagementDatabasesPatchDatabasesCollectionItemAdditionalPatch
- Category string
- Shows if patch is recommended or is an additional patch from an existing database.
- Description string
- Description of the patch recommendation.
- Patch
Id int - Id for the patch recommendation.
- Patch
Name string - Name for the patch recommendation.
- Category string
- Shows if patch is recommended or is an additional patch from an existing database.
- Description string
- Description of the patch recommendation.
- Patch
Id int - Id for the patch recommendation.
- Patch
Name string - Name for the patch recommendation.
- category String
- Shows if patch is recommended or is an additional patch from an existing database.
- description String
- Description of the patch recommendation.
- patch
Id Integer - Id for the patch recommendation.
- patch
Name String - Name for the patch recommendation.
- category string
- Shows if patch is recommended or is an additional patch from an existing database.
- description string
- Description of the patch recommendation.
- patch
Id number - Id for the patch recommendation.
- patch
Name string - Name for the patch recommendation.
- category str
- Shows if patch is recommended or is an additional patch from an existing database.
- description str
- Description of the patch recommendation.
- patch_
id int - Id for the patch recommendation.
- patch_
name str - Name for the patch recommendation.
- category String
- Shows if patch is recommended or is an additional patch from an existing database.
- description String
- Description of the patch recommendation.
- patch
Id Number - Id for the patch recommendation.
- patch
Name String - Name for the patch recommendation.
GetPatchManagementDatabasesPatchDatabasesCollectionItemImageDetail
- Created
By string - Name of the person who created the image.
- Current
Version string - Name of the image version marked as current of the image.
- Image
Id string - Subscribed image
- Image
Owner string - Owner of the image.
- Image
Status string - Image status.
- Image
Version string - Release version of the image.
- Subscribed
Image string - Subscribed image.
- Time
Image stringCreation - Date when the image was created.
- Up
To stringDate Image Version - An image version name, that is up to date and has no recommendations.
- Created
By string - Name of the person who created the image.
- Current
Version string - Name of the image version marked as current of the image.
- Image
Id string - Subscribed image
- Image
Owner string - Owner of the image.
- Image
Status string - Image status.
- Image
Version string - Release version of the image.
- Subscribed
Image string - Subscribed image.
- Time
Image stringCreation - Date when the image was created.
- Up
To stringDate Image Version - An image version name, that is up to date and has no recommendations.
- created
By String - Name of the person who created the image.
- current
Version String - Name of the image version marked as current of the image.
- image
Id String - Subscribed image
- image
Owner String - Owner of the image.
- image
Status String - Image status.
- image
Version String - Release version of the image.
- subscribed
Image String - Subscribed image.
- time
Image StringCreation - Date when the image was created.
- up
To StringDate Image Version - An image version name, that is up to date and has no recommendations.
- created
By string - Name of the person who created the image.
- current
Version string - Name of the image version marked as current of the image.
- image
Id string - Subscribed image
- image
Owner string - Owner of the image.
- image
Status string - Image status.
- image
Version string - Release version of the image.
- subscribed
Image string - Subscribed image.
- time
Image stringCreation - Date when the image was created.
- up
To stringDate Image Version - An image version name, that is up to date and has no recommendations.
- created_
by str - Name of the person who created the image.
- current_
version str - Name of the image version marked as current of the image.
- image_
id str - Subscribed image
- image_
owner str - Owner of the image.
- image_
status str - Image status.
- image_
version str - Release version of the image.
- subscribed_
image str - Subscribed image.
- time_
image_ strcreation - Date when the image was created.
- up_
to_ strdate_ image_ version - An image version name, that is up to date and has no recommendations.
- created
By String - Name of the person who created the image.
- current
Version String - Name of the image version marked as current of the image.
- image
Id String - Subscribed image
- image
Owner String - Owner of the image.
- image
Status String - Image status.
- image
Version String - Release version of the image.
- subscribed
Image String - Subscribed image.
- time
Image StringCreation - Date when the image was created.
- up
To StringDate Image Version - An image version name, that is up to date and has no recommendations.
GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchActivityDetail
- Deploy
Operation stringId - Operation Identifier for deploy operation.
- Deploy
Status string - Status of deploy operation.
- Deploy
Task stringId - Task identifier for deploy operation.
- Migrate
Listener stringOperation Id - Operation Identifier for migrate listener operation.
- Migrate
Listener stringStatus - Status of migrate listener operation.
- Migrate
Listener stringTask Id - Task identifier for migrate listener operation.
- Update
Operation stringId - Operation Identifier for update operation.
- Update
Status string - Status of update operation.
- Update
Task stringId - Task identifier for update operation.
- Deploy
Operation stringId - Operation Identifier for deploy operation.
- Deploy
Status string - Status of deploy operation.
- Deploy
Task stringId - Task identifier for deploy operation.
- Migrate
Listener stringOperation Id - Operation Identifier for migrate listener operation.
- Migrate
Listener stringStatus - Status of migrate listener operation.
- Migrate
Listener stringTask Id - Task identifier for migrate listener operation.
- Update
Operation stringId - Operation Identifier for update operation.
- Update
Status string - Status of update operation.
- Update
Task stringId - Task identifier for update operation.
- deploy
Operation StringId - Operation Identifier for deploy operation.
- deploy
Status String - Status of deploy operation.
- deploy
Task StringId - Task identifier for deploy operation.
- migrate
Listener StringOperation Id - Operation Identifier for migrate listener operation.
- migrate
Listener StringStatus - Status of migrate listener operation.
- migrate
Listener StringTask Id - Task identifier for migrate listener operation.
- update
Operation StringId - Operation Identifier for update operation.
- update
Status String - Status of update operation.
- update
Task StringId - Task identifier for update operation.
- deploy
Operation stringId - Operation Identifier for deploy operation.
- deploy
Status string - Status of deploy operation.
- deploy
Task stringId - Task identifier for deploy operation.
- migrate
Listener stringOperation Id - Operation Identifier for migrate listener operation.
- migrate
Listener stringStatus - Status of migrate listener operation.
- migrate
Listener stringTask Id - Task identifier for migrate listener operation.
- update
Operation stringId - Operation Identifier for update operation.
- update
Status string - Status of update operation.
- update
Task stringId - Task identifier for update operation.
- deploy_
operation_ strid - Operation Identifier for deploy operation.
- deploy_
status str - Status of deploy operation.
- deploy_
task_ strid - Task identifier for deploy operation.
- migrate_
listener_ stroperation_ id - Operation Identifier for migrate listener operation.
- migrate_
listener_ strstatus - Status of migrate listener operation.
- migrate_
listener_ strtask_ id - Task identifier for migrate listener operation.
- update_
operation_ strid - Operation Identifier for update operation.
- update_
status str - Status of update operation.
- update_
task_ strid - Task identifier for update operation.
- deploy
Operation StringId - Operation Identifier for deploy operation.
- deploy
Status String - Status of deploy operation.
- deploy
Task StringId - Task identifier for deploy operation.
- migrate
Listener StringOperation Id - Operation Identifier for migrate listener operation.
- migrate
Listener StringStatus - Status of migrate listener operation.
- migrate
Listener StringTask Id - Task identifier for migrate listener operation.
- update
Operation StringId - Operation Identifier for update operation.
- update
Status String - Status of update operation.
- update
Task StringId - Task identifier for update operation.
GetPatchManagementDatabasesPatchDatabasesCollectionItemPatchComplianceDetail
- Patch
Compliance stringStatus - Patch compliance status.
- Patch
Compliance stringVersion - Resource patch compliance version name.
- Patch
Compliance stringStatus - Patch compliance status.
- Patch
Compliance stringVersion - Resource patch compliance version name.
- patch
Compliance StringStatus - Patch compliance status.
- patch
Compliance StringVersion - Resource patch compliance version name.
- patch
Compliance stringStatus - Patch compliance status.
- patch
Compliance stringVersion - Resource patch compliance version name.
- patch_
compliance_ strstatus - Patch compliance status.
- patch_
compliance_ strversion - Resource patch compliance version name.
- patch
Compliance StringStatus - Patch compliance status.
- patch
Compliance StringVersion - Resource patch compliance version name.
GetPatchManagementDatabasesPatchDatabasesCollectionItemVulnerabilitiesSummary
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.