@spacelift-io/pulumi-spacelift
Version:
A Pulumi package for creating and managing Spacelift resources.
41 lines (40 loc) • 1.22 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* `spacelift.getGitlabWebhookEndpoint` returns details about Gitlab webhook endpoint
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as spacelift from "@pulumi/spacelift";
*
* const this = spacelift.getGitlabWebhookEndpoint({});
* ```
*/
export declare function getGitlabWebhookEndpoint(opts?: pulumi.InvokeOptions): Promise<GetGitlabWebhookEndpointResult>;
/**
* A collection of values returned by getGitlabWebhookEndpoint.
*/
export interface GetGitlabWebhookEndpointResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Gitlab webhook endpoint address
*/
readonly webhookEndpoint: string;
}
/**
* `spacelift.getGitlabWebhookEndpoint` returns details about Gitlab webhook endpoint
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as spacelift from "@pulumi/spacelift";
*
* const this = spacelift.getGitlabWebhookEndpoint({});
* ```
*/
export declare function getGitlabWebhookEndpointOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetGitlabWebhookEndpointResult>;