UNPKG

@pulumi/fastly

Version:

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

47 lines (46 loc) 1.58 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get the IDs of available Platform TLS Certificates for use with other resources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fastly from "@pulumi/fastly"; * * const example = fastly.getTlsPlatformCertificateIds({}); * const exampleGetTlsPlatformCertificate = example.then(example => fastly.getTlsPlatformCertificate({ * id: example.ids?.[0], * })); * ``` */ export declare function getTlsPlatformCertificateIds(opts?: pulumi.InvokeOptions): Promise<GetTlsPlatformCertificateIdsResult>; /** * A collection of values returned by getTlsPlatformCertificateIds. */ export interface GetTlsPlatformCertificateIdsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of IDs corresponding to Platform TLS certificates. */ readonly ids: string[]; } /** * Use this data source to get the IDs of available Platform TLS Certificates for use with other resources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fastly from "@pulumi/fastly"; * * const example = fastly.getTlsPlatformCertificateIds({}); * const exampleGetTlsPlatformCertificate = example.then(example => fastly.getTlsPlatformCertificate({ * id: example.ids?.[0], * })); * ``` */ export declare function getTlsPlatformCertificateIdsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTlsPlatformCertificateIdsResult>;