@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
87 lines (86 loc) • 2.4 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to query detailed information of waf custom bots
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.waf.getCustomBots({
* host: "www.tf-test.com",
* });
* ```
*/
/** @deprecated volcengine.waf.CustomBots has been deprecated in favor of volcengine.waf.getCustomBots */
export declare function customBots(args?: CustomBotsArgs, opts?: pulumi.InvokeOptions): Promise<CustomBotsResult>;
/**
* A collection of arguments for invoking CustomBots.
*/
export interface CustomBotsArgs {
/**
* The domain names that need to be viewed.
*/
host?: string;
/**
* A Name Regex of Resource.
*/
nameRegex?: string;
/**
* File name where to save data source results.
*/
outputFile?: string;
}
/**
* A collection of values returned by CustomBots.
*/
export interface CustomBotsResult {
/**
* The Details of Custom bot.
*/
readonly datas: outputs.waf.CustomBotsData[];
readonly host?: string;
/**
* 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 custom bots
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.waf.getCustomBots({
* host: "www.tf-test.com",
* });
* ```
*/
/** @deprecated volcengine.waf.CustomBots has been deprecated in favor of volcengine.waf.getCustomBots */
export declare function customBotsOutput(args?: CustomBotsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<CustomBotsResult>;
/**
* A collection of arguments for invoking CustomBots.
*/
export interface CustomBotsOutputArgs {
/**
* The domain names that need to be viewed.
*/
host?: pulumi.Input<string>;
/**
* A Name Regex of Resource.
*/
nameRegex?: pulumi.Input<string>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
}