1. Packages
  2. Libvirt Provider
  3. API Docs
  4. Combustion
libvirt 0.8.3 published on Tuesday, Mar 4, 2025 by dmacvicar

libvirt.Combustion

Explore with Pulumi AI

Create Combustion Resource

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

Constructor syntax

new Combustion(name: string, args: CombustionArgs, opts?: CustomResourceOptions);
@overload
def Combustion(resource_name: str,
               args: CombustionArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def Combustion(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               content: Optional[str] = None,
               combustion_id: Optional[str] = None,
               name: Optional[str] = None,
               pool: Optional[str] = None)
func NewCombustion(ctx *Context, name string, args CombustionArgs, opts ...ResourceOption) (*Combustion, error)
public Combustion(string name, CombustionArgs args, CustomResourceOptions? opts = null)
public Combustion(String name, CombustionArgs args)
public Combustion(String name, CombustionArgs args, CustomResourceOptions options)
type: libvirt:Combustion
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CombustionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CombustionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CombustionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CombustionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CombustionArgs
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 combustionResource = new Libvirt.Combustion("combustionResource", new()
{
    Content = "string",
    CombustionId = "string",
    Name = "string",
    Pool = "string",
});
Copy
example, err := libvirt.NewCombustion(ctx, "combustionResource", &libvirt.CombustionArgs{
Content: pulumi.String("string"),
CombustionId: pulumi.String("string"),
Name: pulumi.String("string"),
Pool: pulumi.String("string"),
})
Copy
var combustionResource = new Combustion("combustionResource", CombustionArgs.builder()
    .content("string")
    .combustionId("string")
    .name("string")
    .pool("string")
    .build());
Copy
combustion_resource = libvirt.Combustion("combustionResource",
    content="string",
    combustion_id="string",
    name="string",
    pool="string")
Copy
const combustionResource = new libvirt.Combustion("combustionResource", {
    content: "string",
    combustionId: "string",
    name: "string",
    pool: "string",
});
Copy
type: libvirt:Combustion
properties:
    combustionId: string
    content: string
    name: string
    pool: string
Copy

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

Content This property is required. string
CombustionId string
Name string
Pool string
Content This property is required. string
CombustionId string
Name string
Pool string
content This property is required. String
combustionId String
name String
pool String
content This property is required. string
combustionId string
name string
pool string
content This property is required. str
combustion_id str
name str
pool str
content This property is required. String
combustionId String
name String
pool String

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Combustion Resource

Get an existing Combustion 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?: CombustionState, opts?: CustomResourceOptions): Combustion
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        combustion_id: Optional[str] = None,
        content: Optional[str] = None,
        name: Optional[str] = None,
        pool: Optional[str] = None) -> Combustion
func GetCombustion(ctx *Context, name string, id IDInput, state *CombustionState, opts ...ResourceOption) (*Combustion, error)
public static Combustion Get(string name, Input<string> id, CombustionState? state, CustomResourceOptions? opts = null)
public static Combustion get(String name, Output<String> id, CombustionState state, CustomResourceOptions options)
resources:  _:    type: libvirt:Combustion    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
CombustionId string
Content string
Name string
Pool string
CombustionId string
Content string
Name string
Pool string
combustionId String
content String
name String
pool String
combustionId string
content string
name string
pool string
combustionId String
content String
name String
pool String

Package Details

Repository
libvirt dmacvicar/terraform-provider-libvirt
License
Notes
This Pulumi package is based on the libvirt Terraform Provider.