UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

90 lines (89 loc) 2.55 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to query detailed information of alb certificates * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.alb.getCertificates({ * certificateName: "tf-test", * }); * ``` */ /** @deprecated volcengine.alb.Certificates has been deprecated in favor of volcengine.alb.getCertificates */ export declare function certificates(args?: CertificatesArgs, opts?: pulumi.InvokeOptions): Promise<CertificatesResult>; /** * A collection of arguments for invoking Certificates. */ export interface CertificatesArgs { /** * The Name of Certificate. */ certificateName?: string; /** * The list of Certificate IDs. */ ids?: string[]; /** * File name where to save data source results. */ outputFile?: string; } /** * A collection of values returned by Certificates. */ export interface CertificatesResult { /** * The name of the Certificate. */ readonly certificateName?: string; /** * The collection of Certificate query. */ readonly certificates: outputs.alb.CertificatesCertificate[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ids?: string[]; readonly outputFile?: string; /** * The total count of Certificate query. */ readonly totalCount: number; } /** * Use this data source to query detailed information of alb certificates * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.alb.getCertificates({ * certificateName: "tf-test", * }); * ``` */ /** @deprecated volcengine.alb.Certificates has been deprecated in favor of volcengine.alb.getCertificates */ export declare function certificatesOutput(args?: CertificatesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<CertificatesResult>; /** * A collection of arguments for invoking Certificates. */ export interface CertificatesOutputArgs { /** * The Name of Certificate. */ certificateName?: pulumi.Input<string>; /** * The list of Certificate IDs. */ ids?: pulumi.Input<pulumi.Input<string>[]>; /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; }