# 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.UpdateOciListingRevisionDetails(
listing_type="OCI_APPLICATION",
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_X8nNO': 'EXAMPLE_VALUE_2aSbZp1OxyWl3dgfGUyt'},
defined_tags={
'EXAMPLE_KEY_kdEra': {
'EXAMPLE_KEY_Uw03K': 'EXAMPLE--Value'}},
version_details=oci.marketplace_publisher.models.VersionDetails(
number="EXAMPLE-number-Value",
description="EXAMPLE-description-Value",
release_date="EXAMPLE-releaseDate-Value"),
system_requirements="EXAMPLE-systemRequirements-Value",
pricing_type="PAYGO",
products=[
oci.marketplace_publisher.models.ListingProduct(
code="EXAMPLE-code-Value",
categories=["EXAMPLE--Value"],
additional_filters=[
oci.marketplace_publisher.models.ListingProductAdditionalFilter(
filter_code="EXAMPLE-filterCode-Value",
filter_properties=["EXAMPLE--Value"])])],
partner_registration_url="EXAMPLE-partnerRegistrationUrl-Value",
term_id="ocid1.test.oc1..<unique_ID>EXAMPLE-termId-Value",
vanity_url="EXAMPLE-vanityUrl-Value",
recommended_service_provider_listing_ids=["EXAMPLE--Value"],
availability_and_pricing_policy="EXAMPLE-availabilityAndPricingPolicy-Value",
pricing_plans=[
oci.marketplace_publisher.models.UsageBasedPricingPlan(
plan_type="USAGE_BASED",
rates=[
oci.marketplace_publisher.models.PricingRate(
billing_currency="EXAMPLE-billingCurrency-Value",
rate=8536.178)],
name="EXAMPLE-name-Value",
plan_description="EXAMPLE-planDescription-Value",
billing_frequency="SEMI_ANNUAL",
dimensions=[
oci.marketplace_publisher.models.UsageDimension(
dimension_name="EXAMPLE-dimensionName-Value",
dimension_description="EXAMPLE-dimensionDescription-Value",
metric_type="OCPU_HOURS",
dimension_billing_frequency="SEMI_ANNUAL",
dimension_key="dd4G2yOoDxdihaBUh8w31L3EivX2Ea2ZeU9Y",
included_quantity=5346.226,
additional_details={
'EXAMPLE_KEY_oCXli': 'EXAMPLE_VALUE_42556BgpZdiNQQDRJcR4'})],
pricing_plan_key="ki9LMqBG4XukrcRBENGysoSq13ilkAiWHXum",
plan_duration="QUARTERLY",
extended_metadata={
'EXAMPLE_KEY_h6X5P': 'EXAMPLE_VALUE_CZnAPSKiQUmXnbFBwPqx'})],
is_rover_exportable=True,
demo_url="EXAMPLE-demoUrl-Value",
self_paced_training_url="EXAMPLE-selfPacedTrainingUrl-Value"),
if_match="EXAMPLE-ifMatch-Value",
opc_request_id="CGNTI9TZKXFYU6X55AGA<unique_ID>")
# Get the data from response
print(update_listing_revision_response.data)