import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Firmware Bundle resource in Oracle Cloud Infrastructure Core service. * * Returns the Firmware Bundle matching the provided firmwareBundleId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFirmwareBundle = oci.core.getFirmwareBundle({ * firmwareBundleId: testFirmwareBundleOciCoreFirmwareBundle.id, * }); * ``` */ export declare function getFirmwareBundle(args: GetFirmwareBundleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFirmwareBundle. */ export interface GetFirmwareBundleArgs { /** * Unique identifier for the firmware bundle. */ firmwareBundleId: string; } /** * A collection of values returned by getFirmwareBundle. */ export interface GetFirmwareBundleResult { /** * A map of firmware bundle upgrades/downgrades validated by OCI. */ readonly allowableTransitions: outputs.Core.GetFirmwareBundleAllowableTransition[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment of this firmware bundle. */ readonly compartmentId: string; /** * A brief description or metadata about this firmware bundle. */ readonly description: string; /** * The user-friendly name of this firmware bundle. */ readonly displayName: string; readonly firmwareBundleId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly lifecycleState: string; /** * A map of platforms to pinned firmware versions. */ readonly platforms: outputs.Core.GetFirmwareBundlePlatform[]; /** * The date and time the firmware bundle was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the firmware bundle was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Firmware Bundle resource in Oracle Cloud Infrastructure Core service. * * Returns the Firmware Bundle matching the provided firmwareBundleId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFirmwareBundle = oci.core.getFirmwareBundle({ * firmwareBundleId: testFirmwareBundleOciCoreFirmwareBundle.id, * }); * ``` */ export declare function getFirmwareBundleOutput(args: GetFirmwareBundleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFirmwareBundle. */ export interface GetFirmwareBundleOutputArgs { /** * Unique identifier for the firmware bundle. */ firmwareBundleId: pulumi.Input; } //# sourceMappingURL=getFirmwareBundle.d.ts.map