All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.clouddomains.kotlin.outputs.RegistrationContactSettings.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.clouddomains.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property adminContact Caution: Anyone with access to this email address, phone number, and/or postal address can take control of the domain.
 * Warning: For new Registrations, the registrant receives an email confirmation that they must complete within 15 days to
 * avoid domain suspension.
 * Structure is documented below.
 * @property privacy Required. Privacy setting for the contacts associated with the Registration.
 * Values are PUBLIC_CONTACT_DATA, PRIVATE_CONTACT_DATA, and REDACTED_CONTACT_DATA
 * @property registrantContact Caution: Anyone with access to this email address, phone number, and/or postal address can take control of the domain.
 * Warning: For new Registrations, the registrant receives an email confirmation that they must complete within 15 days to
 * avoid domain suspension.
 * Structure is documented below.
 * @property technicalContact Caution: Anyone with access to this email address, phone number, and/or postal address can take control of the domain.
 * Warning: For new Registrations, the registrant receives an email confirmation that they must complete within 15 days to
 * avoid domain suspension.
 * Structure is documented below.
 */
public data class RegistrationContactSettings(
    public val adminContact: RegistrationContactSettingsAdminContact,
    public val privacy: String,
    public val registrantContact: RegistrationContactSettingsRegistrantContact,
    public val technicalContact: RegistrationContactSettingsTechnicalContact,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.clouddomains.outputs.RegistrationContactSettings): RegistrationContactSettings = RegistrationContactSettings(
            adminContact = javaType.adminContact().let({ args0 ->
                com.pulumi.gcp.clouddomains.kotlin.outputs.RegistrationContactSettingsAdminContact.Companion.toKotlin(args0)
            }),
            privacy = javaType.privacy(),
            registrantContact = javaType.registrantContact().let({ args0 ->
                com.pulumi.gcp.clouddomains.kotlin.outputs.RegistrationContactSettingsRegistrantContact.Companion.toKotlin(args0)
            }),
            technicalContact = javaType.technicalContact().let({ args0 ->
                com.pulumi.gcp.clouddomains.kotlin.outputs.RegistrationContactSettingsTechnicalContact.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy