import * as pulumi from "@pulumi/pulumi"; /** * Adds a ShaCertificate to the specified AndroidApp. */ export declare class AndroidAppSha extends pulumi.CustomResource { /** * Get an existing AndroidAppSha resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): AndroidAppSha; /** * Returns true if the given object is an instance of AndroidAppSha. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AndroidAppSha; /** * Create a AndroidAppSha resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AndroidAppShaArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AndroidAppSha resource. */ export interface AndroidAppShaArgs { readonly androidAppsId: pulumi.Input; /** * The type of SHA certificate encoded in the hash. */ readonly certType?: pulumi.Input; /** * The resource name of the ShaCertificate for the AndroidApp, in the format: projects/PROJECT_IDENTIFIER/androidApps/APP_ID/sha/SHA_HASH * PROJECT_IDENTIFIER: the parent Project's [`ProjectNumber`](../projects#FirebaseProject.FIELDS.project_number) ***(recommended)*** or its [`ProjectId`](../projects#FirebaseProject.FIELDS.project_id). Learn more about using project identifiers in Google's [AIP 2510 standard](https://google.aip.dev/cloud/2510). Note that the value for PROJECT_IDENTIFIER in any response body will be the `ProjectId`. * APP_ID: the globally unique, Firebase-assigned identifier for the App (see [`appId`](../projects.androidApps#AndroidApp.FIELDS.app_id)). * SHA_HASH: the certificate hash for the App (see [`shaHash`](../projects.androidApps.sha#ShaCertificate.FIELDS.sha_hash)). */ readonly name?: pulumi.Input; readonly projectsId: pulumi.Input; /** * The certificate hash for the `AndroidApp`. */ readonly shaHash?: pulumi.Input; readonly shaId: pulumi.Input; }