UNPKG

@pulumi/fastly

Version:

A Pulumi package for creating and managing fastly cloud resources.. Based on terraform-provider-fastly: version v4

18 lines (17 loc) 624 B
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getSecretstores(opts?: pulumi.InvokeOptions): Promise<GetSecretstoresResult>; /** * A collection of values returned by getSecretstores. */ export interface GetSecretstoresResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of all Secrets Stores. */ readonly stores: outputs.GetSecretstoresStore[]; } export declare function getSecretstoresOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSecretstoresResult>;