import * as pulumi from "@pulumi/pulumi"; /** * Retrieves the current IAM policy data for a Google Cloud Healthcare HL7v2 store. * * ## example * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const foo = gcp.healthcare.getHl7V2StoreIamPolicy({ * hl7V2StoreId: hl7V2Store.id, * }); * ``` */ export declare function getHl7V2StoreIamPolicy(args: GetHl7V2StoreIamPolicyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHl7V2StoreIamPolicy. */ export interface GetHl7V2StoreIamPolicyArgs { /** * The HL7v2 store ID, in the form * `{project_id}/{location_name}/{dataset_name}/{hl7_v2_store_name}` or * `{location_name}/{dataset_name}/{hl7_v2_store_name}`. In the second form, the provider's * project setting will be used as a fallback. */ hl7V2StoreId: string; } /** * A collection of values returned by getHl7V2StoreIamPolicy. */ export interface GetHl7V2StoreIamPolicyResult { /** * (Computed) The etag of the IAM policy. */ readonly etag: string; readonly hl7V2StoreId: 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 HL7v2 store. * * ## example * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const foo = gcp.healthcare.getHl7V2StoreIamPolicy({ * hl7V2StoreId: hl7V2Store.id, * }); * ``` */ export declare function getHl7V2StoreIamPolicyOutput(args: GetHl7V2StoreIamPolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHl7V2StoreIamPolicy. */ export interface GetHl7V2StoreIamPolicyOutputArgs { /** * The HL7v2 store ID, in the form * `{project_id}/{location_name}/{dataset_name}/{hl7_v2_store_name}` or * `{location_name}/{dataset_name}/{hl7_v2_store_name}`. In the second form, the provider's * project setting will be used as a fallback. */ hl7V2StoreId: pulumi.Input; }