@spacelift-io/pulumi-spacelift
Version:
A Pulumi package for creating and managing Spacelift resources.
21 lines (20 loc) • 898 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* `spacelift.getAzureIntegrations` represents a list of all the Azure integrations in the Spacelift account visible to the API user.
*/
export declare function getAzureIntegrations(opts?: pulumi.InvokeOptions): Promise<GetAzureIntegrationsResult>;
/**
* A collection of values returned by getAzureIntegrations.
*/
export interface GetAzureIntegrationsResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly integrations: outputs.GetAzureIntegrationsIntegration[];
}
/**
* `spacelift.getAzureIntegrations` represents a list of all the Azure integrations in the Spacelift account visible to the API user.
*/
export declare function getAzureIntegrationsOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetAzureIntegrationsResult>;