1. Packages
  2. OVH
  3. API Docs
  4. CloudProject
  5. Project
OVHCloud v2.1.1 published on Thursday, Apr 10, 2025 by OVHcloud

ovh.CloudProject.Project

Explore with Pulumi AI

Import

Cloud project can be imported using the project_id.

Using the following configuration:

terraform

import {

to = ovh_cloud_project.my_cloud_project

id = “

}

You can then run:

bash

$ pulumi preview -generate-config-out=cloudproject.tf

$ pulumi up

The file cloudproject.tf will then contain the imported resource’s configuration, that can be copied next to the import block above. See https://developer.hashicorp.com/terraform/language/import/generating-configuration for more details.

Create Project Resource

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

Constructor syntax

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

@overload
def Project(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            orders: Optional[Sequence[_cloudproject.ProjectOrderArgs]] = None,
            ovh_subsidiary: Optional[str] = None,
            payment_mean: Optional[str] = None,
            plan: Optional[_cloudproject.ProjectPlanArgs] = None,
            plan_options: Optional[Sequence[_cloudproject.ProjectPlanOptionArgs]] = None)
func NewProject(ctx *Context, name string, args *ProjectArgs, opts ...ResourceOption) (*Project, error)
public Project(string name, ProjectArgs? args = null, CustomResourceOptions? opts = null)
public Project(String name, ProjectArgs args)
public Project(String name, ProjectArgs args, CustomResourceOptions options)
type: ovh:CloudProject:Project
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 ProjectArgs
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 ProjectArgs
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 ProjectArgs
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 ProjectArgs
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. ProjectArgs
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 projectResource = new Ovh.CloudProject.Project("projectResource", new()
{
    Description = "string",
    Orders = new[]
    {
        new Ovh.CloudProject.Inputs.ProjectOrderArgs
        {
            Date = "string",
            Details = new[]
            {
                new Ovh.CloudProject.Inputs.ProjectOrderDetailArgs
                {
                    Description = "string",
                    Domain = "string",
                    OrderDetailId = 0,
                    Quantity = "string",
                },
            },
            ExpirationDate = "string",
            OrderId = 0,
        },
    },
    OvhSubsidiary = "string",
    Plan = new Ovh.CloudProject.Inputs.ProjectPlanArgs
    {
        Duration = "string",
        PlanCode = "string",
        PricingMode = "string",
        CatalogName = "string",
        Configurations = new[]
        {
            new Ovh.CloudProject.Inputs.ProjectPlanConfigurationArgs
            {
                Label = "string",
                Value = "string",
            },
        },
    },
    PlanOptions = new[]
    {
        new Ovh.CloudProject.Inputs.ProjectPlanOptionArgs
        {
            Duration = "string",
            PlanCode = "string",
            PricingMode = "string",
            CatalogName = "string",
            Configurations = new[]
            {
                new Ovh.CloudProject.Inputs.ProjectPlanOptionConfigurationArgs
                {
                    Label = "string",
                    Value = "string",
                },
            },
        },
    },
});
Copy
example, err := cloudproject.NewProject(ctx, "projectResource", &cloudproject.ProjectArgs{
	Description: pulumi.String("string"),
	Orders: cloudproject.ProjectOrderArray{
		&cloudproject.ProjectOrderArgs{
			Date: pulumi.String("string"),
			Details: cloudproject.ProjectOrderDetailArray{
				&cloudproject.ProjectOrderDetailArgs{
					Description:   pulumi.String("string"),
					Domain:        pulumi.String("string"),
					OrderDetailId: pulumi.Int(0),
					Quantity:      pulumi.String("string"),
				},
			},
			ExpirationDate: pulumi.String("string"),
			OrderId:        pulumi.Int(0),
		},
	},
	OvhSubsidiary: pulumi.String("string"),
	Plan: &cloudproject.ProjectPlanArgs{
		Duration:    pulumi.String("string"),
		PlanCode:    pulumi.String("string"),
		PricingMode: pulumi.String("string"),
		CatalogName: pulumi.String("string"),
		Configurations: cloudproject.ProjectPlanConfigurationArray{
			&cloudproject.ProjectPlanConfigurationArgs{
				Label: pulumi.String("string"),
				Value: pulumi.String("string"),
			},
		},
	},
	PlanOptions: cloudproject.ProjectPlanOptionArray{
		&cloudproject.ProjectPlanOptionArgs{
			Duration:    pulumi.String("string"),
			PlanCode:    pulumi.String("string"),
			PricingMode: pulumi.String("string"),
			CatalogName: pulumi.String("string"),
			Configurations: cloudproject.ProjectPlanOptionConfigurationArray{
				&cloudproject.ProjectPlanOptionConfigurationArgs{
					Label: pulumi.String("string"),
					Value: pulumi.String("string"),
				},
			},
		},
	},
})
Copy
var projectResource = new Project("projectResource", ProjectArgs.builder()
    .description("string")
    .orders(ProjectOrderArgs.builder()
        .date("string")
        .details(ProjectOrderDetailArgs.builder()
            .description("string")
            .domain("string")
            .orderDetailId(0)
            .quantity("string")
            .build())
        .expirationDate("string")
        .orderId(0)
        .build())
    .ovhSubsidiary("string")
    .plan(ProjectPlanArgs.builder()
        .duration("string")
        .planCode("string")
        .pricingMode("string")
        .catalogName("string")
        .configurations(ProjectPlanConfigurationArgs.builder()
            .label("string")
            .value("string")
            .build())
        .build())
    .planOptions(ProjectPlanOptionArgs.builder()
        .duration("string")
        .planCode("string")
        .pricingMode("string")
        .catalogName("string")
        .configurations(ProjectPlanOptionConfigurationArgs.builder()
            .label("string")
            .value("string")
            .build())
        .build())
    .build());
