import * as pulumi from "@pulumi/pulumi"; /** * Retrieves the current IAM policy data for a Google Cloud Healthcare dataset. * * ## example * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const foo = gcp.healthcare.getDatasetIamPolicy({ * datasetId: dataset.id, * }); * ``` */ export declare function getDatasetIamPolicy(args: GetDatasetIamPolicyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatasetIamPolicy. */ export interface GetDatasetIamPolicyArgs { /** * The dataset ID, in the form * `{project_id}/{location_name}/{dataset_name}` or * `{location_name}/{dataset_name}`. In the second form, the provider's * project setting will be used as a fallback. */ datasetId: string; } /** * A collection of values returned by getDatasetIamPolicy. */ export interface GetDatasetIamPolicyResult { readonly datasetId: string; /** * (Computed) The etag of the IAM policy. */ readonly etag: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * (Computed) The policy data */ readonly policyData: string; } /** * Retrieves the current IAM policy data for a Google Cloud Healthcare dataset. * * ## example * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const foo = gcp.healthcare.getDatasetIamPolicy({ * datasetId: dataset.id, * }); * ``` */ export declare function getDatasetIamPolicyOutput(args: GetDatasetIamPolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatasetIamPolicy. */ export interface GetDatasetIamPolicyOutputArgs { /** * The dataset ID, in the form * `{project_id}/{location_name}/{dataset_name}` or * `{location_name}/{dataset_name}`. In the second form, the provider's * project setting will be used as a fallback. */ datasetId: pulumi.Input; }