import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Inventory resource in Oracle Cloud Infrastructure Cloud Bridge service. * * Gets an inventory by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInventory = oci.cloudbridge.getInventory({ * inventoryId: testInventoryOciCloudBridgeInventory.id, * }); * ``` */ export declare function getInventory(args: GetInventoryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInventory. */ export interface GetInventoryArgs { /** * Inventory OCID. */ inventoryId: string; } /** * A collection of values returned by getInventory. */ export interface GetInventoryResult { /** * The OCID of the tenantId. */ readonly compartmentId: string; /** * The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Inventory display name. */ readonly displayName: string; /** * The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * Inventory OCID. */ readonly id: string; readonly inventoryId: string; /** * A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * The current state of the inventory. */ readonly state: string; /** * The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{orcl-cloud: {free-tier-retain: true}}` */ readonly systemTags: { [key: string]: string; }; /** * The time when the inventory was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time when the inventory was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Inventory resource in Oracle Cloud Infrastructure Cloud Bridge service. * * Gets an inventory by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInventory = oci.cloudbridge.getInventory({ * inventoryId: testInventoryOciCloudBridgeInventory.id, * }); * ``` */ export declare function getInventoryOutput(args: GetInventoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInventory. */ export interface GetInventoryOutputArgs { /** * Inventory OCID. */ inventoryId: pulumi.Input; } //# sourceMappingURL=getInventory.d.ts.map