vra.FlavorProfile
Explore with Pulumi AI
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:
- Region
Id string - The id of the region for which this profile is defined.
- Description string
- A human-friendly description.
- Flavor
Mappings List<FlavorProfile Flavor Mapping> - A list of the flavor mappings defined for the corresponding cloud end-point region.
- Flavor
Profile stringId - Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Region
Id string - The id of the region for which this profile is defined.
- Description string
- A human-friendly description.
- Flavor
Mappings []FlavorProfile Flavor Mapping Args - A list of the flavor mappings defined for the corresponding cloud end-point region.
- Flavor
Profile stringId - Name string
- A human-friendly name used as an identifier in APIs that support this option.
- region
Id String - The id of the region for which this profile is defined.
- description String
- A human-friendly description.
- flavor
Mappings List<FlavorProfile Flavor Mapping> - A list of the flavor mappings defined for the corresponding cloud end-point region.
- flavor
Profile StringId - name String
- A human-friendly name used as an identifier in APIs that support this option.
- region
Id string - The id of the region for which this profile is defined.
- description string
- A human-friendly description.
- flavor
Mappings FlavorProfile Flavor Mapping[] - A list of the flavor mappings defined for the corresponding cloud end-point region.
- flavor
Profile stringId - 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[FlavorProfile Flavor Mapping Args] - A list of the flavor mappings defined for the corresponding cloud end-point region.
- flavor_
profile_ strid - name str
- A human-friendly name used as an identifier in APIs that support this option.
- region
Id String - The id of the region for which this profile is defined.
- description String
- A human-friendly description.
- flavor
Mappings List<Property Map> - A list of the flavor mappings defined for the corresponding cloud end-point region.
- flavor
Profile StringId - 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:
- Cloud
Account stringId - Id of the cloud account this flavor profile belongs to.
- Created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- External
Region stringId - The id of the region for which this profile is defined.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
List<Flavor
Profile Link> - HATEOAS of entity.
- Org
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- Cloud
Account stringId - Id of the cloud account this flavor profile belongs to.
- Created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- External
Region stringId - The id of the region for which this profile is defined.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
[]Flavor
Profile Link - HATEOAS of entity.
- Org
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cloud
Account StringId - Id of the cloud account this flavor profile belongs to.
- created
At String - Date when the entity was created. The date is in ISO 8601 and UTC.
- external
Region StringId - The id of the region for which this profile is defined.
- id String
- The provider-assigned unique ID for this managed resource.
- links
List<Flavor
Profile Link> - HATEOAS of entity.
- org
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cloud
Account stringId - Id of the cloud account this flavor profile belongs to.
- created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- external
Region stringId - The id of the region for which this profile is defined.
- id string
- The provider-assigned unique ID for this managed resource.
- links
Flavor
Profile Link[] - HATEOAS of entity.
- org
Id string - The id of the organization this entity belongs to.
- owner string
- Email of the user that owns the entity.
- updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cloud_
account_ strid - 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_ strid - The id of the region for which this profile is defined.
- id str
- The provider-assigned unique ID for this managed resource.
- links
Sequence[Flavor
Profile Link] - 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.
- cloud
Account StringId - Id of the cloud account this flavor profile belongs to.
- created
At String - Date when the entity was created. The date is in ISO 8601 and UTC.
- external
Region StringId - 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.
- org
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- updated
At 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.
- Cloud
Account stringId - Id of the cloud account this flavor profile belongs to.
- Created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- Description string
- A human-friendly description.
- External
Region stringId - The id of the region for which this profile is defined.
- Flavor
Mappings List<FlavorProfile Flavor Mapping> - A list of the flavor mappings defined for the corresponding cloud end-point region.
- Flavor
Profile stringId - Links
List<Flavor
Profile Link> - HATEOAS of entity.
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Org
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Region
Id string - The id of the region for which this profile is defined.
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- Cloud
Account stringId - Id of the cloud account this flavor profile belongs to.
- Created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- Description string
- A human-friendly description.
- External
Region stringId - The id of the region for which this profile is defined.
- Flavor
Mappings []FlavorProfile Flavor Mapping Args - A list of the flavor mappings defined for the corresponding cloud end-point region.
- Flavor
Profile stringId - Links
[]Flavor
Profile Link Args - HATEOAS of entity.
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Org
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Region
Id string - The id of the region for which this profile is defined.
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cloud
Account StringId - Id of the cloud account this flavor profile belongs to.
- created
At String - Date when the entity was created. The date is in ISO 8601 and UTC.
- description String
- A human-friendly description.
- external
Region StringId - The id of the region for which this profile is defined.
- flavor
Mappings List<FlavorProfile Flavor Mapping> - A list of the flavor mappings defined for the corresponding cloud end-point region.
- flavor
Profile StringId - links
List<Flavor
Profile Link> - HATEOAS of entity.
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- org
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- region
Id String - The id of the region for which this profile is defined.
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cloud
Account stringId - Id of the cloud account this flavor profile belongs to.
- created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- description string
- A human-friendly description.
- external
Region stringId - The id of the region for which this profile is defined.
- flavor
Mappings FlavorProfile Flavor Mapping[] - A list of the flavor mappings defined for the corresponding cloud end-point region.
- flavor
Profile stringId - links
Flavor
Profile Link[] - HATEOAS of entity.
- name string
- A human-friendly name used as an identifier in APIs that support this option.
- org
Id string - The id of the organization this entity belongs to.
- owner string
- Email of the user that owns the entity.
- region
Id string - The id of the region for which this profile is defined.
- updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cloud_
account_ strid - 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_ strid - The id of the region for which this profile is defined.
- flavor_
mappings Sequence[FlavorProfile Flavor Mapping Args] - A list of the flavor mappings defined for the corresponding cloud end-point region.
- flavor_
profile_ strid - links
Sequence[Flavor
Profile Link Args] - 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.
- cloud
Account StringId - Id of the cloud account this flavor profile belongs to.
- created
At String - Date when the entity was created. The date is in ISO 8601 and UTC.
- description String
- A human-friendly description.
- external
Region StringId - The id of the region for which this profile is defined.
- flavor
Mappings List<Property Map> - A list of the flavor mappings defined for the corresponding cloud end-point region.
- flavor
Profile StringId - links List<Property Map>
- HATEOAS of entity.
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- org
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- region
Id String - The id of the region for which this profile is defined.
- updated
At 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.
- Cpu
Count double - Number of CPU cores. Mandatory for private clouds such as vSphere. Only
instance_type
orcpu_count
/memory
must be specified. - Instance
Type string - The value of the instance type in the corresponding cloud. Mandatory for public clouds. Only
instance_type
orcpu_count
/memory
must be specified. - Memory double
- Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only
instance_type
orcpu_count
/memory
must be specified.
- Name string
- The name of the flavor mapping.
- Cpu
Count float64 - Number of CPU cores. Mandatory for private clouds such as vSphere. Only
instance_type
orcpu_count
/memory
must be specified. - Instance
Type string - The value of the instance type in the corresponding cloud. Mandatory for public clouds. Only
instance_type
orcpu_count
/memory
must be specified. - Memory float64
- Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only
instance_type
orcpu_count
/memory
must be specified.
- name String
- The name of the flavor mapping.
- cpu
Count Double - Number of CPU cores. Mandatory for private clouds such as vSphere. Only
instance_type
orcpu_count
/memory
must be specified. - instance
Type String - The value of the instance type in the corresponding cloud. Mandatory for public clouds. Only
instance_type
orcpu_count
/memory
must be specified. - memory Double
- Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only
instance_type
orcpu_count
/memory
must be specified.
- name string
- The name of the flavor mapping.
- cpu
Count number - Number of CPU cores. Mandatory for private clouds such as vSphere. Only
instance_type
orcpu_count
/memory
must be specified. - instance
Type string - The value of the instance type in the corresponding cloud. Mandatory for public clouds. Only
instance_type
orcpu_count
/memory
must be specified. - memory number
- Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only
instance_type
orcpu_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
orcpu_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
orcpu_count
/memory
must be specified. - memory float
- Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only
instance_type
orcpu_count
/memory
must be specified.
- name String
- The name of the flavor mapping.
- cpu
Count Number - Number of CPU cores. Mandatory for private clouds such as vSphere. Only
instance_type
orcpu_count
/memory
must be specified. - instance
Type String - The value of the instance type in the corresponding cloud. Mandatory for public clouds. Only
instance_type
orcpu_count
/memory
must be specified. - memory Number
- Total amount of memory (in megabytes). Mandatory for private clouds such as vSphere. Only
instance_type
orcpu_count
/memory
must be specified.
FlavorProfileLink, FlavorProfileLinkArgs
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the
vra
Terraform Provider.