import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Maintenance Execution resource in Oracle Cloud Infrastructure Datacc service. * * Gets information about the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMaintenanceExecution = oci.oci.getDataccMaintenanceExecution({ * maintenanceExecutionId: testMaintenanceExecutionOciDataccMaintenanceExecution.id, * }); * ``` */ export declare function getDataccMaintenanceExecution(args: GetDataccMaintenanceExecutionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDataccMaintenanceExecution. */ export interface GetDataccMaintenanceExecutionArgs { /** * The maintenance execution OCID. */ maintenanceExecutionId: string; } /** * A collection of values returned by getDataccMaintenanceExecution. */ export interface GetDataccMaintenanceExecutionResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * Determines the amount of time the system will wait before the start of each compute server patching operation. Supported values are 15 to 120 minutes. */ readonly customActionTimeoutInMins: number; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Description of the maintenance run execution. */ readonly description: string; /** * The user-friendly name for the maintenance run execution. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Infrastructure on which the maintenance run execution occurred. */ readonly infrastructureId: string; /** * At the time of execution whether the custom action time out is enabled for the maintenance run that is being executed. */ readonly isCustomActionTimeoutEnabled: boolean; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: string; readonly maintenanceExecutionId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the maintenance run to which this maintenance execution belongs. */ readonly maintenanceRunId: string; /** * Maintenance run execution sub-type. */ readonly maintenanceSubtype: string; /** * Maintenance type. */ readonly maintenanceType: string; /** * The patching mode for the maintenance run that is being executed. */ readonly patchingMode: string; /** * The source software version for the Oracle infrastructure. */ readonly sourceVersion: string; /** * The state of the maintenance run execution. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The type of the target resource on which the maintenance run execution occurred. */ readonly targetResourceType: string; /** * The target software version for the Database Infrastructure patching operation. */ readonly targetVersion: string; /** * The date and time the maintenance run was completed. */ readonly timeEnded: string; /** * The date and time the maintenance run execution started. */ readonly timeStarted: string; /** * The total time taken by this execution in minutes. */ readonly totalTimeTakenInMins: number; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the work request executed by this execution. */ readonly workflowId: string; } /** * This data source provides details about a specific Maintenance Execution resource in Oracle Cloud Infrastructure Datacc service. * * Gets information about the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMaintenanceExecution = oci.oci.getDataccMaintenanceExecution({ * maintenanceExecutionId: testMaintenanceExecutionOciDataccMaintenanceExecution.id, * }); * ``` */ export declare function getDataccMaintenanceExecutionOutput(args: GetDataccMaintenanceExecutionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDataccMaintenanceExecution. */ export interface GetDataccMaintenanceExecutionOutputArgs { /** * The maintenance execution OCID. */ maintenanceExecutionId: pulumi.Input; } //# sourceMappingURL=getDataccMaintenanceExecution.d.ts.map