# 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
marketplace_publisher_client = oci.marketplace_publisher.MarketplacePublisherClient(
    config)


# Send the request to service, some parameters are not required, see API
# doc for more info
update_listing_revision_response = marketplace_publisher_client.update_listing_revision(
    listing_revision_id="ocid1.test.oc1..<unique_ID>EXAMPLE-listingRevisionId-Value",
    update_listing_revision_details=oci.marketplace_publisher.models.UpdateServiceListingRevisionDetails(
        listing_type="SERVICE",
        display_name="EXAMPLE-displayName-Value",
        headline="EXAMPLE-headline-Value",
        tagline="EXAMPLE-tagline-Value",
        keywords="EXAMPLE-keywords-Value",
        short_description="EXAMPLE-shortDescription-Value",
        usage_information="EXAMPLE-usageInformation-Value",
        long_description="EXAMPLE-longDescription-Value",
        content_language=oci.marketplace_publisher.models.LanguageItem(
            name="EXAMPLE-name-Value",
            code="EXAMPLE-code-Value"),
        supportedlanguages=[
            oci.marketplace_publisher.models.LanguageItem(
                name="EXAMPLE-name-Value",
                code="EXAMPLE-code-Value")],
        support_contacts=[
            oci.marketplace_publisher.models.SupportContact(
                name="EXAMPLE-name-Value",
                phone="EXAMPLE-phone-Value",
                email="EXAMPLE-email-Value",
                subject="EXAMPLE-subject-Value")],
        support_links=[
            oci.marketplace_publisher.models.NamedLink(
                name="EXAMPLE-name-Value",
                url="EXAMPLE-url-Value")],
        freeform_tags={
            'EXAMPLE_KEY_n7NW2': 'EXAMPLE_VALUE_RSYhbypB252LEaRRRUvC'},
        defined_tags={
            'EXAMPLE_KEY_o01Rh': {
                'EXAMPLE_KEY_GdBce': 'EXAMPLE--Value'}},
        contact_us="EXAMPLE-contactUs-Value",
        product_codes=["EXAMPLE--Value"],
        industries=["EXAMPLE--Value"],
        trained_professionals=[
            oci.marketplace_publisher.models.TrainedProfessionals(
                professionals_count=829,
                product_code="EXAMPLE-productCode-Value")],
        vanity_url="EXAMPLE-vanityUrl-Value",
        geo_locations=[
            oci.marketplace_publisher.models.GeoLocation(
                geographic_region="EUROPE",
                details="EXAMPLE-details-Value")]),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="PWC1SBYFT6YWDJ6CA9W0<unique_ID>")

# Get the data from response
print(update_listing_revision_response.data)