1. Packages
  2. Vra Provider
  3. API Docs
  4. FlavorProfile
vra 0.12.0 published on Monday, Apr 14, 2025 by vmware

vra.FlavorProfile

Explore with Pulumi AI

vra logo
vra 0.12.0 published on Monday, Apr 14, 2025 by vmware

    Example Usage

    S

    This is an example of how to create a flavor profile resource.

    Flavor profile:

    import * as pulumi from "@pulumi/pulumi";
    import * as vra from "@pulumi/vra";
    
    const my_aws_flavor_profile = new vra.FlavorProfile("my-aws-flavor-profile", {
        description: "My AWS flavor",
        flavorMappings: [
            {
                instanceType: "t2.small",
                name: "small",
            },
            {
                instanceType: "t2.medium",
                name: "medium",
            },
        ],
        regionId: data.vra_region.aws.id,
    });
    const my_vsphere_flavor_profile = new vra.FlavorProfile("my-vsphere-flavor-profile", {
        description: "My vSphere flavor",
        flavorMappings: [
            {
                cpuCount: 2,
                memory: 2048,
                name: "small",
            },
            {
                cpuCount: 4,
                memory: 4096,
                name: "medium",
            },
        ],
        regionId: data.vra_region.vsphere.id,
    });
    
    import pulumi
    import pulumi_vra as vra
    
    my_aws_flavor_profile = vra.FlavorProfile("my-aws-flavor-profile",
        description="My AWS flavor",
        flavor_mappings=[
            {
                "instance_type": "t2.small",
                "name": "small",
            },
            {
                "instance_type": "t2.medium",
                "name": "medium",
            },
        ],
        region_id=data["vra_region"]["aws"]["id"])
    my_vsphere_flavor_profile = vra.FlavorProfile("my-vsphere-flavor-profile",
        description="My vSphere flavor",
        flavor_mappings=[
            {
                "cpu_count": 2,
                "memory": 2048,
                "name": "small",
            },
            {
                "cpu_count": 4,
                "memory": 4096,
                "name": "medium",
            },
        ],
        region_id=data["vra_region"]["vsphere"]["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/vra/vra"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vra.NewFlavorProfile(ctx, "my-aws-flavor-profile", &vra.FlavorProfileArgs{
    			Description: pulumi.String("My AWS flavor"),
    			FlavorMappings: vra.FlavorProfileFlavorMappingArray{
    				&vra.FlavorProfileFlavorMappingArgs{
    					InstanceType: pulumi.String("t2.small"),
    					Name:         pulumi.String("small"),
    				},
    				&vra.FlavorProfileFlavorMappingArgs{
    					InstanceType: pulumi.String("t2.medium"),
    					Name:         pulumi.String("medium"),
    				},
    			},
    			RegionId: pulumi.Any(data.Vra_region.Aws.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = vra.NewFlavorProfile(ctx, "my-vsphere-flavor-profile", &vra.FlavorProfileArgs{
    			Description: pulumi.String("My vSphere flavor"),
    			FlavorMappings: vra.FlavorProfileFlavorMappingArray{
    				&vra.FlavorProfileFlavorMappingArgs{
    					CpuCount: pulumi.Float64(2),
    					Memory:   pulumi.Float64(2048),
    					Name:     pulumi.String("small"),
    				},
    				&vra.FlavorProfileFlavorMappingArgs{
    					CpuCount: pulumi.Float64(4),
    					Memory:   pulumi.Float64(4096),
    					Name:     pulumi.String("medium"),
    				},
    			},
    			RegionId: pulumi.Any(data.Vra_region.Vsphere.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Vra = Pulumi.Vra;
    
    return await Deployment.RunAsync(() => 
    {
        var my_aws_flavor_profile = new Vra.FlavorProfile("my-aws-flavor-profile", new()
        {
            Description = "My AWS flavor",
            FlavorMappings = new[]
            {
                new Vra.Inputs.FlavorProfileFlavorMappingArgs
                {
                    InstanceType = "t2.small",
                    Name = "small",
                },
                new Vra.Inputs.FlavorProfileFlavorMappingArgs
                {
                    InstanceType = "t2.medium",
                    Name = "medium",
                },
            },
            RegionId = data.Vra_region.Aws.Id,
        });
    
        var my_vsphere_flavor_profile = new Vra.FlavorProfile("my-vsphere-flavor-profile", new()
        {
            Description = "My vSphere flavor",
            FlavorMappings = new[]
            {
                new Vra.Inputs.FlavorProfileFlavorMappingArgs
                {
                    CpuCount = 2,
                    Memory = 2048,
                    Name = "small",
                },
                new Vra.Inputs.FlavorProfileFlavorMappingArgs
                {
                    CpuCount = 4,
                    Memory = 4096,
                    Name = "medium",
                },
            },
            RegionId = data.Vra_region.Vsphere.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vra.FlavorProfile;
    import com.pulumi.vra.FlavorProfileArgs;
    import com.pulumi.vra.inputs.FlavorProfileFlavorMappingArgs;
    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 my_aws_flavor_profile = new FlavorProfile("my-aws-flavor-profile", FlavorProfileArgs.builder()
                .description("My AWS flavor")
                .flavorMappings(            
                    FlavorProfileFlavorMappingArgs.builder()
                        .instanceType("t2.small")
                        .name("small")
                        .build(),
                    FlavorProfileFlavorMappingArgs.builder()
                        .instanceType("t2.medium")
                        .name("medium")
                        .build())
                .regionId(data.vra_region().aws().id())
                .build());
    
            var my_vsphere_flavor_profile = new FlavorProfile("my-vsphere-flavor-profile", FlavorProfileArgs.builder()
                .description("My vSphere flavor")
                .flavorMappings(            
                    FlavorProfileFlavorMappingArgs.builder()
                        .cpuCount(2)
                        .memory(2048)
                        .name("small")
                        .build(),
                    FlavorProfileFlavorMappingArgs.builder()
                        .cpuCount(4)
                        .memory(4096)
                        .name("medium")
                        .build())
                .regionId(data.vra_region().vsphere().id())
                .build());
    
        }
    }
    
    resources:
      my-aws-flavor-profile:
        type: vra:FlavorProfile
        properties:
          description: My AWS flavor
          flavorMappings:
            - instanceType: t2.small
              name: small
            - instanceType: t2.medium
              name: medium
          regionId: ${data.vra_region.aws.id}
      my-vsphere-flavor-profile:
        type: vra:FlavorProfile
        properties:
          description: My vSphere flavor
          flavorMappings:
            - cpuCount: 2
              memory: 2048
              name: small
            - cpuCount: 4
              memory: 4096
              name: medium
          regionId: ${data.vra_region.vsphere.id}
    

    An flavor profile resource supports the following arguments:

    Create FlavorProfile Resource

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

    Constructor syntax

    new FlavorProfile(name: string, args: FlavorProfileArgs, opts?: CustomResourceOptions);
    @overload
    def FlavorProfile(resource_name: str,
                      args: FlavorProfileArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def FlavorProfile(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      region_id: Optional[str] = None,
                      description: Optional[str] = None,
                      flavor_mappings: Optional[Sequence[FlavorProfileFlavorMappingArgs]] = None,
                      flavor_profile_id: Optional[str] = None,
                      name: Optional[str] = None)
    func NewFlavorProfile(ctx *Context, name string, args FlavorProfileArgs, opts ...ResourceOption) (*FlavorProfile, error)
    public FlavorProfile(string name, FlavorProfileArgs args, CustomResourceOptions? opts = null)
    public FlavorProfile(String name, FlavorProfileArgs args)
    public FlavorProfile(String name, FlavorProfileArgs args, CustomResourceOptions options)
    
    type: vra:FlavorProfile
    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 FlavorProfileArgs
    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 FlavorProfileArgs
    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 FlavorProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FlavorProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FlavorProfileArgs
    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 flavorProfileResource = new Vra.FlavorProfile("flavorProfileResource", new()
    {
        RegionId = "string",
        Description = "string",
        FlavorMappings = new[]
        {
            new Vra.Inputs.FlavorProfileFlavorMappingArgs
            {
                Name = "string",
                CpuCount = 0,
                InstanceType = "string",
                Memory = 0,
            },
        },
        FlavorProfileId = "string",
        Name = "string",
    });
    
    example, err := vra.NewFlavorProfile(ctx, "flavorProfileResource", &vra.FlavorProfileArgs{
    	RegionId:    pulumi.String("string"),
    	Description: pulumi.String("string"),
    	FlavorMappings: vra.FlavorProfileFlavorMappingArray{
    		&vra.FlavorProfileFlavorMappingArgs{
    			Name:         pulumi.String("string"),
    			CpuCount:     pulumi.Float64(0),
    			InstanceType: pulumi.String("string"),
    			Memory:       pulumi.Float64(0),
    		},
    	},
    	FlavorProfileId: pulumi.String("string"),
    	Name:            pulumi.String("string"),
    })
    
    var flavorProfileResource = new FlavorProfile("flavorProfileResource", FlavorProfileArgs.builder()
        .regionId("string")
        .description("string")
        .flavorMappings(FlavorProfileFlavorMappingArgs.builder()
            .name("string")
            .cpuCount(0)
            .instanceType("string")
            .memory(0)
            .build())
        .flavorProfileId("string")
        .name("string")
        .build());
    
    flavor_profile_resource = vra.FlavorProfile("flavorProfileResource",
        region_id="string",
        description="string",
        flavor_mappings=[{
            "name": "string",
            "cpu_count": 0,
            "instance_type": "string",
            "memory": 0,
        }],
        flavor_profile_id="string",
        name="string")
    
    const flavorProfileResource = new vra.FlavorProfile("flavorProfileResource", {
        regionId: "string",
        description: "string",
        flavorMappings: [{
            name: "string",
            cpuCount: 0,
            instanceType: "string",
            memory: 0,
        }],
        flavorProfileId: "string",
        name: "string",
    });
    
    type: vra:FlavorProfile
    properties:
        description: string
        flavorMappings:
            - cpuCount: 0
              instanceType: string
              memory: 0
              name: string
        flavorProfileId: string
        name: string
        regionId: string
    

    FlavorProfile 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 FlavorProfile resource accepts the following input properties:

    RegionId string
    The id of the region for which this profile is defined.
    Description string
    A human-friendly description.
    FlavorMappings List<FlavorProfileFlavorMapping>
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    FlavorProfileId string
    Name string
    A human-friendly name used as an identifier in APIs that support this option.
    RegionId string
    The id of the region for which this profile is defined.
    Description string
    A human-friendly description.
    FlavorMappings []FlavorProfileFlavorMappingArgs
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    FlavorProfileId string
    Name string
    A human-friendly name used as an identifier in APIs that support this option.
    regionId String
    The id of the region for which this profile is defined.
    description String
    A human-friendly description.
    flavorMappings List<FlavorProfileFlavorMapping>
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    flavorProfileId String
    name String
    A human-friendly name used as an identifier in APIs that support this option.
    regionId string
    The id of the region for which this profile is defined.
    description string
    A human-friendly description.
    flavorMappings FlavorProfileFlavorMapping[]
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    flavorProfileId string
    name string
    A human-friendly name used as an identifier in APIs that support this option.
    region_id str
    The id of the region for which this profile is defined.
    description str
    A human-friendly description.
    flavor_mappings Sequence[FlavorProfileFlavorMappingArgs]
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    flavor_profile_id str
    name str
    A human-friendly name used as an identifier in APIs that support this option.
    regionId String
    The id of the region for which this profile is defined.
    description String
    A human-friendly description.
    flavorMappings List<Property Map>
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    flavorProfileId String
    name String
    A human-friendly name used as an identifier in APIs that support this option.

    Outputs

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

    CloudAccountId string
    Id of the cloud account this flavor profile belongs to.
    CreatedAt string
    Date when the entity was created. The date is in ISO 8601 and UTC.
    ExternalRegionId string
    The id of the region for which this profile is defined.
    Id string
    The provider-assigned unique ID for this managed resource.
    Links List<FlavorProfileLink>
    HATEOAS of entity.
    OrgId string
    The id of the organization this entity belongs to.
    Owner string
    Email of the user that owns the entity.
    UpdatedAt string
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    CloudAccountId string
    Id of the cloud account this flavor profile belongs to.
    CreatedAt string
    Date when the entity was created. The date is in ISO 8601 and UTC.
    ExternalRegionId string
    The id of the region for which this profile is defined.
    Id string
    The provider-assigned unique ID for this managed resource.
    Links []FlavorProfileLink
    HATEOAS of entity.
    OrgId string
    The id of the organization this entity belongs to.
    Owner string
    Email of the user that owns the entity.
    UpdatedAt string
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    cloudAccountId String
    Id of the cloud account this flavor profile belongs to.
    createdAt String
    Date when the entity was created. The date is in ISO 8601 and UTC.
    externalRegionId String
    The id of the region for which this profile is defined.
    id String
    The provider-assigned unique ID for this managed resource.
    links List<FlavorProfileLink>
    HATEOAS of entity.
    orgId String
    The id of the organization this entity belongs to.
    owner String
    Email of the user that owns the entity.
    updatedAt String
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    cloudAccountId string
    Id of the cloud account this flavor profile belongs to.
    createdAt string
    Date when the entity was created. The date is in ISO 8601 and UTC.
    externalRegionId string
    The id of the region for which this profile is defined.
    id string
    The provider-assigned unique ID for this managed resource.
    links FlavorProfileLink[]
    HATEOAS of entity.
    orgId string
    The id of the organization this entity belongs to.
    owner string
    Email of the user that owns the entity.
    updatedAt string
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    cloud_account_id str
    Id of the cloud account this flavor profile belongs to.
    created_at str
    Date when the entity was created. The date is in ISO 8601 and UTC.
    external_region_id str
    The id of the region for which this profile is defined.
    id str
    The provider-assigned unique ID for this managed resource.
    links Sequence[FlavorProfileLink]
    HATEOAS of entity.
    org_id str
    The id of the organization this entity belongs to.
    owner str
    Email of the user that owns the entity.
    updated_at str
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    cloudAccountId String
    Id of the cloud account this flavor profile belongs to.
    createdAt String
    Date when the entity was created. The date is in ISO 8601 and UTC.
    externalRegionId String
    The id of the region for which this profile is defined.
    id String
    The provider-assigned unique ID for this managed resource.
    links List<Property Map>
    HATEOAS of entity.
    orgId String
    The id of the organization this entity belongs to.
    owner String
    Email of the user that owns the entity.
    updatedAt String
    Date when the entity was last updated. The date is ISO 8601 and UTC.

    Look up Existing FlavorProfile Resource

    Get an existing FlavorProfile 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?: FlavorProfileState, opts?: CustomResourceOptions): FlavorProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cloud_account_id: Optional[str] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            external_region_id: Optional[str] = None,
            flavor_mappings: Optional[Sequence[FlavorProfileFlavorMappingArgs]] = None,
            flavor_profile_id: Optional[str] = None,
            links: Optional[Sequence[FlavorProfileLinkArgs]] = None,
            name: Optional[str] = None,
            org_id: Optional[str] = None,
            owner: Optional[str] = None,
            region_id: Optional[str] = None,
            updated_at: Optional[str] = None) -> FlavorProfile
    func GetFlavorProfile(ctx *Context, name string, id IDInput, state *FlavorProfileState, opts ...ResourceOption) (*FlavorProfile, error)
    public static FlavorProfile Get(string name, Input<string> id, FlavorProfileState? state, CustomResourceOptions? opts = null)
    public static FlavorProfile get(String name, Output<String> id, FlavorProfileState state, CustomResourceOptions options)
    resources:  _:    type: vra:FlavorProfile    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:
    CloudAccountId string
    Id of the cloud account this flavor profile belongs to.
    CreatedAt string
    Date when the entity was created. The date is in ISO 8601 and UTC.
    Description string
    A human-friendly description.
    ExternalRegionId string
    The id of the region for which this profile is defined.
    FlavorMappings List<FlavorProfileFlavorMapping>
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    FlavorProfileId string
    Links List<FlavorProfileLink>
    HATEOAS of entity.
    Name string
    A human-friendly name used as an identifier in APIs that support this option.
    OrgId string
    The id of the organization this entity belongs to.
    Owner string
    Email of the user that owns the entity.
    RegionId string
    The id of the region for which this profile is defined.
    UpdatedAt string
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    CloudAccountId string
    Id of the cloud account this flavor profile belongs to.
    CreatedAt string
    Date when the entity was created. The date is in ISO 8601 and UTC.
    Description string
    A human-friendly description.
    ExternalRegionId string
    The id of the region for which this profile is defined.
    FlavorMappings []FlavorProfileFlavorMappingArgs
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    FlavorProfileId string
    Links []FlavorProfileLinkArgs
    HATEOAS of entity.
    Name string
    A human-friendly name used as an identifier in APIs that support this option.
    OrgId string
    The id of the organization this entity belongs to.
    Owner string
    Email of the user that owns the entity.
    RegionId string
    The id of the region for which this profile is defined.
    UpdatedAt string
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    cloudAccountId String
    Id of the cloud account this flavor profile belongs to.
    createdAt String
    Date when the entity was created. The date is in ISO 8601 and UTC.
    description String
    A human-friendly description.
    externalRegionId String
    The id of the region for which this profile is defined.
    flavorMappings List<FlavorProfileFlavorMapping>
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    flavorProfileId String
    links List<FlavorProfileLink>
    HATEOAS of entity.
    name String
    A human-friendly name used as an identifier in APIs that support this option.
    orgId String
    The id of the organization this entity belongs to.
    owner String
    Email of the user that owns the entity.
    regionId String
    The id of the region for which this profile is defined.
    updatedAt String
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    cloudAccountId string
    Id of the cloud account this flavor profile belongs to.
    createdAt string
    Date when the entity was created. The date is in ISO 8601 and UTC.
    description string
    A human-friendly description.
    externalRegionId string
    The id of the region for which this profile is defined.
    flavorMappings FlavorProfileFlavorMapping[]
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    flavorProfileId string
    links FlavorProfileLink[]
    HATEOAS of entity.
    name string
    A human-friendly name used as an identifier in APIs that support this option.
    orgId string
    The id of the organization this entity belongs to.
    owner string
    Email of the user that owns the entity.
    regionId string
    The id of the region for which this profile is defined.
    updatedAt string
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    cloud_account_id str
    Id of the cloud account this flavor profile belongs to.
    created_at str
    Date when the entity was created. The date is in ISO 8601 and UTC.
    description str
    A human-friendly description.
    external_region_id str
    The id of the region for which this profile is defined.
    flavor_mappings Sequence[FlavorProfileFlavorMappingArgs]
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    flavor_profile_id str
    links Sequence[FlavorProfileLinkArgs]
    HATEOAS of entity.
    name str
    A human-friendly name used as an identifier in APIs that support this option.
    org_id str
    The id of the organization this entity belongs to.
    owner str
    Email of the user that owns the entity.
    region_id str
    The id of the region for which this profile is defined.
    updated_at str
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    cloudAccountId String
    Id of the cloud account this flavor profile belongs to.
    createdAt String
    Date when the entity was created. The date is in ISO 8601 and UTC.
    description String
    A human-friendly description.
    externalRegionId String
    The id of the region for which this profile is defined.
    flavorMappings List<Property Map>
    A list of the flavor mappings defined for the corresponding cloud end-point region.
    flavorProfileId String
    links List<Property Map>
    HATEOAS of entity.
    name String
    A human-friendly name used as an identifier in APIs that support this option.
    orgId String
    The id of the organization this entity belongs to.
    owner String
    Email of the user that owns the entity.
    regionId String
    The id of the region for which this profile is defined.
    updatedAt String
    Date when the entity was last updated. The date is ISO 8601 and UTC.

    Supporting Types

    FlavorProfileFlavorMapping, FlavorProfileFlavorMappingArgs

    Name string
    The name of the flavor mapping.
    CpuCount double
    Number of CPU cores. Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    InstanceType string
    The value of the instance type in the corresponding cloud. Mandatory for public clouds. Only instance_type or cpu_count/memory must be specified.
    Memory double
    Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    Name string
    The name of the flavor mapping.
    CpuCount float64
    Number of CPU cores. Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    InstanceType string
    The value of the instance type in the corresponding cloud. Mandatory for public clouds. Only instance_type or cpu_count/memory must be specified.
    Memory float64
    Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    name String
    The name of the flavor mapping.
    cpuCount Double
    Number of CPU cores. Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    instanceType String
    The value of the instance type in the corresponding cloud. Mandatory for public clouds. Only instance_type or cpu_count/memory must be specified.
    memory Double
    Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    name string
    The name of the flavor mapping.
    cpuCount number
    Number of CPU cores. Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    instanceType string
    The value of the instance type in the corresponding cloud. Mandatory for public clouds. Only instance_type or cpu_count/memory must be specified.
    memory number
    Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    name str
    The name of the flavor mapping.
    cpu_count float
    Number of CPU cores. Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    instance_type str
    The value of the instance type in the corresponding cloud. Mandatory for public clouds. Only instance_type or cpu_count/memory must be specified.
    memory float
    Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    name String
    The name of the flavor mapping.
    cpuCount Number
    Number of CPU cores. Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    instanceType String
    The value of the instance type in the corresponding cloud. Mandatory for public clouds. Only instance_type or cpu_count/memory must be specified.
    memory Number
    Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only instance_type or cpu_count/memory must be specified.
    Href string
    Hrefs List<string>
    Rel string
    Href string
    Hrefs []string
    Rel string
    href String
    hrefs List<String>
    rel String
    href string
    hrefs string[]
    rel string
    href str
    hrefs Sequence[str]
    rel str
    href String
    hrefs List<String>
    rel String

    Package Details

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