1. Packages
  2. Opennebula Provider
  3. API Docs
  4. MarketplaceAppliance
opennebula 1.4.1 published on Monday, Apr 14, 2025 by opennebula

opennebula.MarketplaceAppliance

Explore with Pulumi AI

opennebula logo
opennebula 1.4.1 published on Monday, Apr 14, 2025 by opennebula

    Create MarketplaceAppliance Resource

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

    Constructor syntax

    new MarketplaceAppliance(name: string, args: MarketplaceApplianceArgs, opts?: CustomResourceOptions);
    @overload
    def MarketplaceAppliance(resource_name: str,
                             args: MarketplaceApplianceArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def MarketplaceAppliance(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             market_id: Optional[float] = None,
                             type: Optional[str] = None,
                             origin_id: Optional[float] = None,
                             permissions: Optional[str] = None,
                             lock: Optional[str] = None,
                             disabled: Optional[bool] = None,
                             marketplace_appliance_id: Optional[str] = None,
                             name: Optional[str] = None,
                             apptemplate64: Optional[str] = None,
                             group: Optional[str] = None,
                             publisher: Optional[str] = None,
                             tags: Optional[Mapping[str, str]] = None,
                             template_sections: Optional[Sequence[MarketplaceApplianceTemplateSectionArgs]] = None,
                             timeouts: Optional[MarketplaceApplianceTimeoutsArgs] = None,
                             description: Optional[str] = None,
                             version: Optional[str] = None,
                             vmtemplate64: Optional[str] = None)
    func NewMarketplaceAppliance(ctx *Context, name string, args MarketplaceApplianceArgs, opts ...ResourceOption) (*MarketplaceAppliance, error)
    public MarketplaceAppliance(string name, MarketplaceApplianceArgs args, CustomResourceOptions? opts = null)
    public MarketplaceAppliance(String name, MarketplaceApplianceArgs args)
    public MarketplaceAppliance(String name, MarketplaceApplianceArgs args, CustomResourceOptions options)
    
    type: opennebula:MarketplaceAppliance
    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 MarketplaceApplianceArgs
    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 MarketplaceApplianceArgs
    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 MarketplaceApplianceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MarketplaceApplianceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MarketplaceApplianceArgs
    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 marketplaceApplianceResource = new Opennebula.MarketplaceAppliance("marketplaceApplianceResource", new()
    {
        MarketId = 0,
        Type = "string",
        OriginId = 0,
        Permissions = "string",
        Lock = "string",
        Disabled = false,
        MarketplaceApplianceId = "string",
        Name = "string",
        Apptemplate64 = "string",
        Group = "string",
        Publisher = "string",
        Tags = 
        {
            { "string", "string" },
        },
        TemplateSections = new[]
        {
            new Opennebula.Inputs.MarketplaceApplianceTemplateSectionArgs
            {
                Name = "string",
                Elements = 
                {
                    { "string", "string" },
                },
            },
        },
        Timeouts = new Opennebula.Inputs.MarketplaceApplianceTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        Description = "string",
        Version = "string",
        Vmtemplate64 = "string",
    });
    
    example, err := opennebula.NewMarketplaceAppliance(ctx, "marketplaceApplianceResource", &opennebula.MarketplaceApplianceArgs{
    	MarketId:               pulumi.Float64(0),
    	Type:                   pulumi.String("string"),
    	OriginId:               pulumi.Float64(0),
    	Permissions:            pulumi.String("string"),
    	Lock:                   pulumi.String("string"),
    	Disabled:               pulumi.Bool(false),
    	MarketplaceApplianceId: pulumi.String("string"),
    	Name:                   pulumi.String("string"),
    	Apptemplate64:          pulumi.String("string"),
    	Group:                  pulumi.String("string"),
    	Publisher:              pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	TemplateSections: opennebula.MarketplaceApplianceTemplateSectionArray{
    		&opennebula.MarketplaceApplianceTemplateSectionArgs{
    			Name: pulumi.String("string"),
    			Elements: pulumi.StringMap{
    				"string": pulumi.String("string"),
    			},
    		},
    	},
    	Timeouts: &opennebula.MarketplaceApplianceTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	Description:  pulumi.String("string"),
    	Version:      pulumi.String("string"),
    	Vmtemplate64: pulumi.String("string"),
    })
    
    var marketplaceApplianceResource = new MarketplaceAppliance("marketplaceApplianceResource", MarketplaceApplianceArgs.builder()
        .marketId(0)
        .type("string")
        .originId(0)
        .permissions("string")
        .lock("string")
        .disabled(false)
        .marketplaceApplianceId("string")
        .name("string")
        .apptemplate64("string")
        .group("string")
        .publisher("string")
        .tags(Map.of("string", "string"))
        .templateSections(MarketplaceApplianceTemplateSectionArgs.builder()
            .name("string")
            .elements(Map.of("string", "string"))
            .build())
        .timeouts(MarketplaceApplianceTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .description("string")
        .version("string")
        .vmtemplate64("string")
        .build());
    
    marketplace_appliance_resource = opennebula.MarketplaceAppliance("marketplaceApplianceResource",
        market_id=0,
        type="string",
        origin_id=0,
        permissions="string",
        lock="string",
        disabled=False,
        marketplace_appliance_id="string",
        name="string",
        apptemplate64="string",
        group="string",
        publisher="string",
        tags={
            "string": "string",
        },
        template_sections=[{
            "name": "string",
            "elements": {
                "string": "string",
            },
        }],
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        description="string",
        version="string",
        vmtemplate64="string")
    
    const marketplaceApplianceResource = new opennebula.MarketplaceAppliance("marketplaceApplianceResource", {
        marketId: 0,
        type: "string",
        originId: 0,
        permissions: "string",
        lock: "string",
        disabled: false,
        marketplaceApplianceId: "string",
        name: "string",
        apptemplate64: "string",
        group: "string",
        publisher: "string",
        tags: {
            string: "string",
        },
        templateSections: [{
            name: "string",
            elements: {
                string: "string",
            },
        }],
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        description: "string",
        version: "string",
        vmtemplate64: "string",
    });
    
    type: opennebula:MarketplaceAppliance
    properties:
        apptemplate64: string
        description: string
        disabled: false
        group: string
        lock: string
        marketId: 0
        marketplaceApplianceId: string
        name: string
        originId: 0
        permissions: string
        publisher: string
        tags:
            string: string
        templateSections:
            - elements:
                string: string
              name: string
        timeouts:
            create: string
            delete: string
            update: string
        type: string
        version: string
        vmtemplate64: string
    

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

    MarketId double
    The ID of the market to host the appliance
    Type string
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    Apptemplate64 string
    Associated template that will be added to the registered object
    Description string
    Text description of the appliance
    Disabled bool
    Allow to enable or disable the appliance
    Group string
    Name of the group owning the appliance
    Lock string
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    MarketplaceApplianceId string
    Name string
    Name of the appliance
    OriginId double
    The ID of the source image
    Permissions string
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    Publisher string
    Publisher of the appliance
    Tags Dictionary<string, string>
    Add custom tags to the resource
    TemplateSections List<MarketplaceApplianceTemplateSection>
    Add custom section to the resource
    Timeouts MarketplaceApplianceTimeouts
    Version string
    A string indicating the appliance version
    Vmtemplate64 string
    Creates this template pointing to the base image
    MarketId float64
    The ID of the market to host the appliance
    Type string
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    Apptemplate64 string
    Associated template that will be added to the registered object
    Description string
    Text description of the appliance
    Disabled bool
    Allow to enable or disable the appliance
    Group string
    Name of the group owning the appliance
    Lock string
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    MarketplaceApplianceId string
    Name string
    Name of the appliance
    OriginId float64
    The ID of the source image
    Permissions string
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    Publisher string
    Publisher of the appliance
    Tags map[string]string
    Add custom tags to the resource
    TemplateSections []MarketplaceApplianceTemplateSectionArgs
    Add custom section to the resource
    Timeouts MarketplaceApplianceTimeoutsArgs
    Version string
    A string indicating the appliance version
    Vmtemplate64 string
    Creates this template pointing to the base image
    marketId Double
    The ID of the market to host the appliance
    type String
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    apptemplate64 String
    Associated template that will be added to the registered object
    description String
    Text description of the appliance
    disabled Boolean
    Allow to enable or disable the appliance
    group String
    Name of the group owning the appliance
    lock String
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    marketplaceApplianceId String
    name String
    Name of the appliance
    originId Double
    The ID of the source image
    permissions String
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    publisher String
    Publisher of the appliance
    tags Map<String,String>
    Add custom tags to the resource
    templateSections List<MarketplaceApplianceTemplateSection>
    Add custom section to the resource
    timeouts MarketplaceApplianceTimeouts
    version String
    A string indicating the appliance version
    vmtemplate64 String
    Creates this template pointing to the base image
    marketId number
    The ID of the market to host the appliance
    type string
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    apptemplate64 string
    Associated template that will be added to the registered object
    description string
    Text description of the appliance
    disabled boolean
    Allow to enable or disable the appliance
    group string
    Name of the group owning the appliance
    lock string
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    marketplaceApplianceId string
    name string
    Name of the appliance
    originId number
    The ID of the source image
    permissions string
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    publisher string
    Publisher of the appliance
    tags {[key: string]: string}
    Add custom tags to the resource
    templateSections MarketplaceApplianceTemplateSection[]
    Add custom section to the resource
    timeouts MarketplaceApplianceTimeouts
    version string
    A string indicating the appliance version
    vmtemplate64 string
    Creates this template pointing to the base image
    market_id float
    The ID of the market to host the appliance
    type str
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    apptemplate64 str
    Associated template that will be added to the registered object
    description str
    Text description of the appliance
    disabled bool
    Allow to enable or disable the appliance
    group str
    Name of the group owning the appliance
    lock str
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    marketplace_appliance_id str
    name str
    Name of the appliance
    origin_id float
    The ID of the source image
    permissions str
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    publisher str
    Publisher of the appliance
    tags Mapping[str, str]
    Add custom tags to the resource
    template_sections Sequence[MarketplaceApplianceTemplateSectionArgs]
    Add custom section to the resource
    timeouts MarketplaceApplianceTimeoutsArgs
    version str
    A string indicating the appliance version
    vmtemplate64 str
    Creates this template pointing to the base image
    marketId Number
    The ID of the market to host the appliance
    type String
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    apptemplate64 String
    Associated template that will be added to the registered object
    description String
    Text description of the appliance
    disabled Boolean
    Allow to enable or disable the appliance
    group String
    Name of the group owning the appliance
    lock String
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    marketplaceApplianceId String
    name String
    Name of the appliance
    originId Number
    The ID of the source image
    permissions String
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    publisher String
    Publisher of the appliance
    tags Map<String>
    Add custom tags to the resource
    templateSections List<Property Map>
    Add custom section to the resource
    timeouts Property Map
    version String
    A string indicating the appliance version
    vmtemplate64 String
    Creates this template pointing to the base image

    Outputs

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

    DefaultTags Dictionary<string, string>
    Default tags defined in the provider configuration
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll Dictionary<string, string>
    Result of the applied default_tags and resource tags
    DefaultTags map[string]string
    Default tags defined in the provider configuration
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll map[string]string
    Result of the applied default_tags and resource tags
    defaultTags Map<String,String>
    Default tags defined in the provider configuration
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String,String>
    Result of the applied default_tags and resource tags
    defaultTags {[key: string]: string}
    Default tags defined in the provider configuration
    id string
    The provider-assigned unique ID for this managed resource.
    tagsAll {[key: string]: string}
    Result of the applied default_tags and resource tags
    default_tags Mapping[str, str]
    Default tags defined in the provider configuration
    id str
    The provider-assigned unique ID for this managed resource.
    tags_all Mapping[str, str]
    Result of the applied default_tags and resource tags
    defaultTags Map<String>
    Default tags defined in the provider configuration
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String>
    Result of the applied default_tags and resource tags

    Look up Existing MarketplaceAppliance Resource

    Get an existing MarketplaceAppliance 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?: MarketplaceApplianceState, opts?: CustomResourceOptions): MarketplaceAppliance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            apptemplate64: Optional[str] = None,
            default_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            disabled: Optional[bool] = None,
            group: Optional[str] = None,
            lock: Optional[str] = None,
            market_id: Optional[float] = None,
            marketplace_appliance_id: Optional[str] = None,
            name: Optional[str] = None,
            origin_id: Optional[float] = None,
            permissions: Optional[str] = None,
            publisher: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            template_sections: Optional[Sequence[MarketplaceApplianceTemplateSectionArgs]] = None,
            timeouts: Optional[MarketplaceApplianceTimeoutsArgs] = None,
            type: Optional[str] = None,
            version: Optional[str] = None,
            vmtemplate64: Optional[str] = None) -> MarketplaceAppliance
    func GetMarketplaceAppliance(ctx *Context, name string, id IDInput, state *MarketplaceApplianceState, opts ...ResourceOption) (*MarketplaceAppliance, error)
    public static MarketplaceAppliance Get(string name, Input<string> id, MarketplaceApplianceState? state, CustomResourceOptions? opts = null)
    public static MarketplaceAppliance get(String name, Output<String> id, MarketplaceApplianceState state, CustomResourceOptions options)
    resources:  _:    type: opennebula:MarketplaceAppliance    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:
    Apptemplate64 string
    Associated template that will be added to the registered object
    DefaultTags Dictionary<string, string>
    Default tags defined in the provider configuration
    Description string
    Text description of the appliance
    Disabled bool
    Allow to enable or disable the appliance
    Group string
    Name of the group owning the appliance
    Lock string
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    MarketId double
    The ID of the market to host the appliance
    MarketplaceApplianceId string
    Name string
    Name of the appliance
    OriginId double
    The ID of the source image
    Permissions string
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    Publisher string
    Publisher of the appliance
    Tags Dictionary<string, string>
    Add custom tags to the resource
    TagsAll Dictionary<string, string>
    Result of the applied default_tags and resource tags
    TemplateSections List<MarketplaceApplianceTemplateSection>
    Add custom section to the resource
    Timeouts MarketplaceApplianceTimeouts
    Type string
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    Version string
    A string indicating the appliance version
    Vmtemplate64 string
    Creates this template pointing to the base image
    Apptemplate64 string
    Associated template that will be added to the registered object
    DefaultTags map[string]string
    Default tags defined in the provider configuration
    Description string
    Text description of the appliance
    Disabled bool
    Allow to enable or disable the appliance
    Group string
    Name of the group owning the appliance
    Lock string
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    MarketId float64
    The ID of the market to host the appliance
    MarketplaceApplianceId string
    Name string
    Name of the appliance
    OriginId float64
    The ID of the source image
    Permissions string
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    Publisher string
    Publisher of the appliance
    Tags map[string]string
    Add custom tags to the resource
    TagsAll map[string]string
    Result of the applied default_tags and resource tags
    TemplateSections []MarketplaceApplianceTemplateSectionArgs
    Add custom section to the resource
    Timeouts MarketplaceApplianceTimeoutsArgs
    Type string
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    Version string
    A string indicating the appliance version
    Vmtemplate64 string
    Creates this template pointing to the base image
    apptemplate64 String
    Associated template that will be added to the registered object
    defaultTags Map<String,String>
    Default tags defined in the provider configuration
    description String
    Text description of the appliance
    disabled Boolean
    Allow to enable or disable the appliance
    group String
    Name of the group owning the appliance
    lock String
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    marketId Double
    The ID of the market to host the appliance
    marketplaceApplianceId String
    name String
    Name of the appliance
    originId Double
    The ID of the source image
    permissions String
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    publisher String
    Publisher of the appliance
    tags Map<String,String>
    Add custom tags to the resource
    tagsAll Map<String,String>
    Result of the applied default_tags and resource tags
    templateSections List<MarketplaceApplianceTemplateSection>
    Add custom section to the resource
    timeouts MarketplaceApplianceTimeouts
    type String
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    version String
    A string indicating the appliance version
    vmtemplate64 String
    Creates this template pointing to the base image
    apptemplate64 string
    Associated template that will be added to the registered object
    defaultTags {[key: string]: string}
    Default tags defined in the provider configuration
    description string
    Text description of the appliance
    disabled boolean
    Allow to enable or disable the appliance
    group string
    Name of the group owning the appliance
    lock string
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    marketId number
    The ID of the market to host the appliance
    marketplaceApplianceId string
    name string
    Name of the appliance
    originId number
    The ID of the source image
    permissions string
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    publisher string
    Publisher of the appliance
    tags {[key: string]: string}
    Add custom tags to the resource
    tagsAll {[key: string]: string}
    Result of the applied default_tags and resource tags
    templateSections MarketplaceApplianceTemplateSection[]
    Add custom section to the resource
    timeouts MarketplaceApplianceTimeouts
    type string
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    version string
    A string indicating the appliance version
    vmtemplate64 string
    Creates this template pointing to the base image
    apptemplate64 str
    Associated template that will be added to the registered object
    default_tags Mapping[str, str]
    Default tags defined in the provider configuration
    description str
    Text description of the appliance
    disabled bool
    Allow to enable or disable the appliance
    group str
    Name of the group owning the appliance
    lock str
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    market_id float
    The ID of the market to host the appliance
    marketplace_appliance_id str
    name str
    Name of the appliance
    origin_id float
    The ID of the source image
    permissions str
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    publisher str
    Publisher of the appliance
    tags Mapping[str, str]
    Add custom tags to the resource
    tags_all Mapping[str, str]
    Result of the applied default_tags and resource tags
    template_sections Sequence[MarketplaceApplianceTemplateSectionArgs]
    Add custom section to the resource
    timeouts MarketplaceApplianceTimeoutsArgs
    type str
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    version str
    A string indicating the appliance version
    vmtemplate64 str
    Creates this template pointing to the base image
    apptemplate64 String
    Associated template that will be added to the registered object
    defaultTags Map<String>
    Default tags defined in the provider configuration
    description String
    Text description of the appliance
    disabled Boolean
    Allow to enable or disable the appliance
    group String
    Name of the group owning the appliance
    lock String
    Lock level of the new resource: USE, MANAGE, ADMIN, ALL, UNLOCK
    marketId Number
    The ID of the market to host the appliance
    marketplaceApplianceId String
    name String
    Name of the appliance
    originId Number
    The ID of the source image
    permissions String
    Permissions for the appliance (in Unix format, owner-group-other, use-manage-admin)
    publisher String
    Publisher of the appliance
    tags Map<String>
    Add custom tags to the resource
    tagsAll Map<String>
    Result of the applied default_tags and resource tags
    templateSections List<Property Map>
    Add custom section to the resource
    timeouts Property Map
    type String
    Type of the app: IMAGE, VMTEMPLATE, SERVICE_TEMPLATE
    version String
    A string indicating the appliance version
    vmtemplate64 String
    Creates this template pointing to the base image

    Supporting Types

    MarketplaceApplianceTemplateSection, MarketplaceApplianceTemplateSectionArgs

    Name string
    Elements Dictionary<string, string>
    Name string
    Elements map[string]string
    name String
    elements Map<String,String>
    name string
    elements {[key: string]: string}
    name str
    elements Mapping[str, str]
    name String
    elements Map<String>

    MarketplaceApplianceTimeouts, MarketplaceApplianceTimeoutsArgs

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

    Package Details

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