@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
140 lines (139 loc) • 5.13 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to query detailed information of veecp support addons
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.veecp.getSupportAddons({});
* ```
*/
/** @deprecated volcengine.veecp.SupportAddons has been deprecated in favor of volcengine.veecp.getSupportAddons */
export declare function supportAddons(args?: SupportAddonsArgs, opts?: pulumi.InvokeOptions): Promise<SupportAddonsResult>;
/**
* A collection of arguments for invoking SupportAddons.
*/
export interface SupportAddonsArgs {
/**
* The categories of addons, the value is `Storage` or `Network` or `Monitor` or `Scheduler` or `Dns` or `Security` or `Gpu` or `Image`.
*/
categories?: string[];
/**
* The deploy model, the value is `Managed` or `Unmanaged`.
*/
deployModes?: string[];
/**
* The deploy node types, the value is `Node` or `VirtualNode`. Only effected when deployMode is `Unmanaged`.
*/
deployNodeTypes?: string[];
/**
* A list of Kubernetes Versions.
*/
kubernetesVersions?: string[];
/**
* The name of the addon.
*/
name?: string;
/**
* The necessaries of addons, the value is `Required` or `Recommended` or `OnDemand`.
*/
necessaries?: string[];
/**
* File name where to save data source results.
*/
outputFile?: string;
/**
* The container network model, the value is `Flannel` or `VpcCniShared`. Flannel: Flannel network model, an independent Underlay container network solution, combined with the global routing capability of VPC, to achieve a high-performance network experience for the cluster. VpcCniShared: VPC-CNI network model, an Underlay container network solution based on the ENI of the private network elastic network card, with high network communication performance.
*/
podNetworkModes?: string[];
}
/**
* A collection of values returned by SupportAddons.
*/
export interface SupportAddonsResult {
/**
* The collection of query.
*/
readonly addons: outputs.veecp.SupportAddonsAddon[];
readonly categories?: string[];
/**
* The deploy modes.
*/
readonly deployModes?: string[];
/**
* The deploy node types.
*/
readonly deployNodeTypes?: string[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly kubernetesVersions?: string[];
/**
* The name of addon.
*/
readonly name?: string;
readonly necessaries?: string[];
readonly outputFile?: string;
/**
* The network modes of pod.
*/
readonly podNetworkModes?: string[];
/**
* The total count of query.
*/
readonly totalCount: number;
}
/**
* Use this data source to query detailed information of veecp support addons
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.veecp.getSupportAddons({});
* ```
*/
/** @deprecated volcengine.veecp.SupportAddons has been deprecated in favor of volcengine.veecp.getSupportAddons */
export declare function supportAddonsOutput(args?: SupportAddonsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<SupportAddonsResult>;
/**
* A collection of arguments for invoking SupportAddons.
*/
export interface SupportAddonsOutputArgs {
/**
* The categories of addons, the value is `Storage` or `Network` or `Monitor` or `Scheduler` or `Dns` or `Security` or `Gpu` or `Image`.
*/
categories?: pulumi.Input<pulumi.Input<string>[]>;
/**
* The deploy model, the value is `Managed` or `Unmanaged`.
*/
deployModes?: pulumi.Input<pulumi.Input<string>[]>;
/**
* The deploy node types, the value is `Node` or `VirtualNode`. Only effected when deployMode is `Unmanaged`.
*/
deployNodeTypes?: pulumi.Input<pulumi.Input<string>[]>;
/**
* A list of Kubernetes Versions.
*/
kubernetesVersions?: pulumi.Input<pulumi.Input<string>[]>;
/**
* The name of the addon.
*/
name?: pulumi.Input<string>;
/**
* The necessaries of addons, the value is `Required` or `Recommended` or `OnDemand`.
*/
necessaries?: pulumi.Input<pulumi.Input<string>[]>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
/**
* The container network model, the value is `Flannel` or `VpcCniShared`. Flannel: Flannel network model, an independent Underlay container network solution, combined with the global routing capability of VPC, to achieve a high-performance network experience for the cluster. VpcCniShared: VPC-CNI network model, an Underlay container network solution based on the ENI of the private network elastic network card, with high network communication performance.
*/
podNetworkModes?: pulumi.Input<pulumi.Input<string>[]>;
}