import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets a link. */ export declare function getOrganizationBucketLink(args: GetOrganizationBucketLinkArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetOrganizationBucketLinkArgs { bucketId: string; linkId: string; location: string; organizationId: string; } export interface GetOrganizationBucketLinkResult { /** * The information of a BigQuery Dataset. When a link is created, a BigQuery dataset is created along with it, in the same project as the LogBucket it's linked to. This dataset will also have BigQuery Views corresponding to the LogViews in the bucket. */ readonly bigqueryDataset: outputs.logging.v2.BigQueryDatasetResponse; /** * The creation timestamp of the link. */ readonly createTime: string; /** * Describes this link.The maximum length of the description is 8000 characters. */ readonly description: string; /** * The resource lifecycle state. */ readonly lifecycleState: string; /** * The resource name of the link. The name can have up to 100 characters. A valid link id (at the end of the link name) must only have alphanumeric characters and underscores within it. "projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/links/[LINK_ID]" "organizations/[ORGANIZATION_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/links/[LINK_ID]" "billingAccounts/[BILLING_ACCOUNT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/links/[LINK_ID]" "folders/[FOLDER_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/links/[LINK_ID]" For example:`projects/my-project/locations/global/buckets/my-bucket/links/my_link */ readonly name: string; } /** * Gets a link. */ export declare function getOrganizationBucketLinkOutput(args: GetOrganizationBucketLinkOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetOrganizationBucketLinkOutputArgs { bucketId: pulumi.Input; linkId: pulumi.Input; location: pulumi.Input; organizationId: pulumi.Input; }