ovh.Domain.Name
Explore with Pulumi AI
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ovh.Domain.Name;
import com.pulumi.ovh.Domain.NameArgs;
import com.pulumi.ovh.Domain.inputs.NameTargetSpecArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var domain = new Name("domain", NameArgs.builder()
.domainName("example.com")
.targetSpec(NameTargetSpecArgs.builder()
.dns_configuration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build())
.build());
}
}
resources:
domain:
type: ovh:Domain:Name
properties:
domainName: example.com
targetSpec:
dns_configuration:
nameServers:
- nameServer: dns101.ovh.net
- nameServer: ns101.ovh.net
Create Name Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Name(name: string, args: NameArgs, opts?: CustomResourceOptions);
@overload
def Name(resource_name: str,
args: NameArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Name(resource_name: str,
opts: Optional[ResourceOptions] = None,
domain_name: Optional[str] = None,
checksum: Optional[str] = None,
ovh_subsidiary: Optional[str] = None,
plan_options: Optional[Sequence[_domain.NamePlanOptionArgs]] = None,
plans: Optional[Sequence[_domain.NamePlanArgs]] = None,
target_spec: Optional[_domain.NameTargetSpecArgs] = None)
func NewName(ctx *Context, name string, args NameArgs, opts ...ResourceOption) (*Name, error)
public Name(string name, NameArgs args, CustomResourceOptions? opts = null)
type: ovh:Domain:Name
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 NameArgs
- 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 NameArgs
- 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 NameArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NameArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NameArgs
- 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 nameResource = new Ovh.Domain.Name("nameResource", new()
{
DomainName = "string",
Checksum = "string",
OvhSubsidiary = "string",
PlanOptions = new[]
{
new Ovh.Domain.Inputs.NamePlanOptionArgs
{
Duration = "string",
PlanCode = "string",
PricingMode = "string",
Quantity = 0,
Configurations = new[]
{
new Ovh.Domain.Inputs.NamePlanOptionConfigurationArgs
{
Label = "string",
Value = "string",
},
},
},
},
Plans = new[]
{
new Ovh.Domain.Inputs.NamePlanArgs
{
Duration = "string",
PlanCode = "string",
PricingMode = "string",
Configurations = new[]
{
new Ovh.Domain.Inputs.NamePlanConfigurationArgs
{
Label = "string",
Value = "string",
},
},
ItemId = 0,
Quantity = 0,
},
},
TargetSpec = new Ovh.Domain.Inputs.NameTargetSpecArgs
{
DnsConfiguration = new Ovh.Domain.Inputs.NameTargetSpecDnsConfigurationArgs
{
NameServers = new[]
{
new Ovh.Domain.Inputs.NameTargetSpecDnsConfigurationNameServerArgs
{
Ipv4 = "string",
Ipv6 = "string",
NameServer = "string",
},
},
},
},
});
example, err := Domain.NewName(ctx, "nameResource", &Domain.NameArgs{
DomainName: pulumi.String("string"),
Checksum: pulumi.String("string"),
OvhSubsidiary: pulumi.String("string"),
PlanOptions: domain.NamePlanOptionArray{
&domain.NamePlanOptionArgs{
Duration: pulumi.String("string"),
PlanCode: pulumi.String("string"),
PricingMode: pulumi.String("string"),
Quantity: pulumi.Float64(0),
Configurations: domain.NamePlanOptionConfigurationArray{
&domain.NamePlanOptionConfigurationArgs{
Label: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
},
Plans: domain.NamePlanArray{
&domain.NamePlanArgs{
Duration: pulumi.String("string"),
PlanCode: pulumi.String("string"),
PricingMode: pulumi.String("string"),
Configurations: domain.NamePlanConfigurationArray{
&domain.NamePlanConfigurationArgs{
Label: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
ItemId: pulumi.Float64(0),
Quantity: pulumi.Float64(0),
},
},
TargetSpec: &domain.NameTargetSpecArgs{
DnsConfiguration: &domain.NameTargetSpecDnsConfigurationArgs{
NameServers: domain.NameTargetSpecDnsConfigurationNameServerArray{
&domain.NameTargetSpecDnsConfigurationNameServerArgs{
Ipv4: pulumi.String("string"),
Ipv6: pulumi.String("string"),
NameServer: pulumi.String("string"),
},
},
},
},
})
var nameResource = new Name("nameResource", NameArgs.builder()
.domainName("string")
.checksum("string")
.ovhSubsidiary("string")
.planOptions(NamePlanOptionArgs.builder()
.duration("string")
.planCode("string")
.pricingMode("string")
.quantity(0)
.configurations(NamePlanOptionConfigurationArgs.builder()
.label("string")
.value("string")
.build())
.build())
.plans(NamePlanArgs.builder()
.duration("string")
.planCode("string")
.pricingMode("string")
.configurations(NamePlanConfigurationArgs.builder()
.label("string")
.value("string")
.build())
.itemId(0)
.quantity(0)
.build())
.targetSpec(NameTargetSpecArgs.builder()
.dnsConfiguration(NameTargetSpecDnsConfigurationArgs.builder()
.nameServers(NameTargetSpecDnsConfigurationNameServerArgs.builder()
.ipv4("string")
.ipv6("string")
.nameServer("string")
.build())
.build())
.build())
.build());
name_resource = ovh.domain.Name("nameResource",
domain_name="string",
checksum="string",
ovh_subsidiary="string",
plan_options=[{
"duration": "string",
"plan_code": "string",
"pricing_mode": "string",
"quantity": 0,
"configurations": [{
"label": "string",
"value": "string",
}],
}],
plans=[{
"duration": "string",
"plan_code": "string",
"pricing_mode": "string",
"configurations": [{
"label": "string",
"value": "string",
}],
"item_id": 0,
"quantity": 0,
}],
target_spec={
"dns_configuration": {
"name_servers": [{
"ipv4": "string",
"ipv6": "string",
"name_server": "string",
}],
},
})
const nameResource = new ovh.domain.Name("nameResource", {
domainName: "string",
checksum: "string",
ovhSubsidiary: "string",
planOptions: [{
duration: "string",
planCode: "string",
pricingMode: "string",
quantity: 0,
configurations: [{
label: "string",
value: "string",
}],
}],
plans: [{
duration: "string",
planCode: "string",
pricingMode: "string",
configurations: [{
label: "string",
value: "string",
}],
itemId: 0,
quantity: 0,
}],
targetSpec: {
dnsConfiguration: {
nameServers: [{
ipv4: "string",
ipv6: "string",
nameServer: "string",
}],
},
},
});
type: ovh:Domain:Name
properties:
checksum: string
domainName: string
ovhSubsidiary: string
planOptions:
- configurations:
- label: string
value: string
duration: string
planCode: string
pricingMode: string
quantity: 0
plans:
- configurations:
- label: string
value: string
duration: string
itemId: 0
planCode: string
pricingMode: string
quantity: 0
targetSpec:
dnsConfiguration:
nameServers:
- ipv4: string
ipv6: string
nameServer: string
Name 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 Name resource accepts the following input properties:
- Domain
Name string - Domain name
- Checksum string
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- Ovh
Subsidiary string - OVH subsidiaries
- Plan
Options List<NamePlan Option> - Plans
List<Name
Plan> - Target
Spec NameTarget Spec - Latest target specification of the domain name resource.
- Domain
Name string - Domain name
- Checksum string
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- Ovh
Subsidiary string - OVH subsidiaries
- Plan
Options []NamePlan Option Args - Plans
[]Name
Plan Args - Target
Spec NameTarget Spec Args - Latest target specification of the domain name resource.
- domain
Name String - Domain name
- checksum String
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- ovh
Subsidiary String - OVH subsidiaries
- plan
Options List<NamePlan Option> - plans
List<Name
Plan> - target
Spec NameTarget Spec - Latest target specification of the domain name resource.
- domain
Name string - Domain name
- checksum string
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- ovh
Subsidiary string - OVH subsidiaries
- plan
Options NamePlan Option[] - plans
Name
Plan[] - target
Spec NameTarget Spec - Latest target specification of the domain name resource.
- domain_
name str - Domain name
- checksum str
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- ovh_
subsidiary str - OVH subsidiaries
- plan_
options Sequence[domain.Name Plan Option Args] - plans
Sequence[domain.
Name Plan Args] - target_
spec domain.Name Target Spec Args - Latest target specification of the domain name resource.
- domain
Name String - Domain name
- checksum String
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- ovh
Subsidiary String - OVH subsidiaries
- plan
Options List<Property Map> - plans List<Property Map>
- target
Spec Property Map - Latest target specification of the domain name resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Name resource produces the following output properties:
- Current
State NameCurrent State - Current state of the domain name
- Current
Tasks List<NameCurrent Task> - Ongoing asynchronous tasks related to the domain name resource
- Iam
Name
Iam - IAM resource metadata
- Id string
- The provider-assigned unique ID for this managed resource.
- Order
Name
Order - Details about an Order
- Resource
Status string - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status
- Current
State NameCurrent State - Current state of the domain name
- Current
Tasks []NameCurrent Task - Ongoing asynchronous tasks related to the domain name resource
- Iam
Name
Iam - IAM resource metadata
- Id string
- The provider-assigned unique ID for this managed resource.
- Order
Name
Order - Details about an Order
- Resource
Status string - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status
- current
State NameCurrent State - Current state of the domain name
- current
Tasks List<NameCurrent Task> - Ongoing asynchronous tasks related to the domain name resource
- iam
Name
Iam - IAM resource metadata
- id String
- The provider-assigned unique ID for this managed resource.
- order
Name
Order - Details about an Order
- resource
Status String - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status
- current
State NameCurrent State - Current state of the domain name
- current
Tasks NameCurrent Task[] - Ongoing asynchronous tasks related to the domain name resource
- iam
Name
Iam - IAM resource metadata
- id string
- The provider-assigned unique ID for this managed resource.
- order
Name
Order - Details about an Order
- resource
Status string - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status
- current_
state domain.Name Current State - Current state of the domain name
- current_
tasks Sequence[domain.Name Current Task] - Ongoing asynchronous tasks related to the domain name resource
- iam
domain.
Name Iam - IAM resource metadata
- id str
- The provider-assigned unique ID for this managed resource.
- order
domain.
Name Order - Details about an Order
- resource_
status str - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status
- current
State Property Map - Current state of the domain name
- current
Tasks List<Property Map> - Ongoing asynchronous tasks related to the domain name resource
- iam Property Map
- IAM resource metadata
- id String
- The provider-assigned unique ID for this managed resource.
- order Property Map
- Details about an Order
- resource
Status String - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status
Look up Existing Name Resource
Get an existing Name 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?: NameState, opts?: CustomResourceOptions): Name
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
checksum: Optional[str] = None,
current_state: Optional[_domain.NameCurrentStateArgs] = None,
current_tasks: Optional[Sequence[_domain.NameCurrentTaskArgs]] = None,
domain_name: Optional[str] = None,
iam: Optional[_domain.NameIamArgs] = None,
order: Optional[_domain.NameOrderArgs] = None,
ovh_subsidiary: Optional[str] = None,
plan_options: Optional[Sequence[_domain.NamePlanOptionArgs]] = None,
plans: Optional[Sequence[_domain.NamePlanArgs]] = None,
resource_status: Optional[str] = None,
target_spec: Optional[_domain.NameTargetSpecArgs] = None) -> Name
func GetName(ctx *Context, name string, id IDInput, state *NameState, opts ...ResourceOption) (*Name, error)
public static Name Get(string name, Input<string> id, NameState? state, CustomResourceOptions? opts = null)
public static Name get(String name, Output<String> id, NameState state, CustomResourceOptions options)
resources: _: type: ovh:Domain:Name 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.
- Checksum string
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- Current
State NameCurrent State - Current state of the domain name
- Current
Tasks List<NameCurrent Task> - Ongoing asynchronous tasks related to the domain name resource
- Domain
Name string - Domain name
- Iam
Name
Iam - IAM resource metadata
- Order
Name
Order - Details about an Order
- Ovh
Subsidiary string - OVH subsidiaries
- Plan
Options List<NamePlan Option> - Plans
List<Name
Plan> - Resource
Status string - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status - Target
Spec NameTarget Spec - Latest target specification of the domain name resource.
- Checksum string
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- Current
State NameCurrent State Args - Current state of the domain name
- Current
Tasks []NameCurrent Task Args - Ongoing asynchronous tasks related to the domain name resource
- Domain
Name string - Domain name
- Iam
Name
Iam Args - IAM resource metadata
- Order
Name
Order Args - Details about an Order
- Ovh
Subsidiary string - OVH subsidiaries
- Plan
Options []NamePlan Option Args - Plans
[]Name
Plan Args - Resource
Status string - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status - Target
Spec NameTarget Spec Args - Latest target specification of the domain name resource.
- checksum String
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- current
State NameCurrent State - Current state of the domain name
- current
Tasks List<NameCurrent Task> - Ongoing asynchronous tasks related to the domain name resource
- domain
Name String - Domain name
- iam
Name
Iam - IAM resource metadata
- order
Name
Order - Details about an Order
- ovh
Subsidiary String - OVH subsidiaries
- plan
Options List<NamePlan Option> - plans
List<Name
Plan> - resource
Status String - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status - target
Spec NameTarget Spec - Latest target specification of the domain name resource.
- checksum string
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- current
State NameCurrent State - Current state of the domain name
- current
Tasks NameCurrent Task[] - Ongoing asynchronous tasks related to the domain name resource
- domain
Name string - Domain name
- iam
Name
Iam - IAM resource metadata
- order
Name
Order - Details about an Order
- ovh
Subsidiary string - OVH subsidiaries
- plan
Options NamePlan Option[] - plans
Name
Plan[] - resource
Status string - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status - target
Spec NameTarget Spec - Latest target specification of the domain name resource.
- checksum str
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- current_
state domain.Name Current State Args - Current state of the domain name
- current_
tasks Sequence[domain.Name Current Task Args] - Ongoing asynchronous tasks related to the domain name resource
- domain_
name str - Domain name
- iam
domain.
Name Iam Args - IAM resource metadata
- order
domain.
Name Order Args - Details about an Order
- ovh_
subsidiary str - OVH subsidiaries
- plan_
options Sequence[domain.Name Plan Option Args] - plans
Sequence[domain.
Name Plan Args] - resource_
status str - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status - target_
spec domain.Name Target Spec Args - Latest target specification of the domain name resource.
- checksum String
- Computed hash used to control concurrent modification requests. Here, it represents the current target specification value
- current
State Property Map - Current state of the domain name
- current
Tasks List<Property Map> - Ongoing asynchronous tasks related to the domain name resource
- domain
Name String - Domain name
- iam Property Map
- IAM resource metadata
- order Property Map
- Details about an Order
- ovh
Subsidiary String - OVH subsidiaries
- plan
Options List<Property Map> - plans List<Property Map>
- resource
Status String - Reflects the readiness of the domain name resource. A new target specification request will be accepted only in
READY
,UPDATING
orERROR
status - target
Spec Property Map - Latest target specification of the domain name resource.
Supporting Types
NameCurrentState, NameCurrentStateArgs
- Additional
States List<string> - Domain additional states
- Dns
Configuration NameCurrent State Dns Configuration - The domain DNS configuration
- Extension string
- Extension of the domain name
- Main
State string - Domain main state
- Name string
- Domain name
- Protection
State string - Domain protection state
- Suspension
State string - Domain suspension state
- Additional
States []string - Domain additional states
- Dns
Configuration NameCurrent State Dns Configuration - The domain DNS configuration
- Extension string
- Extension of the domain name
- Main
State string - Domain main state
- Name string
- Domain name
- Protection
State string - Domain protection state
- Suspension
State string - Domain suspension state
- additional
States List<String> - Domain additional states
- dns
Configuration NameCurrent State Dns Configuration - The domain DNS configuration
- extension String
- Extension of the domain name
- main
State String - Domain main state
- name String
- Domain name
- protection
State String - Domain protection state
- suspension
State String - Domain suspension state
- additional
States string[] - Domain additional states
- dns
Configuration NameCurrent State Dns Configuration - The domain DNS configuration
- extension string
- Extension of the domain name
- main
State string - Domain main state
- name string
- Domain name
- protection
State string - Domain protection state
- suspension
State string - Domain suspension state
- additional_
states Sequence[str] - Domain additional states
- dns_
configuration domain.Name Current State Dns Configuration - The domain DNS configuration
- extension str
- Extension of the domain name
- main_
state str - Domain main state
- name str
- Domain name
- protection_
state str - Domain protection state
- suspension_
state str - Domain suspension state
- additional
States List<String> - Domain additional states
- dns
Configuration Property Map - The domain DNS configuration
- extension String
- Extension of the domain name
- main
State String - Domain main state
- name String
- Domain name
- protection
State String - Domain protection state
- suspension
State String - Domain suspension state
NameCurrentStateDnsConfiguration, NameCurrentStateDnsConfigurationArgs
- Configuration
Type string - The type of DNS configuration of the domain
- Glue
Record boolIpv6supported - Whether the registry supports IPv6 or not
- Host
Supported bool - Whether the registry accepts hosts or not
- Max
Dns double - The maximum number of name servers allowed by the registry
- Min
Dns double - The minimum number of name servers allowed by the registry
- Name
Servers List<NameCurrent State Dns Configuration Name Server> - The name servers used by the domain name
- Configuration
Type string - The type of DNS configuration of the domain
- Glue
Record boolIpv6supported - Whether the registry supports IPv6 or not
- Host
Supported bool - Whether the registry accepts hosts or not
- Max
Dns float64 - The maximum number of name servers allowed by the registry
- Min
Dns float64 - The minimum number of name servers allowed by the registry
- Name
Servers []NameCurrent State Dns Configuration Name Server - The name servers used by the domain name
- configuration
Type String - The type of DNS configuration of the domain
- glue
Record BooleanIpv6supported - Whether the registry supports IPv6 or not
- host
Supported Boolean - Whether the registry accepts hosts or not
- max
Dns Double - The maximum number of name servers allowed by the registry
- min
Dns Double - The minimum number of name servers allowed by the registry
- name
Servers List<NameCurrent State Dns Configuration Name Server> - The name servers used by the domain name
- configuration
Type string - The type of DNS configuration of the domain
- glue
Record booleanIpv6supported - Whether the registry supports IPv6 or not
- host
Supported boolean - Whether the registry accepts hosts or not
- max
Dns number - The maximum number of name servers allowed by the registry
- min
Dns number - The minimum number of name servers allowed by the registry
- name
Servers NameCurrent State Dns Configuration Name Server[] - The name servers used by the domain name
- configuration_
type str - The type of DNS configuration of the domain
- glue_
record_ boolipv6supported - Whether the registry supports IPv6 or not
- host_
supported bool - Whether the registry accepts hosts or not
- max_
dns float - The maximum number of name servers allowed by the registry
- min_
dns float - The minimum number of name servers allowed by the registry
- name_
servers Sequence[domain.Name Current State Dns Configuration Name Server] - The name servers used by the domain name
- configuration
Type String - The type of DNS configuration of the domain
- glue
Record BooleanIpv6supported - Whether the registry supports IPv6 or not
- host
Supported Boolean - Whether the registry accepts hosts or not
- max
Dns Number - The maximum number of name servers allowed by the registry
- min
Dns Number - The minimum number of name servers allowed by the registry
- name
Servers List<Property Map> - The name servers used by the domain name
NameCurrentStateDnsConfigurationNameServer, NameCurrentStateDnsConfigurationNameServerArgs
- Ipv4 string
- The IPv4 associated to the name server
- Ipv6 string
- The IPv6 associated to the name server
- Name
Server string - The host name
- Name
Server stringType - The type of name server
- Ipv4 string
- The IPv4 associated to the name server
- Ipv6 string
- The IPv6 associated to the name server
- Name
Server string - The host name
- Name
Server stringType - The type of name server
- ipv4 String
- The IPv4 associated to the name server
- ipv6 String
- The IPv6 associated to the name server
- name
Server String - The host name
- name
Server StringType - The type of name server
- ipv4 string
- The IPv4 associated to the name server
- ipv6 string
- The IPv6 associated to the name server
- name
Server string - The host name
- name
Server stringType - The type of name server
- ipv4 str
- The IPv4 associated to the name server
- ipv6 str
- The IPv6 associated to the name server
- name_
server str - The host name
- name_
server_ strtype - The type of name server
- ipv4 String
- The IPv4 associated to the name server
- ipv6 String
- The IPv6 associated to the name server
- name
Server String - The host name
- name
Server StringType - The type of name server
NameCurrentTask, NameCurrentTaskArgs
NameIam, NameIamArgs
- Display
Name string - Resource display name
- Id string
- Unique identifier of the resource
- Dictionary<string, string>
- Resource tags. Tags that were internally computed are prefixed with ovh:
- Urn string
- Unique resource name used in policies
- Display
Name string - Resource display name
- Id string
- Unique identifier of the resource
- map[string]string
- Resource tags. Tags that were internally computed are prefixed with ovh:
- Urn string
- Unique resource name used in policies
- display
Name String - Resource display name
- id String
- Unique identifier of the resource
- Map<String,String>
- Resource tags. Tags that were internally computed are prefixed with ovh:
- urn String
- Unique resource name used in policies
- display
Name string - Resource display name
- id string
- Unique identifier of the resource
- {[key: string]: string}
- Resource tags. Tags that were internally computed are prefixed with ovh:
- urn string
- Unique resource name used in policies
- display_
name str - Resource display name
- id str
- Unique identifier of the resource
- Mapping[str, str]
- Resource tags. Tags that were internally computed are prefixed with ovh:
- urn str
- Unique resource name used in policies
- display
Name String - Resource display name
- id String
- Unique identifier of the resource
- Map<String>
- Resource tags. Tags that were internally computed are prefixed with ovh:
- urn String
- Unique resource name used in policies
NameOrder, NameOrderArgs
- Date string
- Details
List<Name
Order Detail> - Expiration
Date string - Order
Id double
- Date string
- Details
[]Name
Order Detail - Expiration
Date string - Order
Id float64
- date String
- details
List<Name
Order Detail> - expiration
Date String - order
Id Double
- date string
- details
Name
Order Detail[] - expiration
Date string - order
Id number
- date String
- details List<Property Map>
- expiration
Date String - order
Id Number
NameOrderDetail, NameOrderDetailArgs
- Description string
- Detail
Type string - Product type of item in order
- Domain string
- Order
Detail doubleId - Quantity string
- Description string
- Detail
Type string - Product type of item in order
- Domain string
- Order
Detail float64Id - Quantity string
- description String
- detail
Type String - Product type of item in order
- domain String
- order
Detail DoubleId - quantity String
- description string
- detail
Type string - Product type of item in order
- domain string
- order
Detail numberId - quantity string
- description str
- detail_
type str - Product type of item in order
- domain str
- order_
detail_ floatid - quantity str
- description String
- detail
Type String - Product type of item in order
- domain String
- order
Detail NumberId - quantity String
NamePlan, NamePlanArgs
- Duration string
- Duration selected for the purchase of the product (defaults to "P1Y")
- Plan
Code string - Identifier of the option offer
- Pricing
Mode string - Pricing mode selected for the purchase of the product
- Configurations
List<Name
Plan Configuration> - Item
Id double - Cart item to be linked
- Quantity double
- Quantity of product desired
- Duration string
- Duration selected for the purchase of the product (defaults to "P1Y")
- Plan
Code string - Identifier of the option offer
- Pricing
Mode string - Pricing mode selected for the purchase of the product
- Configurations
[]Name
Plan Configuration - Item
Id float64 - Cart item to be linked
- Quantity float64
- Quantity of product desired
- duration String
- Duration selected for the purchase of the product (defaults to "P1Y")
- plan
Code String - Identifier of the option offer
- pricing
Mode String - Pricing mode selected for the purchase of the product
- configurations
List<Name
Plan Configuration> - item
Id Double - Cart item to be linked
- quantity Double
- Quantity of product desired
- duration string
- Duration selected for the purchase of the product (defaults to "P1Y")
- plan
Code string - Identifier of the option offer
- pricing
Mode string - Pricing mode selected for the purchase of the product
- configurations
Name
Plan Configuration[] - item
Id number - Cart item to be linked
- quantity number
- Quantity of product desired
- duration str
- Duration selected for the purchase of the product (defaults to "P1Y")
- plan_
code str - Identifier of the option offer
- pricing_
mode str - Pricing mode selected for the purchase of the product
- configurations
Sequence[domain.
Name Plan Configuration] - item_
id float - Cart item to be linked
- quantity float
- Quantity of product desired
- duration String
- Duration selected for the purchase of the product (defaults to "P1Y")
- plan
Code String - Identifier of the option offer
- pricing
Mode String - Pricing mode selected for the purchase of the product
- configurations List<Property Map>
- item
Id Number - Cart item to be linked
- quantity Number
- Quantity of product desired
NamePlanConfiguration, NamePlanConfigurationArgs
NamePlanOption, NamePlanOptionArgs
- Duration string
- Duration selected for the purchase of the product
- Plan
Code string - Identifier of the option offer
- Pricing
Mode string - Pricing mode selected for the purchase of the product
- Quantity double
- Quantity of product desired
- Configurations
List<Name
Plan Option Configuration>
- Duration string
- Duration selected for the purchase of the product
- Plan
Code string - Identifier of the option offer
- Pricing
Mode string - Pricing mode selected for the purchase of the product
- Quantity float64
- Quantity of product desired
- Configurations
[]Name
Plan Option Configuration
- duration String
- Duration selected for the purchase of the product
- plan
Code String - Identifier of the option offer
- pricing
Mode String - Pricing mode selected for the purchase of the product
- quantity Double
- Quantity of product desired
- configurations
List<Name
Plan Option Configuration>
- duration string
- Duration selected for the purchase of the product
- plan
Code string - Identifier of the option offer
- pricing
Mode string - Pricing mode selected for the purchase of the product
- quantity number
- Quantity of product desired
- configurations
Name
Plan Option Configuration[]
- duration str
- Duration selected for the purchase of the product
- plan_
code str - Identifier of the option offer
- pricing_
mode str - Pricing mode selected for the purchase of the product
- quantity float
- Quantity of product desired
- configurations
Sequence[domain.
Name Plan Option Configuration]
- duration String
- Duration selected for the purchase of the product
- plan
Code String - Identifier of the option offer
- pricing
Mode String - Pricing mode selected for the purchase of the product
- quantity Number
- Quantity of product desired
- configurations List<Property Map>
NamePlanOptionConfiguration, NamePlanOptionConfigurationArgs
NameTargetSpec, NameTargetSpecArgs
- Dns
Configuration NameTarget Spec Dns Configuration - The domain DNS configuration
- Dns
Configuration NameTarget Spec Dns Configuration - The domain DNS configuration
- dns
Configuration NameTarget Spec Dns Configuration - The domain DNS configuration
- dns
Configuration NameTarget Spec Dns Configuration - The domain DNS configuration
- dns_
configuration domain.Name Target Spec Dns Configuration - The domain DNS configuration
- dns
Configuration Property Map - The domain DNS configuration
NameTargetSpecDnsConfiguration, NameTargetSpecDnsConfigurationArgs
- Name
Servers List<NameTarget Spec Dns Configuration Name Server> - The name servers to update
- Name
Servers []NameTarget Spec Dns Configuration Name Server - The name servers to update
- name
Servers List<NameTarget Spec Dns Configuration Name Server> - The name servers to update
- name
Servers NameTarget Spec Dns Configuration Name Server[] - The name servers to update
- name_
servers Sequence[domain.Name Target Spec Dns Configuration Name Server] - The name servers to update
- name
Servers List<Property Map> - The name servers to update
NameTargetSpecDnsConfigurationNameServer, NameTargetSpecDnsConfigurationNameServerArgs
- Ipv4 string
- The IPv4 associated to the name server
- Ipv6 string
- The IPv6 associated to the name server
- Name
Server string - The host name
- Ipv4 string
- The IPv4 associated to the name server
- Ipv6 string
- The IPv6 associated to the name server
- Name
Server string - The host name
- ipv4 String
- The IPv4 associated to the name server
- ipv6 String
- The IPv6 associated to the name server
- name
Server String - The host name
- ipv4 string
- The IPv4 associated to the name server
- ipv6 string
- The IPv6 associated to the name server
- name
Server string - The host name
- ipv4 str
- The IPv4 associated to the name server
- ipv6 str
- The IPv6 associated to the name server
- name_
server str - The host name
- ipv4 String
- The IPv4 associated to the name server
- ipv6 String
- The IPv6 associated to the name server
- name
Server String - The host name
Import
A domain name can be imported using its domain_name
.
Using the following configuration:
hcl
import {
to = ovh_domain_name.domain
id = “
}
You can then run:
bash
$ pulumi preview -generate-config-out=domain.tf
$ pulumi up
The file domain.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.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ovh ovh/pulumi-ovh
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ovh
Terraform Provider.