import * as pulumi from "@pulumi/pulumi"; /** * Retrieves the current IAM policy data for featurestoreentitytype * > **Warning:** This datasource is in beta, and should be used with the terraform-provider-google-beta provider. * See Provider Versions for more details on beta resources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const policy = gcp.vertex.getAiFeaturestoreEntitytypeIamPolicy({ * featurestore: entity.featurestore, * entitytype: entity.name, * }); * ``` */ export declare function getAiFeaturestoreEntitytypeIamPolicy(args: GetAiFeaturestoreEntitytypeIamPolicyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAiFeaturestoreEntitytypeIamPolicy. */ export interface GetAiFeaturestoreEntitytypeIamPolicyArgs { /** * Used to find the parent resource to bind the IAM policy to */ entitytype: string; /** * The name of the Featurestore to use, in the format projects/{project}/locations/{location}/featurestores/{featurestore}. Used to find the parent resource to bind the IAM policy to */ featurestore: string; } /** * A collection of values returned by getAiFeaturestoreEntitytypeIamPolicy. */ export interface GetAiFeaturestoreEntitytypeIamPolicyResult { readonly entitytype: string; /** * (Computed) The etag of the IAM policy. */ readonly etag: string; readonly featurestore: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * (Required only by `gcp.vertex.AiFeatureStoreEntityTypeIamPolicy`) The policy data generated by * a `gcp.organizations.getIAMPolicy` data source. */ readonly policyData: string; } /** * Retrieves the current IAM policy data for featurestoreentitytype * > **Warning:** This datasource is in beta, and should be used with the terraform-provider-google-beta provider. * See Provider Versions for more details on beta resources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const policy = gcp.vertex.getAiFeaturestoreEntitytypeIamPolicy({ * featurestore: entity.featurestore, * entitytype: entity.name, * }); * ``` */ export declare function getAiFeaturestoreEntitytypeIamPolicyOutput(args: GetAiFeaturestoreEntitytypeIamPolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAiFeaturestoreEntitytypeIamPolicy. */ export interface GetAiFeaturestoreEntitytypeIamPolicyOutputArgs { /** * Used to find the parent resource to bind the IAM policy to */ entitytype: pulumi.Input; /** * The name of the Featurestore to use, in the format projects/{project}/locations/{location}/featurestores/{featurestore}. Used to find the parent resource to bind the IAM policy to */ featurestore: pulumi.Input; }