1. Packages
  2. Flexibleengine Provider
  3. API Docs
  4. ComputeBmsServerV2
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

flexibleengine.ComputeBmsServerV2

Explore with Pulumi AI

flexibleengine logo
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

    Manages a BMS Server resource within FlexibleEngine.

    Example Usage

    Basic Instance

    import * as pulumi from "@pulumi/pulumi";
    import * as flexibleengine from "@pulumi/flexibleengine";
    
    const config = new pulumi.Config();
    const imageId = config.requireObject("imageId");
    const flavorId = config.requireObject("flavorId");
    const keypairName = config.requireObject("keypairName");
    const availabilityZone = config.requireObject("availabilityZone");
    const basic = new flexibleengine.ComputeBmsServerV2("basic", {
        imageId: imageId,
        flavorId: flavorId,
        keyPair: keypairName,
        securityGroups: ["default"],
        availabilityZone: availabilityZone,
        metadata: {
            "this": "that",
        },
        networks: [{
            uuid: flexibleengine_vpc_subnet_v1.example_subnet.id,
        }],
    });
    
    import pulumi
    import pulumi_flexibleengine as flexibleengine
    
    config = pulumi.Config()
    image_id = config.require_object("imageId")
    flavor_id = config.require_object("flavorId")
    keypair_name = config.require_object("keypairName")
    availability_zone = config.require_object("availabilityZone")
    basic = flexibleengine.ComputeBmsServerV2("basic",
        image_id=image_id,
        flavor_id=flavor_id,
        key_pair=keypair_name,
        security_groups=["default"],
        availability_zone=availability_zone,
        metadata={
            "this": "that",
        },
        networks=[{
            "uuid": flexibleengine_vpc_subnet_v1["example_subnet"]["id"],
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		imageId := cfg.RequireObject("imageId")
    		flavorId := cfg.RequireObject("flavorId")
    		keypairName := cfg.RequireObject("keypairName")
    		availabilityZone := cfg.RequireObject("availabilityZone")
    		_, err := flexibleengine.NewComputeBmsServerV2(ctx, "basic", &flexibleengine.ComputeBmsServerV2Args{
    			ImageId:  pulumi.Any(imageId),
    			FlavorId: pulumi.Any(flavorId),
    			KeyPair:  pulumi.Any(keypairName),
    			SecurityGroups: pulumi.StringArray{
    				pulumi.String("default"),
    			},
    			AvailabilityZone: pulumi.Any(availabilityZone),
    			Metadata: pulumi.StringMap{
    				"this": pulumi.String("that"),
    			},
    			Networks: flexibleengine.ComputeBmsServerV2NetworkArray{
    				&flexibleengine.ComputeBmsServerV2NetworkArgs{
    					Uuid: pulumi.Any(flexibleengine_vpc_subnet_v1.Example_subnet.Id),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Flexibleengine = Pulumi.Flexibleengine;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var imageId = config.RequireObject<dynamic>("imageId");
        var flavorId = config.RequireObject<dynamic>("flavorId");
        var keypairName = config.RequireObject<dynamic>("keypairName");
        var availabilityZone = config.RequireObject<dynamic>("availabilityZone");
        var basic = new Flexibleengine.ComputeBmsServerV2("basic", new()
        {
            ImageId = imageId,
            FlavorId = flavorId,
            KeyPair = keypairName,
            SecurityGroups = new[]
            {
                "default",
            },
            AvailabilityZone = availabilityZone,
            Metadata = 
            {
                { "this", "that" },
            },
            Networks = new[]
            {
                new Flexibleengine.Inputs.ComputeBmsServerV2NetworkArgs
                {
                    Uuid = flexibleengine_vpc_subnet_v1.Example_subnet.Id,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.flexibleengine.ComputeBmsServerV2;
    import com.pulumi.flexibleengine.ComputeBmsServerV2Args;
    import com.pulumi.flexibleengine.inputs.ComputeBmsServerV2NetworkArgs;
    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) {
            final var config = ctx.config();
            final var imageId = config.get("imageId");
            final var flavorId = config.get("flavorId");
            final var keypairName = config.get("keypairName");
            final var availabilityZone = config.get("availabilityZone");
            var basic = new ComputeBmsServerV2("basic", ComputeBmsServerV2Args.builder()
                .imageId(imageId)
                .flavorId(flavorId)
                .keyPair(keypairName)
                .securityGroups("default")
                .availabilityZone(availabilityZone)
                .metadata(Map.of("this", "that"))
                .networks(ComputeBmsServerV2NetworkArgs.builder()
                    .uuid(flexibleengine_vpc_subnet_v1.example_subnet().id())
                    .build())
                .build());
    
        }
    }
    
    configuration:
      imageId:
        type: dynamic
      flavorId:
        type: dynamic
      keypairName:
        type: dynamic
      availabilityZone:
        type: dynamic
    resources:
      basic:
        type: flexibleengine:ComputeBmsServerV2
        properties:
          imageId: ${imageId}
          flavorId: ${flavorId}
          keyPair: ${keypairName}
          securityGroups:
            - default
          availabilityZone: ${availabilityZone}
          metadata:
            this: that
          networks:
            - uuid: ${flexibleengine_vpc_subnet_v1.example_subnet.id}
    

    Create ComputeBmsServerV2 Resource

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

    Constructor syntax

    new ComputeBmsServerV2(name: string, args: ComputeBmsServerV2Args, opts?: CustomResourceOptions);
    @overload
    def ComputeBmsServerV2(resource_name: str,
                           args: ComputeBmsServerV2Args,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ComputeBmsServerV2(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           availability_zone: Optional[str] = None,
                           key_pair: Optional[str] = None,
                           name: Optional[str] = None,
                           compute_bms_server_v2_id: Optional[str] = None,
                           flavor_id: Optional[str] = None,
                           flavor_name: Optional[str] = None,
                           image_id: Optional[str] = None,
                           block_devices: Optional[Sequence[ComputeBmsServerV2BlockDeviceArgs]] = None,
                           image_name: Optional[str] = None,
                           metadata: Optional[Mapping[str, str]] = None,
                           admin_pass: Optional[str] = None,
                           networks: Optional[Sequence[ComputeBmsServerV2NetworkArgs]] = None,
                           region: Optional[str] = None,
                           security_groups: Optional[Sequence[str]] = None,
                           stop_before_destroy: Optional[bool] = None,
                           timeouts: Optional[ComputeBmsServerV2TimeoutsArgs] = None,
                           user_data: Optional[str] = None)
    func NewComputeBmsServerV2(ctx *Context, name string, args ComputeBmsServerV2Args, opts ...ResourceOption) (*ComputeBmsServerV2, error)
    public ComputeBmsServerV2(string name, ComputeBmsServerV2Args args, CustomResourceOptions? opts = null)
    public ComputeBmsServerV2(String name, ComputeBmsServerV2Args args)
    public ComputeBmsServerV2(String name, ComputeBmsServerV2Args args, CustomResourceOptions options)
    
    type: flexibleengine:ComputeBmsServerV2
    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 ComputeBmsServerV2Args
    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 ComputeBmsServerV2Args
    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 ComputeBmsServerV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ComputeBmsServerV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ComputeBmsServerV2Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var computeBmsServerV2Resource = new Flexibleengine.ComputeBmsServerV2("computeBmsServerV2Resource", new()
    {
        AvailabilityZone = "string",
        KeyPair = "string",
        Name = "string",
        ComputeBmsServerV2Id = "string",
        FlavorId = "string",
        FlavorName = "string",
        ImageId = "string",
        BlockDevices = new[]
        {
            new Flexibleengine.Inputs.ComputeBmsServerV2BlockDeviceArgs
            {
                SourceType = "string",
                BootIndex = 0,
                DeleteOnTermination = false,
                DestinationType = "string",
                DeviceName = "string",
                GuestFormat = "string",
                Uuid = "string",
                VolumeSize = 0,
                VolumeType = "string",
            },
        },
        ImageName = "string",
        Metadata = 
        {
            { "string", "string" },
        },
        AdminPass = "string",
        Networks = new[]
        {
            new Flexibleengine.Inputs.ComputeBmsServerV2NetworkArgs
            {
                AccessNetwork = false,
                FixedIpV4 = "string",
                FixedIpV6 = "string",
                Mac = "string",
                Name = "string",
                Port = "string",
                Uuid = "string",
            },
        },
        Region = "string",
        SecurityGroups = new[]
        {
            "string",
        },
        StopBeforeDestroy = false,
        Timeouts = new Flexibleengine.Inputs.ComputeBmsServerV2TimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        UserData = "string",
    });
    
    example, err := flexibleengine.NewComputeBmsServerV2(ctx, "computeBmsServerV2Resource", &flexibleengine.ComputeBmsServerV2Args{
    	AvailabilityZone:     pulumi.String("string"),
    	KeyPair:              pulumi.String("string"),
    	Name:                 pulumi.String("string"),
    	ComputeBmsServerV2Id: pulumi.String("string"),
    	FlavorId:             pulumi.String("string"),
    	FlavorName:           pulumi.String("string"),
    	ImageId:              pulumi.String("string"),
    	BlockDevices: flexibleengine.ComputeBmsServerV2BlockDeviceArray{
    		&flexibleengine.ComputeBmsServerV2BlockDeviceArgs{
    			SourceType:          pulumi.String("string"),
    			BootIndex:           pulumi.Float64(0),
    			DeleteOnTermination: pulumi.Bool(false),
    			DestinationType:     pulumi.String("string"),
    			DeviceName:          pulumi.String("string"),
    			GuestFormat:         pulumi.String("string"),
    			Uuid:                pulumi.String("string"),
    			VolumeSize:          pulumi.Float64(0),
    			VolumeType:          pulumi.String("string"),
    		},
    	},
    	ImageName: pulumi.String("string"),
    	Metadata: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	AdminPass: pulumi.String("string"),
    	Networks: flexibleengine.ComputeBmsServerV2NetworkArray{
    		&flexibleengine.ComputeBmsServerV2NetworkArgs{
    			AccessNetwork: pulumi.Bool(false),
    			FixedIpV4:     pulumi.String("string"),
    			FixedIpV6:     pulumi.String("string"),
    			Mac:           pulumi.String("string"),
    			Name:          pulumi.String("string"),
    			Port:          pulumi.String("string"),
    			Uuid:          pulumi.String("string"),
    		},
    	},
    	Region: pulumi.String("string"),
    	SecurityGroups: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	StopBeforeDestroy: pulumi.Bool(false),
    	Timeouts: &flexibleengine.ComputeBmsServerV2TimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	UserData: pulumi.String("string"),
    })
    
    var computeBmsServerV2Resource = new ComputeBmsServerV2("computeBmsServerV2Resource", ComputeBmsServerV2Args.builder()
        .availabilityZone("string")
        .keyPair("string")
        .name("string")
        .computeBmsServerV2Id("string")
        .flavorId("string")
        .flavorName("string")
        .imageId("string")
        .blockDevices(ComputeBmsServerV2BlockDeviceArgs.builder()
            .sourceType("string")
            .bootIndex(0)
            .deleteOnTermination(false)
            .destinationType("string")
            .deviceName("string")
            .guestFormat("string")
            .uuid("string")
            .volumeSize(0)
            .volumeType("string")
            .build())
        .imageName("string")
        .metadata(Map.of("string", "string"))
        .adminPass("string")
        .networks(ComputeBmsServerV2NetworkArgs.builder()
            .accessNetwork(false)
            .fixedIpV4("string")
            .fixedIpV6("string")
            .mac("string")
            .name("string")
            .port("string")
            .uuid("string")
            .build())
        .region("string")
        .securityGroups("string")
        .stopBeforeDestroy(false)
        .timeouts(ComputeBmsServerV2TimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .userData("string")
        .build());
    
    compute_bms_server_v2_resource = flexibleengine.ComputeBmsServerV2("computeBmsServerV2Resource",
        availability_zone="string",
        key_pair="string",
        name="string",
        compute_bms_server_v2_id="string",
        flavor_id="string",
        flavor_name="string",
        image_id="string",
        block_devices=[{
            "source_type": "string",
            "boot_index": 0,
            "delete_on_termination": False,
            "destination_type": "string",
            "device_name": "string",
            "guest_format": "string",
            "uuid": "string",
            "volume_size": 0,
            "volume_type": "string",
        }],
        image_name="string",
        metadata={
            "string": "string",
        },
        admin_pass="string",
        networks=[{
            "access_network": False,
            "fixed_ip_v4": "string",
            "fixed_ip_v6": "string",
            "mac": "string",
            "name": "string",
            "port": "string",
            "uuid": "string",
        }],
        region="string",
        security_groups=["string"],
        stop_before_destroy=False,
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        user_data="string")
    
    const computeBmsServerV2Resource = new flexibleengine.ComputeBmsServerV2("computeBmsServerV2Resource", {
        availabilityZone: "string",
        keyPair: "string",
        name: "string",
        computeBmsServerV2Id: "string",
        flavorId: "string",
        flavorName: "string",
        imageId: "string",
        blockDevices: [{
            sourceType: "string",
            bootIndex: 0,
            deleteOnTermination: false,
            destinationType: "string",
            deviceName: "string",
            guestFormat: "string",
            uuid: "string",
            volumeSize: 0,
            volumeType: "string",
        }],
        imageName: "string",
        metadata: {
            string: "string",
        },
        adminPass: "string",
        networks: [{
            accessNetwork: false,
            fixedIpV4: "string",
            fixedIpV6: "string",
            mac: "string",
            name: "string",
            port: "string",
            uuid: "string",
        }],
        region: "string",
        securityGroups: ["string"],
        stopBeforeDestroy: false,
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        userData: "string",
    });
    
    type: flexibleengine:ComputeBmsServerV2
    properties:
        adminPass: string
        availabilityZone: string
        blockDevices:
            - bootIndex: 0
              deleteOnTermination: false
              destinationType: string
              deviceName: string
              guestFormat: string
              sourceType: string
              uuid: string
              volumeSize: 0
              volumeType: string
        computeBmsServerV2Id: string
        flavorId: string
        flavorName: string
        imageId: string
        imageName: string
        keyPair: string
        metadata:
            string: string
        name: string
        networks:
            - accessNetwork: false
              fixedIpV4: string
              fixedIpV6: string
              mac: string
              name: string
              port: string
              uuid: string
        region: string
        securityGroups:
            - string
        stopBeforeDestroy: false
        timeouts:
            create: string
            delete: string
            update: string
        userData: string
    

    ComputeBmsServerV2 Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ComputeBmsServerV2 resource accepts the following input properties:

    AvailabilityZone string
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    AdminPass string
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    BlockDevices List<ComputeBmsServerV2BlockDevice>
    ComputeBmsServerV2Id string
    The id of the bms server.
    FlavorId string
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    FlavorName string
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    ImageId string
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    ImageName string
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    KeyPair string
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    Metadata Dictionary<string, string>
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    Name string
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    Networks List<ComputeBmsServerV2Network>
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    Region string
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    SecurityGroups List<string>
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    StopBeforeDestroy bool

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    Timeouts ComputeBmsServerV2Timeouts
    UserData string
    The user data to provide when launching the instance. Changing this creates a new bms server.
    AvailabilityZone string
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    AdminPass string
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    BlockDevices []ComputeBmsServerV2BlockDeviceArgs
    ComputeBmsServerV2Id string
    The id of the bms server.
    FlavorId string
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    FlavorName string
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    ImageId string
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    ImageName string
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    KeyPair string
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    Metadata map[string]string
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    Name string
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    Networks []ComputeBmsServerV2NetworkArgs
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    Region string
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    SecurityGroups []string
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    StopBeforeDestroy bool

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    Timeouts ComputeBmsServerV2TimeoutsArgs
    UserData string
    The user data to provide when launching the instance. Changing this creates a new bms server.
    availabilityZone String
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    adminPass String
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    blockDevices List<ComputeBmsServerV2BlockDevice>
    computeBmsServerV2Id String
    The id of the bms server.
    flavorId String
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    flavorName String
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    imageId String
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    imageName String
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    keyPair String
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    metadata Map<String,String>
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    name String
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    networks List<ComputeBmsServerV2Network>
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    region String
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    securityGroups List<String>
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    stopBeforeDestroy Boolean

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    timeouts ComputeBmsServerV2Timeouts
    userData String
    The user data to provide when launching the instance. Changing this creates a new bms server.
    availabilityZone string
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    adminPass string
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    blockDevices ComputeBmsServerV2BlockDevice[]
    computeBmsServerV2Id string
    The id of the bms server.
    flavorId string
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    flavorName string
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    imageId string
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    imageName string
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    keyPair string
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    metadata {[key: string]: string}
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    name string
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    networks ComputeBmsServerV2Network[]
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    region string
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    securityGroups string[]
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    stopBeforeDestroy boolean

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    timeouts ComputeBmsServerV2Timeouts
    userData string
    The user data to provide when launching the instance. Changing this creates a new bms server.
    availability_zone str
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    admin_pass str
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    block_devices Sequence[ComputeBmsServerV2BlockDeviceArgs]
    compute_bms_server_v2_id str
    The id of the bms server.
    flavor_id str
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    flavor_name str
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    image_id str
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    image_name str
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    key_pair str
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    metadata Mapping[str, str]
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    name str
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    networks Sequence[ComputeBmsServerV2NetworkArgs]
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    region str
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    security_groups Sequence[str]
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    stop_before_destroy bool

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    timeouts ComputeBmsServerV2TimeoutsArgs
    user_data str
    The user data to provide when launching the instance. Changing this creates a new bms server.
    availabilityZone String
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    adminPass String
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    blockDevices List<Property Map>
    computeBmsServerV2Id String
    The id of the bms server.
    flavorId String
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    flavorName String
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    imageId String
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    imageName String
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    keyPair String
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    metadata Map<String>
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    name String
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    networks List<Property Map>
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    region String
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    securityGroups List<String>
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    stopBeforeDestroy Boolean

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    timeouts Property Map
    userData String
    The user data to provide when launching the instance. Changing this creates a new bms server.

    Outputs

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

    AccessIpV4 string
    This is a reserved attribute.
    AccessIpV6 string
    This is a reserved attribute.
    ConfigDrive bool
    Whether to use the config_drive feature to configure the instance.
    HostId string
    Specifies the host ID of the BMS.
    HostStatus string
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    Id string
    The provider-assigned unique ID for this managed resource.
    KernelId string
    The UUID of the kernel image when the AMI image is used.
    TenantId string
    UserId string
    The ID of the user to which the BMS belongs.
    AccessIpV4 string
    This is a reserved attribute.
    AccessIpV6 string
    This is a reserved attribute.
    ConfigDrive bool
    Whether to use the config_drive feature to configure the instance.
    HostId string
    Specifies the host ID of the BMS.
    HostStatus string
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    Id string
    The provider-assigned unique ID for this managed resource.
    KernelId string
    The UUID of the kernel image when the AMI image is used.
    TenantId string
    UserId string
    The ID of the user to which the BMS belongs.
    accessIpV4 String
    This is a reserved attribute.
    accessIpV6 String
    This is a reserved attribute.
    configDrive Boolean
    Whether to use the config_drive feature to configure the instance.
    hostId String
    Specifies the host ID of the BMS.
    hostStatus String
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    id String
    The provider-assigned unique ID for this managed resource.
    kernelId String
    The UUID of the kernel image when the AMI image is used.
    tenantId String
    userId String
    The ID of the user to which the BMS belongs.
    accessIpV4 string
    This is a reserved attribute.
    accessIpV6 string
    This is a reserved attribute.
    configDrive boolean
    Whether to use the config_drive feature to configure the instance.
    hostId string
    Specifies the host ID of the BMS.
    hostStatus string
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    id string
    The provider-assigned unique ID for this managed resource.
    kernelId string
    The UUID of the kernel image when the AMI image is used.
    tenantId string
    userId string
    The ID of the user to which the BMS belongs.
    access_ip_v4 str
    This is a reserved attribute.
    access_ip_v6 str
    This is a reserved attribute.
    config_drive bool
    Whether to use the config_drive feature to configure the instance.
    host_id str
    Specifies the host ID of the BMS.
    host_status str
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    id str
    The provider-assigned unique ID for this managed resource.
    kernel_id str
    The UUID of the kernel image when the AMI image is used.
    tenant_id str
    user_id str
    The ID of the user to which the BMS belongs.
    accessIpV4 String
    This is a reserved attribute.
    accessIpV6 String
    This is a reserved attribute.
    configDrive Boolean
    Whether to use the config_drive feature to configure the instance.
    hostId String
    Specifies the host ID of the BMS.
    hostStatus String
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    id String
    The provider-assigned unique ID for this managed resource.
    kernelId String
    The UUID of the kernel image when the AMI image is used.
    tenantId String
    userId String
    The ID of the user to which the BMS belongs.

    Look up Existing ComputeBmsServerV2 Resource

    Get an existing ComputeBmsServerV2 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?: ComputeBmsServerV2State, opts?: CustomResourceOptions): ComputeBmsServerV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_ip_v4: Optional[str] = None,
            access_ip_v6: Optional[str] = None,
            admin_pass: Optional[str] = None,
            availability_zone: Optional[str] = None,
            block_devices: Optional[Sequence[ComputeBmsServerV2BlockDeviceArgs]] = None,
            compute_bms_server_v2_id: Optional[str] = None,
            config_drive: Optional[bool] = None,
            flavor_id: Optional[str] = None,
            flavor_name: Optional[str] = None,
            host_id: Optional[str] = None,
            host_status: Optional[str] = None,
            image_id: Optional[str] = None,
            image_name: Optional[str] = None,
            kernel_id: Optional[str] = None,
            key_pair: Optional[str] = None,
            metadata: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            networks: Optional[Sequence[ComputeBmsServerV2NetworkArgs]] = None,
            region: Optional[str] = None,
            security_groups: Optional[Sequence[str]] = None,
            stop_before_destroy: Optional[bool] = None,
            tenant_id: Optional[str] = None,
            timeouts: Optional[ComputeBmsServerV2TimeoutsArgs] = None,
            user_data: Optional[str] = None,
            user_id: Optional[str] = None) -> ComputeBmsServerV2
    func GetComputeBmsServerV2(ctx *Context, name string, id IDInput, state *ComputeBmsServerV2State, opts ...ResourceOption) (*ComputeBmsServerV2, error)
    public static ComputeBmsServerV2 Get(string name, Input<string> id, ComputeBmsServerV2State? state, CustomResourceOptions? opts = null)
    public static ComputeBmsServerV2 get(String name, Output<String> id, ComputeBmsServerV2State state, CustomResourceOptions options)
    resources:  _:    type: flexibleengine:ComputeBmsServerV2    get:      id: ${id}
    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:
    AccessIpV4 string
    This is a reserved attribute.
    AccessIpV6 string
    This is a reserved attribute.
    AdminPass string
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    AvailabilityZone string
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    BlockDevices List<ComputeBmsServerV2BlockDevice>
    ComputeBmsServerV2Id string
    The id of the bms server.
    ConfigDrive bool
    Whether to use the config_drive feature to configure the instance.
    FlavorId string
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    FlavorName string
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    HostId string
    Specifies the host ID of the BMS.
    HostStatus string
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    ImageId string
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    ImageName string
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    KernelId string
    The UUID of the kernel image when the AMI image is used.
    KeyPair string
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    Metadata Dictionary<string, string>
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    Name string
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    Networks List<ComputeBmsServerV2Network>
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    Region string
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    SecurityGroups List<string>
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    StopBeforeDestroy bool

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    TenantId string
    Timeouts ComputeBmsServerV2Timeouts
    UserData string
    The user data to provide when launching the instance. Changing this creates a new bms server.
    UserId string
    The ID of the user to which the BMS belongs.
    AccessIpV4 string
    This is a reserved attribute.
    AccessIpV6 string
    This is a reserved attribute.
    AdminPass string
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    AvailabilityZone string
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    BlockDevices []ComputeBmsServerV2BlockDeviceArgs
    ComputeBmsServerV2Id string
    The id of the bms server.
    ConfigDrive bool
    Whether to use the config_drive feature to configure the instance.
    FlavorId string
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    FlavorName string
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    HostId string
    Specifies the host ID of the BMS.
    HostStatus string
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    ImageId string
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    ImageName string
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    KernelId string
    The UUID of the kernel image when the AMI image is used.
    KeyPair string
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    Metadata map[string]string
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    Name string
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    Networks []ComputeBmsServerV2NetworkArgs
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    Region string
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    SecurityGroups []string
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    StopBeforeDestroy bool

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    TenantId string
    Timeouts ComputeBmsServerV2TimeoutsArgs
    UserData string
    The user data to provide when launching the instance. Changing this creates a new bms server.
    UserId string
    The ID of the user to which the BMS belongs.
    accessIpV4 String
    This is a reserved attribute.
    accessIpV6 String
    This is a reserved attribute.
    adminPass String
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    availabilityZone String
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    blockDevices List<ComputeBmsServerV2BlockDevice>
    computeBmsServerV2Id String
    The id of the bms server.
    configDrive Boolean
    Whether to use the config_drive feature to configure the instance.
    flavorId String
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    flavorName String
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    hostId String
    Specifies the host ID of the BMS.
    hostStatus String
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    imageId String
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    imageName String
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    kernelId String
    The UUID of the kernel image when the AMI image is used.
    keyPair String
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    metadata Map<String,String>
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    name String
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    networks List<ComputeBmsServerV2Network>
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    region String
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    securityGroups List<String>
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    stopBeforeDestroy Boolean

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    tenantId String
    timeouts ComputeBmsServerV2Timeouts
    userData String
    The user data to provide when launching the instance. Changing this creates a new bms server.
    userId String
    The ID of the user to which the BMS belongs.
    accessIpV4 string
    This is a reserved attribute.
    accessIpV6 string
    This is a reserved attribute.
    adminPass string
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    availabilityZone string
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    blockDevices ComputeBmsServerV2BlockDevice[]
    computeBmsServerV2Id string
    The id of the bms server.
    configDrive boolean
    Whether to use the config_drive feature to configure the instance.
    flavorId string
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    flavorName string
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    hostId string
    Specifies the host ID of the BMS.
    hostStatus string
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    imageId string
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    imageName string
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    kernelId string
    The UUID of the kernel image when the AMI image is used.
    keyPair string
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    metadata {[key: string]: string}
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    name string
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    networks ComputeBmsServerV2Network[]
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    region string
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    securityGroups string[]
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    stopBeforeDestroy boolean

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    tenantId string
    timeouts ComputeBmsServerV2Timeouts
    userData string
    The user data to provide when launching the instance. Changing this creates a new bms server.
    userId string
    The ID of the user to which the BMS belongs.
    access_ip_v4 str
    This is a reserved attribute.
    access_ip_v6 str
    This is a reserved attribute.
    admin_pass str
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    availability_zone str
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    block_devices Sequence[ComputeBmsServerV2BlockDeviceArgs]
    compute_bms_server_v2_id str
    The id of the bms server.
    config_drive bool
    Whether to use the config_drive feature to configure the instance.
    flavor_id str
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    flavor_name str
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    host_id str
    Specifies the host ID of the BMS.
    host_status str
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    image_id str
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    image_name str
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    kernel_id str
    The UUID of the kernel image when the AMI image is used.
    key_pair str
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    metadata Mapping[str, str]
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    name str
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    networks Sequence[ComputeBmsServerV2NetworkArgs]
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    region str
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    security_groups Sequence[str]
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    stop_before_destroy bool

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    tenant_id str
    timeouts ComputeBmsServerV2TimeoutsArgs
    user_data str
    The user data to provide when launching the instance. Changing this creates a new bms server.
    user_id str
    The ID of the user to which the BMS belongs.
    accessIpV4 String
    This is a reserved attribute.
    accessIpV6 String
    This is a reserved attribute.
    adminPass String
    The administrative password to assign to the bms server. Changing this changes the root password on the existing server.
    availabilityZone String
    The availability zone in which to create the bms server. Changing this will create a new bms server resource.
    blockDevices List<Property Map>
    computeBmsServerV2Id String
    The id of the bms server.
    configDrive Boolean
    Whether to use the config_drive feature to configure the instance.
    flavorId String
    The flavor ID of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_name is empty.
    flavorName String
    The name of the desired flavor for the bms server. Changing this resizes the existing bms server. It is Required if flavor_id is empty.
    hostId String
    Specifies the host ID of the BMS.
    hostStatus String
    The nova-compute status: UP, UNKNOWN, DOWN, MAINTENANCE and Null.
    imageId String
    Changing this creates a new bms server. It is Required if image_name is empty. Changing this creates a new bms server.
    imageName String
    The name of the desired image for the bms server. Changing this creates a new bms server. It is Required if image_id is empty.
    kernelId String
    The UUID of the kernel image when the AMI image is used.
    keyPair String
    The name of a key pair to put on the bms server. The key pair must already be created and associated with the tenant's account. Changing this creates a new bms server.
    metadata Map<String>
    Metadata key/value pairs to make available from within the instance. Changing this updates the existing bms server metadata.
    name String
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    networks List<Property Map>
    An array of one or more networks to attach to the bms instance. Changing this creates a new bms server. The network object structure is documented below.
    region String
    The region in which to create the bms server instance. If omitted, the region argument of the provider is used. Changing this will create a new bms server.
    securityGroups List<String>
    An array of one or more security group names to associate with the bms server. Changing this results in adding/removing security groups from the existing bms server.
    stopBeforeDestroy Boolean

    Whether to try stop instance gracefully before destroying it, thus giving chance for guest OS daemons to stop correctly. If instance doesn't stop within timeout, it will be destroyed anyway.

    The network block supports:

    tenantId String
    timeouts Property Map
    userData String
    The user data to provide when launching the instance. Changing this creates a new bms server.
    userId String
    The ID of the user to which the BMS belongs.

    Supporting Types

    ComputeBmsServerV2BlockDevice, ComputeBmsServerV2BlockDeviceArgs

    SourceType string
    BootIndex double
    DeleteOnTermination bool
    DestinationType string
    DeviceName string
    GuestFormat string
    Uuid string
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided
    VolumeSize double
    VolumeType string
    SourceType string
    BootIndex float64
    DeleteOnTermination bool
    DestinationType string
    DeviceName string
    GuestFormat string
    Uuid string
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided
    VolumeSize float64
    VolumeType string
    sourceType String
    bootIndex Double
    deleteOnTermination Boolean
    destinationType String
    deviceName String
    guestFormat String
    uuid String
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided
    volumeSize Double
    volumeType String
    sourceType string
    bootIndex number
    deleteOnTermination boolean
    destinationType string
    deviceName string
    guestFormat string
    uuid string
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided
    volumeSize number
    volumeType string
    source_type str
    boot_index float
    delete_on_termination bool
    destination_type str
    device_name str
    guest_format str
    uuid str
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided
    volume_size float
    volume_type str
    sourceType String
    bootIndex Number
    deleteOnTermination Boolean
    destinationType String
    deviceName String
    guestFormat String
    uuid String
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided
    volumeSize Number
    volumeType String

    ComputeBmsServerV2Network, ComputeBmsServerV2NetworkArgs

    AccessNetwork bool
    Specifies if this network should be used for provisioning access. Accepts true or false. Defaults to false.
    FixedIpV4 string
    Specifies a fixed IPv4 address to be used on this network. Changing this creates a new bms server.
    FixedIpV6 string
    Specifies a fixed IPv6 address to be used on this network. Changing this creates a new bms server.
    Mac string
    Name string
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    Port string
    The port UUID of a network to attach to the bms server. Changing this creates a new server.It is Required unless uuid or name is provided
    Uuid string
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided
    AccessNetwork bool
    Specifies if this network should be used for provisioning access. Accepts true or false. Defaults to false.
    FixedIpV4 string
    Specifies a fixed IPv4 address to be used on this network. Changing this creates a new bms server.
    FixedIpV6 string
    Specifies a fixed IPv6 address to be used on this network. Changing this creates a new bms server.
    Mac string
    Name string
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    Port string
    The port UUID of a network to attach to the bms server. Changing this creates a new server.It is Required unless uuid or name is provided
    Uuid string
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided
    accessNetwork Boolean
    Specifies if this network should be used for provisioning access. Accepts true or false. Defaults to false.
    fixedIpV4 String
    Specifies a fixed IPv4 address to be used on this network. Changing this creates a new bms server.
    fixedIpV6 String
    Specifies a fixed IPv6 address to be used on this network. Changing this creates a new bms server.
    mac String
    name String
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    port String
    The port UUID of a network to attach to the bms server. Changing this creates a new server.It is Required unless uuid or name is provided
    uuid String
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided
    accessNetwork boolean
    Specifies if this network should be used for provisioning access. Accepts true or false. Defaults to false.
    fixedIpV4 string
    Specifies a fixed IPv4 address to be used on this network. Changing this creates a new bms server.
    fixedIpV6 string
    Specifies a fixed IPv6 address to be used on this network. Changing this creates a new bms server.
    mac string
    name string
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    port string
    The port UUID of a network to attach to the bms server. Changing this creates a new server.It is Required unless uuid or name is provided
    uuid string
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided
    access_network bool
    Specifies if this network should be used for provisioning access. Accepts true or false. Defaults to false.
    fixed_ip_v4 str
    Specifies a fixed IPv4 address to be used on this network. Changing this creates a new bms server.
    fixed_ip_v6 str
    Specifies a fixed IPv6 address to be used on this network. Changing this creates a new bms server.
    mac str
    name str
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    port str
    The port UUID of a network to attach to the bms server. Changing this creates a new server.It is Required unless uuid or name is provided
    uuid str
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided
    accessNetwork Boolean
    Specifies if this network should be used for provisioning access. Accepts true or false. Defaults to false.
    fixedIpV4 String
    Specifies a fixed IPv4 address to be used on this network. Changing this creates a new bms server.
    fixedIpV6 String
    Specifies a fixed IPv6 address to be used on this network. Changing this creates a new bms server.
    mac String
    name String
    The human-readable name of the network. Changing this creates a new bms server. It is Required unless uuid or port is provided.
    port String
    The port UUID of a network to attach to the bms server. Changing this creates a new server.It is Required unless uuid or name is provided
    uuid String
    The network UUID to attach to the bms server. Changing this creates a new bms server. It is Required unless port or name is provided

    ComputeBmsServerV2Timeouts, ComputeBmsServerV2TimeoutsArgs

    Create string
    Delete string
    Update string
    Create string
    Delete string
    Update string
    create String
    delete String
    update String
    create string
    delete string
    update string
    create str
    delete str
    update str
    create String
    delete String
    update String

    Package Details

    Repository
    flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
    License
    Notes
    This Pulumi package is based on the flexibleengine Terraform Provider.
    flexibleengine logo
    flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud