vra.ImageProfile
Explore with Pulumi AI
Example Usage
S
This is an example of how to create an image profile resource.
Image profile:
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = new vra.ImageProfile("this", {
    description: "test image profile",
    regionId: data.vra_region["this"].id,
    imageMappings: [
        {
            name: "centos",
            imageId: data.vra_image.centos.id,
            constraints: [
                {
                    mandatory: true,
                    expression: "!env:Test",
                },
                {
                    mandatory: false,
                    expression: "foo:bar",
                },
            ],
        },
        {
            name: "photon",
            imageId: data.vra_image.photon.id,
            cloudConfig: "runcmd echo 'Hello'",
        },
    ],
});
import pulumi
import pulumi_vra as vra
this = vra.ImageProfile("this",
    description="test image profile",
    region_id=data["vra_region"]["this"]["id"],
    image_mappings=[
        {
            "name": "centos",
            "image_id": data["vra_image"]["centos"]["id"],
            "constraints": [
                {
                    "mandatory": True,
                    "expression": "!env:Test",
                },
                {
                    "mandatory": False,
                    "expression": "foo:bar",
                },
            ],
        },
        {
            "name": "photon",
            "image_id": data["vra_image"]["photon"]["id"],
            "cloud_config": "runcmd echo 'Hello'",
        },
    ])
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.NewImageProfile(ctx, "this", &vra.ImageProfileArgs{
			Description: pulumi.String("test image profile"),
			RegionId:    pulumi.Any(data.Vra_region.This.Id),
			ImageMappings: vra.ImageProfileImageMappingArray{
				&vra.ImageProfileImageMappingArgs{
					Name:    pulumi.String("centos"),
					ImageId: pulumi.Any(data.Vra_image.Centos.Id),
					Constraints: vra.ImageProfileImageMappingConstraintArray{
						&vra.ImageProfileImageMappingConstraintArgs{
							Mandatory:  pulumi.Bool(true),
							Expression: pulumi.String("!env:Test"),
						},
						&vra.ImageProfileImageMappingConstraintArgs{
							Mandatory:  pulumi.Bool(false),
							Expression: pulumi.String("foo:bar"),
						},
					},
				},
				&vra.ImageProfileImageMappingArgs{
					Name:        pulumi.String("photon"),
					ImageId:     pulumi.Any(data.Vra_image.Photon.Id),
					CloudConfig: pulumi.String("runcmd echo 'Hello'"),
				},
			},
		})
		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 @this = new Vra.ImageProfile("this", new()
    {
        Description = "test image profile",
        RegionId = data.Vra_region.This.Id,
        ImageMappings = new[]
        {
            new Vra.Inputs.ImageProfileImageMappingArgs
            {
                Name = "centos",
                ImageId = data.Vra_image.Centos.Id,
                Constraints = new[]
                {
                    new Vra.Inputs.ImageProfileImageMappingConstraintArgs
                    {
                        Mandatory = true,
                        Expression = "!env:Test",
                    },
                    new Vra.Inputs.ImageProfileImageMappingConstraintArgs
                    {
                        Mandatory = false,
                        Expression = "foo:bar",
                    },
                },
            },
            new Vra.Inputs.ImageProfileImageMappingArgs
            {
                Name = "photon",
                ImageId = data.Vra_image.Photon.Id,
                CloudConfig = "runcmd echo 'Hello'",
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.ImageProfile;
import com.pulumi.vra.ImageProfileArgs;
import com.pulumi.vra.inputs.ImageProfileImageMappingArgs;
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 this_ = new ImageProfile("this", ImageProfileArgs.builder()
            .description("test image profile")
            .regionId(data.vra_region().this().id())
            .imageMappings(            
                ImageProfileImageMappingArgs.builder()
                    .name("centos")
                    .imageId(data.vra_image().centos().id())
                    .constraints(                    
                        ImageProfileImageMappingConstraintArgs.builder()
                            .mandatory(true)
                            .expression("!env:Test")
                            .build(),
                        ImageProfileImageMappingConstraintArgs.builder()
                            .mandatory(false)
                            .expression("foo:bar")
                            .build())
                    .build(),
                ImageProfileImageMappingArgs.builder()
                    .name("photon")
                    .imageId(data.vra_image().photon().id())
                    .cloudConfig("runcmd echo 'Hello'")
                    .build())
            .build());
    }
}
resources:
  this:
    type: vra:ImageProfile
    properties:
      description: test image profile
      regionId: ${data.vra_region.this.id}
      imageMappings:
        - name: centos
          imageId: ${data.vra_image.centos.id}
          constraints:
            - mandatory: true
              expression: '!env:Test'
            - mandatory: false
              expression: foo:bar
        - name: photon
          imageId: ${data.vra_image.photon.id}
          cloudConfig: runcmd echo 'Hello'
An image profile resource supports the following arguments:
Create ImageProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ImageProfile(name: string, args: ImageProfileArgs, opts?: CustomResourceOptions);@overload
def ImageProfile(resource_name: str,
                 args: ImageProfileArgs,
                 opts: Optional[ResourceOptions] = None)
@overload
def ImageProfile(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 region_id: Optional[str] = None,
                 description: Optional[str] = None,
                 image_mappings: Optional[Sequence[ImageProfileImageMappingArgs]] = None,
                 image_profile_id: Optional[str] = None,
                 name: Optional[str] = None)func NewImageProfile(ctx *Context, name string, args ImageProfileArgs, opts ...ResourceOption) (*ImageProfile, error)public ImageProfile(string name, ImageProfileArgs args, CustomResourceOptions? opts = null)
public ImageProfile(String name, ImageProfileArgs args)
public ImageProfile(String name, ImageProfileArgs args, CustomResourceOptions options)
type: vra:ImageProfile
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 ImageProfileArgs
- 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 ImageProfileArgs
- 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 ImageProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ImageProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ImageProfileArgs
- 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 imageProfileResource = new Vra.ImageProfile("imageProfileResource", new()
{
    RegionId = "string",
    Description = "string",
    ImageMappings = new[]
    {
        new Vra.Inputs.ImageProfileImageMappingArgs
        {
            Name = "string",
            CloudConfig = "string",
            Constraints = new[]
            {
                new Vra.Inputs.ImageProfileImageMappingConstraintArgs
                {
                    Expression = "string",
                    Mandatory = false,
                },
            },
            Description = "string",
            ExternalId = "string",
            ExternalRegionId = "string",
            ImageId = "string",
            ImageName = "string",
            Organization = "string",
            OsFamily = "string",
            Owner = "string",
            Private = false,
        },
    },
    ImageProfileId = "string",
    Name = "string",
});
example, err := vra.NewImageProfile(ctx, "imageProfileResource", &vra.ImageProfileArgs{
	RegionId:    pulumi.String("string"),
	Description: pulumi.String("string"),
	ImageMappings: vra.ImageProfileImageMappingArray{
		&vra.ImageProfileImageMappingArgs{
			Name:        pulumi.String("string"),
			CloudConfig: pulumi.String("string"),
			Constraints: vra.ImageProfileImageMappingConstraintArray{
				&vra.ImageProfileImageMappingConstraintArgs{
					Expression: pulumi.String("string"),
					Mandatory:  pulumi.Bool(false),
				},
			},
			Description:      pulumi.String("string"),
			ExternalId:       pulumi.String("string"),
			ExternalRegionId: pulumi.String("string"),
			ImageId:          pulumi.String("string"),
			ImageName:        pulumi.String("string"),
			Organization:     pulumi.String("string"),
			OsFamily:         pulumi.String("string"),
			Owner:            pulumi.String("string"),
			Private:          pulumi.Bool(false),
		},
	},
	ImageProfileId: pulumi.String("string"),
	Name:           pulumi.String("string"),
})
var imageProfileResource = new ImageProfile("imageProfileResource", ImageProfileArgs.builder()
    .regionId("string")
    .description("string")
    .imageMappings(ImageProfileImageMappingArgs.builder()
        .name("string")
        .cloudConfig("string")
        .constraints(ImageProfileImageMappingConstraintArgs.builder()
            .expression("string")
            .mandatory(false)
            .build())
        .description("string")
        .externalId("string")
        .externalRegionId("string")
        .imageId("string")
        .imageName("string")
        .organization("string")
        .osFamily("string")
        .owner("string")
        .private_(false)
        .build())
    .imageProfileId("string")
    .name("string")
    .build());
image_profile_resource = vra.ImageProfile("imageProfileResource",
    region_id="string",
    description="string",
    image_mappings=[{
        "name": "string",
        "cloud_config": "string",
        "constraints": [{
            "expression": "string",
            "mandatory": False,
        }],
        "description": "string",
        "external_id": "string",
        "external_region_id": "string",
        "image_id": "string",
        "image_name": "string",
        "organization": "string",
        "os_family": "string",
        "owner": "string",
        "private": False,
    }],
    image_profile_id="string",
    name="string")
const imageProfileResource = new vra.ImageProfile("imageProfileResource", {
    regionId: "string",
    description: "string",
    imageMappings: [{
        name: "string",
        cloudConfig: "string",
        constraints: [{
            expression: "string",
            mandatory: false,
        }],
        description: "string",
        externalId: "string",
        externalRegionId: "string",
        imageId: "string",
        imageName: "string",
        organization: "string",
        osFamily: "string",
        owner: "string",
        "private": false,
    }],
    imageProfileId: "string",
    name: "string",
});
type: vra:ImageProfile
properties:
    description: string
    imageMappings:
        - cloudConfig: string
          constraints:
            - expression: string
              mandatory: false
          description: string
          externalId: string
          externalRegionId: string
          imageId: string
          imageName: string
          name: string
          organization: string
          osFamily: string
          owner: string
          private: false
    imageProfileId: string
    name: string
    regionId: string
ImageProfile 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 ImageProfile resource accepts the following input properties:
- RegionId string
- The id of the region for which this profile is defined as in vRealize Automation(vRA).
- Description string
- A human-friendly description.
- ImageMappings List<ImageProfile Image Mapping> 
- Image mapping defined for the corresponding region.
- ImageProfile stringId 
- 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 as in vRealize Automation(vRA).
- Description string
- A human-friendly description.
- ImageMappings []ImageProfile Image Mapping Args 
- Image mapping defined for the corresponding region.
- ImageProfile stringId 
- 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 as in vRealize Automation(vRA).
- description String
- A human-friendly description.
- imageMappings List<ImageProfile Image Mapping> 
- Image mapping defined for the corresponding region.
- imageProfile StringId 
- 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 as in vRealize Automation(vRA).
- description string
- A human-friendly description.
- imageMappings ImageProfile Image Mapping[] 
- Image mapping defined for the corresponding region.
- imageProfile 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 as in vRealize Automation(vRA).
- description str
- A human-friendly description.
- image_mappings Sequence[ImageProfile Image Mapping Args] 
- Image mapping defined for the corresponding region.
- image_profile_ strid 
- 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 as in vRealize Automation(vRA).
- description String
- A human-friendly description.
- imageMappings List<Property Map>
- Image mapping defined for the corresponding region.
- imageProfile 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 ImageProfile resource produces the following output properties:
- CreatedAt string
- Date when the entity was created. The date is in ISO 6801 and UTC.
- ExternalRegion stringId 
- The external regionId of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- CreatedAt string
- Date when the entity was created. The date is in ISO 6801 and UTC.
- ExternalRegion stringId 
- The external regionId of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- createdAt String
- Date when the entity was created. The date is in ISO 6801 and UTC.
- externalRegion StringId 
- The external regionId of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- 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.
- createdAt string
- Date when the entity was created. The date is in ISO 6801 and UTC.
- externalRegion stringId 
- The external regionId of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- 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.
- created_at str
- Date when the entity was created. The date is in ISO 6801 and UTC.
- external_region_ strid 
- The external regionId of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- 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.
- createdAt String
- Date when the entity was created. The date is in ISO 6801 and UTC.
- externalRegion StringId 
- The external regionId of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- 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 ImageProfile Resource
Get an existing ImageProfile 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?: ImageProfileState, opts?: CustomResourceOptions): ImageProfile@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        created_at: Optional[str] = None,
        description: Optional[str] = None,
        external_region_id: Optional[str] = None,
        image_mappings: Optional[Sequence[ImageProfileImageMappingArgs]] = None,
        image_profile_id: Optional[str] = None,
        name: Optional[str] = None,
        owner: Optional[str] = None,
        region_id: Optional[str] = None,
        updated_at: Optional[str] = None) -> ImageProfilefunc GetImageProfile(ctx *Context, name string, id IDInput, state *ImageProfileState, opts ...ResourceOption) (*ImageProfile, error)public static ImageProfile Get(string name, Input<string> id, ImageProfileState? state, CustomResourceOptions? opts = null)public static ImageProfile get(String name, Output<String> id, ImageProfileState state, CustomResourceOptions options)resources:  _:    type: vra:ImageProfile    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.
- CreatedAt string
- Date when the entity was created. The date is in ISO 6801 and UTC.
- Description string
- A human-friendly description.
- ExternalRegion stringId 
- The external regionId of the resource.
- ImageMappings List<ImageProfile Image Mapping> 
- Image mapping defined for the corresponding region.
- ImageProfile stringId 
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Owner string
- Email of the user that owns the entity.
- RegionId string
- The id of the region for which this profile is defined as in vRealize Automation(vRA).
- UpdatedAt string
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- CreatedAt string
- Date when the entity was created. The date is in ISO 6801 and UTC.
- Description string
- A human-friendly description.
- ExternalRegion stringId 
- The external regionId of the resource.
- ImageMappings []ImageProfile Image Mapping Args 
- Image mapping defined for the corresponding region.
- ImageProfile stringId 
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Owner string
- Email of the user that owns the entity.
- RegionId string
- The id of the region for which this profile is defined as in vRealize Automation(vRA).
- UpdatedAt string
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- createdAt String
- Date when the entity was created. The date is in ISO 6801 and UTC.
- description String
- A human-friendly description.
- externalRegion StringId 
- The external regionId of the resource.
- imageMappings List<ImageProfile Image Mapping> 
- Image mapping defined for the corresponding region.
- imageProfile StringId 
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- owner String
- Email of the user that owns the entity.
- regionId String
- The id of the region for which this profile is defined as in vRealize Automation(vRA).
- updatedAt String
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- createdAt string
- Date when the entity was created. The date is in ISO 6801 and UTC.
- description string
- A human-friendly description.
- externalRegion stringId 
- The external regionId of the resource.
- imageMappings ImageProfile Image Mapping[] 
- Image mapping defined for the corresponding region.
- imageProfile stringId 
- name string
- A human-friendly name used as an identifier in APIs that support this option.
- owner string
- Email of the user that owns the entity.
- regionId string
- The id of the region for which this profile is defined as in vRealize Automation(vRA).
- updatedAt string
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- created_at str
- Date when the entity was created. The date is in ISO 6801 and UTC.
- description str
- A human-friendly description.
- external_region_ strid 
- The external regionId of the resource.
- image_mappings Sequence[ImageProfile Image Mapping Args] 
- Image mapping defined for the corresponding region.
- image_profile_ strid 
- name str
- A human-friendly name used as an identifier in APIs that support this option.
- owner str
- Email of the user that owns the entity.
- region_id str
- The id of the region for which this profile is defined as in vRealize Automation(vRA).
- updated_at str
- Date when the entity was last updated. The date is ISO 8601 and UTC.
- createdAt String
- Date when the entity was created. The date is in ISO 6801 and UTC.
- description String
- A human-friendly description.
- externalRegion StringId 
- The external regionId of the resource.
- imageMappings List<Property Map>
- Image mapping defined for the corresponding region.
- imageProfile StringId 
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- owner String
- Email of the user that owns the entity.
- regionId String
- The id of the region for which this profile is defined as in vRealize Automation(vRA).
- updatedAt String
- Date when the entity was last updated. The date is ISO 8601 and UTC.
Supporting Types
ImageProfileImageMapping, ImageProfileImageMappingArgs        
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- CloudConfig string
- Cloud config for this image. This cloud config will be merged during provisioning with other cloud configurations such as the bootConfig provided in MachineSpecification or vRA cloud templates.
- Constraints
List<ImageProfile Image Mapping Constraint> 
- Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets.
- Description string
- A human-friendly description.
- ExternalId string
- External entity id on the cloud provider side.
- ExternalRegion stringId 
- The external regionId of the resource.
- ImageId string
- The id of this resource instance.
- ImageName string
- A human-friendly image name as seen on the cloud provider side.
- Organization string
- A human-friendly description.
- OsFamily string
- Operating system family of the image.
- Owner string
- Email of the user that owns the entity.
- Private bool
- Indicates whether this fabric image is private. For vSphere, private images are considered to be templates and snapshots and public are Content Library items.
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- CloudConfig string
- Cloud config for this image. This cloud config will be merged during provisioning with other cloud configurations such as the bootConfig provided in MachineSpecification or vRA cloud templates.
- Constraints
[]ImageProfile Image Mapping Constraint 
- Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets.
- Description string
- A human-friendly description.
- ExternalId string
- External entity id on the cloud provider side.
- ExternalRegion stringId 
- The external regionId of the resource.
- ImageId string
- The id of this resource instance.
- ImageName string
- A human-friendly image name as seen on the cloud provider side.
- Organization string
- A human-friendly description.
- OsFamily string
- Operating system family of the image.
- Owner string
- Email of the user that owns the entity.
- Private bool
- Indicates whether this fabric image is private. For vSphere, private images are considered to be templates and snapshots and public are Content Library items.
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- cloudConfig String
- Cloud config for this image. This cloud config will be merged during provisioning with other cloud configurations such as the bootConfig provided in MachineSpecification or vRA cloud templates.
- constraints
List<ImageProfile Image Mapping Constraint> 
- Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets.
- description String
- A human-friendly description.
- externalId String
- External entity id on the cloud provider side.
- externalRegion StringId 
- The external regionId of the resource.
- imageId String
- The id of this resource instance.
- imageName String
- A human-friendly image name as seen on the cloud provider side.
- organization String
- A human-friendly description.
- osFamily String
- Operating system family of the image.
- owner String
- Email of the user that owns the entity.
- private_ Boolean
- Indicates whether this fabric image is private. For vSphere, private images are considered to be templates and snapshots and public are Content Library items.
- name string
- A human-friendly name used as an identifier in APIs that support this option.
- cloudConfig string
- Cloud config for this image. This cloud config will be merged during provisioning with other cloud configurations such as the bootConfig provided in MachineSpecification or vRA cloud templates.
- constraints
ImageProfile Image Mapping Constraint[] 
- Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets.
- description string
- A human-friendly description.
- externalId string
- External entity id on the cloud provider side.
- externalRegion stringId 
- The external regionId of the resource.
- imageId string
- The id of this resource instance.
- imageName string
- A human-friendly image name as seen on the cloud provider side.
- organization string
- A human-friendly description.
- osFamily string
- Operating system family of the image.
- owner string
- Email of the user that owns the entity.
- private boolean
- Indicates whether this fabric image is private. For vSphere, private images are considered to be templates and snapshots and public are Content Library items.
- name str
- A human-friendly name used as an identifier in APIs that support this option.
- cloud_config str
- Cloud config for this image. This cloud config will be merged during provisioning with other cloud configurations such as the bootConfig provided in MachineSpecification or vRA cloud templates.
- constraints
Sequence[ImageProfile Image Mapping Constraint] 
- Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets.
- description str
- A human-friendly description.
- external_id str
- External entity id on the cloud provider side.
- external_region_ strid 
- The external regionId of the resource.
- image_id str
- The id of this resource instance.
- image_name str
- A human-friendly image name as seen on the cloud provider side.
- organization str
- A human-friendly description.
- os_family str
- Operating system family of the image.
- owner str
- Email of the user that owns the entity.
- private bool
- Indicates whether this fabric image is private. For vSphere, private images are considered to be templates and snapshots and public are Content Library items.
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- cloudConfig String
- Cloud config for this image. This cloud config will be merged during provisioning with other cloud configurations such as the bootConfig provided in MachineSpecification or vRA cloud templates.
- constraints List<Property Map>
- Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets.
- description String
- A human-friendly description.
- externalId String
- External entity id on the cloud provider side.
- externalRegion StringId 
- The external regionId of the resource.
- imageId String
- The id of this resource instance.
- imageName String
- A human-friendly image name as seen on the cloud provider side.
- organization String
- A human-friendly description.
- osFamily String
- Operating system family of the image.
- owner String
- Email of the user that owns the entity.
- private Boolean
- Indicates whether this fabric image is private. For vSphere, private images are considered to be templates and snapshots and public are Content Library items.
ImageProfileImageMappingConstraint, ImageProfileImageMappingConstraintArgs          
- Expression string
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- Mandatory bool
- Indicates whether this constraint should be strictly enforced or not.
- Expression string
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- Mandatory bool
- Indicates whether this constraint should be strictly enforced or not.
- expression String
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- mandatory Boolean
- Indicates whether this constraint should be strictly enforced or not.
- expression string
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- mandatory boolean
- Indicates whether this constraint should be strictly enforced or not.
- expression str
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- mandatory bool
- Indicates whether this constraint should be strictly enforced or not.
- expression String
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- mandatory Boolean
- Indicates whether this constraint should be strictly enforced or not.
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the vraTerraform Provider.