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