1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. getAppCatalogListings
Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

oci.Core.getAppCatalogListings

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.32.0 published on Thursday, Apr 24, 2025 by Pulumi

This data source provides the list of App Catalog Listings in Oracle Cloud Infrastructure Core service.

Lists the published listings.

Example Usage

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

const testAppCatalogListings = oci.Core.getAppCatalogListings({
    displayName: appCatalogListingDisplayName,
    publisherName: appCatalogListingPublisherName,
    publisherType: appCatalogListingPublisherType,
});
Copy
import pulumi
import pulumi_oci as oci

test_app_catalog_listings = oci.Core.get_app_catalog_listings(display_name=app_catalog_listing_display_name,
    publisher_name=app_catalog_listing_publisher_name,
    publisher_type=app_catalog_listing_publisher_type)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := core.GetAppCatalogListings(ctx, &core.GetAppCatalogListingsArgs{
			DisplayName:   pulumi.StringRef(appCatalogListingDisplayName),
			PublisherName: pulumi.StringRef(appCatalogListingPublisherName),
			PublisherType: pulumi.StringRef(appCatalogListingPublisherType),
		}, 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 testAppCatalogListings = Oci.Core.GetAppCatalogListings.Invoke(new()
    {
        DisplayName = appCatalogListingDisplayName,
        PublisherName = appCatalogListingPublisherName,
        PublisherType = appCatalogListingPublisherType,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.CoreFunctions;
import com.pulumi.oci.Core.inputs.GetAppCatalogListingsArgs;
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 testAppCatalogListings = CoreFunctions.getAppCatalogListings(GetAppCatalogListingsArgs.builder()
            .displayName(appCatalogListingDisplayName)
            .publisherName(appCatalogListingPublisherName)
            .publisherType(appCatalogListingPublisherType)
            .build());

    }
}
Copy
variables:
  testAppCatalogListings:
    fn::invoke:
      function: oci:Core:getAppCatalogListings
      arguments:
        displayName: ${appCatalogListingDisplayName}
        publisherName: ${appCatalogListingPublisherName}
        publisherType: ${appCatalogListingPublisherType}
Copy

Using getAppCatalogListings

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 getAppCatalogListings(args: GetAppCatalogListingsArgs, opts?: InvokeOptions): Promise<GetAppCatalogListingsResult>
function getAppCatalogListingsOutput(args: GetAppCatalogListingsOutputArgs, opts?: InvokeOptions): Output<GetAppCatalogListingsResult>
Copy
def get_app_catalog_listings(display_name: Optional[str] = None,
                             filters: Optional[Sequence[_core.GetAppCatalogListingsFilter]] = None,
                             publisher_name: Optional[str] = None,
                             publisher_type: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetAppCatalogListingsResult
def get_app_catalog_listings_output(display_name: Optional[pulumi.Input[str]] = None,
                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[_core.GetAppCatalogListingsFilterArgs]]]] = None,
                             publisher_name: Optional[pulumi.Input[str]] = None,
                             publisher_type: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetAppCatalogListingsResult]
Copy
func GetAppCatalogListings(ctx *Context, args *GetAppCatalogListingsArgs, opts ...InvokeOption) (*GetAppCatalogListingsResult, error)
func GetAppCatalogListingsOutput(ctx *Context, args *GetAppCatalogListingsOutputArgs, opts ...InvokeOption) GetAppCatalogListingsResultOutput
Copy

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