Copy
project_resource = ovh.cloud_project.Project("projectResource",
    description="string",
    orders=[{
        "date": "string",
        "details": [{
            "description": "string",
            "domain": "string",
            "order_detail_id": 0,
            "quantity": "string",
        }],
        "expiration_date": "string",
        "order_id": 0,
    }],
    ovh_subsidiary="string",
    plan={
        "duration": "string",
        "plan_code": "string",
        "pricing_mode": "string",
        "catalog_name": "string",
        "configurations": [{
            "label": "string",
            "value": "string",
        }],
    },
    plan_options=[{
        "duration": "string",
        "plan_code": "string",
        "pricing_mode": "string",
        "catalog_name": "string",
        "configurations": [{
            "label": "string",
            "value": "string",
        }],
    }])
Copy
const projectResource = new ovh.cloudproject.Project("projectResource", {
    description: "string",
    orders: [{
        date: "string",
        details: [{
            description: "string",
            domain: "string",
            orderDetailId: 0,
            quantity: "string",
        }],
        expirationDate: "string",
        orderId: 0,
    }],
    ovhSubsidiary: "string",
    plan: {
        duration: "string",
        planCode: "string",
        pricingMode: "string",
        catalogName: "string",
        configurations: [{
            label: "string",
            value: "string",
        }],
    },
    planOptions: [{
        duration: "string",
        planCode: "string",
        pricingMode: "string",
        catalogName: "string",
        configurations: [{
            label: "string",
            value: "string",
        }],
    }],
});
Copy
type: ovh:CloudProject:Project
properties:
    description: string
    orders:
        - date: string
          details:
            - description: string
              domain: string
              orderDetailId: 0
              quantity: string
          expirationDate: string
          orderId: 0
    ovhSubsidiary: string
    plan:
        catalogName: string
        configurations:
            - label: string
              value: string
        duration: string
        planCode: string
        pricingMode: string
    planOptions:
        - catalogName: string
          configurations:
            - label: string
              value: string
          duration: string
          planCode: string
          pricingMode: string
