@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
138 lines (137 loc) • 4 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to query detailed information of vpc ipv6 address bandwidths
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.vpc.getIpv6AddressBandwidths({
* ids: ["eip-in2y2duvtlhc8gbssyfnhfre"],
* });
* ```
*/
/** @deprecated volcengine.vpc.Ipv6AddressBandwidths has been deprecated in favor of volcengine.vpc.getIpv6AddressBandwidths */
export declare function ipv6AddressBandwidths(args?: Ipv6AddressBandwidthsArgs, opts?: pulumi.InvokeOptions): Promise<Ipv6AddressBandwidthsResult>;
/**
* A collection of arguments for invoking Ipv6AddressBandwidths.
*/
export interface Ipv6AddressBandwidthsArgs {
/**
* The ID of the associated instance.
*/
associatedInstanceId?: string;
/**
* The type of the associated instance.
*/
associatedInstanceType?: string;
/**
* Allocation IDs of the Ipv6 address width.
*/
ids?: string[];
/**
* The ipv6 addresses.
*/
ipv6Addresses?: string[];
/**
* ISP of the ipv6 address.
*/
isp?: string;
/**
* The network type of the ipv6 address.
*/
networkType?: string;
/**
* File name where to save data source results.
*/
outputFile?: string;
/**
* The ID of Vpc the ipv6 address in.
*/
vpcId?: string;
}
/**
* A collection of values returned by Ipv6AddressBandwidths.
*/
export interface Ipv6AddressBandwidthsResult {
readonly associatedInstanceId?: string;
readonly associatedInstanceType?: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly ids?: string[];
/**
* The collection of Ipv6AddressBandwidth query.
*/
readonly ipv6AddressBandwidths: outputs.vpc.Ipv6AddressBandwidthsIpv6AddressBandwidth[];
readonly ipv6Addresses?: string[];
/**
* The ISP of the Ipv6AddressBandwidth.
*/
readonly isp?: string;
/**
* The network type of the Ipv6AddressBandwidth.
*/
readonly networkType?: string;
readonly outputFile?: string;
/**
* The total count of Ipv6AddressBandwidth query.
*/
readonly totalCount: number;
readonly vpcId?: string;
}
/**
* Use this data source to query detailed information of vpc ipv6 address bandwidths
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.vpc.getIpv6AddressBandwidths({
* ids: ["eip-in2y2duvtlhc8gbssyfnhfre"],
* });
* ```
*/
/** @deprecated volcengine.vpc.Ipv6AddressBandwidths has been deprecated in favor of volcengine.vpc.getIpv6AddressBandwidths */
export declare function ipv6AddressBandwidthsOutput(args?: Ipv6AddressBandwidthsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<Ipv6AddressBandwidthsResult>;
/**
* A collection of arguments for invoking Ipv6AddressBandwidths.
*/
export interface Ipv6AddressBandwidthsOutputArgs {
/**
* The ID of the associated instance.
*/
associatedInstanceId?: pulumi.Input<string>;
/**
* The type of the associated instance.
*/
associatedInstanceType?: pulumi.Input<string>;
/**
* Allocation IDs of the Ipv6 address width.
*/
ids?: pulumi.Input<pulumi.Input<string>[]>;
/**
* The ipv6 addresses.
*/
ipv6Addresses?: pulumi.Input<pulumi.Input<string>[]>;
/**
* ISP of the ipv6 address.
*/
isp?: pulumi.Input<string>;
/**
* The network type of the ipv6 address.
*/
networkType?: pulumi.Input<string>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
/**
* The ID of Vpc the ipv6 address in.
*/
vpcId?: pulumi.Input<string>;
}