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