1. Packages
  2. Cloudflare
  3. API Docs
  4. HyperdriveConfig
Cloudflare v5.26.0 published on Wednesday, Apr 17, 2024 by Pulumi

cloudflare.HyperdriveConfig

Explore with Pulumi AI

cloudflare logo
Cloudflare v5.26.0 published on Wednesday, Apr 17, 2024 by Pulumi

    The Hyperdrive Config resource allows you to manage Cloudflare Hyperdrive Configs.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const noDefaults = new cloudflare.HyperdriveConfig("noDefaults", {
        accountId: "f037e56e89293a057740de681ac9abbe",
        name: "my-hyperdrive-config",
        origin: {
            database: "postgres",
            host: "my-database.example.com",
            password: "my-password",
            port: 5432,
            scheme: "postgres",
            user: "my-user",
        },
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    no_defaults = cloudflare.HyperdriveConfig("noDefaults",
        account_id="f037e56e89293a057740de681ac9abbe",
        name="my-hyperdrive-config",
        origin=cloudflare.HyperdriveConfigOriginArgs(
            database="postgres",
            host="my-database.example.com",
            password="my-password",
            port=5432,
            scheme="postgres",
            user="my-user",
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-cloudflare/sdk/v5/go/cloudflare"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudflare.NewHyperdriveConfig(ctx, "noDefaults", &cloudflare.HyperdriveConfigArgs{
    			AccountId: pulumi.String("f037e56e89293a057740de681ac9abbe"),
    			Name:      pulumi.String("my-hyperdrive-config"),
    			Origin: &cloudflare.HyperdriveConfigOriginArgs{
    				Database: pulumi.String("postgres"),
    				Host:     pulumi.String("my-database.example.com"),
    				Password: pulumi.String("my-password"),
    				Port:     pulumi.Int(5432),
    				Scheme:   pulumi.String("postgres"),
    				User:     pulumi.String("my-user"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Cloudflare = Pulumi.Cloudflare;
    
    return await Deployment.RunAsync(() => 
    {
        var noDefaults = new Cloudflare.HyperdriveConfig("noDefaults", new()
        {
            AccountId = "f037e56e89293a057740de681ac9abbe",
            Name = "my-hyperdrive-config",
            Origin = new Cloudflare.Inputs.HyperdriveConfigOriginArgs
            {
                Database = "postgres",
                Host = "my-database.example.com",
                Password = "my-password",
                Port = 5432,
                Scheme = "postgres",
                User = "my-user",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cloudflare.HyperdriveConfig;
    import com.pulumi.cloudflare.HyperdriveConfigArgs;
    import com.pulumi.cloudflare.inputs.HyperdriveConfigOriginArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var noDefaults = new HyperdriveConfig("noDefaults", HyperdriveConfigArgs.builder()        
                .accountId("f037e56e89293a057740de681ac9abbe")
                .name("my-hyperdrive-config")
                .origin(HyperdriveConfigOriginArgs.builder()
                    .database("postgres")
                    .host("my-database.example.com")
                    .password("my-password")
                    .port(5432)
                    .scheme("postgres")
                    .user("my-user")
                    .build())
                .build());
    
        }
    }
    
    resources:
      noDefaults:
        type: cloudflare:HyperdriveConfig
        properties:
          accountId: f037e56e89293a057740de681ac9abbe
          name: my-hyperdrive-config
          origin:
            database: postgres
            host: my-database.example.com
            password: my-password
            port: 5432
            scheme: postgres
            user: my-user
    

    Create HyperdriveConfig Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new HyperdriveConfig(name: string, args: HyperdriveConfigArgs, opts?: CustomResourceOptions);
    @overload
    def HyperdriveConfig(resource_name: str,
                         args: HyperdriveConfigArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def HyperdriveConfig(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         account_id: Optional[str] = None,
                         name: Optional[str] = None,
                         origin: Optional[HyperdriveConfigOriginArgs] = None,
                         caching: Optional[HyperdriveConfigCachingArgs] = None)
    func NewHyperdriveConfig(ctx *Context, name string, args HyperdriveConfigArgs, opts ...ResourceOption) (*HyperdriveConfig, error)
    public HyperdriveConfig(string name, HyperdriveConfigArgs args, CustomResourceOptions? opts = null)
    public HyperdriveConfig(String name, HyperdriveConfigArgs args)
    public HyperdriveConfig(String name, HyperdriveConfigArgs args, CustomResourceOptions options)
    
    type: cloudflare:HyperdriveConfig
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args HyperdriveConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args HyperdriveConfigArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args HyperdriveConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HyperdriveConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HyperdriveConfigArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var hyperdriveConfigResource = new Cloudflare.HyperdriveConfig("hyperdriveConfigResource", new()
    {
        AccountId = "string",
        Name = "string",
        Origin = new Cloudflare.Inputs.HyperdriveConfigOriginArgs
        {
            Database = "string",
            Host = "string",
            Password = "string",
            Port = 0,
            Scheme = "string",
            User = "string",
        },
        Caching = new Cloudflare.Inputs.HyperdriveConfigCachingArgs
        {
            Disabled = false,
        },
    });
    
    example, err := cloudflare.NewHyperdriveConfig(ctx, "hyperdriveConfigResource", &cloudflare.HyperdriveConfigArgs{
    	AccountId: pulumi.String("string"),
    	Name:      pulumi.String("string"),
    	Origin: &cloudflare.HyperdriveConfigOriginArgs{
    		Database: pulumi.String("string"),
    		Host:     pulumi.String("string"),
    		Password: pulumi.String("string"),
    		Port:     pulumi.Int(0),
    		Scheme:   pulumi.String("string"),
    		User:     pulumi.String("string"),
    	},
    	Caching: &cloudflare.HyperdriveConfigCachingArgs{
    		Disabled: pulumi.Bool(false),
    	},
    })
    
    var hyperdriveConfigResource = new HyperdriveConfig("hyperdriveConfigResource", HyperdriveConfigArgs.builder()        
        .accountId("string")
        .name("string")
        .origin(HyperdriveConfigOriginArgs.builder()
            .database("string")
            .host("string")
            .password("string")
            .port(0)
            .scheme("string")
            .user("string")
            .build())
        .caching(HyperdriveConfigCachingArgs.builder()
            .disabled(false)
            .build())
        .build());
    
    hyperdrive_config_resource = cloudflare.HyperdriveConfig("hyperdriveConfigResource",
        account_id="string",
        name="string",
        origin=cloudflare.HyperdriveConfigOriginArgs(
            database="string",
            host="string",
            password="string",
            port=0,
            scheme="string",
            user="string",
        ),
        caching=cloudflare.HyperdriveConfigCachingArgs(
            disabled=False,
        ))
    
    const hyperdriveConfigResource = new cloudflare.HyperdriveConfig("hyperdriveConfigResource", {
        accountId: "string",
        name: "string",
        origin: {
            database: "string",
            host: "string",
            password: "string",
            port: 0,
            scheme: "string",
            user: "string",
        },
        caching: {
            disabled: false,
        },
    });
    
    type: cloudflare:HyperdriveConfig
    properties:
        accountId: string
        caching:
            disabled: false
        name: string
        origin:
            database: string
            host: string
            password: string
            port: 0
            scheme: string
            user: string
    

    HyperdriveConfig Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The HyperdriveConfig resource accepts the following input properties:

    AccountId string
    The account identifier to target for the resource.
    Name string
    The name of the Hyperdrive configuration.
    Origin HyperdriveConfigOrigin
    The origin details for the Hyperdrive configuration.
    Caching HyperdriveConfigCaching
    The caching details for the Hyperdrive configuration.
    AccountId string
    The account identifier to target for the resource.
    Name string
    The name of the Hyperdrive configuration.
    Origin HyperdriveConfigOriginArgs
    The origin details for the Hyperdrive configuration.
    Caching HyperdriveConfigCachingArgs
    The caching details for the Hyperdrive configuration.
    accountId String
    The account identifier to target for the resource.
    name String
    The name of the Hyperdrive configuration.
    origin HyperdriveConfigOrigin
    The origin details for the Hyperdrive configuration.
    caching HyperdriveConfigCaching
    The caching details for the Hyperdrive configuration.
    accountId string
    The account identifier to target for the resource.
    name string
    The name of the Hyperdrive configuration.
    origin HyperdriveConfigOrigin
    The origin details for the Hyperdrive configuration.
    caching HyperdriveConfigCaching
    The caching details for the Hyperdrive configuration.
    account_id str
    The account identifier to target for the resource.
    name str
    The name of the Hyperdrive configuration.
    origin HyperdriveConfigOriginArgs
    The origin details for the Hyperdrive configuration.
    caching HyperdriveConfigCachingArgs
    The caching details for the Hyperdrive configuration.
    accountId String
    The account identifier to target for the resource.
    name String
    The name of the Hyperdrive configuration.
    origin Property Map
    The origin details for the Hyperdrive configuration.
    caching Property Map
    The caching details for the Hyperdrive configuration.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the HyperdriveConfig resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing HyperdriveConfig Resource

    Get an existing HyperdriveConfig resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: HyperdriveConfigState, opts?: CustomResourceOptions): HyperdriveConfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            caching: Optional[HyperdriveConfigCachingArgs] = None,
            name: Optional[str] = None,
            origin: Optional[HyperdriveConfigOriginArgs] = None) -> HyperdriveConfig
    func GetHyperdriveConfig(ctx *Context, name string, id IDInput, state *HyperdriveConfigState, opts ...ResourceOption) (*HyperdriveConfig, error)
    public static HyperdriveConfig Get(string name, Input<string> id, HyperdriveConfigState? state, CustomResourceOptions? opts = null)
    public static HyperdriveConfig get(String name, Output<String> id, HyperdriveConfigState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccountId string
    The account identifier to target for the resource.
    Caching HyperdriveConfigCaching
    The caching details for the Hyperdrive configuration.
    Name string
    The name of the Hyperdrive configuration.
    Origin HyperdriveConfigOrigin
    The origin details for the Hyperdrive configuration.
    AccountId string
    The account identifier to target for the resource.
    Caching HyperdriveConfigCachingArgs
    The caching details for the Hyperdrive configuration.
    Name string
    The name of the Hyperdrive configuration.
    Origin HyperdriveConfigOriginArgs
    The origin details for the Hyperdrive configuration.
    accountId String
    The account identifier to target for the resource.
    caching HyperdriveConfigCaching
    The caching details for the Hyperdrive configuration.
    name String
    The name of the Hyperdrive configuration.
    origin HyperdriveConfigOrigin
    The origin details for the Hyperdrive configuration.
    accountId string
    The account identifier to target for the resource.
    caching HyperdriveConfigCaching
    The caching details for the Hyperdrive configuration.
    name string
    The name of the Hyperdrive configuration.
    origin HyperdriveConfigOrigin
    The origin details for the Hyperdrive configuration.
    account_id str
    The account identifier to target for the resource.
    caching HyperdriveConfigCachingArgs
    The caching details for the Hyperdrive configuration.
    name str
    The name of the Hyperdrive configuration.
    origin HyperdriveConfigOriginArgs
    The origin details for the Hyperdrive configuration.
    accountId String
    The account identifier to target for the resource.
    caching Property Map
    The caching details for the Hyperdrive configuration.
    name String
    The name of the Hyperdrive configuration.
    origin Property Map
    The origin details for the Hyperdrive configuration.

    Supporting Types

    HyperdriveConfigCaching, HyperdriveConfigCachingArgs

    Disabled bool
    Disable caching for this Hyperdrive configuration.
    Disabled bool
    Disable caching for this Hyperdrive configuration.
    disabled Boolean
    Disable caching for this Hyperdrive configuration.
    disabled boolean
    Disable caching for this Hyperdrive configuration.
    disabled bool
    Disable caching for this Hyperdrive configuration.
    disabled Boolean
    Disable caching for this Hyperdrive configuration.

    HyperdriveConfigOrigin, HyperdriveConfigOriginArgs

    Database string
    The name of your origin database.
    Host string
    The host (hostname or IP) of your origin database.
    Password string
    The password of the Hyperdrive configuration.
    Port int
    The port (default: 5432 for Postgres) of your origin database.
    Scheme string
    Specifies the URL scheme used to connect to your origin database.
    User string
    The user of your origin database.
    Database string
    The name of your origin database.
    Host string
    The host (hostname or IP) of your origin database.
    Password string
    The password of the Hyperdrive configuration.
    Port int
    The port (default: 5432 for Postgres) of your origin database.
    Scheme string
    Specifies the URL scheme used to connect to your origin database.
    User string
    The user of your origin database.
    database String
    The name of your origin database.
    host String
    The host (hostname or IP) of your origin database.
    password String
    The password of the Hyperdrive configuration.
    port Integer
    The port (default: 5432 for Postgres) of your origin database.
    scheme String
    Specifies the URL scheme used to connect to your origin database.
    user String
    The user of your origin database.
    database string
    The name of your origin database.
    host string
    The host (hostname or IP) of your origin database.
    password string
    The password of the Hyperdrive configuration.
    port number
    The port (default: 5432 for Postgres) of your origin database.
    scheme string
    Specifies the URL scheme used to connect to your origin database.
    user string
    The user of your origin database.
    database str
    The name of your origin database.
    host str
    The host (hostname or IP) of your origin database.
    password str
    The password of the Hyperdrive configuration.
    port int
    The port (default: 5432 for Postgres) of your origin database.
    scheme str
    Specifies the URL scheme used to connect to your origin database.
    user str
    The user of your origin database.
    database String
    The name of your origin database.
    host String
    The host (hostname or IP) of your origin database.
    password String
    The password of the Hyperdrive configuration.
    port Number
    The port (default: 5432 for Postgres) of your origin database.
    scheme String
    Specifies the URL scheme used to connect to your origin database.
    user String
    The user of your origin database.

    Import

    $ pulumi import cloudflare:index/hyperdriveConfig:HyperdriveConfig example <account_id>/<hyperdrive_config_id>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Cloudflare pulumi/pulumi-cloudflare
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cloudflare Terraform Provider.
    cloudflare logo
    Cloudflare v5.26.0 published on Wednesday, Apr 17, 2024 by Pulumi