// 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 ExampleCreateListingRevision() {
	// 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.CreateListingRevisionRequest{CreateListingRevisionDetails: marketplacepublisher.CreateServiceListingRevisionDetails{GeoLocations: []marketplacepublisher.GeoLocation{marketplacepublisher.GeoLocation{Details: common.String("EXAMPLE-details-Value"),
		GeographicRegion: marketplacepublisher.GeoLocationGeographicRegionMiddleEast}},
		Keywords:     common.String("EXAMPLE-keywords-Value"),
		ProductCodes: []string{"EXAMPLE--Value"},
		Tagline:      common.String("EXAMPLE-tagline-Value"),
		TrainedProfessionals: []marketplacepublisher.TrainedProfessionals{marketplacepublisher.TrainedProfessionals{ProductCode: common.String("EXAMPLE-productCode-Value"),
			ProfessionalsCount: common.Int64(869)}},
		LongDescription: common.String("EXAMPLE-longDescription-Value"),
		Status:          marketplacepublisher.ListingRevisionStatusPublished,
		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")}},
		UsageInformation: common.String("EXAMPLE-usageInformation-Value"),
		ContactUs:        common.String("EXAMPLE-contactUs-Value"),
		DefinedTags:      map[string]map[string]interface{}{"EXAMPLE_KEY_61LpY": map[string]interface{}{"EXAMPLE_KEY_mFbiw": "EXAMPLE--Value"}},
		ListingId:        common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-listingId-Value"),
		ShortDescription: common.String("EXAMPLE-shortDescription-Value"),
		SupportLinks: []marketplacepublisher.NamedLink{marketplacepublisher.NamedLink{Name: common.String("EXAMPLE-name-Value"),
			Url: common.String("EXAMPLE-url-Value")}},
		VanityUrl: common.String("EXAMPLE-vanityUrl-Value"),
		ContentLanguage: &marketplacepublisher.LanguageItem{Code: common.String("EXAMPLE-code-Value"),
			Name: common.String("EXAMPLE-name-Value")},
		DisplayName: common.String("EXAMPLE-displayName-Value"),
		Headline:    common.String("EXAMPLE-headline-Value"),
		Industries:  []string{"EXAMPLE--Value"},
		Supportedlanguages: []marketplacepublisher.LanguageItem{marketplacepublisher.LanguageItem{Code: common.String("EXAMPLE-code-Value"),
			Name: common.String("EXAMPLE-name-Value")}},
		FreeformTags: map[string]string{"EXAMPLE_KEY_kEP3e": "EXAMPLE_VALUE_Tk95GC9rxhu8nhE06A53"}},
		OpcRequestId:  common.String("YJTWGXO0HH5PZU1RBXEW<unique_ID>"),
		OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value")}

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

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