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/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)
// Output-based functions aren't available in Java yet
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
List<Get
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
[]Get
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
List<Get
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
Get
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
Sequence[marketplace.
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 List<Property Map>
- 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
- List<Get
Listings Listing Banner> - The model for upload data for images and icons.
- Categories List<string>
- Product categories that the listing belongs to.
- Compatible
Architectures List<string> - The list of compatible architectures supported by the listing
- Default
Package stringVersion - The default package version.
- Documentation
Links List<GetListings Listing Documentation Link> - Links to additional documentation provided by the publisher specifically for the listing.
- Icons
List<Get
Listings Listing Icon> - The model for upload data for images and icons.
- Id string
- The unique identifier for the publisher.
- 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
Type string - The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
- Name string
- The name of the listing.
- Package
Type string - A filter to return only packages that match the given package type exactly.
- Pricing
Types List<string> - Publishers
List<Get
Listings Listing Publisher> - Summary details about the publisher of the listing.
- Regions
List<Get
Listings Listing Region> - The regions where the listing is eligible to be deployed.
- Short
Description string - A short description of the listing.
- Supported
Operating List<GetSystems Listings Listing Supported Operating System> - The list of operating systems supported by the listing.
- []Get
Listings Listing Banner - The model for upload data for images and icons.
- Categories []string
- Product categories that the listing belongs to.
- Compatible
Architectures []string - The list of compatible architectures supported by the listing
- Default
Package stringVersion - The default package version.
- Documentation
Links []GetListings Listing Documentation Link - Links to additional documentation provided by the publisher specifically for the listing.
- Icons
[]Get
Listings Listing Icon - The model for upload data for images and icons.
- Id string
- The unique identifier for the publisher.
- 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
Type string - The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
- Name string
- The name of the listing.
- Package
Type string - A filter to return only packages that match the given package type exactly.
- Pricing
Types []string - Publishers
[]Get
Listings Listing Publisher - Summary details about the publisher of the listing.
- Regions
[]Get
Listings Listing Region - The regions where the listing is eligible to be deployed.
- Short
Description string - A short description of the listing.
- Supported
Operating []GetSystems Listings Listing Supported Operating System - The list of operating systems supported by the listing.
- List<Get
Listings Listing Banner> - The model for upload data for images and icons.
- categories List<String>
- Product categories that the listing belongs to.
- compatible
Architectures List<String> - The list of compatible architectures supported by the listing
- default
Package StringVersion - The default package version.
- documentation
Links List<GetListings Listing Documentation Link> - Links to additional documentation provided by the publisher specifically for the listing.
- icons
List<Get
Listings Listing Icon> - The model for upload data for images and icons.
- id String
- The unique identifier for the publisher.
- 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
Type String - The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
- name String
- The name of the listing.
- package
Type String - A filter to return only packages that match the given package type exactly.
- pricing
Types List<String> - publishers
List<Get
Listings Listing Publisher> - Summary details about the publisher of the listing.
- regions
List<Get
Listings Listing Region> - The regions where the listing is eligible to be deployed.
- short
Description String - A short description of the listing.
- supported
Operating List<GetSystems Listings Listing Supported Operating System> - The list of operating systems supported by the listing.
- Get
Listings Listing Banner[] - The model for upload data for images and icons.
- categories string[]
- Product categories that the listing belongs to.
- compatible
Architectures string[] - The list of compatible architectures supported by the listing
- default
Package stringVersion - The default package version.
- documentation
Links GetListings Listing Documentation Link[] - Links to additional documentation provided by the publisher specifically for the listing.
- icons
Get
Listings Listing Icon[] - The model for upload data for images and icons.
- id string
- The unique identifier for the publisher.
- 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
Type string - The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
- name string
- The name of the listing.
- package
Type string - A filter to return only packages that match the given package type exactly.
- pricing
Types string[] - publishers
Get
Listings Listing Publisher[] - Summary details about the publisher of the listing.
- regions
Get
Listings Listing Region[] - The regions where the listing is eligible to be deployed.
- short
Description string - A short description of the listing.
- supported
Operating GetSystems Listings Listing Supported Operating System[] - The list of operating systems supported by the listing.
- Sequence[marketplace.
Get Listings Listing Banner] - The model for upload data for images and icons.
- categories Sequence[str]
- Product categories that the listing belongs to.
- compatible_
architectures Sequence[str] - The list of compatible architectures supported by the listing
- default_
package_ strversion - The default package version.
- documentation_
links Sequence[marketplace.Get Listings Listing Documentation Link] - Links to additional documentation provided by the publisher specifically for the listing.
- icons
Sequence[marketplace.
Get Listings Listing Icon] - The model for upload data for images and icons.
- id str
- The unique identifier for the publisher.
- 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_
type str - The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
- name str
- The name of the listing.
- package_
type str - A filter to return only packages that match the given package type exactly.
- pricing_
types Sequence[str] - publishers
Sequence[marketplace.
Get Listings Listing Publisher] - Summary details about the publisher of the listing.
- regions
Sequence[marketplace.
Get Listings Listing Region] - The regions where the listing is eligible to be deployed.
- short_
description str - A short description of the listing.
- supported_
operating_ Sequence[marketplace.systems Get Listings Listing Supported Operating System] - The list of operating systems supported by the listing.
- List<Property Map>
- The model for upload data for images and icons.
- categories List<String>
- Product categories that the listing belongs to.
- compatible
Architectures List<String> - The list of compatible architectures supported by the listing
- default
Package StringVersion - The default package version.
- documentation
Links List<Property Map> - Links to additional documentation provided by the publisher specifically for the listing.
- icons List<Property Map>
- The model for upload data for images and icons.
- id String
- The unique identifier for the publisher.
- 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
Type String - The publisher category to which the listing belongs. The publisher category informs where the listing appears for use.
- name String
- The name of the listing.
- package
Type String - A filter to return only packages that match the given package type exactly.
- pricing
Types List<String> - publishers List<Property Map>
- Summary details about the publisher of the listing.
- regions List<Property Map>
- The regions where the listing is eligible to be deployed.
- short
Description String - A short description of the listing.
- supported
Operating List<Property Map>Systems - The list of operating systems supported by the listing.
GetListingsListingBanner
- Content
Url string - The content URL of the screenshot.
- File
Extension string - The file extension of the screenshot.
- Mime
Type string - The MIME type of the screenshot.
- Name string
- The name of the listing.
- Content
Url string - The content URL of the screenshot.
- File
Extension string - The file extension of the screenshot.
- Mime
Type string - The MIME type of the screenshot.
- Name string
- The name of the listing.
- content
Url String - The content URL of the screenshot.
- file
Extension String - The file extension of the screenshot.
- mime
Type String - The MIME type of the screenshot.
- name String
- The name of the listing.
- content
Url string - The content URL of the screenshot.
- file
Extension string - The file extension of the screenshot.
- mime
Type string - The MIME type of the screenshot.
- name string
- The name of the listing.
- content_
url str - The content URL of the screenshot.
- file_
extension str - The file extension of the screenshot.
- mime_
type str - The MIME type of the screenshot.
- name str
- The name of the listing.
- content
Url String - The content URL of the screenshot.
- file
Extension String - The file extension of the screenshot.
- mime
Type String - The MIME type of the screenshot.
- name String
- The name of the listing.
GetListingsListingDocumentationLink
- Document
Category string - The category that the document belongs to.
- Name string
- The name of the listing.
- Url string
- The URL of the resource.
- Document
Category string - The category that the document belongs to.
- Name string
- The name of the listing.
- Url string
- The URL of the resource.
- document
Category String - The category that the document belongs to.
- name String
- The name of the listing.
- url String
- The URL of the resource.
- document
Category string - The category that the document belongs to.
- name string
- The name of the listing.
- url string
- The URL of the resource.
- document_
category str - The category that the document belongs to.
- name str
- The name of the listing.
- url str
- The URL of the resource.
- document
Category String - The category that the document belongs to.
- name String
- The name of the listing.
- url String
- The URL of the resource.
GetListingsListingIcon
- Content
Url string - The content URL of the screenshot.
- File
Extension string - The file extension of the screenshot.
- Mime
Type string - The MIME type of the screenshot.
- Name string
- The name of the listing.
- Content
Url string - The content URL of the screenshot.
- File
Extension string - The file extension of the screenshot.
- Mime
Type string - The MIME type of the screenshot.
- Name string
- The name of the listing.
- content
Url String - The content URL of the screenshot.
- file
Extension String - The file extension of the screenshot.
- mime
Type String - The MIME type of the screenshot.
- name String
- The name of the listing.
- content
Url string - The content URL of the screenshot.
- file
Extension string - The file extension of the screenshot.
- mime
Type string - The MIME type of the screenshot.
- name string
- The name of the listing.
- content_
url str - The content URL of the screenshot.
- file_
extension str - The file extension of the screenshot.
- mime_
type str - The MIME type of the screenshot.
- name str
- The name of the listing.
- content
Url String - The content URL of the screenshot.
- file
Extension String - The file extension of the screenshot.
- mime
Type String - The MIME type of the screenshot.
- name String
- The name of the listing.
GetListingsListingPublisher
- Description string
- A description of the screenshot.
- Id string
- The unique identifier for the publisher.
- Name string
- The name of the listing.
- Description string
- A description of the screenshot.
- Id string
- The unique identifier for the publisher.
- Name string
- The name of the listing.
- description String
- A description of the screenshot.
- id String
- The unique identifier for the publisher.
- name String
- The name of the listing.
- description string
- A description of the screenshot.
- id string
- The unique identifier for the publisher.
- name string
- The name of the listing.
- description str
- A description of the screenshot.
- id str
- The unique identifier for the publisher.
- name str
- The name of the listing.
- description String
- A description of the screenshot.
- id String
- The unique identifier for the publisher.
- name String
- The name of the listing.
GetListingsListingRegion
- Code string
- A code assigned to the item.
- Countries
List<Get
Listings Listing Region Country> - Countries in the region.
- Name string
- The name of the listing.
- Code string
- A code assigned to the item.
- Countries
[]Get
Listings Listing Region Country - Countries in the region.
- Name string
- The name of the listing.
- code String
- A code assigned to the item.
- countries
List<Get
Listings Listing Region Country> - Countries in the region.
- name String
- The name of the listing.
- code string
- A code assigned to the item.
- countries
Get
Listings Listing Region Country[] - Countries in the region.
- name string
- The name of the listing.
- code str
- A code assigned to the item.
- countries
Sequence[marketplace.
Get Listings Listing Region Country] - Countries in the region.
- name str
- The name of the listing.
- code String
- A code assigned to the item.
- countries List<Property Map>
- Countries in the region.
- name String
- The name of the listing.
GetListingsListingRegionCountry
GetListingsListingSupportedOperatingSystem
- Name string
- The name of the listing.
- Name string
- The name of the listing.
- name String
- The name of the listing.
- name string
- The name of the listing.
- name str
- The name of the listing.
- name 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.