# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).

import oci

# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()


# Initialize service client with default config file
fusion_apps_client = oci.fusion_apps.FusionApplicationsClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
update_vanity_domain_response = fusion_apps_client.update_vanity_domain(
    fusion_environment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-fusionEnvironmentId-Value",
    vanity_domain_id="ocid1.test.oc1..<unique_ID>EXAMPLE-vanityDomainId-Value",
    update_vanity_domain_details=oci.fusion_apps.models.UpdateVanityDomainDetails(
        certificate_info=oci.fusion_apps.models.CertificateInfo(
            common_name="EXAMPLE-commonName-Value",
            subject_alt_names=["EXAMPLE--Value"],
            organization_name="EXAMPLE-organizationName-Value",
            organization_unit="EXAMPLE-organizationUnit-Value",
            locality="EXAMPLE-locality-Value",
            state="EXAMPLE-state-Value",
            country="EXAMPLE-country-Value",
            email_address="EXAMPLE-emailAddress-Value",
            origin_csr="EXAMPLE-originCsr-Value",
            akamai_csr="EXAMPLE-akamaiCsr-Value",
            origin_dv_cert_instruction="EXAMPLE-originDvCertInstruction-Value",
            akamai_dv_cert_instruction="EXAMPLE-akamaiDvCertInstruction-Value",
            first_name="EXAMPLE-firstName-Value",
            last_name="EXAMPLE-lastName-Value",
            phone_number="EXAMPLE-phoneNumber-Value",
            postal_code="EXAMPLE-postalCode-Value")),
    opc_request_id="ZUJ1WEWJVZECDPCS4PYB<unique_ID>",
    if_match="EXAMPLE-ifMatch-Value")

# Get the data from response
print(update_vanity_domain_response.headers)