Copy

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

Description string
A description associated with the user.
Orders List<ProjectOrder>
Details about the order that was used to create the public cloud project
OvhSubsidiary Changes to this property will trigger replacement. string
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
PaymentMean Changes to this property will trigger replacement. string
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

Plan Changes to this property will trigger replacement. ProjectPlan
Product Plan to order
PlanOptions Changes to this property will trigger replacement. List<ProjectPlanOption>
Product Plan to order
Description string
A description associated with the user.
Orders []ProjectOrderArgs
Details about the order that was used to create the public cloud project
OvhSubsidiary Changes to this property will trigger replacement. string
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
PaymentMean Changes to this property will trigger replacement. string
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

Plan Changes to this property will trigger replacement. ProjectPlanArgs
Product Plan to order
PlanOptions Changes to this property will trigger replacement. []ProjectPlanOptionArgs
Product Plan to order
description String
A description associated with the user.
orders List<ProjectOrder>
Details about the order that was used to create the public cloud project
ovhSubsidiary Changes to this property will trigger replacement. String
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
paymentMean Changes to this property will trigger replacement. String
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

plan Changes to this property will trigger replacement. ProjectPlan
Product Plan to order
planOptions Changes to this property will trigger replacement. List<ProjectPlanOption>
Product Plan to order
description string
A description associated with the user.
orders ProjectOrder[]
Details about the order that was used to create the public cloud project
ovhSubsidiary Changes to this property will trigger replacement. string
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
paymentMean Changes to this property will trigger replacement. string
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

plan Changes to this property will trigger replacement. ProjectPlan
Product Plan to order
planOptions Changes to this property will trigger replacement. ProjectPlanOption[]
Product Plan to order
description str
A description associated with the user.
orders Sequence[cloudproject.ProjectOrderArgs]
Details about the order that was used to create the public cloud project
ovh_subsidiary Changes to this property will trigger replacement. str
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
payment_mean Changes to this property will trigger replacement. str
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

plan Changes to this property will trigger replacement. cloudproject.ProjectPlanArgs
Product Plan to order
plan_options Changes to this property will trigger replacement. Sequence[cloudproject.ProjectPlanOptionArgs]
Product Plan to order
description String
A description associated with the user.
orders List<Property Map>
Details about the order that was used to create the public cloud project
ovhSubsidiary Changes to this property will trigger replacement. String
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
paymentMean Changes to this property will trigger replacement. String
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

plan Changes to this property will trigger replacement. Property Map
Product Plan to order
planOptions Changes to this property will trigger replacement. List<Property Map>
Product Plan to order

Outputs

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

Access string
Id string
The provider-assigned unique ID for this managed resource.
ProjectId string
openstack project id
ProjectName string
openstack project name
ProjectURN string
The URN of the cloud project
Status string
project status
Access string
Id string
The provider-assigned unique ID for this managed resource.
ProjectId string
openstack project id
ProjectName string
openstack project name
ProjectURN string
The URN of the cloud project
Status string
project status
ProjectURN String
The URN of the cloud project
access String
id String
The provider-assigned unique ID for this managed resource.
projectId String
openstack project id
projectName String
openstack project name
status String
project status
ProjectURN string
The URN of the cloud project
access string
id string
The provider-assigned unique ID for this managed resource.
projectId string
openstack project id
projectName string
openstack project name
status string
project status
access str
id str
The provider-assigned unique ID for this managed resource.
project_id str
openstack project id
project_name str
openstack project name
project_urn str
The URN of the cloud project
status str
project status
ProjectURN String
The URN of the cloud project
access String
id String
The provider-assigned unique ID for this managed resource.
projectId String
openstack project id
projectName String
openstack project name
status String
project status

Look up Existing Project Resource

