// 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{OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value"),
		CreateListingRevisionDetails: marketplacepublisher.CreateLeadGenListingRevisionDetails{FreeformTags: map[string]string{"EXAMPLE_KEY_in5qw": "EXAMPLE_VALUE_jFTsFZj385YDun966kHt"},
			PricingType:        marketplacepublisher.OciListingRevisionPricingTypePaygo,
			Status:             marketplacepublisher.ListingRevisionStatusNew,
			SystemRequirements: common.String("EXAMPLE-systemRequirements-Value"),
			Tagline:            common.String("EXAMPLE-tagline-Value"),
			VersionDetails: &marketplacepublisher.VersionDetails{Description: common.String("EXAMPLE-description-Value"),
				Number:      common.String("EXAMPLE-number-Value"),
				ReleaseDate: common.String("EXAMPLE-releaseDate-Value")},
			Products: []marketplacepublisher.ListingProduct{marketplacepublisher.ListingProduct{AdditionalFilters: []marketplacepublisher.ListingProductAdditionalFilter{marketplacepublisher.ListingProductAdditionalFilter{FilterCode: common.String("EXAMPLE-filterCode-Value"),
				FilterProperties: []string{"EXAMPLE--Value"}}},
				Categories: []string{"EXAMPLE--Value"},
				Code:       common.String("EXAMPLE-code-Value")}},
			ContentLanguage: &marketplacepublisher.LanguageItem{Code: common.String("EXAMPLE-code-Value"),
				Name: common.String("EXAMPLE-name-Value")},
			DemoUrl:     common.String("EXAMPLE-demoUrl-Value"),
			DisplayName: common.String("EXAMPLE-displayName-Value"),
			DownloadInfo: &marketplacepublisher.DownloadInfo{Description: common.String("EXAMPLE-description-Value"),
				Url: common.String("EXAMPLE-url-Value")},
			Headline:                             common.String("EXAMPLE-headline-Value"),
			ListingId:                            common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-listingId-Value"),
			RecommendedServiceProviderListingIds: []string{"EXAMPLE--Value"},
			SelfPacedTrainingUrl:                 common.String("EXAMPLE-selfPacedTrainingUrl-Value"),
			ShortDescription:                     common.String("EXAMPLE-shortDescription-Value"),
			SupportContacts: []marketplacepublisher.SupportContact{marketplacepublisher.SupportContact{Name: common.String("EXAMPLE-name-Value"),
				Phone:   common.String("EXAMPLE-phone-Value"),
				Subject: common.String("EXAMPLE-subject-Value"),
				Email:   common.String("EXAMPLE-email-Value")}},
			SupportLinks: []marketplacepublisher.NamedLink{marketplacepublisher.NamedLink{Name: common.String("EXAMPLE-name-Value"),
				Url: common.String("EXAMPLE-url-Value")}},
			VanityUrl:       common.String("EXAMPLE-vanityUrl-Value"),
			LongDescription: common.String("EXAMPLE-longDescription-Value"),
			PricingPlans:    common.String("EXAMPLE-pricingPlans-Value"),
			DefinedTags:     map[string]map[string]interface{}{"EXAMPLE_KEY_Jsf6H": map[string]interface{}{"EXAMPLE_KEY_3mOMR": "EXAMPLE--Value"}},
			Keywords:        common.String("EXAMPLE-keywords-Value"),
			Supportedlanguages: []marketplacepublisher.LanguageItem{marketplacepublisher.LanguageItem{Code: common.String("EXAMPLE-code-Value"),
				Name: common.String("EXAMPLE-name-Value")}},
			UsageInformation: common.String("EXAMPLE-usageInformation-Value")},
		OpcRequestId: common.String("39TUYIDXZBIXRXTK36LS<unique_ID>")}

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