1. Packages
  2. OVH
  3. API Docs
  4. CloudProject
  5. Project
OVHCloud v0.42.0 published on Tuesday, Apr 9, 2024 by OVHcloud

ovh.CloudProject.Project

Explore with Pulumi AI

ovh logo
OVHCloud v0.42.0 published on Tuesday, Apr 9, 2024 by OVHcloud

    Import

    Cloud project can be imported using the order_id that can be retrieved in the order page at the creation time of the Public Cloud project.

    bash

    $ pulumi import ovh:CloudProject/project:Project my_cloud_project order_id
    

    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: ProjectArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Project(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                ovh_subsidiary: Optional[str] = None,
                plan: Optional[_cloudproject.ProjectPlanArgs] = None,
                description: Optional[str] = None,
                payment_mean: Optional[str] = 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, 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 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 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 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 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 String
    The unique name of the resource.
    args ProjectArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var projectResource = new Ovh.CloudProject.Project("projectResource", new()
    {
        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",
                },
            },
        },
        Description = "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",
                    },
                },
            },
        },
    });
    
    example, err := CloudProject.NewProject(ctx, "projectResource", &CloudProject.ProjectArgs{
    	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"),
    			},
    		},
    	},
    	Description: 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"),
    				},
    			},
    		},
    	},
    })
    
    var projectResource = new Project("projectResource", ProjectArgs.builder()        
        .ovhSubsidiary("string")
        .plan(ProjectPlanArgs.builder()
            .duration("string")
            .planCode("string")
            .pricingMode("string")
            .catalogName("string")
            .configurations(ProjectPlanConfigurationArgs.builder()
                .label("string")
                .value("string")
                .build())
            .build())
        .description("string")
        .planOptions(ProjectPlanOptionArgs.builder()
            .duration("string")
            .planCode("string")
            .pricingMode("string")
            .catalogName("string")
            .configurations(ProjectPlanOptionConfigurationArgs.builder()
                .label("string")
                .value("string")
                .build())
            .build())
        .build());
    
    project_resource = ovh.cloud_project.Project("projectResource",
        ovh_subsidiary="string",
        plan=ovh.cloud_project.ProjectPlanArgs(
            duration="string",
            plan_code="string",
            pricing_mode="string",
            catalog_name="string",
            configurations=[ovh.cloud_project.ProjectPlanConfigurationArgs(
                label="string",
                value="string",
            )],
        ),
        description="string",
        plan_options=[ovh.cloud_project.ProjectPlanOptionArgs(
            duration="string",
            plan_code="string",
            pricing_mode="string",
            catalog_name="string",
            configurations=[ovh.cloud_project.ProjectPlanOptionConfigurationArgs(
                label="string",
                value="string",
            )],
        )])
    
    const projectResource = new ovh.cloudproject.Project("projectResource", {
        ovhSubsidiary: "string",
        plan: {
            duration: "string",
            planCode: "string",
            pricingMode: "string",
            catalogName: "string",
            configurations: [{
                label: "string",
                value: "string",
            }],
        },
        description: "string",
        planOptions: [{
            duration: "string",
            planCode: "string",
            pricingMode: "string",
            catalogName: "string",
            configurations: [{
                label: "string",
                value: "string",
            }],
        }],
    });
    
    type: ovh:CloudProject:Project
    properties:
        description: string
        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
    

    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

    The Project resource accepts the following input properties:

    OvhSubsidiary 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
    Plan ProjectPlan
    Product Plan to order
    Description string
    A description associated with the user.
    PaymentMean 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.

    PlanOptions List<ProjectPlanOption>
    Product Plan to order
    OvhSubsidiary 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
    Plan ProjectPlanArgs
    Product Plan to order
    Description string
    A description associated with the user.
    PaymentMean 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.

    PlanOptions []ProjectPlanOptionArgs
    Product Plan to order
    ovhSubsidiary 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
    plan ProjectPlan
    Product Plan to order
    description String
    A description associated with the user.
    paymentMean 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.

    planOptions List<ProjectPlanOption>
    Product Plan to order
    ovhSubsidiary 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
    plan ProjectPlan
    Product Plan to order
    description string
    A description associated with the user.
    paymentMean 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.

    planOptions ProjectPlanOption[]
    Product Plan to order
    ovh_subsidiary 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
    plan cloudproject.ProjectPlanArgs
    Product Plan to order
    description str
    A description associated with the user.
    payment_mean 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_options Sequence[cloudproject.ProjectPlanOptionArgs]
    Product Plan to order
    ovhSubsidiary 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
    plan Property Map
    Product Plan to order
    description String
    A description associated with the user.
    paymentMean 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.

    planOptions 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.
    Orders List<ProjectOrder>
    Details about the order that was used to create the public cloud project
    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.
    Orders []ProjectOrder
    Details about the order that was used to create the public cloud project
    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.
    orders List<ProjectOrder>
    Details about the order that was used to create the public cloud project
    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.
    orders ProjectOrder[]
    Details about the order that was used to create the public cloud project
    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.
    orders Sequence[cloudproject.ProjectOrder]
    Details about the order that was used to create the public cloud project
    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.
    orders List<Property Map>
    Details about the order that was used to create the public cloud project
    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)
    Resource lookup is not supported in YAML
    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:
    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 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 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 ProjectPlan
    Product Plan to order
    PlanOptions 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 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 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 ProjectPlanArgs
    Product Plan to order
    PlanOptions []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 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 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 ProjectPlan
    Product Plan to order
    planOptions 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 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 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 ProjectPlan
    Product Plan to order
    planOptions 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 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 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 cloudproject.ProjectPlanArgs
    Product Plan to order
    plan_options 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 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 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 Property Map
    Product Plan to order
    planOptions 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 string
    duration
    PlanCode string
    Plan code
    PricingMode string
    Pricing model identifier
    CatalogName string
    Catalog name
    Configurations List<ProjectPlanConfiguration>
    Representation of a configuration item for personalizing product
    Duration string
    duration
    PlanCode string
    Plan code
    PricingMode string
    Pricing model identifier
    CatalogName string
    Catalog name
    Configurations []ProjectPlanConfiguration
    Representation of a configuration item for personalizing product
    duration String
    duration
    planCode String
    Plan code
    pricingMode String
    Pricing model identifier
    catalogName String
    Catalog name
    configurations List<ProjectPlanConfiguration>
    Representation of a configuration item for personalizing product
    duration string
    duration
    planCode string
    Plan code
    pricingMode string
    Pricing model identifier
    catalogName string
    Catalog name
    configurations ProjectPlanConfiguration[]
    Representation of a configuration item for personalizing product
    duration str
    duration
    plan_code str
    Plan code
    pricing_mode str
    Pricing model identifier
    catalog_name str
    Catalog name
    configurations Sequence[cloudproject.ProjectPlanConfiguration]
    Representation of a configuration item for personalizing product
    duration String
    duration
    planCode String
    Plan code
    pricingMode String
    Pricing model identifier
    catalogName String
    Catalog name
    configurations List<Property Map>
    Representation of a configuration item for personalizing product

    ProjectPlanConfiguration, ProjectPlanConfigurationArgs

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

    ProjectPlanOption, ProjectPlanOptionArgs

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

    ProjectPlanOptionConfiguration, ProjectPlanOptionConfigurationArgs

    Label string
    Identifier of the resource
    Value string
    Path to the resource in API.OVH.COM
    Label string
    Identifier of the resource
    Value string
    Path to the resource in API.OVH.COM
    label String
    Identifier of the resource
    value String
    Path to the resource in API.OVH.COM
    label string
    Identifier of the resource
    value string
    Path to the resource in API.OVH.COM
    label str
    Identifier of the resource
    value str
    Path to the resource in API.OVH.COM
    label String
    Identifier of the resource
    value 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.
    ovh logo
    OVHCloud v0.42.0 published on Tuesday, Apr 9, 2024 by OVHcloud