Get an existing Project 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?: ProjectState, opts?: CustomResourceOptions): Project
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        project_urn: Optional[str] = None,
        access: Optional[str] = None,
        description: Optional[str] = None,
        orders: Optional[Sequence[_cloudproject.ProjectOrderArgs]] = None,
        ovh_subsidiary: Optional[str] = None,
        payment_mean: Optional[str] = None,
        plan: Optional[_cloudproject.ProjectPlanArgs] = None,
        plan_options: Optional[Sequence[_cloudproject.ProjectPlanOptionArgs]] = None,
        project_id: Optional[str] = None,
        project_name: Optional[str] = None,
        status: Optional[str] = None) -> Project
func GetProject(ctx *Context, name string, id IDInput, state *ProjectState, opts ...ResourceOption) (*Project, error)
public static Project Get(string name, Input<string> id, ProjectState? state, CustomResourceOptions? opts = null)
public static Project get(String name, Output<String> id, ProjectState state, CustomResourceOptions options)
resources:  _:    type: ovh:CloudProject:Project    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:
Access string
Description string
A description associated with the user.
Orders List<ProjectOrder>
Details about the order that was used to create the public cloud project
OvhSubsidiary Changes to this property will trigger replacement. string
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
PaymentMean Changes to this property will trigger replacement. string
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

Plan Changes to this property will trigger replacement. ProjectPlan
Product Plan to order
PlanOptions Changes to this property will trigger replacement. List<ProjectPlanOption>
Product Plan to order
ProjectId string
openstack project id
ProjectName string
openstack project name
ProjectURN string
The URN of the cloud project
Status string
project status
Access string
Description string
A description associated with the user.
Orders []ProjectOrderArgs
Details about the order that was used to create the public cloud project
OvhSubsidiary Changes to this property will trigger replacement. string
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
PaymentMean Changes to this property will trigger replacement. string
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

Plan Changes to this property will trigger replacement. ProjectPlanArgs
Product Plan to order
PlanOptions Changes to this property will trigger replacement. []ProjectPlanOptionArgs
Product Plan to order
ProjectId string
openstack project id
ProjectName string
openstack project name
ProjectURN string
The URN of the cloud project
Status string
project status
ProjectURN String
The URN of the cloud project
access String
description String
A description associated with the user.
orders List<ProjectOrder>
Details about the order that was used to create the public cloud project
ovhSubsidiary Changes to this property will trigger replacement. String
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
paymentMean Changes to this property will trigger replacement. String
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

plan Changes to this property will trigger replacement. ProjectPlan
Product Plan to order
planOptions Changes to this property will trigger replacement. List<ProjectPlanOption>
Product Plan to order
projectId String
openstack project id
projectName String
openstack project name
status String
project status
ProjectURN string
The URN of the cloud project
access string
description string
A description associated with the user.
orders ProjectOrder[]
Details about the order that was used to create the public cloud project
ovhSubsidiary Changes to this property will trigger replacement. string
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
paymentMean Changes to this property will trigger replacement. string
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

plan Changes to this property will trigger replacement. ProjectPlan
Product Plan to order
planOptions Changes to this property will trigger replacement. ProjectPlanOption[]
Product Plan to order
projectId string
openstack project id
projectName string
openstack project name
status string
project status
access str
description str
A description associated with the user.
orders Sequence[cloudproject.ProjectOrderArgs]
Details about the order that was used to create the public cloud project
ovh_subsidiary Changes to this property will trigger replacement. str
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
payment_mean Changes to this property will trigger replacement. str
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

plan Changes to this property will trigger replacement. cloudproject.ProjectPlanArgs
Product Plan to order
plan_options Changes to this property will trigger replacement. Sequence[cloudproject.ProjectPlanOptionArgs]
Product Plan to order
project_id str
openstack project id
project_name str
openstack project name
project_urn str
The URN of the cloud project
status str
project status
ProjectURN String
The URN of the cloud project
access String
description String
A description associated with the user.
orders List<Property Map>
Details about the order that was used to create the public cloud project
ovhSubsidiary Changes to this property will trigger replacement. String
OVHcloud Subsidiary. Country of OVHcloud legal entity you'll be billed by. List of supported subsidiaries available on API at /1.0/me.json under models.nichandle.OvhSubsidiaryEnum
paymentMean Changes to this property will trigger replacement. String
Ovh payment mode

