oci.Marketplace.getListings
Explore with Pulumi AI
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,
});
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"])
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
})
}
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,
});
});
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());
}
}
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}
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>
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]
func GetListings(ctx *Context, args *GetListingsArgs, opts ...InvokeOption) (*GetListingsResult, error)
func GetListingsOutput(ctx *Context, args *GetListingsOutputArgs, opts ...InvokeOption) GetListingsResultOutput
> 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)
}
public static CompletableFuture<GetListingsResult> getListings(GetListingsArgs args, InvokeOptions options)
public static Output<GetListingsResult> getListings(GetListingsArgs args, InvokeOptions options)
fn::invoke:
function: oci:Marketplace/getListings:getListings
arguments:
# arguments dictionary
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.
- Compartment
Id string - The unique identifier for the compartment. It is mandatory when used in non-commercial realms.
- Filters
Changes to this property will trigger replacement.
Listings Filter> - Image
Id string - 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 string - The unique identifier for the listing.
- Listing
Types List<string> - The type of the listing.
- Names List<string>
- The name of the listing.
- Operating
Systems List<string> - The operating system of the listing.
- Package
Type 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.
- Publisher
Id 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.
- Compartment
Id string - The unique identifier for the compartment. It is mandatory when used in non-commercial realms.
- Filters
Changes to this property will trigger replacement.
Listings Filter - Image
Id string - 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 string - The unique identifier for the listing.
- Listing
Types []string - The type of the listing.
- Names []string
- The name of the listing.
- Operating
Systems []string - The operating system of the listing.
- Package
Type 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.
- Publisher
Id 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.
- compartment
Id String - The unique identifier for the compartment. It is mandatory when used in non-commercial realms.
- filters
Changes to this property will trigger replacement.
Listings Filter> - image
Id String - The image identifier of the listing.
- is
Featured Boolean - Indicates whether to show only featured listings. If this is set to
false
or is omitted, then all listings will be returned. - listing
Id String - The unique identifier for the listing.
- listing
Types List<String> - The type of the listing.
- names List<String>
- The name of the listing.
- operating
Systems List<String> - The operating system of the listing.
- package
Type 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.
- publisher
Id 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.
- compartment
Id string - The unique identifier for the compartment. It is mandatory when used in non-commercial realms.
- filters
Changes to this property will trigger replacement.
Listings Filter[] - image
Id string - The image identifier of the listing.
- is
Featured boolean - Indicates whether to show only featured listings. If this is set to
false
or is omitted, then all listings will be returned. - listing
Id string - The unique identifier for the listing.
- listing
Types string[] - The type of the listing.
- names string[]
- The name of the listing.
- operating
Systems string[] - The operating system of the listing.
- package
Type 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.
- publisher
Id 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.
Get Listings Filter] - 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.
- compartment
Id String - The unique identifier for the compartment. It is mandatory when used in non-commercial realms.
- filters
Changes to this property will trigger replacement.
- image
Id String - The image identifier of the listing.
- is
Featured Boolean - Indicates whether to show only featured listings. If this is set to
false
or is omitted, then all listings will be returned. - listing
Id String - The unique identifier for the listing.
- listing
Types List<String> - The type of the listing.
- names List<String>
- The name of the listing.
- operating
Systems List<String> - The operating system of the listing.
- package
Type 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.
- publisher
Id 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<Get
Listings Listing> - The list of listings.
- Categories List<string>
- Compartment
Id string - Filters
List<Get
Listings Filter> - Image
Id string - Is
Featured bool - Indicates whether the listing is included in Featured Listings.
- Listing
Id string - Listing
Types List<string> - Names List<string>
- Text that describes the resource.
- Operating
Systems List<string> - Package
Type string - The listing's package type.
- Pricings List<string>
- Publisher
Id string
- Id string
- The provider-assigned unique ID for this managed resource.
- Listings
[]Get
Listings Listing - The list of listings.
- Categories []string
- Compartment
Id string - Filters
[]Get
Listings Filter - Image
Id string - Is
Featured bool - Indicates whether the listing is included in Featured Listings.
- Listing
Id string - Listing
Types []string - Names []string
- Text that describes the resource.
- Operating
Systems []string - Package
Type string - The listing's package type.
- Pricings []string
- Publisher
Id string
- id String
- The provider-assigned unique ID for this managed resource.
- listings
List<Get
Listings Listing> - The list of listings.
- categories List<String>
- compartment
Id String - filters
List<Get
Listings Filter> - image
Id String - is
Featured Boolean - Indicates whether the listing is included in Featured Listings.
- listing
Id String - listing
Types List<String> - names List<String>
- Text that describes the resource.
- operating
Systems List<String> - package
Type String - The listing's package type.
- pricings List<String>
- publisher
Id String
- id string
- The provider-assigned unique ID for this managed resource.
- listings
Get
Listings Listing[] - The list of listings.
- categories string[]
- compartment
Id string - filters
Get
Listings Filter[] - image
Id string - is
Featured boolean - Indicates whether the listing is included in Featured Listings.
- listing
Id string - listing
Types string[] - names string[]
- Text that describes the resource.
- operating
Systems string[] - package
Type string - The listing's package type.
- pricings string[]
- publisher
Id string
- id str
- The provider-assigned unique ID for this managed resource.
- listings
Sequence[marketplace.
Get Listings Listing] - The list of listings.
- categories Sequence[str]
- compartment_
id str - filters
Sequence[marketplace.
Get Listings Filter] - 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>
- compartment
Id String - filters List<Property Map>
- image
Id String - is
Featured Boolean - Indicates whether the listing is included in Featured Listings.
- listing
Id String - listing
Types List<String> - names List<String>
- Text that describes the resource.
- operating
Systems List<String> - package
Type String - The listing's package type.
- pricings List<String>
- publisher
Id String
Supporting Types
GetListingsFilter
GetListingsListing
This property is required. List<GetListings Listing Banner> - The model for upload data for images and icons.
- Categories
This property is required. List<string> - Product categories that the listing belongs to.
- Compatible
Architectures This property is required. List<string> - The list of compatible architectures supported by the listing
- Default
Package Version This property is required. string - The default package version.
- Documentation
Links This property is required. List<GetListings Listing Documentation Link> - Links to additional documentation provided by the publisher specifically for the listing.
- Icons
This property is required. List<GetListings Listing Icon> - The model for upload data for images and icons.
- Id
This property is required. string - 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. 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.
- Package
Type This property is required. string - A filter to return only packages that match the given package type exactly.
- Pricing
Types This property is required. List<string> - Publishers
This property is required. List<GetListings Listing Publisher> - Summary details about the publisher of the listing.
- Regions
This property is required. List<GetListings Listing Region> - The regions where the listing is eligible to be deployed.
- Short
Description This property is required. string - A short description of the listing.
- Supported
Operating Systems This property is required. List<GetListings Listing Supported Operating System> - The list of operating systems supported by the listing.
This property is required. []GetListings Listing Banner - The model for upload data for images and icons.
- Categories
This property is required. []string - Product categories that the listing belongs to.
- Compatible
Architectures This property is required. []string - The list of compatible architectures supported by the listing
- Default
Package Version This property is required. string - The default package version.
- Documentation
Links This property is required. []GetListings Listing Documentation Link - Links to additional documentation provided by the publisher specifically for the listing.
- Icons
This property is required. []GetListings Listing Icon - The model for upload data for images and icons.
- Id
This property is required. string - 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. 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.
- Package
Type This property is required. string - A filter to return only packages that match the given package type exactly.
- Pricing
Types This property is required. []string - Publishers
This property is required. []GetListings Listing Publisher - Summary details about the publisher of the listing.
- Regions
This property is required. []GetListings Listing Region - The regions where the listing is eligible to be deployed.
- Short
Description This property is required. string - A short description of the listing.
- Supported
Operating Systems This property is required. []GetListings Listing Supported Operating System - The list of operating systems supported by the listing.
This property is required. List<GetListings Listing Banner> - The model for upload data for images and icons.
- categories
This property is required. List<String> - Product categories that the listing belongs to.
- compatible
Architectures This property is required. List<String> - The list of compatible architectures supported by the listing
- default
Package Version This property is required. String - The default package version.
- documentation
Links This property is required. List<GetListings Listing Documentation Link> - Links to additional documentation provided by the publisher specifically for the listing.
- icons
This property is required. List<GetListings Listing Icon> - The model for upload data for images and icons.
- id
This property is required. String - The unique identifier for the publisher.
- is
Featured 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. - listing
Type 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.
- package
Type This property is required. String - A filter to return only packages that match the given package type exactly.
- pricing
Types This property is required. List<String> - publishers
This property is required. List<GetListings Listing Publisher> - Summary details about the publisher of the listing.
- regions
This property is required. List<GetListings Listing Region> - The regions where the listing is eligible to be deployed.
- short
Description This property is required. String - A short description of the listing.
- supported
Operating Systems This property is required. List<GetListings Listing Supported Operating System> - The list of operating systems supported by the listing.
This property is required. GetListings Listing Banner[] - The model for upload data for images and icons.
- categories
This property is required. string[] - Product categories that the listing belongs to.
- compatible
Architectures This property is required. string[] - The list of compatible architectures supported by the listing
- default
Package Version This property is required. string - The default package version.
- documentation
Links This property is required. GetListings Listing Documentation Link[] - Links to additional documentation provided by the publisher specifically for the listing.
- icons
This property is required. GetListings Listing Icon[] - The model for upload data for images and icons.
- id
This property is required. string - The unique identifier for the publisher.
- is
Featured 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. - listing
Type 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.
- package
Type This property is required. string - A filter to return only packages that match the given package type exactly.
- pricing
Types This property is required. string[] - publishers
This property is required. GetListings Listing Publisher[] - Summary details about the publisher of the listing.
- regions
This property is required. GetListings Listing Region[] - The regions where the listing is eligible to be deployed.
- short
Description This property is required. string - A short description of the listing.
- supported
Operating Systems This property is required. GetListings Listing Supported Operating System[] - The list of operating systems supported by the listing.
This property is required. Sequence[marketplace.Get Listings Listing Banner] - 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.Get Listings Listing Documentation Link] - Links to additional documentation provided by the publisher specifically for the listing.
- icons
This property is required. Sequence[marketplace.Get Listings Listing Icon] - 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.Get Listings Listing Publisher] - Summary details about the publisher of the listing.
- regions
This property is required. Sequence[marketplace.Get Listings Listing Region] - 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.Get Listings Listing Supported Operating System] - The list of operating systems supported by the listing.
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.
- compatible
Architectures This property is required. List<String> - The list of compatible architectures supported by the listing
- default
Package Version This property is required. String - The default package version.
- documentation
Links 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.
- is
Featured 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. - listing
Type 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.
- package
Type This property is required. String - A filter to return only packages that match the given package type exactly.
- pricing
Types 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.
- short
Description This property is required. String - A short description of the listing.
- supported
Operating Systems This property is required. List<Property Map> - The list of operating systems supported by the listing.
GetListingsListingBanner
- Content
Url This property is required. string - The content URL of the screenshot.
- File
Extension This property is required. string - The file extension of the screenshot.
- Mime
Type 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. string - The content URL of the screenshot.
- File
Extension This property is required. string - The file extension of the screenshot.
- Mime
Type 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. String - The content URL of the screenshot.
- file
Extension This property is required. String - The file extension of the screenshot.
- mime
Type 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. string - The content URL of the screenshot.
- file
Extension This property is required. string - The file extension of the screenshot.
- mime
Type 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.
- content
Url This property is required. String - The content URL of the screenshot.
- file
Extension This property is required. String - The file extension of the screenshot.
- mime
Type This property is required. String - The MIME type of the screenshot.
- name
This property is required. String - The name of the listing.
GetListingsListingDocumentationLink
- Document
Category 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. 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. 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. 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.
- document
Category 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
- Content
Url This property is required. string - The content URL of the screenshot.
- File
Extension This property is required. string - The file extension of the screenshot.
- Mime
Type 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. string - The content URL of the screenshot.
- File
Extension This property is required. string - The file extension of the screenshot.
- Mime
Type 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. String - The content URL of the screenshot.
- file
Extension This property is required. String - The file extension of the screenshot.
- mime
Type 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. string - The content URL of the screenshot.
- file
Extension This property is required. string - The file extension of the screenshot.
- mime
Type 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.
- content
Url This property is required. String - The content URL of the screenshot.
- file
Extension This property is required. String - The file extension of the screenshot.
- mime
Type 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<GetListings Listing Region Country> - 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. []GetListings Listing Region Country - 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<GetListings Listing Region Country> - 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. GetListings Listing Region Country[] - 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.Get Listings Listing Region Country] - 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
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.