public static class GetAppCatalogListings 
{
    public static Task<GetAppCatalogListingsResult> InvokeAsync(GetAppCatalogListingsArgs args, InvokeOptions? opts = null)
    public static Output<GetAppCatalogListingsResult> Invoke(GetAppCatalogListingsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetAppCatalogListingsResult> getAppCatalogListings(GetAppCatalogListingsArgs args, InvokeOptions options)
public static Output<GetAppCatalogListingsResult> getAppCatalogListings(GetAppCatalogListingsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Core/getAppCatalogListings:getAppCatalogListings
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

DisplayName string
A filter to return only resources that match the given display name exactly.
Filters Changes to this property will trigger replacement. List<GetAppCatalogListingsFilter>
PublisherName string
A filter to return only the publisher that matches the given publisher name exactly.
PublisherType string
A filter to return only publishers that match the given publisher type exactly. Valid types are OCI, ORACLE, TRUSTED, STANDARD.
DisplayName string
A filter to return only resources that match the given display name exactly.
Filters Changes to this property will trigger replacement. []GetAppCatalogListingsFilter
PublisherName string
A filter to return only the publisher that matches the given publisher name exactly.
PublisherType string
A filter to return only publishers that match the given publisher type exactly. Valid types are OCI, ORACLE, TRUSTED, STANDARD.
displayName String
A filter to return only resources that match the given display name exactly.
filters Changes to this property will trigger replacement. List<GetAppCatalogListingsFilter>
publisherName String
A filter to return only the publisher that matches the given publisher name exactly.
publisherType String
A filter to return only publishers that match the given publisher type exactly. Valid types are OCI, ORACLE, TRUSTED, STANDARD.
displayName string
A filter to return only resources that match the given display name exactly.
filters Changes to this property will trigger replacement. GetAppCatalogListingsFilter[]
publisherName string
A filter to return only the publisher that matches the given publisher name exactly.
publisherType string
A filter to return only publishers that match the given publisher type exactly. Valid types are OCI, ORACLE, TRUSTED, STANDARD.
display_name str
A filter to return only resources that match the given display name exactly.
filters Changes to this property will trigger replacement. Sequence[core.GetAppCatalogListingsFilter]
publisher_name str
A filter to return only the publisher that matches the given publisher name exactly.
publisher_type str
A filter to return only publishers that match the given publisher type exactly. Valid types are OCI, ORACLE, TRUSTED, STANDARD.
displayName String
A filter to return only resources that match the given display name exactly.
filters Changes to this property will trigger replacement. List<Property Map>
publisherName String
A filter to return only the publisher that matches the given publisher name exactly.
publisherType String
A filter to return only publishers that match the given publisher type exactly. Valid types are OCI, ORACLE, TRUSTED, STANDARD.

getAppCatalogListings Result

The following output properties are available:

AppCatalogListings List<GetAppCatalogListingsAppCatalogListing>
The list of app_catalog_listings.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
Filters List<GetAppCatalogListingsFilter>
PublisherName string
The name of the publisher who published this listing.
PublisherType string
AppCatalogListings []GetAppCatalogListingsAppCatalogListing
The list of app_catalog_listings.
Id string
The provider-assigned unique ID for this managed resource.
DisplayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
Filters []GetAppCatalogListingsFilter
PublisherName string
The name of the publisher who published this listing.
PublisherType string
appCatalogListings List<GetAppCatalogListingsAppCatalogListing>
The list of app_catalog_listings.
id String
The provider-assigned unique ID for this managed resource.
displayName String
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
filters List<GetAppCatalogListingsFilter>
publisherName String
The name of the publisher who published this listing.
publisherType String
appCatalogListings GetAppCatalogListingsAppCatalogListing[]
The list of app_catalog_listings.
id string
The provider-assigned unique ID for this managed resource.
displayName string
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
filters GetAppCatalogListingsFilter[]
publisherName string
The name of the publisher who published this listing.
publisherType string
app_catalog_listings Sequence[core.GetAppCatalogListingsAppCatalogListing]
The list of app_catalog_listings.
id str
The provider-assigned unique ID for this managed resource.
display_name str
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
filters Sequence[core.GetAppCatalogListingsFilter]
publisher_name str
The name of the publisher who published this listing.
publisher_type str
appCatalogListings List<Property Map>
The list of app_catalog_listings.
id String
The provider-assigned unique ID for this managed resource.
displayName String
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
filters List<Property Map>
publisherName String
The name of the publisher who published this listing.
publisherType String

Supporting Types

GetAppCatalogListingsAppCatalogListing

ContactUrl This property is required. string
Listing's contact URL.
Description This property is required. string
Description of the listing.
DisplayName This property is required. string
A filter to return only resources that match the given display name exactly.
ListingId This property is required. string
the region free ocid of the listing resource.
PublisherLogoUrl This property is required. string
Publisher's logo URL.
PublisherName This property is required. string
A filter to return only the publisher that matches the given publisher name exactly.
Summary This property is required. string
The short summary for the listing.
TimePublished This property is required. string
Date and time the listing was published, in RFC3339 format. Example: 2018-03-20T12:32:53.532Z
ContactUrl This property is required. string
Listing's contact URL.
Description This property is required. string
Description of the listing.
DisplayName This property is required. string
A filter to return only resources that match the given display name exactly.
ListingId This property is required. string
the region free ocid of the listing resource.
PublisherLogoUrl This property is required. string
Publisher's logo URL.
PublisherName This property is required. string
A filter to return only the publisher that matches the given publisher name exactly.
Summary This property is required. string
The short summary for the listing.
TimePublished This property is required. string
Date and time the listing was published, in RFC3339 format. Example: 2018-03-20T12:32:53.532Z
contactUrl This property is required. String
Listing's contact URL.
description This property is required. String
Description of the listing.
displayName This property is required. String
A filter to return only resources that match the given display name exactly.
listingId This property is required. String
the region free ocid of the listing resource.
publisherLogoUrl This property is required. String
Publisher's logo URL.
publisherName This property is required. String
A filter to return only the publisher that matches the given publisher name exactly.
summary This property is required. String
The short summary for the listing.
timePublished This property is required. String
Date and time the listing was published, in RFC3339 format. Example: 2018-03-20T12:32:53.532Z
contactUrl This property is required. string
Listing's contact URL.
description This property is required. string
Description of the listing.
displayName This property is required. string
A filter to return only resources that match the given display name exactly.
listingId This property is required. string
the region free ocid of the listing resource.
publisherLogoUrl This property is required. string
Publisher's logo URL.
publisherName This property is required. string
A filter to return only the publisher that matches the given publisher name exactly.
summary This property is required. string
The short summary for the listing.
timePublished This property is required. string
Date and time the listing was published, in RFC3339 format. Example: 2018-03-20T12:32:53.532Z
contact_url This property is required. str
Listing's contact URL.
description This property is required. str
Description of the listing.
display_name This property is required. str
A filter to return only resources that match the given display name exactly.
listing_id This property is required. str
the region free ocid of the listing resource.
publisher_logo_url This property is required. str
Publisher's logo URL.
publisher_name This property is required. str
A filter to return only the publisher that matches the given publisher name exactly.
summary This property is required. str
The short summary for the listing.
time_published This property is required. str
Date and time the listing was published, in RFC3339 format. Example: 2018-03-20T12:32:53.532Z
contactUrl This property is required. String
Listing's contact URL.
description This property is required. String
Description of the listing.
displayName This property is required. String
A filter to return only resources that match the given display name exactly.
listingId This property is required. String
the region free ocid of the listing resource.
publisherLogoUrl This property is required. String
Publisher's logo URL.
publisherName This property is required. String
A filter to return only the publisher that matches the given publisher name exactly.
summary This property is required. String
The short summary for the listing.
timePublished This property is required. String
Date and time the listing was published, in RFC3339 format. Example: 2018-03-20T12:32:53.532Z

GetAppCatalogListingsFilter

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

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.32.0 published on Thursday, Apr 24, 2025 by Pulumi