Deprecated: This field is not anymore used since the API has been deprecated in favor of /payment/mean. Now, the default payment mean is used.

plan Changes to this property will trigger replacement. Property Map
Product Plan to order
planOptions Changes to this property will trigger replacement. List<Property Map>
Product Plan to order
projectId String
openstack project id
projectName String
openstack project name
status String
project status

Supporting Types

ProjectOrder
, ProjectOrderArgs

Date string
date
Details List<ProjectOrderDetail>
Information about a Bill entry
ExpirationDate string
expiration date
OrderId int
order id, the same as the id
Date string
date
Details []ProjectOrderDetail
Information about a Bill entry
ExpirationDate string
expiration date
OrderId int
order id, the same as the id
date String
date
details List<ProjectOrderDetail>
Information about a Bill entry
expirationDate String
expiration date
orderId Integer
order id, the same as the id
date string
date
details ProjectOrderDetail[]
Information about a Bill entry
expirationDate string
expiration date
orderId number
order id, the same as the id
date str
date
details Sequence[cloudproject.ProjectOrderDetail]
Information about a Bill entry
expiration_date str
expiration date
order_id int
order id, the same as the id
date String
date
details List<Property Map>
Information about a Bill entry
expirationDate String
expiration date
orderId Number
order id, the same as the id

ProjectOrderDetail
, ProjectOrderDetailArgs

Description string
A description associated with the user.
Domain string
expiration date
OrderDetailId int
order detail id
Quantity string
quantity
Description string
A description associated with the user.
Domain string
expiration date
OrderDetailId int
order detail id
Quantity string
quantity
description String
A description associated with the user.
domain String
expiration date
orderDetailId Integer
order detail id
quantity String
quantity
description string
A description associated with the user.
domain string
expiration date
orderDetailId number
order detail id
quantity string
quantity
description str
A description associated with the user.
domain str
expiration date
order_detail_id int
order detail id
quantity str
quantity
description String
A description associated with the user.
domain String
expiration date
orderDetailId Number
order detail id
quantity String
quantity

ProjectPlan
, ProjectPlanArgs

Duration This property is required. string
duration
PlanCode This property is required. string
Plan code. This value must be adapted depending on your OVH_ENDPOINT value. It's project.2018 for ovh-{eu,ca} and project when using ovh-us.
PricingMode This property is required. string
Pricing model identifier
CatalogName string
Catalog name
Configurations List<ProjectPlanConfiguration>
Representation of a configuration item for personalizing product
Duration This property is required. string
duration
PlanCode This property is required. string
Plan code. This value must be adapted depending on your OVH_ENDPOINT value. It's project.2018 for ovh-{eu,ca} and project when using ovh-us.
PricingMode This property is required. string
Pricing model identifier
CatalogName string
Catalog name
Configurations []ProjectPlanConfiguration
Representation of a configuration item for personalizing product
duration This property is required. String
duration
planCode This property is required. String
Plan code. This value must be adapted depending on your OVH_ENDPOINT value. It's project.2018 for ovh-{eu,ca} and project when using ovh-us.
pricingMode This property is required. String
Pricing model identifier
catalogName String
Catalog name
configurations List<ProjectPlanConfiguration>
Representation of a configuration item for personalizing product
duration This property is required. string
duration
planCode This property is required. string
Plan code. This value must be adapted depending on your OVH_ENDPOINT value. It's project.2018 for ovh-{eu,ca} and project when using ovh-us.
pricingMode This property is required. string
Pricing model identifier
catalogName string
Catalog name
configurations ProjectPlanConfiguration[]
Representation of a configuration item for personalizing product
duration This property is required. str
duration
plan_code This property is required. str
Plan code. This value must be adapted depending on your OVH_ENDPOINT value. It's project.2018 for ovh-{eu,ca} and project when using ovh-us.
pricing_mode This property is required. str
Pricing model identifier
catalog_name str
Catalog name
configurations Sequence[cloudproject.ProjectPlanConfiguration]
Representation of a configuration item for personalizing product
duration This property is required. String
duration
planCode This property is required. String
Plan code. This value must be adapted depending on your OVH_ENDPOINT value. It's project.2018 for ovh-{eu,ca} and project when using ovh-us.
pricingMode This property is required. String
Pricing model identifier
catalogName String
Catalog name
configurations List<Property Map>
Representation of a configuration item for personalizing product

