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