UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

74 lines (73 loc) 2.31 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to query detailed information of waf service certificates * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.waf.getServiceCertificates({}); * ``` */ /** @deprecated volcengine.waf.ServiceCertificates has been deprecated in favor of volcengine.waf.getServiceCertificates */ export declare function serviceCertificates(args?: ServiceCertificatesArgs, opts?: pulumi.InvokeOptions): Promise<ServiceCertificatesResult>; /** * A collection of arguments for invoking ServiceCertificates. */ export interface ServiceCertificatesArgs { /** * A Name Regex of Resource. */ nameRegex?: string; /** * File name where to save data source results. */ outputFile?: string; } /** * A collection of values returned by ServiceCertificates. */ export interface ServiceCertificatesResult { /** * The Information of the certificate. */ readonly datas: outputs.waf.ServiceCertificatesData[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly nameRegex?: string; readonly outputFile?: string; /** * The total count of query. */ readonly totalCount: number; } /** * Use this data source to query detailed information of waf service certificates * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.waf.getServiceCertificates({}); * ``` */ /** @deprecated volcengine.waf.ServiceCertificates has been deprecated in favor of volcengine.waf.getServiceCertificates */ export declare function serviceCertificatesOutput(args?: ServiceCertificatesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<ServiceCertificatesResult>; /** * A collection of arguments for invoking ServiceCertificates. */ export interface ServiceCertificatesOutputArgs { /** * A Name Regex of Resource. */ nameRegex?: pulumi.Input<string>; /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; }