import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data source for retrieving a Harness IaCM Ansible Playbook. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getIacmAnsiblePlaybook({ * identifier: "my_playbook", * orgId: exampleHarnessPlatformOrganization.id, * projectId: exampleHarnessPlatformProject.id, * }); * ``` */ export declare function getIacmAnsiblePlaybook(args: GetIacmAnsiblePlaybookArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIacmAnsiblePlaybook. */ export interface GetIacmAnsiblePlaybookArgs { /** * 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 getIacmAnsiblePlaybook. */ export interface GetIacmAnsiblePlaybookResult { /** * Install Ansible Galaxy dependencies. */ readonly ansibleGalaxy: boolean; /** * Path to the Ansible Galaxy requirements file. */ readonly ansibleGalaxyRequirementsFile: string; /** * Description of the resource. */ readonly description: string; /** * Environment variables configured on the playbook. */ readonly envVars: outputs.platform.GetIacmAnsiblePlaybookEnvVar[]; /** * 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; /** * Unique identifier of the project. */ readonly projectId: string; /** * Repository name for the playbook. */ readonly repository: string; /** * Repository branch for the playbook. */ readonly repositoryBranch: string; /** * Repository commit or tag for the playbook. */ readonly repositoryCommit: string; /** * Repository connector reference for the playbook. */ readonly repositoryConnector: string; /** * Path within the repository where the playbook resides. */ readonly repositoryPath: string; /** * Tags to associate with the resource. */ readonly tags: string[]; /** * Variables configured on the playbook. */ readonly vars: outputs.platform.GetIacmAnsiblePlaybookVar[]; } /** * Data source for retrieving a Harness IaCM Ansible Playbook. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getIacmAnsiblePlaybook({ * identifier: "my_playbook", * orgId: exampleHarnessPlatformOrganization.id, * projectId: exampleHarnessPlatformProject.id, * }); * ``` */ export declare function getIacmAnsiblePlaybookOutput(args: GetIacmAnsiblePlaybookOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIacmAnsiblePlaybook. */ export interface GetIacmAnsiblePlaybookOutputArgs { /** * 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=getIacmAnsiblePlaybook.d.ts.map