1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. OsManagementHub
  5. getSoftwareSourceAvailableSoftwarePackages
Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi

oci.OsManagementHub.getSoftwareSourceAvailableSoftwarePackages

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi

    This data source provides the list of Software Source Available Software Packages in Oracle Cloud Infrastructure Os Management Hub service.

    Lists software packages that are available to be added to a custom software source of type MANIFEST. Filter the list against a variety of criteria including but not limited to its name.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSoftwareSourceAvailableSoftwarePackages = oci.OsManagementHub.getSoftwareSourceAvailableSoftwarePackages({
        softwareSourceId: testSoftwareSource.id,
        displayName: softwareSourceAvailableSoftwarePackageDisplayName,
        displayNameContains: softwareSourceAvailableSoftwarePackageDisplayNameContains,
        isLatest: softwareSourceAvailableSoftwarePackageIsLatest,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_software_source_available_software_packages = oci.OsManagementHub.get_software_source_available_software_packages(software_source_id=test_software_source["id"],
        display_name=software_source_available_software_package_display_name,
        display_name_contains=software_source_available_software_package_display_name_contains,
        is_latest=software_source_available_software_package_is_latest)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/osmanagementhub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := osmanagementhub.GetSoftwareSourceAvailableSoftwarePackages(ctx, &osmanagementhub.GetSoftwareSourceAvailableSoftwarePackagesArgs{
    			SoftwareSourceId:    testSoftwareSource.Id,
    			DisplayName:         pulumi.StringRef(softwareSourceAvailableSoftwarePackageDisplayName),
    			DisplayNameContains: pulumi.StringRef(softwareSourceAvailableSoftwarePackageDisplayNameContains),
    			IsLatest:            pulumi.BoolRef(softwareSourceAvailableSoftwarePackageIsLatest),
    		}, 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 testSoftwareSourceAvailableSoftwarePackages = Oci.OsManagementHub.GetSoftwareSourceAvailableSoftwarePackages.Invoke(new()
        {
            SoftwareSourceId = testSoftwareSource.Id,
            DisplayName = softwareSourceAvailableSoftwarePackageDisplayName,
            DisplayNameContains = softwareSourceAvailableSoftwarePackageDisplayNameContains,
            IsLatest = softwareSourceAvailableSoftwarePackageIsLatest,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.OsManagementHub.OsManagementHubFunctions;
    import com.pulumi.oci.OsManagementHub.inputs.GetSoftwareSourceAvailableSoftwarePackagesArgs;
    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 testSoftwareSourceAvailableSoftwarePackages = OsManagementHubFunctions.getSoftwareSourceAvailableSoftwarePackages(GetSoftwareSourceAvailableSoftwarePackagesArgs.builder()
                .softwareSourceId(testSoftwareSource.id())
                .displayName(softwareSourceAvailableSoftwarePackageDisplayName)
                .displayNameContains(softwareSourceAvailableSoftwarePackageDisplayNameContains)
                .isLatest(softwareSourceAvailableSoftwarePackageIsLatest)
                .build());
    
        }
    }
    
    variables:
      testSoftwareSourceAvailableSoftwarePackages:
        fn::invoke:
          function: oci:OsManagementHub:getSoftwareSourceAvailableSoftwarePackages
          arguments:
            softwareSourceId: ${testSoftwareSource.id}
            displayName: ${softwareSourceAvailableSoftwarePackageDisplayName}
            displayNameContains: ${softwareSourceAvailableSoftwarePackageDisplayNameContains}
            isLatest: ${softwareSourceAvailableSoftwarePackageIsLatest}
    

    Using getSoftwareSourceAvailableSoftwarePackages

    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 getSoftwareSourceAvailableSoftwarePackages(args: GetSoftwareSourceAvailableSoftwarePackagesArgs, opts?: InvokeOptions): Promise<GetSoftwareSourceAvailableSoftwarePackagesResult>
    function getSoftwareSourceAvailableSoftwarePackagesOutput(args: GetSoftwareSourceAvailableSoftwarePackagesOutputArgs, opts?: InvokeOptions): Output<GetSoftwareSourceAvailableSoftwarePackagesResult>
    def get_software_source_available_software_packages(display_name: Optional[str] = None,
                                                        display_name_contains: Optional[str] = None,
                                                        filters: Optional[Sequence[_osmanagementhub.GetSoftwareSourceAvailableSoftwarePackagesFilter]] = None,
                                                        is_latest: Optional[bool] = None,
                                                        software_source_id: Optional[str] = None,
                                                        opts: Optional[InvokeOptions] = None) -> GetSoftwareSourceAvailableSoftwarePackagesResult
    def get_software_source_available_software_packages_output(display_name: Optional[pulumi.Input[str]] = None,
                                                        display_name_contains: Optional[pulumi.Input[str]] = None,
                                                        filters: Optional[pulumi.Input[Sequence[pulumi.Input[_osmanagementhub.GetSoftwareSourceAvailableSoftwarePackagesFilterArgs]]]] = None,
                                                        is_latest: Optional[pulumi.Input[bool]] = None,
                                                        software_source_id: Optional[pulumi.Input[str]] = None,
                                                        opts: Optional[InvokeOptions] = None) -> Output[GetSoftwareSourceAvailableSoftwarePackagesResult]
    func GetSoftwareSourceAvailableSoftwarePackages(ctx *Context, args *GetSoftwareSourceAvailableSoftwarePackagesArgs, opts ...InvokeOption) (*GetSoftwareSourceAvailableSoftwarePackagesResult, error)
    func GetSoftwareSourceAvailableSoftwarePackagesOutput(ctx *Context, args *GetSoftwareSourceAvailableSoftwarePackagesOutputArgs, opts ...InvokeOption) GetSoftwareSourceAvailableSoftwarePackagesResultOutput

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

    public static class GetSoftwareSourceAvailableSoftwarePackages 
    {
        public static Task<GetSoftwareSourceAvailableSoftwarePackagesResult> InvokeAsync(GetSoftwareSourceAvailableSoftwarePackagesArgs args, InvokeOptions? opts = null)
        public static Output<GetSoftwareSourceAvailableSoftwarePackagesResult> Invoke(GetSoftwareSourceAvailableSoftwarePackagesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSoftwareSourceAvailableSoftwarePackagesResult> getSoftwareSourceAvailableSoftwarePackages(GetSoftwareSourceAvailableSoftwarePackagesArgs args, InvokeOptions options)
    public static Output<GetSoftwareSourceAvailableSoftwarePackagesResult> getSoftwareSourceAvailableSoftwarePackages(GetSoftwareSourceAvailableSoftwarePackagesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:OsManagementHub/getSoftwareSourceAvailableSoftwarePackages:getSoftwareSourceAvailableSoftwarePackages
      arguments:
        # arguments dictionary

    The following arguments are supported:

    SoftwareSourceId string
    The OCID of the software source.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    DisplayNameContains string
    A filter to return resources that may partially match the given display name.
    Filters List<GetSoftwareSourceAvailableSoftwarePackagesFilter>
    IsLatest bool
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
    SoftwareSourceId string
    The OCID of the software source.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    DisplayNameContains string
    A filter to return resources that may partially match the given display name.
    Filters []GetSoftwareSourceAvailableSoftwarePackagesFilter
    IsLatest bool
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
    softwareSourceId String
    The OCID of the software source.
    displayName String
    A filter to return resources that match the given user-friendly name.
    displayNameContains String
    A filter to return resources that may partially match the given display name.
    filters List<GetSoftwareSourceAvailableSoftwarePackagesFilter>
    isLatest Boolean
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
    softwareSourceId string
    The OCID of the software source.
    displayName string
    A filter to return resources that match the given user-friendly name.
    displayNameContains string
    A filter to return resources that may partially match the given display name.
    filters GetSoftwareSourceAvailableSoftwarePackagesFilter[]
    isLatest boolean
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
    software_source_id str
    The OCID of the software source.
    display_name str
    A filter to return resources that match the given user-friendly name.
    display_name_contains str
    A filter to return resources that may partially match the given display name.
    filters Sequence[osmanagementhub.GetSoftwareSourceAvailableSoftwarePackagesFilter]
    is_latest bool
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
    softwareSourceId String
    The OCID of the software source.
    displayName String
    A filter to return resources that match the given user-friendly name.
    displayNameContains String
    A filter to return resources that may partially match the given display name.
    filters List<Property Map>
    isLatest Boolean
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.

    getSoftwareSourceAvailableSoftwarePackages Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    SoftwarePackageCollections List<GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollection>
    The list of software_package_collection.
    SoftwareSourceId string
    DisplayName string
    Software source name.
    DisplayNameContains string
    Filters List<GetSoftwareSourceAvailableSoftwarePackagesFilter>
    IsLatest bool
    Indicates whether this package is the latest version.
    Id string
    The provider-assigned unique ID for this managed resource.
    SoftwarePackageCollections []GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollection
    The list of software_package_collection.
    SoftwareSourceId string
    DisplayName string
    Software source name.
    DisplayNameContains string
    Filters []GetSoftwareSourceAvailableSoftwarePackagesFilter
    IsLatest bool
    Indicates whether this package is the latest version.
    id String
    The provider-assigned unique ID for this managed resource.
    softwarePackageCollections List<GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollection>
    The list of software_package_collection.
    softwareSourceId String
    displayName String
    Software source name.
    displayNameContains String
    filters List<GetSoftwareSourceAvailableSoftwarePackagesFilter>
    isLatest Boolean
    Indicates whether this package is the latest version.
    id string
    The provider-assigned unique ID for this managed resource.
    softwarePackageCollections GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollection[]
    The list of software_package_collection.
    softwareSourceId string
    displayName string
    Software source name.
    displayNameContains string
    filters GetSoftwareSourceAvailableSoftwarePackagesFilter[]
    isLatest boolean
    Indicates whether this package is the latest version.
    id str
    The provider-assigned unique ID for this managed resource.
    software_package_collections Sequence[osmanagementhub.GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollection]
    The list of software_package_collection.
    software_source_id str
    display_name str
    Software source name.
    display_name_contains str
    filters Sequence[osmanagementhub.GetSoftwareSourceAvailableSoftwarePackagesFilter]
    is_latest bool
    Indicates whether this package is the latest version.
    id String
    The provider-assigned unique ID for this managed resource.
    softwarePackageCollections List<Property Map>
    The list of software_package_collection.
    softwareSourceId String
    displayName String
    Software source name.
    displayNameContains String
    filters List<Property Map>
    isLatest Boolean
    Indicates whether this package is the latest version.

    Supporting Types

    GetSoftwareSourceAvailableSoftwarePackagesFilter

    Name string
    Unique identifier for the package. Note that this is not an OCID.
    Values List<string>
    Regex bool
    Name string
    Unique identifier for the package. Note that this is not an OCID.
    Values []string
    Regex bool
    name String
    Unique identifier for the package. Note that this is not an OCID.
    values List<String>
    regex Boolean
    name string
    Unique identifier for the package. Note that this is not an OCID.
    values string[]
    regex boolean
    name str
    Unique identifier for the package. Note that this is not an OCID.
    values Sequence[str]
    regex bool
    name String
    Unique identifier for the package. Note that this is not an OCID.
    values List<String>
    regex Boolean

    GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollection

    items List<Property Map>
    List of software packages.

    GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItem

    Architecture string
    The architecture for which this software was built.
    Checksum string
    Checksum of the package.
    ChecksumType string
    Type of the checksum.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    IsLatest bool
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
    Name string
    Unique identifier for the package. Note that this is not an OCID.
    OsFamilies List<string>
    The OS families the package belongs to.
    SoftwareSources List<GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource>
    List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
    Type string
    Type of the package.
    Version string
    Version of the package.
    Architecture string
    The architecture for which this software was built.
    Checksum string
    Checksum of the package.
    ChecksumType string
    Type of the checksum.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    IsLatest bool
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
    Name string
    Unique identifier for the package. Note that this is not an OCID.
    OsFamilies []string
    The OS families the package belongs to.
    SoftwareSources []GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource
    List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
    Type string
    Type of the package.
    Version string
    Version of the package.
    architecture String
    The architecture for which this software was built.
    checksum String
    Checksum of the package.
    checksumType String
    Type of the checksum.
    displayName String
    A filter to return resources that match the given user-friendly name.
    isLatest Boolean
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
    name String
    Unique identifier for the package. Note that this is not an OCID.
    osFamilies List<String>
    The OS families the package belongs to.
    softwareSources List<GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource>
    List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
    type String
    Type of the package.
    version String
    Version of the package.
    architecture string
    The architecture for which this software was built.
    checksum string
    Checksum of the package.
    checksumType string
    Type of the checksum.
    displayName string
    A filter to return resources that match the given user-friendly name.
    isLatest boolean
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
    name string
    Unique identifier for the package. Note that this is not an OCID.
    osFamilies string[]
    The OS families the package belongs to.
    softwareSources GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource[]
    List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
    type string
    Type of the package.
    version string
    Version of the package.
    architecture str
    The architecture for which this software was built.
    checksum str
    Checksum of the package.
    checksum_type str
    Type of the checksum.
    display_name str
    A filter to return resources that match the given user-friendly name.
    is_latest bool
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
    name str
    Unique identifier for the package. Note that this is not an OCID.
    os_families Sequence[str]
    The OS families the package belongs to.
    software_sources Sequence[osmanagementhub.GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource]
    List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
    type str
    Type of the package.
    version str
    Version of the package.
    architecture String
    The architecture for which this software was built.
    checksum String
    Checksum of the package.
    checksumType String
    Type of the checksum.
    displayName String
    A filter to return resources that match the given user-friendly name.
    isLatest Boolean
    Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
    name String
    Unique identifier for the package. Note that this is not an OCID.
    osFamilies List<String>
    The OS families the package belongs to.
    softwareSources List<Property Map>
    List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
    type String
    Type of the package.
    version String
    Version of the package.

    GetSoftwareSourceAvailableSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource

    Description string
    Software source description.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    Id string
    The OCID of the software source.
    IsMandatoryForAutonomousLinux bool
    Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
    SoftwareSourceType string
    Type of the software source.
    Description string
    Software source description.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    Id string
    The OCID of the software source.
    IsMandatoryForAutonomousLinux bool
    Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
    SoftwareSourceType string
    Type of the software source.
    description String
    Software source description.
    displayName String
    A filter to return resources that match the given user-friendly name.
    id String
    The OCID of the software source.
    isMandatoryForAutonomousLinux Boolean
    Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
    softwareSourceType String
    Type of the software source.
    description string
    Software source description.
    displayName string
    A filter to return resources that match the given user-friendly name.
    id string
    The OCID of the software source.
    isMandatoryForAutonomousLinux boolean
    Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
    softwareSourceType string
    Type of the software source.
    description str
    Software source description.
    display_name str
    A filter to return resources that match the given user-friendly name.
    id str
    The OCID of the software source.
    is_mandatory_for_autonomous_linux bool
    Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
    software_source_type str
    Type of the software source.
    description String
    Software source description.
    displayName String
    A filter to return resources that match the given user-friendly name.
    id String
    The OCID of the software source.
    isMandatoryForAutonomousLinux Boolean
    Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
    softwareSourceType String
    Type of the software source.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi