import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; /** * The provider type for the volcenginecc package. By default, resources use package-wide configuration * settings, however an explicit `Provider` instance may be created and passed during resource * construction to achieve fine-grained programmatic control over provider settings. See the * [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information. */ export declare class Provider extends pulumi.ProviderResource { /** * Returns true if the given object is an instance of Provider. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Provider; /** * The Access Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_ACCESS_KEY` * environment variable */ readonly accessKey: pulumi.Output; /** * CUSTOMER HEADERS for Volcengine Provider. The customerHeaders field uses commas (,) to separate multiple headers, and * colons (:) to separate each header key from its corresponding value. */ readonly customerHeaders: pulumi.Output; /** * The file path for Volcengine Provider configuration. It can be sourced from the `VOLCENGINE_FILE_PATH` environment * variable */ readonly filePath: pulumi.Output; /** * The profile for Volcengine Provider. It can be sourced from the `VOLCENGINE_PROFILE` environment variable */ readonly profile: pulumi.Output; /** * PROXY URL for Volcengine Provider */ readonly proxyUrl: pulumi.Output; /** * The Region for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_REGION` * environment variable */ readonly region: pulumi.Output; /** * he Secret Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_SECRET_KEY` * environment variable */ readonly secretKey: pulumi.Output; /** * The Session Token for Volcengine Provider. It can also be sourced from the `VOLCENGINE_SESSION_TOKEN` environment * variable */ readonly sessionToken: pulumi.Output; /** * Create a Provider resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: ProviderArgs, opts?: pulumi.ResourceOptions); /** * This function returns a Terraform config object with terraform-namecased keys,to be used with the Terraform Module Provider. */ terraformConfig(): pulumi.Output; } /** * The set of arguments for constructing a Provider resource. */ export interface ProviderArgs { /** * The Access Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_ACCESS_KEY` * environment variable */ accessKey?: pulumi.Input; /** * An `assumeRole` block (documented below). Only one `assumeRole` block may be in the configuration. */ assumeRole?: pulumi.Input; /** * CUSTOMER HEADERS for Volcengine Provider. The customerHeaders field uses commas (,) to separate multiple headers, and * colons (:) to separate each header key from its corresponding value. */ customerHeaders?: pulumi.Input; /** * Disable SSL for Volcengine Provider */ disableSsl?: pulumi.Input; /** * An `endpoints` block (documented below). Only one `endpoints` block may be in the configuration. */ endpoints?: pulumi.Input; /** * The file path for Volcengine Provider configuration. It can be sourced from the `VOLCENGINE_FILE_PATH` environment * variable */ filePath?: pulumi.Input; /** * The profile for Volcengine Provider. It can be sourced from the `VOLCENGINE_PROFILE` environment variable */ profile?: pulumi.Input; /** * PROXY URL for Volcengine Provider */ proxyUrl?: pulumi.Input; /** * The Region for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_REGION` * environment variable */ region?: pulumi.Input; /** * he Secret Key for Volcengine Provider. It must be provided, but it can also be sourced from the `VOLCENGINE_SECRET_KEY` * environment variable */ secretKey?: pulumi.Input; /** * The Session Token for Volcengine Provider. It can also be sourced from the `VOLCENGINE_SESSION_TOKEN` environment * variable */ sessionToken?: pulumi.Input; } export declare namespace Provider { /** * The results of the Provider.terraformConfig method. */ interface TerraformConfigResult { readonly result: { [key: string]: any; }; } }