import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Runbook Version resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets a Runbook Version by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRunbookVersion = oci.fleetappsmanagement.getRunbookVersion({ * runbookVersionId: testRunbookVersionOciFleetAppsManagementRunbookVersion.id, * }); * ``` */ export declare function getRunbookVersion(args: GetRunbookVersionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRunbookVersion. */ export interface GetRunbookVersionArgs { /** * Unique Runbook Version identifier */ runbookVersionId: string; } /** * A collection of values returned by getRunbookVersion. */ export interface GetRunbookVersionResult { readonly compartmentId: string; /** * 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; }; /** * Execution Workflow details. */ readonly executionWorkflowDetails: outputs.FleetAppsManagement.GetRunbookVersionExecutionWorkflowDetail[]; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The groups of the runbook. */ readonly groups: outputs.FleetAppsManagement.GetRunbookVersionGroup[]; /** * The OCID of the resource. */ readonly id: string; readonly isLatest: boolean; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * The name of the task */ readonly name: string; /** * Rollback Workflow details. */ readonly rollbackWorkflowDetails: outputs.FleetAppsManagement.GetRunbookVersionRollbackWorkflowDetail[]; /** * The OCID of the resource. */ readonly runbookId: string; readonly runbookVersionId: string; /** * The current state of the runbook version. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * A set of tasks to execute in the runbook. */ readonly tasks: outputs.FleetAppsManagement.GetRunbookVersionTask[]; /** * The time this resource was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time this resource was last updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Runbook Version resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Gets a Runbook Version by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRunbookVersion = oci.fleetappsmanagement.getRunbookVersion({ * runbookVersionId: testRunbookVersionOciFleetAppsManagementRunbookVersion.id, * }); * ``` */ export declare function getRunbookVersionOutput(args: GetRunbookVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRunbookVersion. */ export interface GetRunbookVersionOutputArgs { /** * Unique Runbook Version identifier */ runbookVersionId: pulumi.Input; } //# sourceMappingURL=getRunbookVersion.d.ts.map