UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

76 lines (75 loc) 2.22 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to query detailed information of tls rule bound host groups * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.tls.getRuleBoundHostGroups({ * ruleId: "048dc010-6bb1-4189-858a-281d654d6686", * }); * ``` */ export declare function getRuleBoundHostGroups(args: GetRuleBoundHostGroupsArgs, opts?: pulumi.InvokeOptions): Promise<GetRuleBoundHostGroupsResult>; /** * A collection of arguments for invoking getRuleBoundHostGroups. */ export interface GetRuleBoundHostGroupsArgs { /** * File name where to save data source results. */ outputFile?: string; /** * The ID of the rule. */ ruleId: string; } /** * A collection of values returned by getRuleBoundHostGroups. */ export interface GetRuleBoundHostGroupsResult { /** * The collection of Host Group query. */ readonly hostGroups: outputs.tls.GetRuleBoundHostGroupsHostGroup[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly outputFile?: string; readonly ruleId: string; /** * The total count of query. */ readonly totalCount: number; } /** * Use this data source to query detailed information of tls rule bound host groups * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.tls.getRuleBoundHostGroups({ * ruleId: "048dc010-6bb1-4189-858a-281d654d6686", * }); * ``` */ export declare function getRuleBoundHostGroupsOutput(args: GetRuleBoundHostGroupsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRuleBoundHostGroupsResult>; /** * A collection of arguments for invoking getRuleBoundHostGroups. */ export interface GetRuleBoundHostGroupsOutputArgs { /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; /** * The ID of the rule. */ ruleId: pulumi.Input<string>; }