@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
191 lines (190 loc) • 5.83 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to query detailed information of vedb mysql allowlists
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
* import * as volcengine from "@volcengine/pulumi";
*
* const fooAllowlist = new volcengine.vedb_mysql.Allowlist("fooAllowlist", {
* allowListName: "acc-test-allowlist",
* allowListDesc: "acc-test",
* allowListType: "IPv4",
* allowLists: [
* "192.168.0.0/24",
* "192.168.1.0/24",
* "192.168.2.0/24",
* ],
* });
* const fooZones = volcengine.ecs.getZones({});
* const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
* vpcName: "acc-test-vpc",
* cidrBlock: "172.16.0.0/16",
* });
* const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
* subnetName: "acc-test-subnet",
* cidrBlock: "172.16.0.0/24",
* zoneId: fooZones.then(fooZones => fooZones.zones?.[2]?.id),
* vpcId: fooVpc.id,
* });
* const fooInstance = new volcengine.vedb_mysql.Instance("fooInstance", {
* chargeType: "PostPaid",
* storageChargeType: "PostPaid",
* dbEngineVersion: "MySQL_8_0",
* dbMinorVersion: "3.0",
* nodeNumber: 2,
* nodeSpec: "vedb.mysql.x4.large",
* subnetId: fooSubnet.id,
* instanceName: "tf-test",
* projectName: "testA",
* tags: [
* {
* key: "tftest",
* value: "tftest",
* },
* {
* key: "tftest2",
* value: "tftest2",
* },
* ],
* });
* const fooAllowlistAssociate = new volcengine.vedb_mysql.AllowlistAssociate("fooAllowlistAssociate", {
* allowListId: fooAllowlist.id,
* instanceId: fooInstance.id,
* });
* const fooAllowlists = volcengine.vedb_mysql.getAllowlistsOutput({
* instanceId: fooInstance.id,
* });
* ```
*/
export declare function getAllowlists(args: GetAllowlistsArgs, opts?: pulumi.InvokeOptions): Promise<GetAllowlistsResult>;
/**
* A collection of arguments for invoking getAllowlists.
*/
export interface GetAllowlistsArgs {
/**
* Instance ID. When an InstanceId is specified, the DescribeAllowLists interface will return the whitelist bound to the specified instance.
*/
instanceId?: string;
/**
* A Name Regex of Resource.
*/
nameRegex?: string;
/**
* File name where to save data source results.
*/
outputFile?: string;
/**
* The region of the allow lists.
*/
regionId: string;
}
/**
* A collection of values returned by getAllowlists.
*/
export interface GetAllowlistsResult {
/**
* The collection of query.
*/
readonly allowLists: outputs.vedb_mysql.GetAllowlistsAllowList[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* The id of the instance.
*/
readonly instanceId?: string;
readonly nameRegex?: string;
readonly outputFile?: string;
readonly regionId: string;
/**
* The total count of query.
*/
readonly totalCount: number;
}
/**
* Use this data source to query detailed information of vedb mysql allowlists
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
* import * as volcengine from "@volcengine/pulumi";
*
* const fooAllowlist = new volcengine.vedb_mysql.Allowlist("fooAllowlist", {
* allowListName: "acc-test-allowlist",
* allowListDesc: "acc-test",
* allowListType: "IPv4",
* allowLists: [
* "192.168.0.0/24",
* "192.168.1.0/24",
* "192.168.2.0/24",
* ],
* });
* const fooZones = volcengine.ecs.getZones({});
* const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
* vpcName: "acc-test-vpc",
* cidrBlock: "172.16.0.0/16",
* });
* const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
* subnetName: "acc-test-subnet",
* cidrBlock: "172.16.0.0/24",
* zoneId: fooZones.then(fooZones => fooZones.zones?.[2]?.id),
* vpcId: fooVpc.id,
* });
* const fooInstance = new volcengine.vedb_mysql.Instance("fooInstance", {
* chargeType: "PostPaid",
* storageChargeType: "PostPaid",
* dbEngineVersion: "MySQL_8_0",
* dbMinorVersion: "3.0",
* nodeNumber: 2,
* nodeSpec: "vedb.mysql.x4.large",
* subnetId: fooSubnet.id,
* instanceName: "tf-test",
* projectName: "testA",
* tags: [
* {
* key: "tftest",
* value: "tftest",
* },
* {
* key: "tftest2",
* value: "tftest2",
* },
* ],
* });
* const fooAllowlistAssociate = new volcengine.vedb_mysql.AllowlistAssociate("fooAllowlistAssociate", {
* allowListId: fooAllowlist.id,
* instanceId: fooInstance.id,
* });
* const fooAllowlists = volcengine.vedb_mysql.getAllowlistsOutput({
* instanceId: fooInstance.id,
* });
* ```
*/
export declare function getAllowlistsOutput(args: GetAllowlistsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAllowlistsResult>;
/**
* A collection of arguments for invoking getAllowlists.
*/
export interface GetAllowlistsOutputArgs {
/**
* Instance ID. When an InstanceId is specified, the DescribeAllowLists interface will return the whitelist bound to the specified instance.
*/
instanceId?: pulumi.Input<string>;
/**
* A Name Regex of Resource.
*/
nameRegex?: pulumi.Input<string>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
/**
* The region of the allow lists.
*/
regionId: pulumi.Input<string>;
}