import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Retrieves a `GitLabConfig`. This API is experimental */ export declare function getGitLabConfig(args: GetGitLabConfigArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetGitLabConfigArgs { gitLabConfigId: string; location: string; project?: string; } export interface GetGitLabConfigResult { /** * Connected GitLab.com or GitLabEnterprise repositories for this config. */ readonly connectedRepositories: outputs.cloudbuild.v1.GitLabRepositoryIdResponse[]; /** * Time when the config was created. */ readonly createTime: string; /** * Optional. GitLabEnterprise config. */ readonly enterpriseConfig: outputs.cloudbuild.v1.GitLabEnterpriseConfigResponse; /** * The resource name for the config. */ readonly name: string; /** * Secret Manager secrets needed by the config. */ readonly secrets: outputs.cloudbuild.v1.GitLabSecretsResponse; /** * Username of the GitLab.com or GitLab Enterprise account Cloud Build will use. */ readonly username: string; /** * UUID included in webhook requests. The UUID is used to look up the corresponding config. */ readonly webhookKey: string; } /** * Retrieves a `GitLabConfig`. This API is experimental */ export declare function getGitLabConfigOutput(args: GetGitLabConfigOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetGitLabConfigOutputArgs { gitLabConfigId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }