1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Marketplace
  5. getListings
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.Marketplace.getListings

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

This data source provides the list of Listings in Oracle Cloud Infrastructure Marketplace service.

Gets a list of listings from Oracle Cloud Infrastructure Marketplace by searching keywords and filtering according to listing attributes.

If you plan to launch an instance from an image listing, you must first subscribe to the listing. When you launch the instance, you also need to provide the image ID of the listing resource version that you want.

Subscribing to the listing requires you to first get a signature from the terms of use agreement for the listing resource version. To get the signature, issue a GetAppCatalogListingAgreements API call. The AppCatalogListingResourceVersionAgreements object, including its signature, is returned in the response. With the signature for the terms of use agreement for the desired listing resource version, create a subscription by issuing a CreateAppCatalogSubscription API call.

To get the image ID to launch an instance, issue a GetAppCatalogListingResourceVersion API call. Lastly, to launch the instance, use the image ID of the listing resource version to issue a LaunchInstance API call.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testListings = oci.Marketplace.getListings({
    categories: listingCategory,
    compartmentId: compartmentId,
    imageId: testImage.id,
    isFeatured: listingIsFeatured,
    listingId: testListing.id,
    listingTypes: listingListingTypes,
    names: listingName,
    operatingSystems: listingOperatingSystems,
    packageType: listingPackageType,
    pricings: listingPricing,
    publisherId: testPublisher.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_listings = oci.Marketplace.get_listings(categories=listing_category,
    compartment_id=compartment_id,
    image_id=test_image["id"],
    is_featured=listing_is_featured,
    listing_id=test_listing["id"],
    listing_types=listing_listing_types,
    names=listing_name,
    operating_systems=listing_operating_systems,
    package_type=listing_package_type,
    pricings=listing_pricing,
    publisher_id=test_publisher["id"])
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/marketplace"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := marketplace.GetListings(ctx, &marketplace.GetListingsArgs{
			Categories:       listingCategory,
			CompartmentId:    pulumi.StringRef(compartmentId),
			ImageId:          pulumi.StringRef(testImage.Id),
			IsFeatured:       pulumi.BoolRef(listingIsFeatured),
			ListingId:        pulumi.StringRef(testListing.Id),
			ListingTypes:     listingListingTypes,
			Names:            listingName,
			OperatingSystems: listingOperatingSystems,
			PackageType:      pulumi.StringRef(listingPackageType),
			Pricings:         listingPricing,
			PublisherId:      pulumi.StringRef(testPublisher.Id),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testListings = Oci.Marketplace.GetListings.Invoke(new()
    {
        Categories = listingCategory,
        CompartmentId = compartmentId,
        ImageId = testImage.Id,
        IsFeatured = listingIsFeatured,
        ListingId = testListing.Id,
        ListingTypes = listingListingTypes,
        Names = listingName,
        OperatingSystems = listingOperatingSystems,
        PackageType = listingPackageType,
        Pricings = listingPricing,
        PublisherId = testPublisher.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Marketplace.MarketplaceFunctions;
import com.pulumi.oci.Marketplace.inputs.GetListingsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testListings = MarketplaceFunctions.getListings(GetListingsArgs.builder()
            .categories(listingCategory)
            .compartmentId(compartmentId)
            .imageId(testImage.id())
            .isFeatured(listingIsFeatured)
            .listingId(testListing.id())
            .listingTypes(listingListingTypes)
            .names(listingName)
            .operatingSystems(listingOperatingSystems)
            .packageType(listingPackageType)
            .pricings(listingPricing)
            .publisherId(testPublisher.id())
            .build());

    }
}
Copy
variables:
  testListings:
    fn::invoke:
      function: oci:Marketplace:getListings
      arguments:
        categories: ${listingCategory}
        compartmentId: ${compartmentId}
        imageId: ${testImage.id}
        isFeatured: ${listingIsFeatured}
        listingId: ${testListing.id}
        listingTypes: ${listingListingTypes}
        names: ${listingName}
        operatingSystems: ${listingOperatingSystems}
        packageType: ${listingPackageType}
        pricings: ${listingPricing}
        publisherId: ${testPublisher.id}
Copy

Using getListings

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getListings(args: GetListingsArgs, opts?: InvokeOptions): Promise<GetListingsResult>
function getListingsOutput(args: GetListingsOutputArgs, opts?: InvokeOptions): Output<GetListingsResult>
Copy
def get_listings(categories: Optional[Sequence[str]] = None,
                 compartment_id: Optional[str] = None,
                 filters: Optional[Sequence[_marketplace.GetListingsFilter]] = None,
                 image_id: Optional[str] = None,
                 is_featured: Optional[bool] = None,
                 listing_id: Optional[str] = None,
                 listing_types: Optional[Sequence[str]] = None,
                 names: Optional[Sequence[str]] = None,
                 operating_systems: Optional[Sequence[str]] = None,
                 package_type: Optional[str] = None,
                 pricings: Optional[Sequence[str]] = None,
                 publisher_id: Optional[str] = None,
                 opts: Optional[InvokeOptions] = None) -> GetListingsResult
def get_listings_output(categories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                 compartment_id: Optional[pulumi.Input[str]] = None,
                 filters: Optional[pulumi.Input[Sequence[pulumi.Input[_marketplace.GetListingsFilterArgs]]]] = None,
                 image_id: Optional[pulumi.Input[str]] = None,
                 is_featured: Optional[pulumi.Input[bool]] = None,
                 listing_id: Optional[pulumi.Input[str]] = None,
                 listing_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                 names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                 operating_systems: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                 package_type: Optional[pulumi.Input[str]] = None,
                 pricings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                 publisher_id: Optional[pulumi.Input[str]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetListingsResult]
Copy
func GetListings(ctx *Context, args *GetListingsArgs, opts ...InvokeOption) (*GetListingsResult, error)
func GetListingsOutput(ctx *Context, args *GetListingsOutputArgs, opts ...InvokeOption) GetListingsResultOutput
Copy

> Note: This function is named GetListings in the Go SDK.

public static class GetListings 
{
    public static Task<GetListingsResult> InvokeAsync(GetListingsArgs args, InvokeOptions? opts = null)
    public static Output<GetListingsResult> Invoke(GetListingsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetListingsResult> getListings(GetListingsArgs args, InvokeOptions options)
public static Output<GetListingsResult> getListings(GetListingsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Marketplace/getListings:getListings
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Categories List<string>
Name of the product category or categories. If you specify multiple categories, then Marketplace returns any listing with one or more matching categories.
CompartmentId string
The unique identifier for the compartment. It is mandatory when used in non-commercial realms.
Filters Changes to this property will trigger replacement. List<GetListingsFilter>
ImageId string
The image identifier of the listing.
IsFeatured bool
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
ListingId string
The unique identifier for the listing.
ListingTypes List<string>
The type of the listing.
Names List<string>
The name of the listing.
OperatingSystems List<string>
The operating system of the listing.
PackageType string
A filter to return only packages that match the given package type exactly.
Pricings List<string>
Name of the pricing type. If multiple pricing types are provided, then any listing with one or more matching pricing models will be returned.
PublisherId string
Limit results to just this publisher.
Categories []string
Name of the product category or categories. If you specify multiple categories, then Marketplace returns any listing with one or more matching categories.
CompartmentId string
The unique identifier for the compartment. It is mandatory when used in non-commercial realms.
Filters Changes to this property will trigger replacement. []GetListingsFilter
ImageId string
The image identifier of the listing.
IsFeatured bool
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
ListingId string
The unique identifier for the listing.
ListingTypes []string
The type of the listing.
Names []string
The name of the listing.
OperatingSystems []string
The operating system of the listing.
PackageType string
A filter to return only packages that match the given package type exactly.
Pricings []string
Name of the pricing type. If multiple pricing types are provided, then any listing with one or more matching pricing models will be returned.
PublisherId string
Limit results to just this publisher.
categories List<String>
Name of the product category or categories. If you specify multiple categories, then Marketplace returns any listing with one or more matching categories.
compartmentId String
The unique identifier for the compartment. It is mandatory when used in non-commercial realms.
filters Changes to this property will trigger replacement. List<GetListingsFilter>
imageId String
The image identifier of the listing.
isFeatured Boolean
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
listingId String
The unique identifier for the listing.
listingTypes List<String>
The type of the listing.
names List<String>
The name of the listing.
operatingSystems List<String>
The operating system of the listing.
packageType String
A filter to return only packages that match the given package type exactly.
pricings List<String>
Name of the pricing type. If multiple pricing types are provided, then any listing with one or more matching pricing models will be returned.
publisherId String
Limit results to just this publisher.
categories string[]
Name of the product category or categories. If you specify multiple categories, then Marketplace returns any listing with one or more matching categories.
compartmentId string
The unique identifier for the compartment. It is mandatory when used in non-commercial realms.
filters Changes to this property will trigger replacement. GetListingsFilter[]
imageId string
The image identifier of the listing.
isFeatured boolean
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
listingId string
The unique identifier for the listing.
listingTypes string[]
The type of the listing.
names string[]
The name of the listing.
operatingSystems string[]
The operating system of the listing.
packageType string
A filter to return only packages that match the given package type exactly.
pricings string[]
Name of the pricing type. If multiple pricing types are provided, then any listing with one or more matching pricing models will be returned.
publisherId string
Limit results to just this publisher.
categories Sequence[str]
Name of the product category or categories. If you specify multiple categories, then Marketplace returns any listing with one or more matching categories.
compartment_id str
The unique identifier for the compartment. It is mandatory when used in non-commercial realms.
filters Changes to this property will trigger replacement. Sequence[marketplace.GetListingsFilter]
image_id str
The image identifier of the listing.
is_featured bool
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
listing_id str
The unique identifier for the listing.
listing_types Sequence[str]
The type of the listing.
names Sequence[str]
The name of the listing.
operating_systems Sequence[str]
The operating system of the listing.
package_type str
A filter to return only packages that match the given package type exactly.
pricings Sequence[str]
Name of the pricing type. If multiple pricing types are provided, then any listing with one or more matching pricing models will be returned.
publisher_id str
Limit results to just this publisher.
categories List<String>
Name of the product category or categories. If you specify multiple categories, then Marketplace returns any listing with one or more matching categories.
compartmentId String
The unique identifier for the compartment. It is mandatory when used in non-commercial realms.
filters Changes to this property will trigger replacement. List<Property Map>
imageId String
The image identifier of the listing.
isFeatured Boolean
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
listingId String
The unique identifier for the listing.
listingTypes List<String>
The type of the listing.
names List<String>
The name of the listing.
operatingSystems List<String>
The operating system of the listing.
packageType String
A filter to return only packages that match the given package type exactly.
pricings List<String>
Name of the pricing type. If multiple pricing types are provided, then any listing with one or more matching pricing models will be returned.
publisherId String
Limit results to just this publisher.

getListings Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Listings List<GetListingsListing>
The list of listings.
Categories List<string>
CompartmentId string
Filters List<GetListingsFilter>
ImageId string
IsFeatured bool
Indicates whether the listing is included in Featured Listings.
ListingId string
ListingTypes List<string>
Names List<string>
Text that describes the resource.
OperatingSystems List<string>
PackageType string
The listing's package type.
Pricings List<string>
PublisherId string
Id string
The provider-assigned unique ID for this managed resource.
Listings []GetListingsListing
The list of listings.
Categories []string
CompartmentId string
Filters []GetListingsFilter
ImageId string
IsFeatured bool
Indicates whether the listing is included in Featured Listings.
ListingId string
ListingTypes []string
Names []string
Text that describes the resource.
OperatingSystems []string
PackageType string
The listing's package type.
Pricings []string
PublisherId string
id String
The provider-assigned unique ID for this managed resource.
listings List<GetListingsListing>
The list of listings.
categories List<String>
compartmentId String
filters List<GetListingsFilter>
imageId String
isFeatured Boolean
Indicates whether the listing is included in Featured Listings.
listingId String
listingTypes List<String>
names List<String>
Text that describes the resource.
operatingSystems List<String>
packageType String
The listing's package type.
pricings List<String>
publisherId String
id string
The provider-assigned unique ID for this managed resource.
listings GetListingsListing[]
The list of listings.
categories string[]
compartmentId string
filters GetListingsFilter[]
imageId string
isFeatured boolean
Indicates whether the listing is included in Featured Listings.
listingId string
listingTypes string[]
names string[]
Text that describes the resource.
operatingSystems string[]
packageType string
The listing's package type.
pricings string[]
publisherId string
id str
The provider-assigned unique ID for this managed resource.
listings Sequence[marketplace.GetListingsListing]
The list of listings.
categories Sequence[str]
compartment_id str
filters Sequence[marketplace.GetListingsFilter]
image_id str
is_featured bool
Indicates whether the listing is included in Featured Listings.
listing_id str
listing_types Sequence[str]
names Sequence[str]
Text that describes the resource.
operating_systems Sequence[str]
package_type str
The listing's package type.
pricings Sequence[str]
publisher_id str
id String
The provider-assigned unique ID for this managed resource.
listings List<Property Map>
The list of listings.
categories List<String>
compartmentId String
filters List<Property Map>
imageId String
isFeatured Boolean
Indicates whether the listing is included in Featured Listings.
listingId String
listingTypes List<String>
names List<String>
Text that describes the resource.
operatingSystems List<String>
packageType String
The listing's package type.
pricings List<String>
publisherId String

Supporting Types

GetListingsFilter

Name This property is required. string
The name of the listing.
Values This property is required. List<string>
Regex bool
Name This property is required. string
The name of the listing.
Values This property is required. []string
Regex bool
name This property is required. String
The name of the listing.
values This property is required. List<String>
regex Boolean
name This property is required. string
The name of the listing.
values This property is required. string[]
regex boolean
name This property is required. str
The name of the listing.
values This property is required. Sequence[str]
regex bool
name This property is required. String
The name of the listing.
values This property is required. List<String>
regex Boolean

GetListingsListing

Banners This property is required. List<GetListingsListingBanner>
The model for upload data for images and icons.
Categories This property is required. List<string>
Product categories that the listing belongs to.
CompatibleArchitectures This property is required. List<string>
The list of compatible architectures supported by the listing
DefaultPackageVersion This property is required. string
The default package version.
DocumentationLinks This property is required. List<GetListingsListingDocumentationLink>
Links to additional documentation provided by the publisher specifically for the listing.
Icons This property is required. List<GetListingsListingIcon>
The model for upload data for images and icons.
Id This property is required. string
The unique identifier for the publisher.
IsFeatured This property is required. bool
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
ListingType This property is required. string
The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
Name This property is required. string
The name of the listing.
PackageType This property is required. string
A filter to return only packages that match the given package type exactly.
PricingTypes This property is required. List<string>
Publishers This property is required. List<GetListingsListingPublisher>
Summary details about the publisher of the listing.
Regions This property is required. List<GetListingsListingRegion>
The regions where the listing is eligible to be deployed.
ShortDescription This property is required. string
A short description of the listing.
SupportedOperatingSystems This property is required. List<GetListingsListingSupportedOperatingSystem>
The list of operating systems supported by the listing.
Banners This property is required. []GetListingsListingBanner
The model for upload data for images and icons.
Categories This property is required. []string
Product categories that the listing belongs to.
CompatibleArchitectures This property is required. []string
The list of compatible architectures supported by the listing
DefaultPackageVersion This property is required. string
The default package version.
DocumentationLinks This property is required. []GetListingsListingDocumentationLink
Links to additional documentation provided by the publisher specifically for the listing.
Icons This property is required. []GetListingsListingIcon
The model for upload data for images and icons.
Id This property is required. string
The unique identifier for the publisher.
IsFeatured This property is required. bool
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
ListingType This property is required. string
The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
Name This property is required. string
The name of the listing.
PackageType This property is required. string
A filter to return only packages that match the given package type exactly.
PricingTypes This property is required. []string
Publishers This property is required. []GetListingsListingPublisher
Summary details about the publisher of the listing.
Regions This property is required. []GetListingsListingRegion
The regions where the listing is eligible to be deployed.
ShortDescription This property is required. string
A short description of the listing.
SupportedOperatingSystems This property is required. []GetListingsListingSupportedOperatingSystem
The list of operating systems supported by the listing.
banners This property is required. List<GetListingsListingBanner>
The model for upload data for images and icons.
categories This property is required. List<String>
Product categories that the listing belongs to.
compatibleArchitectures This property is required. List<String>
The list of compatible architectures supported by the listing
defaultPackageVersion This property is required. String
The default package version.
documentationLinks This property is required. List<GetListingsListingDocumentationLink>
Links to additional documentation provided by the publisher specifically for the listing.
icons This property is required. List<GetListingsListingIcon>
The model for upload data for images and icons.
id This property is required. String
The unique identifier for the publisher.
isFeatured This property is required. Boolean
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
listingType This property is required. String
The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
name This property is required. String
The name of the listing.
packageType This property is required. String
A filter to return only packages that match the given package type exactly.
pricingTypes This property is required. List<String>
publishers This property is required. List<GetListingsListingPublisher>
Summary details about the publisher of the listing.
regions This property is required. List<GetListingsListingRegion>
The regions where the listing is eligible to be deployed.
shortDescription This property is required. String
A short description of the listing.
supportedOperatingSystems This property is required. List<GetListingsListingSupportedOperatingSystem>
The list of operating systems supported by the listing.
banners This property is required. GetListingsListingBanner[]
The model for upload data for images and icons.
categories This property is required. string[]
Product categories that the listing belongs to.
compatibleArchitectures This property is required. string[]
The list of compatible architectures supported by the listing
defaultPackageVersion This property is required. string
The default package version.
documentationLinks This property is required. GetListingsListingDocumentationLink[]
Links to additional documentation provided by the publisher specifically for the listing.
icons This property is required. GetListingsListingIcon[]
The model for upload data for images and icons.
id This property is required. string
The unique identifier for the publisher.
isFeatured This property is required. boolean
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
listingType This property is required. string
The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
name This property is required. string
The name of the listing.
packageType This property is required. string
A filter to return only packages that match the given package type exactly.
pricingTypes This property is required. string[]
publishers This property is required. GetListingsListingPublisher[]
Summary details about the publisher of the listing.
regions This property is required. GetListingsListingRegion[]
The regions where the listing is eligible to be deployed.
shortDescription This property is required. string
A short description of the listing.
supportedOperatingSystems This property is required. GetListingsListingSupportedOperatingSystem[]
The list of operating systems supported by the listing.
banners This property is required. Sequence[marketplace.GetListingsListingBanner]
The model for upload data for images and icons.
categories This property is required. Sequence[str]
Product categories that the listing belongs to.
compatible_architectures This property is required. Sequence[str]
The list of compatible architectures supported by the listing
default_package_version This property is required. str
The default package version.
documentation_links This property is required. Sequence[marketplace.GetListingsListingDocumentationLink]
Links to additional documentation provided by the publisher specifically for the listing.
icons This property is required. Sequence[marketplace.GetListingsListingIcon]
The model for upload data for images and icons.
id This property is required. str
The unique identifier for the publisher.
is_featured This property is required. bool
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
listing_type This property is required. str
The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
name This property is required. str
The name of the listing.
package_type This property is required. str
A filter to return only packages that match the given package type exactly.
pricing_types This property is required. Sequence[str]
publishers This property is required. Sequence[marketplace.GetListingsListingPublisher]
Summary details about the publisher of the listing.
regions This property is required. Sequence[marketplace.GetListingsListingRegion]
The regions where the listing is eligible to be deployed.
short_description This property is required. str
A short description of the listing.
supported_operating_systems This property is required. Sequence[marketplace.GetListingsListingSupportedOperatingSystem]
The list of operating systems supported by the listing.
banners This property is required. List<Property Map>
The model for upload data for images and icons.
categories This property is required. List<String>
Product categories that the listing belongs to.
compatibleArchitectures This property is required. List<String>
The list of compatible architectures supported by the listing
defaultPackageVersion This property is required. String
The default package version.
documentationLinks This property is required. List<Property Map>
Links to additional documentation provided by the publisher specifically for the listing.
icons This property is required. List<Property Map>
The model for upload data for images and icons.
id This property is required. String
The unique identifier for the publisher.
isFeatured This property is required. Boolean
Indicates whether to show only featured listings. If this is set to false or is omitted, then all listings will be returned.
listingType This property is required. String
The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
name This property is required. String
The name of the listing.
packageType This property is required. String
A filter to return only packages that match the given package type exactly.
pricingTypes This property is required. List<String>
publishers This property is required. List<Property Map>
Summary details about the publisher of the listing.
regions This property is required. List<Property Map>
The regions where the listing is eligible to be deployed.
shortDescription This property is required. String
A short description of the listing.
supportedOperatingSystems This property is required. List<Property Map>
The list of operating systems supported by the listing.

GetListingsListingBanner

ContentUrl This property is required. string
The content URL of the screenshot.
FileExtension This property is required. string
The file extension of the screenshot.
MimeType This property is required. string
The MIME type of the screenshot.
Name This property is required. string
The name of the listing.
ContentUrl This property is required. string
The content URL of the screenshot.
FileExtension This property is required. string
The file extension of the screenshot.
MimeType This property is required. string
The MIME type of the screenshot.
Name This property is required. string
The name of the listing.
contentUrl This property is required. String
The content URL of the screenshot.
fileExtension This property is required. String
The file extension of the screenshot.
mimeType This property is required. String
The MIME type of the screenshot.
name This property is required. String
The name of the listing.
contentUrl This property is required. string
The content URL of the screenshot.
fileExtension This property is required. string
The file extension of the screenshot.
mimeType This property is required. string
The MIME type of the screenshot.
name This property is required. string
The name of the listing.
content_url This property is required. str
The content URL of the screenshot.
file_extension This property is required. str
The file extension of the screenshot.
mime_type This property is required. str
The MIME type of the screenshot.
name This property is required. str
The name of the listing.
contentUrl This property is required. String
The content URL of the screenshot.
fileExtension This property is required. String
The file extension of the screenshot.
mimeType This property is required. String
The MIME type of the screenshot.
name This property is required. String
The name of the listing.
DocumentCategory This property is required. string
The category that the document belongs to.
Name This property is required. string
The name of the listing.
Url This property is required. string
The URL of the resource.
DocumentCategory This property is required. string
The category that the document belongs to.
Name This property is required. string
The name of the listing.
Url This property is required. string
The URL of the resource.
documentCategory This property is required. String
The category that the document belongs to.
name This property is required. String
The name of the listing.
url This property is required. String
The URL of the resource.
documentCategory This property is required. string
The category that the document belongs to.
name This property is required. string
The name of the listing.
url This property is required. string
The URL of the resource.
document_category This property is required. str
The category that the document belongs to.
name This property is required. str
The name of the listing.
url This property is required. str
The URL of the resource.
documentCategory This property is required. String
The category that the document belongs to.
name This property is required. String
The name of the listing.
url This property is required. String
The URL of the resource.

GetListingsListingIcon

ContentUrl This property is required. string
The content URL of the screenshot.
FileExtension This property is required. string
The file extension of the screenshot.
MimeType This property is required. string
The MIME type of the screenshot.
Name This property is required. string
The name of the listing.
ContentUrl This property is required. string
The content URL of the screenshot.
FileExtension This property is required. string
The file extension of the screenshot.
MimeType This property is required. string
The MIME type of the screenshot.
Name This property is required. string
The name of the listing.
contentUrl This property is required. String
The content URL of the screenshot.
fileExtension This property is required. String
The file extension of the screenshot.
mimeType This property is required. String
The MIME type of the screenshot.
name This property is required. String
The name of the listing.
contentUrl This property is required. string
The content URL of the screenshot.
fileExtension This property is required. string
The file extension of the screenshot.
mimeType This property is required. string
The MIME type of the screenshot.
name This property is required. string
The name of the listing.
content_url This property is required. str
The content URL of the screenshot.
file_extension This property is required. str
The file extension of the screenshot.
mime_type This property is required. str
The MIME type of the screenshot.
name This property is required. str
The name of the listing.
contentUrl This property is required. String
The content URL of the screenshot.
fileExtension This property is required. String
The file extension of the screenshot.
mimeType This property is required. String
The MIME type of the screenshot.
name This property is required. String
The name of the listing.

GetListingsListingPublisher

Description This property is required. string
A description of the screenshot.
Id This property is required. string
The unique identifier for the publisher.
Name This property is required. string
The name of the listing.
Description This property is required. string
A description of the screenshot.
Id This property is required. string
The unique identifier for the publisher.
Name This property is required. string
The name of the listing.
description This property is required. String
A description of the screenshot.
id This property is required. String
The unique identifier for the publisher.
name This property is required. String
The name of the listing.
description This property is required. string
A description of the screenshot.
id This property is required. string
The unique identifier for the publisher.
name This property is required. string
The name of the listing.
description This property is required. str
A description of the screenshot.
id This property is required. str
The unique identifier for the publisher.
name This property is required. str
The name of the listing.
description This property is required. String
A description of the screenshot.
id This property is required. String
The unique identifier for the publisher.
name This property is required. String
The name of the listing.

GetListingsListingRegion

Code This property is required. string
A code assigned to the item.
Countries This property is required. List<GetListingsListingRegionCountry>
Countries in the region.
Name This property is required. string
The name of the listing.
Code This property is required. string
A code assigned to the item.
Countries This property is required. []GetListingsListingRegionCountry
Countries in the region.
Name This property is required. string
The name of the listing.
code This property is required. String
A code assigned to the item.
countries This property is required. List<GetListingsListingRegionCountry>
Countries in the region.
name This property is required. String
The name of the listing.
code This property is required. string
A code assigned to the item.
countries This property is required. GetListingsListingRegionCountry[]
Countries in the region.
name This property is required. string
The name of the listing.
code This property is required. str
A code assigned to the item.
countries This property is required. Sequence[marketplace.GetListingsListingRegionCountry]
Countries in the region.
name This property is required. str
The name of the listing.
code This property is required. String
A code assigned to the item.
countries This property is required. List<Property Map>
Countries in the region.
name This property is required. String
The name of the listing.

GetListingsListingRegionCountry

Code This property is required. string
A code assigned to the item.
Name This property is required. string
The name of the listing.
Code This property is required. string
A code assigned to the item.
Name This property is required. string
The name of the listing.
code This property is required. String
A code assigned to the item.
name This property is required. String
The name of the listing.
code This property is required. string
A code assigned to the item.
name This property is required. string
The name of the listing.
code This property is required. str
A code assigned to the item.
name This property is required. str
The name of the listing.
code This property is required. String
A code assigned to the item.
name This property is required. String
The name of the listing.

GetListingsListingSupportedOperatingSystem

Name This property is required. string
The name of the listing.
Name This property is required. string
The name of the listing.
name This property is required. String
The name of the listing.
name This property is required. string
The name of the listing.
name This property is required. str
The name of the listing.
name This property is required. String
The name of the listing.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi