import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets the details of a listing. */ export declare function getListing(args: GetListingArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetListingArgs { dataExchangeId: string; listingId: string; location: string; project?: string; } export interface GetListingResult { /** * Shared dataset i.e. BigQuery dataset source. */ readonly bigqueryDataset: outputs.analyticshub.v1.BigQueryDatasetSourceResponse; /** * Optional. Categories of the listing. Up to two categories are allowed. */ readonly categories: string[]; /** * Optional. Details of the data provider who owns the source data. */ readonly dataProvider: outputs.analyticshub.v1.DataProviderResponse; /** * Optional. Short description of the listing. The description must not contain Unicode non-characters and C0 and C1 control codes except tabs (HT), new lines (LF), carriage returns (CR), and page breaks (FF). Default value is an empty string. Max length: 2000 bytes. */ readonly description: string; /** * Human-readable display name of the listing. The display name must contain only Unicode letters, numbers (0-9), underscores (_), dashes (-), spaces ( ), ampersands (&) and can't start or end with spaces. Default value is an empty string. Max length: 63 bytes. */ readonly displayName: string; /** * Optional. Documentation describing the listing. */ readonly documentation: string; /** * Optional. Base64 encoded image representing the listing. Max Size: 3.0MiB Expected image dimensions are 512x512 pixels, however the API only performs validation on size of the encoded data. Note: For byte fields, the contents of the field are base64-encoded (which increases the size of the data by 33-36%) when using JSON on the wire. */ readonly icon: string; /** * The resource name of the listing. e.g. `projects/myproject/locations/US/dataExchanges/123/listings/456` */ readonly name: string; /** * Optional. Email or URL of the primary point of contact of the listing. Max Length: 1000 bytes. */ readonly primaryContact: string; /** * Optional. Details of the publisher who owns the listing and who can share the source data. */ readonly publisher: outputs.analyticshub.v1.PublisherResponse; /** * Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes. */ readonly requestAccess: string; /** * Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset. */ readonly restrictedExportConfig: outputs.analyticshub.v1.RestrictedExportConfigResponse; /** * Current state of the listing. */ readonly state: string; } /** * Gets the details of a listing. */ export declare function getListingOutput(args: GetListingOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetListingOutputArgs { dataExchangeId: pulumi.Input; listingId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }