import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data source for retrieving a Harness IaCM Ansible Inventory. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getIacmAnsibleInventory({ * identifier: "my_inventory", * orgId: exampleHarnessPlatformOrganization.id, * projectId: exampleHarnessPlatformProject.id, * }); * ``` */ export declare function getIacmAnsibleInventory(args: GetIacmAnsibleInventoryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIacmAnsibleInventory. */ export interface GetIacmAnsibleInventoryArgs { /** * Unique identifier of the resource. */ identifier: string; /** * Name of the resource. */ name?: string; /** * Unique identifier of the organization. */ orgId: string; /** * Unique identifier of the project. */ projectId: string; } /** * A collection of values returned by getIacmAnsibleInventory. */ export interface GetIacmAnsibleInventoryResult { /** * Description of the resource. */ readonly description: string; /** * Dynamic groups used when type is dynamic. */ readonly dynamicGroups: outputs.platform.GetIacmAnsibleInventoryDynamicGroup[]; /** * Manual groups used when type is manual. */ readonly groups: outputs.platform.GetIacmAnsibleInventoryGroup[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the resource. */ readonly identifier: string; /** * Name of the resource. */ readonly name?: string; /** * Unique identifier of the organization. */ readonly orgId: string; /** * Plugin options used when type is plugin. */ readonly pluginOptions: outputs.platform.GetIacmAnsibleInventoryPluginOption[]; /** * Unique identifier of the project. */ readonly projectId: string; /** * Tags to associate with the resource. */ readonly tags: string[]; /** * Type of inventory. One of: manual, dynamic, plugin. */ readonly type: string; /** * Variables configured on the inventory. */ readonly vars: outputs.platform.GetIacmAnsibleInventoryVar[]; } /** * Data source for retrieving a Harness IaCM Ansible Inventory. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getIacmAnsibleInventory({ * identifier: "my_inventory", * orgId: exampleHarnessPlatformOrganization.id, * projectId: exampleHarnessPlatformProject.id, * }); * ``` */ export declare function getIacmAnsibleInventoryOutput(args: GetIacmAnsibleInventoryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIacmAnsibleInventory. */ export interface GetIacmAnsibleInventoryOutputArgs { /** * Unique identifier of the resource. */ identifier: pulumi.Input; /** * Name of the resource. */ name?: pulumi.Input; /** * Unique identifier of the organization. */ orgId: pulumi.Input; /** * Unique identifier of the project. */ projectId: pulumi.Input; } //# sourceMappingURL=getIacmAnsibleInventory.d.ts.map