Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.FleetAppsManagement.getCatalogItems
Start a Neo task
Explain and create an oci.FleetAppsManagement.getCatalogItems resource
This data source provides the list of Catalog Items in Oracle Cloud Infrastructure Fleet Apps Management service.
Gets a list of Catalog Items in a compartment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCatalogItems = oci.FleetAppsManagement.getCatalogItems({
compartmentId: compartmentId,
catalogListingId: testListing.id,
catalogListingVersionCriteria: catalogItemCatalogListingVersionCriteria,
configSourceType: catalogItemConfigSourceType,
displayName: catalogItemDisplayName,
shouldListPublicItems: catalogItemShouldListPublicItems,
state: catalogItemState,
});
import pulumi
import pulumi_oci as oci
test_catalog_items = oci.FleetAppsManagement.get_catalog_items(compartment_id=compartment_id,
catalog_listing_id=test_listing["id"],
catalog_listing_version_criteria=catalog_item_catalog_listing_version_criteria,
config_source_type=catalog_item_config_source_type,
display_name=catalog_item_display_name,
should_list_public_items=catalog_item_should_list_public_items,
state=catalog_item_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/fleetappsmanagement"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fleetappsmanagement.GetCatalogItems(ctx, &fleetappsmanagement.GetCatalogItemsArgs{
CompartmentId: compartmentId,
CatalogListingId: pulumi.StringRef(testListing.Id),
CatalogListingVersionCriteria: pulumi.StringRef(catalogItemCatalogListingVersionCriteria),
ConfigSourceType: pulumi.StringRef(catalogItemConfigSourceType),
DisplayName: pulumi.StringRef(catalogItemDisplayName),
ShouldListPublicItems: pulumi.BoolRef(catalogItemShouldListPublicItems),
State: pulumi.StringRef(catalogItemState),
}, 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 testCatalogItems = Oci.FleetAppsManagement.GetCatalogItems.Invoke(new()
{
CompartmentId = compartmentId,
CatalogListingId = testListing.Id,
CatalogListingVersionCriteria = catalogItemCatalogListingVersionCriteria,
ConfigSourceType = catalogItemConfigSourceType,
DisplayName = catalogItemDisplayName,
ShouldListPublicItems = catalogItemShouldListPublicItems,
State = catalogItemState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.FleetAppsManagement.FleetAppsManagementFunctions;
import com.pulumi.oci.FleetAppsManagement.inputs.GetCatalogItemsArgs;
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 testCatalogItems = FleetAppsManagementFunctions.getCatalogItems(GetCatalogItemsArgs.builder()
.compartmentId(compartmentId)
.catalogListingId(testListing.id())
.catalogListingVersionCriteria(catalogItemCatalogListingVersionCriteria)
.configSourceType(catalogItemConfigSourceType)
.displayName(catalogItemDisplayName)
.shouldListPublicItems(catalogItemShouldListPublicItems)
.state(catalogItemState)
.build());
}
}
variables:
testCatalogItems:
fn::invoke:
function: oci:FleetAppsManagement:getCatalogItems
arguments:
compartmentId: ${compartmentId}
catalogListingId: ${testListing.id}
catalogListingVersionCriteria: ${catalogItemCatalogListingVersionCriteria}
configSourceType: ${catalogItemConfigSourceType}
displayName: ${catalogItemDisplayName}
shouldListPublicItems: ${catalogItemShouldListPublicItems}
state: ${catalogItemState}
Using getCatalogItems
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 getCatalogItems(args: GetCatalogItemsArgs, opts?: InvokeOptions): Promise<GetCatalogItemsResult>
function getCatalogItemsOutput(args: GetCatalogItemsOutputArgs, opts?: InvokeOptions): Output<GetCatalogItemsResult>def get_catalog_items(catalog_listing_id: Optional[str] = None,
catalog_listing_version_criteria: Optional[str] = None,
compartment_id: Optional[str] = None,
config_source_type: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetCatalogItemsFilter]] = None,
should_list_public_items: Optional[bool] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCatalogItemsResult
def get_catalog_items_output(catalog_listing_id: Optional[pulumi.Input[str]] = None,
catalog_listing_version_criteria: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
config_source_type: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetCatalogItemsFilterArgs]]]] = None,
should_list_public_items: Optional[pulumi.Input[bool]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCatalogItemsResult]func GetCatalogItems(ctx *Context, args *GetCatalogItemsArgs, opts ...InvokeOption) (*GetCatalogItemsResult, error)
func GetCatalogItemsOutput(ctx *Context, args *GetCatalogItemsOutputArgs, opts ...InvokeOption) GetCatalogItemsResultOutput> Note: This function is named GetCatalogItems in the Go SDK.
public static class GetCatalogItems
{
public static Task<GetCatalogItemsResult> InvokeAsync(GetCatalogItemsArgs args, InvokeOptions? opts = null)
public static Output<GetCatalogItemsResult> Invoke(GetCatalogItemsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetCatalogItemsResult> getCatalogItems(GetCatalogItemsArgs args, InvokeOptions options)
public static Output<GetCatalogItemsResult> getCatalogItems(GetCatalogItemsArgs args, InvokeOptions options)
fn::invoke:
function: oci:FleetAppsManagement/getCatalogItems:getCatalogItems
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - (Updatable) The ID of the compartment in which to list resources.
- Catalog
Listing stringId - catalogListingId of the package. This is an integer whose min and max length are specified.
- Catalog
Listing stringVersion Criteria - Parameter to list all catalog items only with latest version or list all catalog items with all versions.
- Config
Source stringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Catalog Items Filter> - Should
List boolPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Compartment
Id string - (Updatable) The ID of the compartment in which to list resources.
- Catalog
Listing stringId - catalogListingId of the package. This is an integer whose min and max length are specified.
- Catalog
Listing stringVersion Criteria - Parameter to list all catalog items only with latest version or list all catalog items with all versions.
- Config
Source stringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Catalog Items Filter - Should
List boolPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id String - (Updatable) The ID of the compartment in which to list resources.
- catalog
Listing StringId - catalogListingId of the package. This is an integer whose min and max length are specified.
- catalog
Listing StringVersion Criteria - Parameter to list all catalog items only with latest version or list all catalog items with all versions.
- config
Source StringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Catalog Items Filter> - should
List BooleanPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id string - (Updatable) The ID of the compartment in which to list resources.
- catalog
Listing stringId - catalogListingId of the package. This is an integer whose min and max length are specified.
- catalog
Listing stringVersion Criteria - Parameter to list all catalog items only with latest version or list all catalog items with all versions.
- config
Source stringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Catalog Items Filter[] - should
List booleanPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment_
id str - (Updatable) The ID of the compartment in which to list resources.
- catalog_
listing_ strid - catalogListingId of the package. This is an integer whose min and max length are specified.
- catalog_
listing_ strversion_ criteria - Parameter to list all catalog items only with latest version or list all catalog items with all versions.
- config_
source_ strtype - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- display_
name str - A filter to return only resources that match the entire display name given.
- filters
Sequence[Get
Catalog Items Filter] - should_
list_ boolpublic_ items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state str
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id String - (Updatable) The ID of the compartment in which to list resources.
- catalog
Listing StringId - catalogListingId of the package. This is an integer whose min and max length are specified.
- catalog
Listing StringVersion Criteria - Parameter to list all catalog items only with latest version or list all catalog items with all versions.
- config
Source StringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- should
List BooleanPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
getCatalogItems Result
The following output properties are available:
- Catalog
Item List<GetCollections Catalog Items Catalog Item Collection> - The list of catalog_item_collection.
- Compartment
Id string - The OCID of the compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Catalog
Listing stringId - Catalog
Listing stringVersion Criteria - Config
Source stringType - Config source type Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, GIT_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<Get
Catalog Items Filter> - Should
List boolPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- State string
- The current state of the CatalogItem.
- Catalog
Item []GetCollections Catalog Items Catalog Item Collection - The list of catalog_item_collection.
- Compartment
Id string - The OCID of the compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Catalog
Listing stringId - Catalog
Listing stringVersion Criteria - Config
Source stringType - Config source type Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, GIT_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]Get
Catalog Items Filter - Should
List boolPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- State string
- The current state of the CatalogItem.
- catalog
Item List<GetCollections Catalog Items Catalog Item Collection> - The list of catalog_item_collection.
- compartment
Id String - The OCID of the compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- catalog
Listing StringId - catalog
Listing StringVersion Criteria - config
Source StringType - Config source type Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, GIT_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<Get
Catalog Items Filter> - should
List BooleanPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state String
- The current state of the CatalogItem.
- catalog
Item GetCollections Catalog Items Catalog Item Collection[] - The list of catalog_item_collection.
- compartment
Id string - The OCID of the compartment.
- id string
- The provider-assigned unique ID for this managed resource.
- catalog
Listing stringId - catalog
Listing stringVersion Criteria - config
Source stringType - Config source type Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, GIT_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Get
Catalog Items Filter[] - should
List booleanPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state string
- The current state of the CatalogItem.
- catalog_
item_ Sequence[Getcollections Catalog Items Catalog Item Collection] - The list of catalog_item_collection.
- compartment_
id str - The OCID of the compartment.
- id str
- The provider-assigned unique ID for this managed resource.
- catalog_
listing_ strid - catalog_
listing_ strversion_ criteria - config_
source_ strtype - Config source type Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, GIT_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- display_
name str - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Sequence[Get
Catalog Items Filter] - should_
list_ boolpublic_ items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state str
- The current state of the CatalogItem.
- catalog
Item List<Property Map>Collections - The list of catalog_item_collection.
- compartment
Id String - The OCID of the compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- catalog
Listing StringId - catalog
Listing StringVersion Criteria - config
Source StringType - Config source type Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, GIT_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters List<Property Map>
- should
List BooleanPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state String
- The current state of the CatalogItem.
Supporting Types
GetCatalogItemsCatalogItemCollection
GetCatalogItemsCatalogItemCollectionItem
- Catalog
Result List<GetPayloads Catalog Items Catalog Item Collection Item Catalog Result Payload> - Catalog result payload.
- Catalog
Source List<GetPayloads Catalog Items Catalog Item Collection Item Catalog Source Payload> - Catalog source payload.
- Clone
Catalog intItem Trigger - Compartment
Id string - (Updatable) The ID of the compartment in which to list resources.
- Config
Source stringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Description string
- Description about the catalog item.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Id string
- The OCID of the catalog.
- Lifecycle
Details string - The details of lifecycle state CatalogItem.
- Listing
Id string - The catalog listing Id.
- Listing
Version string - The catalog package version.
- Package
Type string - Config package type Eg: TF_PACKAGE, NON_TF_PACKAGE, CONFIG_FILE.
- Short
Description string - Short description about the catalog item.
- Should
List boolPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Backfill stringLast Checked - The date and time the CatalogItem was last checked by backfill job, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Created string - The date and time the CatalogItem was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Last stringChecked - The date and time the CatalogItem was last checked, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Released string - The date and time the CatalogItem was released, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the CatalogItem was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Version
Description string - Version description about the catalog item.
- Catalog
Result []GetPayloads Catalog Items Catalog Item Collection Item Catalog Result Payload - Catalog result payload.
- Catalog
Source []GetPayloads Catalog Items Catalog Item Collection Item Catalog Source Payload - Catalog source payload.
- Clone
Catalog intItem Trigger - Compartment
Id string - (Updatable) The ID of the compartment in which to list resources.
- Config
Source stringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Description string
- Description about the catalog item.
- Display
Name string - A filter to return only resources that match the entire display name given.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Id string
- The OCID of the catalog.
- Lifecycle
Details string - The details of lifecycle state CatalogItem.
- Listing
Id string - The catalog listing Id.
- Listing
Version string - The catalog package version.
- Package
Type string - Config package type Eg: TF_PACKAGE, NON_TF_PACKAGE, CONFIG_FILE.
- Short
Description string - Short description about the catalog item.
- Should
List boolPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Backfill stringLast Checked - The date and time the CatalogItem was last checked by backfill job, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Created string - The date and time the CatalogItem was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Last stringChecked - The date and time the CatalogItem was last checked, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Released string - The date and time the CatalogItem was released, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the CatalogItem was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Version
Description string - Version description about the catalog item.
- catalog
Result List<GetPayloads Catalog Items Catalog Item Collection Item Catalog Result Payload> - Catalog result payload.
- catalog
Source List<GetPayloads Catalog Items Catalog Item Collection Item Catalog Source Payload> - Catalog source payload.
- clone
Catalog IntegerItem Trigger - compartment
Id String - (Updatable) The ID of the compartment in which to list resources.
- config
Source StringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description String
- Description about the catalog item.
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id String
- The OCID of the catalog.
- lifecycle
Details String - The details of lifecycle state CatalogItem.
- listing
Id String - The catalog listing Id.
- listing
Version String - The catalog package version.
- package
Type String - Config package type Eg: TF_PACKAGE, NON_TF_PACKAGE, CONFIG_FILE.
- short
Description String - Short description about the catalog item.
- should
List BooleanPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Backfill StringLast Checked - The date and time the CatalogItem was last checked by backfill job, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Created String - The date and time the CatalogItem was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Last StringChecked - The date and time the CatalogItem was last checked, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Released String - The date and time the CatalogItem was released, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the CatalogItem was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - version
Description String - Version description about the catalog item.
- catalog
Result GetPayloads Catalog Items Catalog Item Collection Item Catalog Result Payload[] - Catalog result payload.
- catalog
Source GetPayloads Catalog Items Catalog Item Collection Item Catalog Source Payload[] - Catalog source payload.
- clone
Catalog numberItem Trigger - compartment
Id string - (Updatable) The ID of the compartment in which to list resources.
- config
Source stringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description string
- Description about the catalog item.
- display
Name string - A filter to return only resources that match the entire display name given.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id string
- The OCID of the catalog.
- lifecycle
Details string - The details of lifecycle state CatalogItem.
- listing
Id string - The catalog listing Id.
- listing
Version string - The catalog package version.
- package
Type string - Config package type Eg: TF_PACKAGE, NON_TF_PACKAGE, CONFIG_FILE.
- short
Description string - Short description about the catalog item.
- should
List booleanPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Backfill stringLast Checked - The date and time the CatalogItem was last checked by backfill job, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Created string - The date and time the CatalogItem was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Last stringChecked - The date and time the CatalogItem was last checked, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Released string - The date and time the CatalogItem was released, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the CatalogItem was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - version
Description string - Version description about the catalog item.
- catalog_
result_ Sequence[Getpayloads Catalog Items Catalog Item Collection Item Catalog Result Payload] - Catalog result payload.
- catalog_
source_ Sequence[Getpayloads Catalog Items Catalog Item Collection Item Catalog Source Payload] - Catalog source payload.
- clone_
catalog_ intitem_ trigger - compartment_
id str - (Updatable) The ID of the compartment in which to list resources.
- config_
source_ strtype - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description str
- Description about the catalog item.
- display_
name str - A filter to return only resources that match the entire display name given.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id str
- The OCID of the catalog.
- lifecycle_
details str - The details of lifecycle state CatalogItem.
- listing_
id str - The catalog listing Id.
- listing_
version str - The catalog package version.
- package_
type str - Config package type Eg: TF_PACKAGE, NON_TF_PACKAGE, CONFIG_FILE.
- short_
description str - Short description about the catalog item.
- should_
list_ boolpublic_ items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state str
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
backfill_ strlast_ checked - The date and time the CatalogItem was last checked by backfill job, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
created str - The date and time the CatalogItem was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
last_ strchecked - The date and time the CatalogItem was last checked, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
released str - The date and time the CatalogItem was released, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time_
updated str - The date and time the CatalogItem was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - version_
description str - Version description about the catalog item.
- catalog
Result List<Property Map>Payloads - Catalog result payload.
- catalog
Source List<Property Map>Payloads - Catalog source payload.
- clone
Catalog NumberItem Trigger - compartment
Id String - (Updatable) The ID of the compartment in which to list resources.
- config
Source StringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description String
- Description about the catalog item.
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id String
- The OCID of the catalog.
- lifecycle
Details String - The details of lifecycle state CatalogItem.
- listing
Id String - The catalog listing Id.
- listing
Version String - The catalog package version.
- package
Type String - Config package type Eg: TF_PACKAGE, NON_TF_PACKAGE, CONFIG_FILE.
- short
Description String - Short description about the catalog item.
- should
List BooleanPublic Items - The indicator to append Public Items from the root compartment to any query, when set to TRUE.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Backfill StringLast Checked - The date and time the CatalogItem was last checked by backfill job, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Created String - The date and time the CatalogItem was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Last StringChecked - The date and time the CatalogItem was last checked, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Released String - The date and time the CatalogItem was released, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the CatalogItem was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - version
Description String - Version description about the catalog item.
GetCatalogItemsCatalogItemCollectionItemCatalogResultPayload
- Branch
Name string - branch Name
- Config
Result stringType - config result type.
- Configuration
Source stringProvider Id - configuration Source Provider OCID
- Package
Url string - package url
- Repository
Url string - repository Url
- Template
Id string - template id
- Time
Expires string - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Working
Directory string
- Branch
Name string - branch Name
- Config
Result stringType - config result type.
- Configuration
Source stringProvider Id - configuration Source Provider OCID
- Package
Url string - package url
- Repository
Url string - repository Url
- Template
Id string - template id
- Time
Expires string - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Working
Directory string
- branch
Name String - branch Name
- config
Result StringType - config result type.
- configuration
Source StringProvider Id - configuration Source Provider OCID
- package
Url String - package url
- repository
Url String - repository Url
- template
Id String - template id
- time
Expires String - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - working
Directory String
- branch
Name string - branch Name
- config
Result stringType - config result type.
- configuration
Source stringProvider Id - configuration Source Provider OCID
- package
Url string - package url
- repository
Url string - repository Url
- template
Id string - template id
- time
Expires string - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - working
Directory string
- branch_
name str - branch Name
- config_
result_ strtype - config result type.
- configuration_
source_ strprovider_ id - configuration Source Provider OCID
- package_
url str - package url
- repository_
url str - repository Url
- template_
id str - template id
- time_
expires str - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - working_
directory str
- branch
Name String - branch Name
- config
Result StringType - config result type.
- configuration
Source StringProvider Id - configuration Source Provider OCID
- package
Url String - package url
- repository
Url String - repository Url
- template
Id String - template id
- time
Expires String - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - working
Directory String
GetCatalogItemsCatalogItemCollectionItemCatalogSourcePayload
- Access
Uri string - access uri
- Branch
Name string - branch Name
- Bucket string
- bucket name
- Config
Source stringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- Configuration
Source stringProvider Id - configuration Source Provider OCID
- Description string
- Description about the catalog item.
- Listing
Id string - The catalog listing Id.
- Long
Description string - Template Long Description
- Namespace string
- nameSpace
- Object string
- object name
- Repository
Url string - repository Url
- Template
Display stringName - Template Display Name
- Time
Expires string - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Version string
- This version parameter of Payload.
- Working
Directory string - Zip
File stringBase64encoded - The Base64 encoded template. This payload will trigger CreateTemplate API, where the parameter will be passed.
- Access
Uri string - access uri
- Branch
Name string - branch Name
- Bucket string
- bucket name
- Config
Source stringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- Configuration
Source stringProvider Id - configuration Source Provider OCID
- Description string
- Description about the catalog item.
- Listing
Id string - The catalog listing Id.
- Long
Description string - Template Long Description
- Namespace string
- nameSpace
- Object string
- object name
- Repository
Url string - repository Url
- Template
Display stringName - Template Display Name
- Time
Expires string - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Version string
- This version parameter of Payload.
- Working
Directory string - Zip
File stringBase64encoded - The Base64 encoded template. This payload will trigger CreateTemplate API, where the parameter will be passed.
- access
Uri String - access uri
- branch
Name String - branch Name
- bucket String
- bucket name
- config
Source StringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- configuration
Source StringProvider Id - configuration Source Provider OCID
- description String
- Description about the catalog item.
- listing
Id String - The catalog listing Id.
- long
Description String - Template Long Description
- namespace String
- nameSpace
- object String
- object name
- repository
Url String - repository Url
- template
Display StringName - Template Display Name
- time
Expires String - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - version String
- This version parameter of Payload.
- working
Directory String - zip
File StringBase64encoded - The Base64 encoded template. This payload will trigger CreateTemplate API, where the parameter will be passed.
- access
Uri string - access uri
- branch
Name string - branch Name
- bucket string
- bucket name
- config
Source stringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- configuration
Source stringProvider Id - configuration Source Provider OCID
- description string
- Description about the catalog item.
- listing
Id string - The catalog listing Id.
- long
Description string - Template Long Description
- namespace string
- nameSpace
- object string
- object name
- repository
Url string - repository Url
- template
Display stringName - Template Display Name
- time
Expires string - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - version string
- This version parameter of Payload.
- working
Directory string - zip
File stringBase64encoded - The Base64 encoded template. This payload will trigger CreateTemplate API, where the parameter will be passed.
- access_
uri str - access uri
- branch_
name str - branch Name
- bucket str
- bucket name
- config_
source_ strtype - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- configuration_
source_ strprovider_ id - configuration Source Provider OCID
- description str
- Description about the catalog item.
- listing_
id str - The catalog listing Id.
- long_
description str - Template Long Description
- namespace str
- nameSpace
- object str
- object name
- repository_
url str - repository Url
- template_
display_ strname - Template Display Name
- time_
expires str - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - version str
- This version parameter of Payload.
- working_
directory str - zip_
file_ strbase64encoded - The Base64 encoded template. This payload will trigger CreateTemplate API, where the parameter will be passed.
- access
Uri String - access uri
- branch
Name String - branch Name
- bucket String
- bucket name
- config
Source StringType - The ConfigSourceType Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, URL_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
- configuration
Source StringProvider Id - configuration Source Provider OCID
- description String
- Description about the catalog item.
- listing
Id String - The catalog listing Id.
- long
Description String - Template Long Description
- namespace String
- nameSpace
- object String
- object name
- repository
Url String - repository Url
- template
Display StringName - Template Display Name
- time
Expires String - The date and time expires, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - version String
- This version parameter of Payload.
- working
Directory String - zip
File StringBase64encoded - The Base64 encoded template. This payload will trigger CreateTemplate API, where the parameter will be passed.
GetCatalogItemsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
