// 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).

package main

import (
	"context"
	"fmt"

	"github.com/oracle/oci-go-sdk/v65/common"
	"github.com/oracle/oci-go-sdk/v65/example/helpers"
	"github.com/oracle/oci-go-sdk/v65/marketplacepublisher"
)

func ExampleUpdateListingRevision() {
	// Create a default authentication provider that uses the DEFAULT
	// profile in the configuration file.
	// Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.
	client, err := marketplacepublisher.NewMarketplacePublisherClientWithConfigurationProvider(common.DefaultConfigProvider())
	helpers.FatalIfError(err)

	// Create a request and dependent object(s).

	req := marketplacepublisher.UpdateListingRevisionRequest{ListingRevisionId: common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-listingRevisionId-Value"),
		OpcRequestId: common.String("A9UW91G2BODKTMDTLBCS<unique_ID>"),
		UpdateListingRevisionDetails: marketplacepublisher.UpdateServiceListingRevisionDetails{FreeformTags: map[string]string{"EXAMPLE_KEY_DRYAy": "EXAMPLE_VALUE_lHOow8KLQ2XdZLFdb8Ud"},
			Keywords:     common.String("EXAMPLE-keywords-Value"),
			ProductCodes: []string{"EXAMPLE--Value"},
			SupportContacts: []marketplacepublisher.SupportContact{marketplacepublisher.SupportContact{Email: common.String("EXAMPLE-email-Value"),
				Name:    common.String("EXAMPLE-name-Value"),
				Phone:   common.String("EXAMPLE-phone-Value"),
				Subject: common.String("EXAMPLE-subject-Value")}},
			SupportLinks: []marketplacepublisher.NamedLink{marketplacepublisher.NamedLink{Url: common.String("EXAMPLE-url-Value"),
				Name: common.String("EXAMPLE-name-Value")}},
			DefinedTags: map[string]map[string]interface{}{"EXAMPLE_KEY_I1xz5": map[string]interface{}{"EXAMPLE_KEY_47CVz": "EXAMPLE--Value"}},
			GeoLocations: []marketplacepublisher.GeoLocation{marketplacepublisher.GeoLocation{Details: common.String("EXAMPLE-details-Value"),
				GeographicRegion: marketplacepublisher.GeoLocationGeographicRegionLatinAmerica}},
			Industries: []string{"EXAMPLE--Value"},
			Tagline:    common.String("EXAMPLE-tagline-Value"),
			TrainedProfessionals: []marketplacepublisher.TrainedProfessionals{marketplacepublisher.TrainedProfessionals{ProductCode: common.String("EXAMPLE-productCode-Value"),
				ProfessionalsCount: common.Int64(396)}},
			DisplayName:      common.String("EXAMPLE-displayName-Value"),
			Headline:         common.String("EXAMPLE-headline-Value"),
			ShortDescription: common.String("EXAMPLE-shortDescription-Value"),
			VanityUrl:        common.String("EXAMPLE-vanityUrl-Value"),
			ContentLanguage: &marketplacepublisher.LanguageItem{Code: common.String("EXAMPLE-code-Value"),
				Name: common.String("EXAMPLE-name-Value")},
			LongDescription: common.String("EXAMPLE-longDescription-Value"),
			Supportedlanguages: []marketplacepublisher.LanguageItem{marketplacepublisher.LanguageItem{Code: common.String("EXAMPLE-code-Value"),
				Name: common.String("EXAMPLE-name-Value")}},
			UsageInformation: common.String("EXAMPLE-usageInformation-Value"),
			ContactUs:        common.String("EXAMPLE-contactUs-Value")},
		IfMatch: common.String("EXAMPLE-ifMatch-Value")}

	// Send the request using the service client
	resp, err := client.UpdateListingRevision(context.Background(), req)
	helpers.FatalIfError(err)

	// Retrieve value from the response.
	fmt.Println(resp)
}