ProjectPlanConfiguration
, ProjectPlanConfigurationArgs

Label This property is required. string
Identifier of the resource
Value This property is required. string
Path to the resource in API.OVH.COM
Label This property is required. string
Identifier of the resource
Value This property is required. string
Path to the resource in API.OVH.COM
label This property is required. String
Identifier of the resource
value This property is required. String
Path to the resource in API.OVH.COM
label This property is required. string
Identifier of the resource
value This property is required. string
Path to the resource in API.OVH.COM
label This property is required. str
Identifier of the resource
value This property is required. str
Path to the resource in API.OVH.COM
label This property is required. String
Identifier of the resource
value This property is required. String
Path to the resource in API.OVH.COM

ProjectPlanOption
, ProjectPlanOptionArgs

Duration This property is required. string
duration
PlanCode This property is required. string
Plan code
PricingMode This property is required. string
Pricing model identifier
CatalogName string
Catalog name
Configurations List<ProjectPlanOptionConfiguration>
Representation of a configuration item for personalizing product
Duration This property is required. string
duration
PlanCode This property is required. string
Plan code
PricingMode This property is required. string
Pricing model identifier
CatalogName string
Catalog name
Configurations []ProjectPlanOptionConfiguration
Representation of a configuration item for personalizing product
duration This property is required. String
duration
planCode This property is required. String
Plan code
pricingMode This property is required. String
Pricing model identifier
catalogName String
Catalog name
configurations List<ProjectPlanOptionConfiguration>
Representation of a configuration item for personalizing product
duration This property is required. string
duration
planCode This property is required. string
Plan code
pricingMode This property is required. string
Pricing model identifier
catalogName string
Catalog name
configurations ProjectPlanOptionConfiguration[]
Representation of a configuration item for personalizing product
duration This property is required. str
duration
plan_code This property is required. str
Plan code
pricing_mode This property is required. str
Pricing model identifier
catalog_name str
Catalog name
configurations Sequence[cloudproject.ProjectPlanOptionConfiguration]
Representation of a configuration item for personalizing product
duration This property is required. String
duration
planCode This property is required. String
Plan code
pricingMode This property is required. String
Pricing model identifier
catalogName String
Catalog name
configurations List<Property Map>
Representation of a configuration item for personalizing product

ProjectPlanOptionConfiguration
, ProjectPlanOptionConfigurationArgs

Label This property is required. string
Identifier of the resource
Value This property is required. string
Path to the resource in API.OVH.COM
Label This property is required. string
Identifier of the resource
Value This property is required. string
Path to the resource in API.OVH.COM
label This property is required. String
Identifier of the resource
value This property is required. String
Path to the resource in API.OVH.COM
label This property is required. string
Identifier of the resource
value This property is required. string
Path to the resource in API.OVH.COM
label This property is required. str
Identifier of the resource
value This property is required. str
Path to the resource in API.OVH.COM
label This property is required. String
Identifier of the resource
value This property is required. String
Path to the resource in API.OVH.COM

Package Details

Repository
ovh ovh/pulumi-ovh
License
Apache-2.0
Notes
This Pulumi package is based on the ovh Terraform Provider.