Viewing docs for Scaleway v1.46.0
published on Tuesday, Apr 14, 2026 by pulumiverse
published on Tuesday, Apr 14, 2026 by pulumiverse
Viewing docs for Scaleway v1.46.0
published on Tuesday, Apr 14, 2026 by pulumiverse
published on Tuesday, Apr 14, 2026 by pulumiverse
The scaleway.domain.Registration data source retrieves information about an existing domain registration by domain name. Use it to get the taskId and projectId needed for importing a domain registration into Terraform state.
Refer to the Domains and DNS product documentation and API documentation for more information.
Example Usage
Get taskId for import
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const example = scaleway.domain.getRegistration({
domainName: "example.com",
});
export const importCommand = Promise.all([example, example]).then(([example, example1]) => `terraform import scaleway_domain_registration.example ${example.projectId}/${example1.taskId}`);
import pulumi
import pulumi_scaleway as scaleway
example = scaleway.domain.get_registration(domain_name="example.com")
pulumi.export("importCommand", f"terraform import scaleway_domain_registration.example {example.project_id}/{example.task_id}")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/domain"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := domain.LookupRegistration(ctx, &domain.LookupRegistrationArgs{
DomainName: "example.com",
}, nil)
if err != nil {
return err
}
ctx.Export("importCommand", pulumi.Sprintf("terraform import scaleway_domain_registration.example %v/%v", example.ProjectId, example.TaskId))
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var example = Scaleway.Domain.GetRegistration.Invoke(new()
{
DomainName = "example.com",
});
return new Dictionary<string, object?>
{
["importCommand"] = Output.Tuple(example, example).Apply(values =>
{
var example = values.Item1;
var example1 = values.Item2;
return $"terraform import scaleway_domain_registration.example {example.Apply(getRegistrationResult => getRegistrationResult.ProjectId)}/{example1.TaskId}";
}),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.domain.DomainFunctions;
import com.pulumi.scaleway.domain.inputs.GetRegistrationArgs;
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) {
final var example = DomainFunctions.getRegistration(GetRegistrationArgs.builder()
.domainName("example.com")
.build());
ctx.export("importCommand", String.format("terraform import scaleway_domain_registration.example %s/%s", example.projectId(),example.taskId()));
}
}
variables:
example:
fn::invoke:
function: scaleway:domain:getRegistration
arguments:
domainName: example.com
outputs:
importCommand: terraform import scaleway_domain_registration.example ${example.projectId}/${example.taskId}
With projectId filter
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const example = scaleway.domain.getRegistration({
domainName: "example.com",
projectId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
});
import pulumi
import pulumi_scaleway as scaleway
example = scaleway.domain.get_registration(domain_name="example.com",
project_id="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/domain"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := domain.LookupRegistration(ctx, &domain.LookupRegistrationArgs{
DomainName: "example.com",
ProjectId: pulumi.StringRef("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var example = Scaleway.Domain.GetRegistration.Invoke(new()
{
DomainName = "example.com",
ProjectId = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.domain.DomainFunctions;
import com.pulumi.scaleway.domain.inputs.GetRegistrationArgs;
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) {
final var example = DomainFunctions.getRegistration(GetRegistrationArgs.builder()
.domainName("example.com")
.projectId("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")
.build());
}
}
variables:
example:
fn::invoke:
function: scaleway:domain:getRegistration
arguments:
domainName: example.com
projectId: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Using getRegistration
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getRegistration(args: GetRegistrationArgs, opts?: InvokeOptions): Promise<GetRegistrationResult>
function getRegistrationOutput(args: GetRegistrationOutputArgs, opts?: InvokeOptions): Output<GetRegistrationResult>def get_registration(domain_name: Optional[str] = None,
project_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetRegistrationResult
def get_registration_output(domain_name: Optional[pulumi.Input[str]] = None,
project_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetRegistrationResult]func LookupRegistration(ctx *Context, args *LookupRegistrationArgs, opts ...InvokeOption) (*LookupRegistrationResult, error)
func LookupRegistrationOutput(ctx *Context, args *LookupRegistrationOutputArgs, opts ...InvokeOption) LookupRegistrationResultOutput> Note: This function is named LookupRegistration in the Go SDK.
public static class GetRegistration
{
public static Task<GetRegistrationResult> InvokeAsync(GetRegistrationArgs args, InvokeOptions? opts = null)
public static Output<GetRegistrationResult> Invoke(GetRegistrationInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetRegistrationResult> getRegistration(GetRegistrationArgs args, InvokeOptions options)
public static Output<GetRegistrationResult> getRegistration(GetRegistrationArgs args, InvokeOptions options)
fn::invoke:
function: scaleway:domain/getRegistration:getRegistration
arguments:
# arguments dictionaryThe following arguments are supported:
- Domain
Name string - The domain name to look up (e.g. example.com).
- Project
Id string - The project ID to filter by. Defaults to the project ID in the provider configuration.
- Domain
Name string - The domain name to look up (e.g. example.com).
- Project
Id string - The project ID to filter by. Defaults to the project ID in the provider configuration.
- domain
Name String - The domain name to look up (e.g. example.com).
- project
Id String - The project ID to filter by. Defaults to the project ID in the provider configuration.
- domain
Name string - The domain name to look up (e.g. example.com).
- project
Id string - The project ID to filter by. Defaults to the project ID in the provider configuration.
- domain_
name str - The domain name to look up (e.g. example.com).
- project_
id str - The project ID to filter by. Defaults to the project ID in the provider configuration.
- domain
Name String - The domain name to look up (e.g. example.com).
- project
Id String - The project ID to filter by. Defaults to the project ID in the provider configuration.
getRegistration Result
The following output properties are available:
- Administrative
Contacts List<Pulumiverse.Scaleway. Domain. Outputs. Get Registration Administrative Contact> - Administrative contact details.
- Auto
Renew bool - Whether auto-renewal is enabled.
- Dnssec bool
- Whether DNSSEC is enabled.
- Domain
Name string - Domain
Names List<string> - List of domain names in the registration.
- Ds
Records List<Pulumiverse.Scaleway. Domain. Outputs. Get Registration Ds Record> - DNSSEC DS record configuration.
- Duration
In intYears - Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Contact stringId - ID of the owner contact.
- Owner
Contacts List<Pulumiverse.Scaleway. Domain. Outputs. Get Registration Owner Contact> - Owner contact details (when lastname is API-compatible).
- Task
Id string - The task ID of the domain registration.
- Technical
Contacts List<Pulumiverse.Scaleway. Domain. Outputs. Get Registration Technical Contact> - Technical contact details.
- Project
Id string - The project ID of the domain registration.
- Administrative
Contacts []GetRegistration Administrative Contact - Administrative contact details.
- Auto
Renew bool - Whether auto-renewal is enabled.
- Dnssec bool
- Whether DNSSEC is enabled.
- Domain
Name string - Domain
Names []string - List of domain names in the registration.
- Ds
Records []GetRegistration Ds Record - DNSSEC DS record configuration.
- Duration
In intYears - Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Contact stringId - ID of the owner contact.
- Owner
Contacts []GetRegistration Owner Contact - Owner contact details (when lastname is API-compatible).
- Task
Id string - The task ID of the domain registration.
- Technical
Contacts []GetRegistration Technical Contact - Technical contact details.
- Project
Id string - The project ID of the domain registration.
- administrative
Contacts List<GetRegistration Administrative Contact> - Administrative contact details.
- auto
Renew Boolean - Whether auto-renewal is enabled.
- dnssec Boolean
- Whether DNSSEC is enabled.
- domain
Name String - domain
Names List<String> - List of domain names in the registration.
- ds
Records List<GetRegistration Ds Record> - DNSSEC DS record configuration.
- duration
In IntegerYears - id String
- The provider-assigned unique ID for this managed resource.
- owner
Contact StringId - ID of the owner contact.
- owner
Contacts List<GetRegistration Owner Contact> - Owner contact details (when lastname is API-compatible).
- task
Id String - The task ID of the domain registration.
- technical
Contacts List<GetRegistration Technical Contact> - Technical contact details.
- project
Id String - The project ID of the domain registration.
- administrative
Contacts GetRegistration Administrative Contact[] - Administrative contact details.
- auto
Renew boolean - Whether auto-renewal is enabled.
- dnssec boolean
- Whether DNSSEC is enabled.
- domain
Name string - domain
Names string[] - List of domain names in the registration.
- ds
Records GetRegistration Ds Record[] - DNSSEC DS record configuration.
- duration
In numberYears - id string
- The provider-assigned unique ID for this managed resource.
- owner
Contact stringId - ID of the owner contact.
- owner
Contacts GetRegistration Owner Contact[] - Owner contact details (when lastname is API-compatible).
- task
Id string - The task ID of the domain registration.
- technical
Contacts GetRegistration Technical Contact[] - Technical contact details.
- project
Id string - The project ID of the domain registration.
- administrative_
contacts Sequence[GetRegistration Administrative Contact] - Administrative contact details.
- auto_
renew bool - Whether auto-renewal is enabled.
- dnssec bool
- Whether DNSSEC is enabled.
- domain_
name str - domain_
names Sequence[str] - List of domain names in the registration.
- ds_
records Sequence[GetRegistration Ds Record] - DNSSEC DS record configuration.
- duration_
in_ intyears - id str
- The provider-assigned unique ID for this managed resource.
- owner_
contact_ strid - ID of the owner contact.
- owner_
contacts Sequence[GetRegistration Owner Contact] - Owner contact details (when lastname is API-compatible).
- task_
id str - The task ID of the domain registration.
- technical_
contacts Sequence[GetRegistration Technical Contact] - Technical contact details.
- project_
id str - The project ID of the domain registration.
- administrative
Contacts List<Property Map> - Administrative contact details.
- auto
Renew Boolean - Whether auto-renewal is enabled.
- dnssec Boolean
- Whether DNSSEC is enabled.
- domain
Name String - domain
Names List<String> - List of domain names in the registration.
- ds
Records List<Property Map> - DNSSEC DS record configuration.
- duration
In NumberYears - id String
- The provider-assigned unique ID for this managed resource.
- owner
Contact StringId - ID of the owner contact.
- owner
Contacts List<Property Map> - Owner contact details (when lastname is API-compatible).
- task
Id String - The task ID of the domain registration.
- technical
Contacts List<Property Map> - Technical contact details.
- project
Id String - The project ID of the domain registration.
Supporting Types
GetRegistrationAdministrativeContact
- Address
Line1 string - Primary address line for the contact.
- Address
Line2 string - Secondary address line for the contact (optional).
- City string
- City of the contact's address.
- Company
Identification stringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- Company
Name string - Name of the company associated with the contact (if applicable).
- Country string
- Country code of the contact's address (ISO format).
- Email string
- Primary email address of the contact.
- Email
Alt string - Alternative email address for the contact.
- Extension
Eus List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Administrative Contact Extension Eus> - Details specific to European domain extensions.
- Extension
Frs List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Administrative Contact Extension Fr> - Details specific to French domain extensions.
- Extension
Nls List<string> - Extension details specific to Dutch domain registrations.
- Fax
Number string - Fax number for the contact (if available).
- Firstname string
- First name of the contact.
- Lang string
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- Lastname string
- Last name of the contact.
- Legal
Form string - Legal form of the contact (e.g., 'individual' or 'organization').
- Phone
Number string - Primary phone number of the contact.
- Resale bool
- Indicates if the contact is used for resale purposes.
- State string
- State or region of the contact.
- Vat
Identification stringCode - VAT identification code of the contact, if applicable.
- Whois
Opt boolIn - Indicates whether the contact has opted into WHOIS publishing.
- Zip string
- Postal code of the contact's address.
- Address
Line1 string - Primary address line for the contact.
- Address
Line2 string - Secondary address line for the contact (optional).
- City string
- City of the contact's address.
- Company
Identification stringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- Company
Name string - Name of the company associated with the contact (if applicable).
- Country string
- Country code of the contact's address (ISO format).
- Email string
- Primary email address of the contact.
- Email
Alt string - Alternative email address for the contact.
- Extension
Eus []GetRegistration Administrative Contact Extension Eus - Details specific to European domain extensions.
- Extension
Frs []GetRegistration Administrative Contact Extension Fr - Details specific to French domain extensions.
- Extension
Nls []string - Extension details specific to Dutch domain registrations.
- Fax
Number string - Fax number for the contact (if available).
- Firstname string
- First name of the contact.
- Lang string
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- Lastname string
- Last name of the contact.
- Legal
Form string - Legal form of the contact (e.g., 'individual' or 'organization').
- Phone
Number string - Primary phone number of the contact.
- Resale bool
- Indicates if the contact is used for resale purposes.
- State string
- State or region of the contact.
- Vat
Identification stringCode - VAT identification code of the contact, if applicable.
- Whois
Opt boolIn - Indicates whether the contact has opted into WHOIS publishing.
- Zip string
- Postal code of the contact's address.
- address
Line1 String - Primary address line for the contact.
- address
Line2 String - Secondary address line for the contact (optional).
- city String
- City of the contact's address.
- company
Identification StringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company
Name String - Name of the company associated with the contact (if applicable).
- country String
- Country code of the contact's address (ISO format).
- email String
- Primary email address of the contact.
- email
Alt String - Alternative email address for the contact.
- extension
Eus List<GetRegistration Administrative Contact Extension Eus> - Details specific to European domain extensions.
- extension
Frs List<GetRegistration Administrative Contact Extension Fr> - Details specific to French domain extensions.
- extension
Nls List<String> - Extension details specific to Dutch domain registrations.
- fax
Number String - Fax number for the contact (if available).
- firstname String
- First name of the contact.
- lang String
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname String
- Last name of the contact.
- legal
Form String - Legal form of the contact (e.g., 'individual' or 'organization').
- phone
Number String - Primary phone number of the contact.
- resale Boolean
- Indicates if the contact is used for resale purposes.
- state String
- State or region of the contact.
- vat
Identification StringCode - VAT identification code of the contact, if applicable.
- whois
Opt BooleanIn - Indicates whether the contact has opted into WHOIS publishing.
- zip String
- Postal code of the contact's address.
- address
Line1 string - Primary address line for the contact.
- address
Line2 string - Secondary address line for the contact (optional).
- city string
- City of the contact's address.
- company
Identification stringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company
Name string - Name of the company associated with the contact (if applicable).
- country string
- Country code of the contact's address (ISO format).
- email string
- Primary email address of the contact.
- email
Alt string - Alternative email address for the contact.
- extension
Eus GetRegistration Administrative Contact Extension Eus[] - Details specific to European domain extensions.
- extension
Frs GetRegistration Administrative Contact Extension Fr[] - Details specific to French domain extensions.
- extension
Nls string[] - Extension details specific to Dutch domain registrations.
- fax
Number string - Fax number for the contact (if available).
- firstname string
- First name of the contact.
- lang string
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname string
- Last name of the contact.
- legal
Form string - Legal form of the contact (e.g., 'individual' or 'organization').
- phone
Number string - Primary phone number of the contact.
- resale boolean
- Indicates if the contact is used for resale purposes.
- state string
- State or region of the contact.
- vat
Identification stringCode - VAT identification code of the contact, if applicable.
- whois
Opt booleanIn - Indicates whether the contact has opted into WHOIS publishing.
- zip string
- Postal code of the contact's address.
- address_
line1 str - Primary address line for the contact.
- address_
line2 str - Secondary address line for the contact (optional).
- city str
- City of the contact's address.
- company_
identification_ strcode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company_
name str - Name of the company associated with the contact (if applicable).
- country str
- Country code of the contact's address (ISO format).
- email str
- Primary email address of the contact.
- email_
alt str - Alternative email address for the contact.
- extension_
eus Sequence[GetRegistration Administrative Contact Extension Eus] - Details specific to European domain extensions.
- extension_
frs Sequence[GetRegistration Administrative Contact Extension Fr] - Details specific to French domain extensions.
- extension_
nls Sequence[str] - Extension details specific to Dutch domain registrations.
- fax_
number str - Fax number for the contact (if available).
- firstname str
- First name of the contact.
- lang str
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname str
- Last name of the contact.
- legal_
form str - Legal form of the contact (e.g., 'individual' or 'organization').
- phone_
number str - Primary phone number of the contact.
- resale bool
- Indicates if the contact is used for resale purposes.
- state str
- State or region of the contact.
- vat_
identification_ strcode - VAT identification code of the contact, if applicable.
- whois_
opt_ boolin - Indicates whether the contact has opted into WHOIS publishing.
- zip str
- Postal code of the contact's address.
- address
Line1 String - Primary address line for the contact.
- address
Line2 String - Secondary address line for the contact (optional).
- city String
- City of the contact's address.
- company
Identification StringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company
Name String - Name of the company associated with the contact (if applicable).
- country String
- Country code of the contact's address (ISO format).
- email String
- Primary email address of the contact.
- email
Alt String - Alternative email address for the contact.
- extension
Eus List<Property Map> - Details specific to European domain extensions.
- extension
Frs List<Property Map> - Details specific to French domain extensions.
- extension
Nls List<String> - Extension details specific to Dutch domain registrations.
- fax
Number String - Fax number for the contact (if available).
- firstname String
- First name of the contact.
- lang String
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname String
- Last name of the contact.
- legal
Form String - Legal form of the contact (e.g., 'individual' or 'organization').
- phone
Number String - Primary phone number of the contact.
- resale Boolean
- Indicates if the contact is used for resale purposes.
- state String
- State or region of the contact.
- vat
Identification StringCode - VAT identification code of the contact, if applicable.
- whois
Opt BooleanIn - Indicates whether the contact has opted into WHOIS publishing.
- zip String
- Postal code of the contact's address.
GetRegistrationAdministrativeContactExtensionEus
- European
Citizenship string - Indicates the European citizenship of the contact.
- European
Citizenship string - Indicates the European citizenship of the contact.
- european
Citizenship String - Indicates the European citizenship of the contact.
- european
Citizenship string - Indicates the European citizenship of the contact.
- european_
citizenship str - Indicates the European citizenship of the contact.
- european
Citizenship String - Indicates the European citizenship of the contact.
GetRegistrationAdministrativeContactExtensionFr
- Association
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Administrative Contact Extension Fr Association Info> - Association-specific information for the domain (French extension).
- Code
Auth List<Pulumiverse.Afnic Infos Scaleway. Domain. Inputs. Get Registration Administrative Contact Extension Fr Code Auth Afnic Info> - AFNIC authorization information for the contact (French extension).
- Duns
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Administrative Contact Extension Fr Duns Info> - DUNS information for the domain owner (specific to French domains).
- Individual
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Administrative Contact Extension Fr Individual Info> - Information about the individual registration for French domains.
- Mode string
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- Trademark
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Administrative Contact Extension Fr Trademark Info> - Trademark-related information for the domain (French extension).
- Association
Infos []GetRegistration Administrative Contact Extension Fr Association Info - Association-specific information for the domain (French extension).
- Code
Auth []GetAfnic Infos Registration Administrative Contact Extension Fr Code Auth Afnic Info - AFNIC authorization information for the contact (French extension).
- Duns
Infos []GetRegistration Administrative Contact Extension Fr Duns Info - DUNS information for the domain owner (specific to French domains).
- Individual
Infos []GetRegistration Administrative Contact Extension Fr Individual Info - Information about the individual registration for French domains.
- Mode string
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- Trademark
Infos []GetRegistration Administrative Contact Extension Fr Trademark Info - Trademark-related information for the domain (French extension).
- association
Infos List<GetRegistration Administrative Contact Extension Fr Association Info> - Association-specific information for the domain (French extension).
- code
Auth List<GetAfnic Infos Registration Administrative Contact Extension Fr Code Auth Afnic Info> - AFNIC authorization information for the contact (French extension).
- duns
Infos List<GetRegistration Administrative Contact Extension Fr Duns Info> - DUNS information for the domain owner (specific to French domains).
- individual
Infos List<GetRegistration Administrative Contact Extension Fr Individual Info> - Information about the individual registration for French domains.
- mode String
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark
Infos List<GetRegistration Administrative Contact Extension Fr Trademark Info> - Trademark-related information for the domain (French extension).
- association
Infos GetRegistration Administrative Contact Extension Fr Association Info[] - Association-specific information for the domain (French extension).
- code
Auth GetAfnic Infos Registration Administrative Contact Extension Fr Code Auth Afnic Info[] - AFNIC authorization information for the contact (French extension).
- duns
Infos GetRegistration Administrative Contact Extension Fr Duns Info[] - DUNS information for the domain owner (specific to French domains).
- individual
Infos GetRegistration Administrative Contact Extension Fr Individual Info[] - Information about the individual registration for French domains.
- mode string
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark
Infos GetRegistration Administrative Contact Extension Fr Trademark Info[] - Trademark-related information for the domain (French extension).
- association_
infos Sequence[GetRegistration Administrative Contact Extension Fr Association Info] - Association-specific information for the domain (French extension).
- code_
auth_ Sequence[Getafnic_ infos Registration Administrative Contact Extension Fr Code Auth Afnic Info] - AFNIC authorization information for the contact (French extension).
- duns_
infos Sequence[GetRegistration Administrative Contact Extension Fr Duns Info] - DUNS information for the domain owner (specific to French domains).
- individual_
infos Sequence[GetRegistration Administrative Contact Extension Fr Individual Info] - Information about the individual registration for French domains.
- mode str
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark_
infos Sequence[GetRegistration Administrative Contact Extension Fr Trademark Info] - Trademark-related information for the domain (French extension).
- association
Infos List<Property Map> - Association-specific information for the domain (French extension).
- code
Auth List<Property Map>Afnic Infos - AFNIC authorization information for the contact (French extension).
- duns
Infos List<Property Map> - DUNS information for the domain owner (specific to French domains).
- individual
Infos List<Property Map> - Information about the individual registration for French domains.
- mode String
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark
Infos List<Property Map> - Trademark-related information for the domain (French extension).
GetRegistrationAdministrativeContactExtensionFrAssociationInfo
- Publication
Jo string - Publication date in the Official Journal (RFC3339 format) for association information.
- Publication
Jo intPage - Page number of the publication in the Official Journal for association information.
- Publication
Jo string - Publication date in the Official Journal (RFC3339 format) for association information.
- Publication
Jo intPage - Page number of the publication in the Official Journal for association information.
- publication
Jo String - Publication date in the Official Journal (RFC3339 format) for association information.
- publication
Jo IntegerPage - Page number of the publication in the Official Journal for association information.
- publication
Jo string - Publication date in the Official Journal (RFC3339 format) for association information.
- publication
Jo numberPage - Page number of the publication in the Official Journal for association information.
- publication_
jo str - Publication date in the Official Journal (RFC3339 format) for association information.
- publication_
jo_ intpage - Page number of the publication in the Official Journal for association information.
- publication
Jo String - Publication date in the Official Journal (RFC3339 format) for association information.
- publication
Jo NumberPage - Page number of the publication in the Official Journal for association information.
GetRegistrationAdministrativeContactExtensionFrCodeAuthAfnicInfo
- Code
Auth stringAfnic - AFNIC authorization code for the contact (specific to French domains).
- Code
Auth stringAfnic - AFNIC authorization code for the contact (specific to French domains).
- code
Auth StringAfnic - AFNIC authorization code for the contact (specific to French domains).
- code
Auth stringAfnic - AFNIC authorization code for the contact (specific to French domains).
- code_
auth_ strafnic - AFNIC authorization code for the contact (specific to French domains).
- code
Auth StringAfnic - AFNIC authorization code for the contact (specific to French domains).
GetRegistrationAdministrativeContactExtensionFrDunsInfo
GetRegistrationAdministrativeContactExtensionFrIndividualInfo
- Whois
Opt boolIn - Whether the individual contact has opted into WHOIS publishing.
- Whois
Opt boolIn - Whether the individual contact has opted into WHOIS publishing.
- whois
Opt BooleanIn - Whether the individual contact has opted into WHOIS publishing.
- whois
Opt booleanIn - Whether the individual contact has opted into WHOIS publishing.
- whois_
opt_ boolin - Whether the individual contact has opted into WHOIS publishing.
- whois
Opt BooleanIn - Whether the individual contact has opted into WHOIS publishing.
GetRegistrationAdministrativeContactExtensionFrTrademarkInfo
- Trademark
Inpi string - Trademark information from INPI (French extension).
- Trademark
Inpi string - Trademark information from INPI (French extension).
- trademark
Inpi String - Trademark information from INPI (French extension).
- trademark
Inpi string - Trademark information from INPI (French extension).
- trademark_
inpi str - Trademark information from INPI (French extension).
- trademark
Inpi String - Trademark information from INPI (French extension).
GetRegistrationDsRecord
- Algorithm string
- The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
- Digests
List<Pulumiverse.
Scaleway. Domain. Inputs. Get Registration Ds Record Digest> - Details about the digest.
- Key
Id int - The identifier for the dnssec key.
- Public
Keys List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Ds Record Public Key> - Public key associated with the dnssec record.
- Algorithm string
- The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
- Digests
[]Get
Registration Ds Record Digest - Details about the digest.
- Key
Id int - The identifier for the dnssec key.
- Public
Keys []GetRegistration Ds Record Public Key - Public key associated with the dnssec record.
- algorithm String
- The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
- digests
List<Get
Registration Ds Record Digest> - Details about the digest.
- key
Id Integer - The identifier for the dnssec key.
- public
Keys List<GetRegistration Ds Record Public Key> - Public key associated with the dnssec record.
- algorithm string
- The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
- digests
Get
Registration Ds Record Digest[] - Details about the digest.
- key
Id number - The identifier for the dnssec key.
- public
Keys GetRegistration Ds Record Public Key[] - Public key associated with the dnssec record.
- algorithm str
- The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
- digests
Sequence[Get
Registration Ds Record Digest] - Details about the digest.
- key_
id int - The identifier for the dnssec key.
- public_
keys Sequence[GetRegistration Ds Record Public Key] - Public key associated with the dnssec record.
- algorithm String
- The algorithm used for dnssec (e.g., rsasha256, ecdsap256sha256).
- digests List<Property Map>
- Details about the digest.
- key
Id Number - The identifier for the dnssec key.
- public
Keys List<Property Map> - Public key associated with the dnssec record.
GetRegistrationDsRecordDigest
- Digest string
- The digest value.
- Public
Keys List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Ds Record Digest Public Key> - The public key associated with the digest.
- Type string
- The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
- Digest string
- The digest value.
- Public
Keys []GetRegistration Ds Record Digest Public Key - The public key associated with the digest.
- Type string
- The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
- digest String
- The digest value.
- public
Keys List<GetRegistration Ds Record Digest Public Key> - The public key associated with the digest.
- type String
- The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
- digest string
- The digest value.
- public
Keys GetRegistration Ds Record Digest Public Key[] - The public key associated with the digest.
- type string
- The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
- digest str
- The digest value.
- public_
keys Sequence[GetRegistration Ds Record Digest Public Key] - The public key associated with the digest.
- type str
- The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
- digest String
- The digest value.
- public
Keys List<Property Map> - The public key associated with the digest.
- type String
- The digest type for the DS record (e.g., sha_1, sha_256, gost_r_34_11_94, sha_384).
GetRegistrationDsRecordDigestPublicKey
- Key string
- The public key value.
- Key string
- The public key value.
- key String
- The public key value.
- key string
- The public key value.
- key str
- The public key value.
- key String
- The public key value.
GetRegistrationDsRecordPublicKey
- Key string
- The public key value.
- Key string
- The public key value.
- key String
- The public key value.
- key string
- The public key value.
- key str
- The public key value.
- key String
- The public key value.
GetRegistrationOwnerContact
- Address
Line1 string - Primary address line for the contact.
- Address
Line2 string - Secondary address line for the contact (optional).
- City string
- City of the contact's address.
- Company
Identification stringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- Company
Name string - Name of the company associated with the contact (if applicable).
- Country string
- Country code of the contact's address (ISO format).
- Email string
- Primary email address of the contact.
- Email
Alt string - Alternative email address for the contact.
- Extension
Eus List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Owner Contact Extension Eus> - Details specific to European domain extensions.
- Extension
Frs List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Owner Contact Extension Fr> - Details specific to French domain extensions.
- Extension
Nls List<string> - Extension details specific to Dutch domain registrations.
- Fax
Number string - Fax number for the contact (if available).
- Firstname string
- First name of the contact.
- Lang string
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- Lastname string
- Last name of the contact.
- Legal
Form string - Legal form of the contact (e.g., 'individual' or 'organization').
- Phone
Number string - Primary phone number of the contact.
- Resale bool
- Indicates if the contact is used for resale purposes.
- State string
- State or region of the contact.
- Vat
Identification stringCode - VAT identification code of the contact, if applicable.
- Whois
Opt boolIn - Indicates whether the contact has opted into WHOIS publishing.
- Zip string
- Postal code of the contact's address.
- Address
Line1 string - Primary address line for the contact.
- Address
Line2 string - Secondary address line for the contact (optional).
- City string
- City of the contact's address.
- Company
Identification stringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- Company
Name string - Name of the company associated with the contact (if applicable).
- Country string
- Country code of the contact's address (ISO format).
- Email string
- Primary email address of the contact.
- Email
Alt string - Alternative email address for the contact.
- Extension
Eus []GetRegistration Owner Contact Extension Eus - Details specific to European domain extensions.
- Extension
Frs []GetRegistration Owner Contact Extension Fr - Details specific to French domain extensions.
- Extension
Nls []string - Extension details specific to Dutch domain registrations.
- Fax
Number string - Fax number for the contact (if available).
- Firstname string
- First name of the contact.
- Lang string
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- Lastname string
- Last name of the contact.
- Legal
Form string - Legal form of the contact (e.g., 'individual' or 'organization').
- Phone
Number string - Primary phone number of the contact.
- Resale bool
- Indicates if the contact is used for resale purposes.
- State string
- State or region of the contact.
- Vat
Identification stringCode - VAT identification code of the contact, if applicable.
- Whois
Opt boolIn - Indicates whether the contact has opted into WHOIS publishing.
- Zip string
- Postal code of the contact's address.
- address
Line1 String - Primary address line for the contact.
- address
Line2 String - Secondary address line for the contact (optional).
- city String
- City of the contact's address.
- company
Identification StringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company
Name String - Name of the company associated with the contact (if applicable).
- country String
- Country code of the contact's address (ISO format).
- email String
- Primary email address of the contact.
- email
Alt String - Alternative email address for the contact.
- extension
Eus List<GetRegistration Owner Contact Extension Eus> - Details specific to European domain extensions.
- extension
Frs List<GetRegistration Owner Contact Extension Fr> - Details specific to French domain extensions.
- extension
Nls List<String> - Extension details specific to Dutch domain registrations.
- fax
Number String - Fax number for the contact (if available).
- firstname String
- First name of the contact.
- lang String
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname String
- Last name of the contact.
- legal
Form String - Legal form of the contact (e.g., 'individual' or 'organization').
- phone
Number String - Primary phone number of the contact.
- resale Boolean
- Indicates if the contact is used for resale purposes.
- state String
- State or region of the contact.
- vat
Identification StringCode - VAT identification code of the contact, if applicable.
- whois
Opt BooleanIn - Indicates whether the contact has opted into WHOIS publishing.
- zip String
- Postal code of the contact's address.
- address
Line1 string - Primary address line for the contact.
- address
Line2 string - Secondary address line for the contact (optional).
- city string
- City of the contact's address.
- company
Identification stringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company
Name string - Name of the company associated with the contact (if applicable).
- country string
- Country code of the contact's address (ISO format).
- email string
- Primary email address of the contact.
- email
Alt string - Alternative email address for the contact.
- extension
Eus GetRegistration Owner Contact Extension Eus[] - Details specific to European domain extensions.
- extension
Frs GetRegistration Owner Contact Extension Fr[] - Details specific to French domain extensions.
- extension
Nls string[] - Extension details specific to Dutch domain registrations.
- fax
Number string - Fax number for the contact (if available).
- firstname string
- First name of the contact.
- lang string
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname string
- Last name of the contact.
- legal
Form string - Legal form of the contact (e.g., 'individual' or 'organization').
- phone
Number string - Primary phone number of the contact.
- resale boolean
- Indicates if the contact is used for resale purposes.
- state string
- State or region of the contact.
- vat
Identification stringCode - VAT identification code of the contact, if applicable.
- whois
Opt booleanIn - Indicates whether the contact has opted into WHOIS publishing.
- zip string
- Postal code of the contact's address.
- address_
line1 str - Primary address line for the contact.
- address_
line2 str - Secondary address line for the contact (optional).
- city str
- City of the contact's address.
- company_
identification_ strcode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company_
name str - Name of the company associated with the contact (if applicable).
- country str
- Country code of the contact's address (ISO format).
- email str
- Primary email address of the contact.
- email_
alt str - Alternative email address for the contact.
- extension_
eus Sequence[GetRegistration Owner Contact Extension Eus] - Details specific to European domain extensions.
- extension_
frs Sequence[GetRegistration Owner Contact Extension Fr] - Details specific to French domain extensions.
- extension_
nls Sequence[str] - Extension details specific to Dutch domain registrations.
- fax_
number str - Fax number for the contact (if available).
- firstname str
- First name of the contact.
- lang str
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname str
- Last name of the contact.
- legal_
form str - Legal form of the contact (e.g., 'individual' or 'organization').
- phone_
number str - Primary phone number of the contact.
- resale bool
- Indicates if the contact is used for resale purposes.
- state str
- State or region of the contact.
- vat_
identification_ strcode - VAT identification code of the contact, if applicable.
- whois_
opt_ boolin - Indicates whether the contact has opted into WHOIS publishing.
- zip str
- Postal code of the contact's address.
- address
Line1 String - Primary address line for the contact.
- address
Line2 String - Secondary address line for the contact (optional).
- city String
- City of the contact's address.
- company
Identification StringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company
Name String - Name of the company associated with the contact (if applicable).
- country String
- Country code of the contact's address (ISO format).
- email String
- Primary email address of the contact.
- email
Alt String - Alternative email address for the contact.
- extension
Eus List<Property Map> - Details specific to European domain extensions.
- extension
Frs List<Property Map> - Details specific to French domain extensions.
- extension
Nls List<String> - Extension details specific to Dutch domain registrations.
- fax
Number String - Fax number for the contact (if available).
- firstname String
- First name of the contact.
- lang String
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname String
- Last name of the contact.
- legal
Form String - Legal form of the contact (e.g., 'individual' or 'organization').
- phone
Number String - Primary phone number of the contact.
- resale Boolean
- Indicates if the contact is used for resale purposes.
- state String
- State or region of the contact.
- vat
Identification StringCode - VAT identification code of the contact, if applicable.
- whois
Opt BooleanIn - Indicates whether the contact has opted into WHOIS publishing.
- zip String
- Postal code of the contact's address.
GetRegistrationOwnerContactExtensionEus
- European
Citizenship string - Indicates the European citizenship of the contact.
- European
Citizenship string - Indicates the European citizenship of the contact.
- european
Citizenship String - Indicates the European citizenship of the contact.
- european
Citizenship string - Indicates the European citizenship of the contact.
- european_
citizenship str - Indicates the European citizenship of the contact.
- european
Citizenship String - Indicates the European citizenship of the contact.
GetRegistrationOwnerContactExtensionFr
- Association
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Owner Contact Extension Fr Association Info> - Association-specific information for the domain (French extension).
- Code
Auth List<Pulumiverse.Afnic Infos Scaleway. Domain. Inputs. Get Registration Owner Contact Extension Fr Code Auth Afnic Info> - AFNIC authorization information for the contact (French extension).
- Duns
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Owner Contact Extension Fr Duns Info> - DUNS information for the domain owner (specific to French domains).
- Individual
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Owner Contact Extension Fr Individual Info> - Information about the individual registration for French domains.
- Mode string
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- Trademark
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Owner Contact Extension Fr Trademark Info> - Trademark-related information for the domain (French extension).
- Association
Infos []GetRegistration Owner Contact Extension Fr Association Info - Association-specific information for the domain (French extension).
- Code
Auth []GetAfnic Infos Registration Owner Contact Extension Fr Code Auth Afnic Info - AFNIC authorization information for the contact (French extension).
- Duns
Infos []GetRegistration Owner Contact Extension Fr Duns Info - DUNS information for the domain owner (specific to French domains).
- Individual
Infos []GetRegistration Owner Contact Extension Fr Individual Info - Information about the individual registration for French domains.
- Mode string
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- Trademark
Infos []GetRegistration Owner Contact Extension Fr Trademark Info - Trademark-related information for the domain (French extension).
- association
Infos List<GetRegistration Owner Contact Extension Fr Association Info> - Association-specific information for the domain (French extension).
- code
Auth List<GetAfnic Infos Registration Owner Contact Extension Fr Code Auth Afnic Info> - AFNIC authorization information for the contact (French extension).
- duns
Infos List<GetRegistration Owner Contact Extension Fr Duns Info> - DUNS information for the domain owner (specific to French domains).
- individual
Infos List<GetRegistration Owner Contact Extension Fr Individual Info> - Information about the individual registration for French domains.
- mode String
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark
Infos List<GetRegistration Owner Contact Extension Fr Trademark Info> - Trademark-related information for the domain (French extension).
- association
Infos GetRegistration Owner Contact Extension Fr Association Info[] - Association-specific information for the domain (French extension).
- code
Auth GetAfnic Infos Registration Owner Contact Extension Fr Code Auth Afnic Info[] - AFNIC authorization information for the contact (French extension).
- duns
Infos GetRegistration Owner Contact Extension Fr Duns Info[] - DUNS information for the domain owner (specific to French domains).
- individual
Infos GetRegistration Owner Contact Extension Fr Individual Info[] - Information about the individual registration for French domains.
- mode string
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark
Infos GetRegistration Owner Contact Extension Fr Trademark Info[] - Trademark-related information for the domain (French extension).
- association_
infos Sequence[GetRegistration Owner Contact Extension Fr Association Info] - Association-specific information for the domain (French extension).
- code_
auth_ Sequence[Getafnic_ infos Registration Owner Contact Extension Fr Code Auth Afnic Info] - AFNIC authorization information for the contact (French extension).
- duns_
infos Sequence[GetRegistration Owner Contact Extension Fr Duns Info] - DUNS information for the domain owner (specific to French domains).
- individual_
infos Sequence[GetRegistration Owner Contact Extension Fr Individual Info] - Information about the individual registration for French domains.
- mode str
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark_
infos Sequence[GetRegistration Owner Contact Extension Fr Trademark Info] - Trademark-related information for the domain (French extension).
- association
Infos List<Property Map> - Association-specific information for the domain (French extension).
- code
Auth List<Property Map>Afnic Infos - AFNIC authorization information for the contact (French extension).
- duns
Infos List<Property Map> - DUNS information for the domain owner (specific to French domains).
- individual
Infos List<Property Map> - Information about the individual registration for French domains.
- mode String
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark
Infos List<Property Map> - Trademark-related information for the domain (French extension).
GetRegistrationOwnerContactExtensionFrAssociationInfo
- Publication
Jo string - Publication date in the Official Journal (RFC3339 format) for association information.
- Publication
Jo intPage - Page number of the publication in the Official Journal for association information.
- Publication
Jo string - Publication date in the Official Journal (RFC3339 format) for association information.
- Publication
Jo intPage - Page number of the publication in the Official Journal for association information.
- publication
Jo String - Publication date in the Official Journal (RFC3339 format) for association information.
- publication
Jo IntegerPage - Page number of the publication in the Official Journal for association information.
- publication
Jo string - Publication date in the Official Journal (RFC3339 format) for association information.
- publication
Jo numberPage - Page number of the publication in the Official Journal for association information.
- publication_
jo str - Publication date in the Official Journal (RFC3339 format) for association information.
- publication_
jo_ intpage - Page number of the publication in the Official Journal for association information.
- publication
Jo String - Publication date in the Official Journal (RFC3339 format) for association information.
- publication
Jo NumberPage - Page number of the publication in the Official Journal for association information.
GetRegistrationOwnerContactExtensionFrCodeAuthAfnicInfo
- Code
Auth stringAfnic - AFNIC authorization code for the contact (specific to French domains).
- Code
Auth stringAfnic - AFNIC authorization code for the contact (specific to French domains).
- code
Auth StringAfnic - AFNIC authorization code for the contact (specific to French domains).
- code
Auth stringAfnic - AFNIC authorization code for the contact (specific to French domains).
- code_
auth_ strafnic - AFNIC authorization code for the contact (specific to French domains).
- code
Auth StringAfnic - AFNIC authorization code for the contact (specific to French domains).
GetRegistrationOwnerContactExtensionFrDunsInfo
GetRegistrationOwnerContactExtensionFrIndividualInfo
- Whois
Opt boolIn - Whether the individual contact has opted into WHOIS publishing.
- Whois
Opt boolIn - Whether the individual contact has opted into WHOIS publishing.
- whois
Opt BooleanIn - Whether the individual contact has opted into WHOIS publishing.
- whois
Opt booleanIn - Whether the individual contact has opted into WHOIS publishing.
- whois_
opt_ boolin - Whether the individual contact has opted into WHOIS publishing.
- whois
Opt BooleanIn - Whether the individual contact has opted into WHOIS publishing.
GetRegistrationOwnerContactExtensionFrTrademarkInfo
- Trademark
Inpi string - Trademark information from INPI (French extension).
- Trademark
Inpi string - Trademark information from INPI (French extension).
- trademark
Inpi String - Trademark information from INPI (French extension).
- trademark
Inpi string - Trademark information from INPI (French extension).
- trademark_
inpi str - Trademark information from INPI (French extension).
- trademark
Inpi String - Trademark information from INPI (French extension).
GetRegistrationTechnicalContact
- Address
Line1 string - Primary address line for the contact.
- Address
Line2 string - Secondary address line for the contact (optional).
- City string
- City of the contact's address.
- Company
Identification stringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- Company
Name string - Name of the company associated with the contact (if applicable).
- Country string
- Country code of the contact's address (ISO format).
- Email string
- Primary email address of the contact.
- Email
Alt string - Alternative email address for the contact.
- Extension
Eus List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Technical Contact Extension Eus> - Details specific to European domain extensions.
- Extension
Frs List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Technical Contact Extension Fr> - Details specific to French domain extensions.
- Extension
Nls List<string> - Extension details specific to Dutch domain registrations.
- Fax
Number string - Fax number for the contact (if available).
- Firstname string
- First name of the contact.
- Lang string
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- Lastname string
- Last name of the contact.
- Legal
Form string - Legal form of the contact (e.g., 'individual' or 'organization').
- Phone
Number string - Primary phone number of the contact.
- Resale bool
- Indicates if the contact is used for resale purposes.
- State string
- State or region of the contact.
- Vat
Identification stringCode - VAT identification code of the contact, if applicable.
- Whois
Opt boolIn - Indicates whether the contact has opted into WHOIS publishing.
- Zip string
- Postal code of the contact's address.
- Address
Line1 string - Primary address line for the contact.
- Address
Line2 string - Secondary address line for the contact (optional).
- City string
- City of the contact's address.
- Company
Identification stringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- Company
Name string - Name of the company associated with the contact (if applicable).
- Country string
- Country code of the contact's address (ISO format).
- Email string
- Primary email address of the contact.
- Email
Alt string - Alternative email address for the contact.
- Extension
Eus []GetRegistration Technical Contact Extension Eus - Details specific to European domain extensions.
- Extension
Frs []GetRegistration Technical Contact Extension Fr - Details specific to French domain extensions.
- Extension
Nls []string - Extension details specific to Dutch domain registrations.
- Fax
Number string - Fax number for the contact (if available).
- Firstname string
- First name of the contact.
- Lang string
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- Lastname string
- Last name of the contact.
- Legal
Form string - Legal form of the contact (e.g., 'individual' or 'organization').
- Phone
Number string - Primary phone number of the contact.
- Resale bool
- Indicates if the contact is used for resale purposes.
- State string
- State or region of the contact.
- Vat
Identification stringCode - VAT identification code of the contact, if applicable.
- Whois
Opt boolIn - Indicates whether the contact has opted into WHOIS publishing.
- Zip string
- Postal code of the contact's address.
- address
Line1 String - Primary address line for the contact.
- address
Line2 String - Secondary address line for the contact (optional).
- city String
- City of the contact's address.
- company
Identification StringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company
Name String - Name of the company associated with the contact (if applicable).
- country String
- Country code of the contact's address (ISO format).
- email String
- Primary email address of the contact.
- email
Alt String - Alternative email address for the contact.
- extension
Eus List<GetRegistration Technical Contact Extension Eus> - Details specific to European domain extensions.
- extension
Frs List<GetRegistration Technical Contact Extension Fr> - Details specific to French domain extensions.
- extension
Nls List<String> - Extension details specific to Dutch domain registrations.
- fax
Number String - Fax number for the contact (if available).
- firstname String
- First name of the contact.
- lang String
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname String
- Last name of the contact.
- legal
Form String - Legal form of the contact (e.g., 'individual' or 'organization').
- phone
Number String - Primary phone number of the contact.
- resale Boolean
- Indicates if the contact is used for resale purposes.
- state String
- State or region of the contact.
- vat
Identification StringCode - VAT identification code of the contact, if applicable.
- whois
Opt BooleanIn - Indicates whether the contact has opted into WHOIS publishing.
- zip String
- Postal code of the contact's address.
- address
Line1 string - Primary address line for the contact.
- address
Line2 string - Secondary address line for the contact (optional).
- city string
- City of the contact's address.
- company
Identification stringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company
Name string - Name of the company associated with the contact (if applicable).
- country string
- Country code of the contact's address (ISO format).
- email string
- Primary email address of the contact.
- email
Alt string - Alternative email address for the contact.
- extension
Eus GetRegistration Technical Contact Extension Eus[] - Details specific to European domain extensions.
- extension
Frs GetRegistration Technical Contact Extension Fr[] - Details specific to French domain extensions.
- extension
Nls string[] - Extension details specific to Dutch domain registrations.
- fax
Number string - Fax number for the contact (if available).
- firstname string
- First name of the contact.
- lang string
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname string
- Last name of the contact.
- legal
Form string - Legal form of the contact (e.g., 'individual' or 'organization').
- phone
Number string - Primary phone number of the contact.
- resale boolean
- Indicates if the contact is used for resale purposes.
- state string
- State or region of the contact.
- vat
Identification stringCode - VAT identification code of the contact, if applicable.
- whois
Opt booleanIn - Indicates whether the contact has opted into WHOIS publishing.
- zip string
- Postal code of the contact's address.
- address_
line1 str - Primary address line for the contact.
- address_
line2 str - Secondary address line for the contact (optional).
- city str
- City of the contact's address.
- company_
identification_ strcode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company_
name str - Name of the company associated with the contact (if applicable).
- country str
- Country code of the contact's address (ISO format).
- email str
- Primary email address of the contact.
- email_
alt str - Alternative email address for the contact.
- extension_
eus Sequence[GetRegistration Technical Contact Extension Eus] - Details specific to European domain extensions.
- extension_
frs Sequence[GetRegistration Technical Contact Extension Fr] - Details specific to French domain extensions.
- extension_
nls Sequence[str] - Extension details specific to Dutch domain registrations.
- fax_
number str - Fax number for the contact (if available).
- firstname str
- First name of the contact.
- lang str
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname str
- Last name of the contact.
- legal_
form str - Legal form of the contact (e.g., 'individual' or 'organization').
- phone_
number str - Primary phone number of the contact.
- resale bool
- Indicates if the contact is used for resale purposes.
- state str
- State or region of the contact.
- vat_
identification_ strcode - VAT identification code of the contact, if applicable.
- whois_
opt_ boolin - Indicates whether the contact has opted into WHOIS publishing.
- zip str
- Postal code of the contact's address.
- address
Line1 String - Primary address line for the contact.
- address
Line2 String - Secondary address line for the contact (optional).
- city String
- City of the contact's address.
- company
Identification StringCode - Company identification code (e.g., SIREN/SIRET in France) for the contact.
- company
Name String - Name of the company associated with the contact (if applicable).
- country String
- Country code of the contact's address (ISO format).
- email String
- Primary email address of the contact.
- email
Alt String - Alternative email address for the contact.
- extension
Eus List<Property Map> - Details specific to European domain extensions.
- extension
Frs List<Property Map> - Details specific to French domain extensions.
- extension
Nls List<String> - Extension details specific to Dutch domain registrations.
- fax
Number String - Fax number for the contact (if available).
- firstname String
- First name of the contact.
- lang String
- Preferred language of the contact (e.g., 'en_US', 'fr_FR').
- lastname String
- Last name of the contact.
- legal
Form String - Legal form of the contact (e.g., 'individual' or 'organization').
- phone
Number String - Primary phone number of the contact.
- resale Boolean
- Indicates if the contact is used for resale purposes.
- state String
- State or region of the contact.
- vat
Identification StringCode - VAT identification code of the contact, if applicable.
- whois
Opt BooleanIn - Indicates whether the contact has opted into WHOIS publishing.
- zip String
- Postal code of the contact's address.
GetRegistrationTechnicalContactExtensionEus
- European
Citizenship string - Indicates the European citizenship of the contact.
- European
Citizenship string - Indicates the European citizenship of the contact.
- european
Citizenship String - Indicates the European citizenship of the contact.
- european
Citizenship string - Indicates the European citizenship of the contact.
- european_
citizenship str - Indicates the European citizenship of the contact.
- european
Citizenship String - Indicates the European citizenship of the contact.
GetRegistrationTechnicalContactExtensionFr
- Association
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Technical Contact Extension Fr Association Info> - Association-specific information for the domain (French extension).
- Code
Auth List<Pulumiverse.Afnic Infos Scaleway. Domain. Inputs. Get Registration Technical Contact Extension Fr Code Auth Afnic Info> - AFNIC authorization information for the contact (French extension).
- Duns
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Technical Contact Extension Fr Duns Info> - DUNS information for the domain owner (specific to French domains).
- Individual
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Technical Contact Extension Fr Individual Info> - Information about the individual registration for French domains.
- Mode string
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- Trademark
Infos List<Pulumiverse.Scaleway. Domain. Inputs. Get Registration Technical Contact Extension Fr Trademark Info> - Trademark-related information for the domain (French extension).
- Association
Infos []GetRegistration Technical Contact Extension Fr Association Info - Association-specific information for the domain (French extension).
- Code
Auth []GetAfnic Infos Registration Technical Contact Extension Fr Code Auth Afnic Info - AFNIC authorization information for the contact (French extension).
- Duns
Infos []GetRegistration Technical Contact Extension Fr Duns Info - DUNS information for the domain owner (specific to French domains).
- Individual
Infos []GetRegistration Technical Contact Extension Fr Individual Info - Information about the individual registration for French domains.
- Mode string
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- Trademark
Infos []GetRegistration Technical Contact Extension Fr Trademark Info - Trademark-related information for the domain (French extension).
- association
Infos List<GetRegistration Technical Contact Extension Fr Association Info> - Association-specific information for the domain (French extension).
- code
Auth List<GetAfnic Infos Registration Technical Contact Extension Fr Code Auth Afnic Info> - AFNIC authorization information for the contact (French extension).
- duns
Infos List<GetRegistration Technical Contact Extension Fr Duns Info> - DUNS information for the domain owner (specific to French domains).
- individual
Infos List<GetRegistration Technical Contact Extension Fr Individual Info> - Information about the individual registration for French domains.
- mode String
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark
Infos List<GetRegistration Technical Contact Extension Fr Trademark Info> - Trademark-related information for the domain (French extension).
- association
Infos GetRegistration Technical Contact Extension Fr Association Info[] - Association-specific information for the domain (French extension).
- code
Auth GetAfnic Infos Registration Technical Contact Extension Fr Code Auth Afnic Info[] - AFNIC authorization information for the contact (French extension).
- duns
Infos GetRegistration Technical Contact Extension Fr Duns Info[] - DUNS information for the domain owner (specific to French domains).
- individual
Infos GetRegistration Technical Contact Extension Fr Individual Info[] - Information about the individual registration for French domains.
- mode string
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark
Infos GetRegistration Technical Contact Extension Fr Trademark Info[] - Trademark-related information for the domain (French extension).
- association_
infos Sequence[GetRegistration Technical Contact Extension Fr Association Info] - Association-specific information for the domain (French extension).
- code_
auth_ Sequence[Getafnic_ infos Registration Technical Contact Extension Fr Code Auth Afnic Info] - AFNIC authorization information for the contact (French extension).
- duns_
infos Sequence[GetRegistration Technical Contact Extension Fr Duns Info] - DUNS information for the domain owner (specific to French domains).
- individual_
infos Sequence[GetRegistration Technical Contact Extension Fr Individual Info] - Information about the individual registration for French domains.
- mode str
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark_
infos Sequence[GetRegistration Technical Contact Extension Fr Trademark Info] - Trademark-related information for the domain (French extension).
- association
Infos List<Property Map> - Association-specific information for the domain (French extension).
- code
Auth List<Property Map>Afnic Infos - AFNIC authorization information for the contact (French extension).
- duns
Infos List<Property Map> - DUNS information for the domain owner (specific to French domains).
- individual
Infos List<Property Map> - Information about the individual registration for French domains.
- mode String
- Mode of the French extension (e.g., 'individual', 'duns', 'association', etc.).
- trademark
Infos List<Property Map> - Trademark-related information for the domain (French extension).
GetRegistrationTechnicalContactExtensionFrAssociationInfo
- Publication
Jo string - Publication date in the Official Journal (RFC3339 format) for association information.
- Publication
Jo intPage - Page number of the publication in the Official Journal for association information.
- Publication
Jo string - Publication date in the Official Journal (RFC3339 format) for association information.
- Publication
Jo intPage - Page number of the publication in the Official Journal for association information.
- publication
Jo String - Publication date in the Official Journal (RFC3339 format) for association information.
- publication
Jo IntegerPage - Page number of the publication in the Official Journal for association information.
- publication
Jo string - Publication date in the Official Journal (RFC3339 format) for association information.
- publication
Jo numberPage - Page number of the publication in the Official Journal for association information.
- publication_
jo str - Publication date in the Official Journal (RFC3339 format) for association information.
- publication_
jo_ intpage - Page number of the publication in the Official Journal for association information.
- publication
Jo String - Publication date in the Official Journal (RFC3339 format) for association information.
- publication
Jo NumberPage - Page number of the publication in the Official Journal for association information.
GetRegistrationTechnicalContactExtensionFrCodeAuthAfnicInfo
- Code
Auth stringAfnic - AFNIC authorization code for the contact (specific to French domains).
- Code
Auth stringAfnic - AFNIC authorization code for the contact (specific to French domains).
- code
Auth StringAfnic - AFNIC authorization code for the contact (specific to French domains).
- code
Auth stringAfnic - AFNIC authorization code for the contact (specific to French domains).
- code_
auth_ strafnic - AFNIC authorization code for the contact (specific to French domains).
- code
Auth StringAfnic - AFNIC authorization code for the contact (specific to French domains).
GetRegistrationTechnicalContactExtensionFrDunsInfo
GetRegistrationTechnicalContactExtensionFrIndividualInfo
- Whois
Opt boolIn - Whether the individual contact has opted into WHOIS publishing.
- Whois
Opt boolIn - Whether the individual contact has opted into WHOIS publishing.
- whois
Opt BooleanIn - Whether the individual contact has opted into WHOIS publishing.
- whois
Opt booleanIn - Whether the individual contact has opted into WHOIS publishing.
- whois_
opt_ boolin - Whether the individual contact has opted into WHOIS publishing.
- whois
Opt BooleanIn - Whether the individual contact has opted into WHOIS publishing.
GetRegistrationTechnicalContactExtensionFrTrademarkInfo
- Trademark
Inpi string - Trademark information from INPI (French extension).
- Trademark
Inpi string - Trademark information from INPI (French extension).
- trademark
Inpi String - Trademark information from INPI (French extension).
- trademark
Inpi string - Trademark information from INPI (French extension).
- trademark_
inpi str - Trademark information from INPI (French extension).
- trademark
Inpi String - Trademark information from INPI (French extension).
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scalewayTerraform Provider.
Viewing docs for Scaleway v1.46.0
published on Tuesday, Apr 14, 2026 by pulumiverse
published on Tuesday, Apr 14, 2026 by pulumiverse
