import * as pulumi from "@pulumi/pulumi"; /** * Gets the specified consent store. */ export declare function getConsentStore(args: GetConsentStoreArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetConsentStoreArgs { consentStoreId: string; datasetId: string; location: string; project?: string; } export interface GetConsentStoreResult { /** * Optional. Default time to live for Consents created in this store. Must be at least 24 hours. Updating this field will not affect the expiration time of existing consents. */ readonly defaultConsentTtl: string; /** * Optional. If `true`, UpdateConsent creates the Consent if it does not already exist. If unspecified, defaults to `false`. */ readonly enableConsentCreateOnUpdate: boolean; /** * Optional. User-supplied key-value pairs used to organize consent stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: \p{Ll}\p{Lo}{0,62}. Label values must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}_-]{0,63}. No more than 64 labels can be associated with a given store. For more information: https://cloud.google.com/healthcare/docs/how-tos/labeling-resources */ readonly labels: { [key: string]: string; }; /** * Resource name of the consent store, of the form `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/consentStores/{consent_store_id}`. Cannot be changed after creation. */ readonly name: string; } /** * Gets the specified consent store. */ export declare function getConsentStoreOutput(args: GetConsentStoreOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetConsentStoreOutputArgs { consentStoreId: pulumi.Input; datasetId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }