1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. OsManagementHub
  5. getSoftwarePackages
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.OsManagementHub.getSoftwarePackages

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

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

Lists software packages available through the OS Management Hub service. 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 testSoftwarePackages = oci.OsManagementHub.getSoftwarePackages({
    architecture: softwarePackageArchitecture,
    displayName: softwarePackageDisplayName,
    displayNameContains: softwarePackageDisplayNameContains,
    isLatest: softwarePackageIsLatest,
    osFamily: softwarePackageOsFamily,
    version: softwarePackageVersion,
});
Copy
import pulumi
import pulumi_oci as oci

test_software_packages = oci.OsManagementHub.get_software_packages(architecture=software_package_architecture,
    display_name=software_package_display_name,
    display_name_contains=software_package_display_name_contains,
    is_latest=software_package_is_latest,
    os_family=software_package_os_family,
    version=software_package_version)
Copy
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.GetSoftwarePackages(ctx, &osmanagementhub.GetSoftwarePackagesArgs{
			Architecture:        pulumi.StringRef(softwarePackageArchitecture),
			DisplayName:         pulumi.StringRef(softwarePackageDisplayName),
			DisplayNameContains: pulumi.StringRef(softwarePackageDisplayNameContains),
			IsLatest:            pulumi.BoolRef(softwarePackageIsLatest),
			OsFamily:            pulumi.StringRef(softwarePackageOsFamily),
			Version:             pulumi.StringRef(softwarePackageVersion),
		}, 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 testSoftwarePackages = Oci.OsManagementHub.GetSoftwarePackages.Invoke(new()
    {
        Architecture = softwarePackageArchitecture,
        DisplayName = softwarePackageDisplayName,
        DisplayNameContains = softwarePackageDisplayNameContains,
        IsLatest = softwarePackageIsLatest,
        OsFamily = softwarePackageOsFamily,
        Version = softwarePackageVersion,
    });

});
Copy
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.GetSoftwarePackagesArgs;
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 testSoftwarePackages = OsManagementHubFunctions.getSoftwarePackages(GetSoftwarePackagesArgs.builder()
            .architecture(softwarePackageArchitecture)
            .displayName(softwarePackageDisplayName)
            .displayNameContains(softwarePackageDisplayNameContains)
            .isLatest(softwarePackageIsLatest)
            .osFamily(softwarePackageOsFamily)
            .version(softwarePackageVersion)
            .build());

    }
}
Copy
variables:
  testSoftwarePackages:
    fn::invoke:
      function: oci:OsManagementHub:getSoftwarePackages
      arguments:
        architecture: ${softwarePackageArchitecture}
        displayName: ${softwarePackageDisplayName}
        displayNameContains: ${softwarePackageDisplayNameContains}
        isLatest: ${softwarePackageIsLatest}
        osFamily: ${softwarePackageOsFamily}
        version: ${softwarePackageVersion}
Copy

Using getSoftwarePackages

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 getSoftwarePackages(args: GetSoftwarePackagesArgs, opts?: InvokeOptions): Promise<GetSoftwarePackagesResult>
function getSoftwarePackagesOutput(args: GetSoftwarePackagesOutputArgs, opts?: InvokeOptions): Output<GetSoftwarePackagesResult>
Copy
def get_software_packages(architecture: Optional[str] = None,
                          display_name: Optional[str] = None,
                          display_name_contains: Optional[str] = None,
                          filters: Optional[Sequence[_osmanagementhub.GetSoftwarePackagesFilter]] = None,
                          is_latest: Optional[bool] = None,
                          os_family: Optional[str] = None,
                          version: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetSoftwarePackagesResult
def get_software_packages_output(architecture: Optional[pulumi.Input[str]] = None,
                          display_name: Optional[pulumi.Input[str]] = None,
                          display_name_contains: Optional[pulumi.Input[str]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[_osmanagementhub.GetSoftwarePackagesFilterArgs]]]] = None,
                          is_latest: Optional[pulumi.Input[bool]] = None,
                          os_family: Optional[pulumi.Input[str]] = None,
                          version: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetSoftwarePackagesResult]
Copy
func GetSoftwarePackages(ctx *Context, args *GetSoftwarePackagesArgs, opts ...InvokeOption) (*GetSoftwarePackagesResult, error)
func GetSoftwarePackagesOutput(ctx *Context, args *GetSoftwarePackagesOutputArgs, opts ...InvokeOption) GetSoftwarePackagesResultOutput
Copy

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

public static class GetSoftwarePackages 
{
    public static Task<GetSoftwarePackagesResult> InvokeAsync(GetSoftwarePackagesArgs args, InvokeOptions? opts = null)
    public static Output<GetSoftwarePackagesResult> Invoke(GetSoftwarePackagesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetSoftwarePackagesResult> getSoftwarePackages(GetSoftwarePackagesArgs args, InvokeOptions options)
public static Output<GetSoftwarePackagesResult> getSoftwarePackages(GetSoftwarePackagesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:OsManagementHub/getSoftwarePackages:getSoftwarePackages
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Architecture string
A filter to return software packages that match the given architecture.
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 Changes to this property will trigger replacement. List<GetSoftwarePackagesFilter>
IsLatest bool
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
OsFamily string
A filter to return only resources that match the given operating system family.
Version string
A filter to return software packages that match the given version.
Architecture string
A filter to return software packages that match the given architecture.
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 Changes to this property will trigger replacement. []GetSoftwarePackagesFilter
IsLatest bool
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
OsFamily string
A filter to return only resources that match the given operating system family.
Version string
A filter to return software packages that match the given version.
architecture String
A filter to return software packages that match the given architecture.
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 Changes to this property will trigger replacement. List<GetSoftwarePackagesFilter>
isLatest Boolean
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
osFamily String
A filter to return only resources that match the given operating system family.
version String
A filter to return software packages that match the given version.
architecture string
A filter to return software packages that match the given architecture.
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 Changes to this property will trigger replacement. GetSoftwarePackagesFilter[]
isLatest boolean
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
osFamily string
A filter to return only resources that match the given operating system family.
version string
A filter to return software packages that match the given version.
architecture str
A filter to return software packages that match the given architecture.
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 Changes to this property will trigger replacement. Sequence[osmanagementhub.GetSoftwarePackagesFilter]
is_latest bool
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
os_family str
A filter to return only resources that match the given operating system family.
version str
A filter to return software packages that match the given version.
architecture String
A filter to return software packages that match the given architecture.
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 Changes to this property will trigger replacement. List<Property Map>
isLatest Boolean
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
osFamily String
A filter to return only resources that match the given operating system family.
version String
A filter to return software packages that match the given version.

getSoftwarePackages Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
SoftwarePackageCollections List<GetSoftwarePackagesSoftwarePackageCollection>
The list of software_package_collection.
Architecture string
The architecture for which this software was built
DisplayName string
Software source name.
DisplayNameContains string
Filters List<GetSoftwarePackagesFilter>
IsLatest bool
Indicates whether this package is the latest version.
OsFamily string
Version string
Version of the package.
Id string
The provider-assigned unique ID for this managed resource.
SoftwarePackageCollections []GetSoftwarePackagesSoftwarePackageCollection
The list of software_package_collection.
Architecture string
The architecture for which this software was built
DisplayName string
Software source name.
DisplayNameContains string
Filters []GetSoftwarePackagesFilter
IsLatest bool
Indicates whether this package is the latest version.
OsFamily string
Version string
Version of the package.
id String
The provider-assigned unique ID for this managed resource.
softwarePackageCollections List<GetSoftwarePackagesSoftwarePackageCollection>
The list of software_package_collection.
architecture String
The architecture for which this software was built
displayName String
Software source name.
displayNameContains String
filters List<GetSoftwarePackagesFilter>
isLatest Boolean
Indicates whether this package is the latest version.
osFamily String
version String
Version of the package.
id string
The provider-assigned unique ID for this managed resource.
softwarePackageCollections GetSoftwarePackagesSoftwarePackageCollection[]
The list of software_package_collection.
architecture string
The architecture for which this software was built
displayName string
Software source name.
displayNameContains string
filters GetSoftwarePackagesFilter[]
isLatest boolean
Indicates whether this package is the latest version.
osFamily string
version string
Version of the package.
id str
The provider-assigned unique ID for this managed resource.
software_package_collections Sequence[osmanagementhub.GetSoftwarePackagesSoftwarePackageCollection]
The list of software_package_collection.
architecture str
The architecture for which this software was built
display_name str
Software source name.
display_name_contains str
filters Sequence[osmanagementhub.GetSoftwarePackagesFilter]
is_latest bool
Indicates whether this package is the latest version.
os_family str
version str
Version of the package.
id String
The provider-assigned unique ID for this managed resource.
softwarePackageCollections List<Property Map>
The list of software_package_collection.
architecture String
The architecture for which this software was built
displayName String
Software source name.
displayNameContains String
filters List<Property Map>
isLatest Boolean
Indicates whether this package is the latest version.
osFamily String
version String
Version of the package.

Supporting Types

GetSoftwarePackagesFilter

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

GetSoftwarePackagesSoftwarePackageCollection

items This property is required. List<Property Map>

GetSoftwarePackagesSoftwarePackageCollectionItem

Architecture This property is required. string
A filter to return software packages that match the given architecture.
Checksum This property is required. string
Checksum of the file.
ChecksumType This property is required. string
Type of the checksum.
Dependencies This property is required. List<GetSoftwarePackagesSoftwarePackageCollectionItemDependency>
List of dependencies for the software package.
Description This property is required. string
Software source description.
DisplayName This property is required. string
A filter to return resources that match the given user-friendly name.
Files This property is required. List<GetSoftwarePackagesSoftwarePackageCollectionItemFile>
List of files for the software package.
IsLatest This property is required. bool
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
LastModifiedDate This property is required. string
The date and time the package was last modified (in RFC 3339 format).
Name This property is required. string
Unique identifier for the package. Note that this is not an OCID.
OsFamilies This property is required. List<string>
The OS families the package belongs to.
SizeInBytes This property is required. string
Size of the package in bytes.
SoftwareSources This property is required. List<GetSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource>
List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
Type This property is required. string
Type of the package.
Version This property is required. string
A filter to return software packages that match the given version.
Architecture This property is required. string
A filter to return software packages that match the given architecture.
Checksum This property is required. string
Checksum of the file.
ChecksumType This property is required. string
Type of the checksum.
Dependencies This property is required. []GetSoftwarePackagesSoftwarePackageCollectionItemDependency
List of dependencies for the software package.
Description This property is required. string
Software source description.
DisplayName This property is required. string
A filter to return resources that match the given user-friendly name.
Files This property is required. []GetSoftwarePackagesSoftwarePackageCollectionItemFile
List of files for the software package.
IsLatest This property is required. bool
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
LastModifiedDate This property is required. string
The date and time the package was last modified (in RFC 3339 format).
Name This property is required. string
Unique identifier for the package. Note that this is not an OCID.
OsFamilies This property is required. []string
The OS families the package belongs to.
SizeInBytes This property is required. string
Size of the package in bytes.
SoftwareSources This property is required. []GetSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource
List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
Type This property is required. string
Type of the package.
Version This property is required. string
A filter to return software packages that match the given version.
architecture This property is required. String
A filter to return software packages that match the given architecture.
checksum This property is required. String
Checksum of the file.
checksumType This property is required. String
Type of the checksum.
dependencies This property is required. List<GetSoftwarePackagesSoftwarePackageCollectionItemDependency>
List of dependencies for the software package.
description This property is required. String
Software source description.
displayName This property is required. String
A filter to return resources that match the given user-friendly name.
files This property is required. List<GetSoftwarePackagesSoftwarePackageCollectionItemFile>
List of files for the software package.
isLatest This property is required. Boolean
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
lastModifiedDate This property is required. String
The date and time the package was last modified (in RFC 3339 format).
name This property is required. String
Unique identifier for the package. Note that this is not an OCID.
osFamilies This property is required. List<String>
The OS families the package belongs to.
sizeInBytes This property is required. String
Size of the package in bytes.
softwareSources This property is required. List<GetSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource>
List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
type This property is required. String
Type of the package.
version This property is required. String
A filter to return software packages that match the given version.
architecture This property is required. string
A filter to return software packages that match the given architecture.
checksum This property is required. string
Checksum of the file.
checksumType This property is required. string
Type of the checksum.
dependencies This property is required. GetSoftwarePackagesSoftwarePackageCollectionItemDependency[]
List of dependencies for the software package.
description This property is required. string
Software source description.
displayName This property is required. string
A filter to return resources that match the given user-friendly name.
files This property is required. GetSoftwarePackagesSoftwarePackageCollectionItemFile[]
List of files for the software package.
isLatest This property is required. boolean
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
lastModifiedDate This property is required. string
The date and time the package was last modified (in RFC 3339 format).
name This property is required. string
Unique identifier for the package. Note that this is not an OCID.
osFamilies This property is required. string[]
The OS families the package belongs to.
sizeInBytes This property is required. string
Size of the package in bytes.
softwareSources This property is required. GetSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource[]
List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
type This property is required. string
Type of the package.
version This property is required. string
A filter to return software packages that match the given version.
architecture This property is required. str
A filter to return software packages that match the given architecture.
checksum This property is required. str
Checksum of the file.
checksum_type This property is required. str
Type of the checksum.
dependencies This property is required. Sequence[osmanagementhub.GetSoftwarePackagesSoftwarePackageCollectionItemDependency]
List of dependencies for the software package.
description This property is required. str
Software source description.
display_name This property is required. str
A filter to return resources that match the given user-friendly name.
files This property is required. Sequence[osmanagementhub.GetSoftwarePackagesSoftwarePackageCollectionItemFile]
List of files for the software package.
is_latest This property is required. bool
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
last_modified_date This property is required. str
The date and time the package was last modified (in RFC 3339 format).
name This property is required. str
Unique identifier for the package. Note that this is not an OCID.
os_families This property is required. Sequence[str]
The OS families the package belongs to.
size_in_bytes This property is required. str
Size of the package in bytes.
software_sources This property is required. Sequence[osmanagementhub.GetSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource]
List of software sources that provide the software package. This property is deprecated and it will be removed in a future API release.
type This property is required. str
Type of the package.
version This property is required. str
A filter to return software packages that match the given version.
architecture This property is required. String
A filter to return software packages that match the given architecture.
checksum This property is required. String
Checksum of the file.
checksumType This property is required. String
Type of the checksum.
dependencies This property is required. List<Property Map>
List of dependencies for the software package.
description This property is required. String
Software source description.
displayName This property is required. String
A filter to return resources that match the given user-friendly name.
files This property is required. List<Property Map>
List of files for the software package.
isLatest This property is required. Boolean
Indicates whether to list only the latest versions of packages, module streams, and stream profiles.
lastModifiedDate This property is required. String
The date and time the package was last modified (in RFC 3339 format).
name This property is required. String
Unique identifier for the package. Note that this is not an OCID.
osFamilies This property is required. List<String>
The OS families the package belongs to.
sizeInBytes This property is required. String
Size of the package in bytes.
softwareSources This property is required. 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 This property is required. String
Type of the package.
version This property is required. String
A filter to return software packages that match the given version.

GetSoftwarePackagesSoftwarePackageCollectionItemDependency

Dependency This property is required. string
The software package's dependency.
DependencyModifier This property is required. string
The modifier for the dependency.
DependencyType This property is required. string
The type of the dependency.
Dependency This property is required. string
The software package's dependency.
DependencyModifier This property is required. string
The modifier for the dependency.
DependencyType This property is required. string
The type of the dependency.
dependency This property is required. String
The software package's dependency.
dependencyModifier This property is required. String
The modifier for the dependency.
dependencyType This property is required. String
The type of the dependency.
dependency This property is required. string
The software package's dependency.
dependencyModifier This property is required. string
The modifier for the dependency.
dependencyType This property is required. string
The type of the dependency.
dependency This property is required. str
The software package's dependency.
dependency_modifier This property is required. str
The modifier for the dependency.
dependency_type This property is required. str
The type of the dependency.
dependency This property is required. String
The software package's dependency.
dependencyModifier This property is required. String
The modifier for the dependency.
dependencyType This property is required. String
The type of the dependency.

GetSoftwarePackagesSoftwarePackageCollectionItemFile

Checksum This property is required. string
Checksum of the file.
ChecksumType This property is required. string
Type of the checksum.
Path This property is required. string
File path.
SizeInBytes This property is required. string
Size of the package in bytes.
TimeModified This property is required. string
The date and time the file was last modified (in RFC 3339 format).
Type This property is required. string
Type of the package.
Checksum This property is required. string
Checksum of the file.
ChecksumType This property is required. string
Type of the checksum.
Path This property is required. string
File path.
SizeInBytes This property is required. string
Size of the package in bytes.
TimeModified This property is required. string
The date and time the file was last modified (in RFC 3339 format).
Type This property is required. string
Type of the package.
checksum This property is required. String
Checksum of the file.
checksumType This property is required. String
Type of the checksum.
path This property is required. String
File path.
sizeInBytes This property is required. String
Size of the package in bytes.
timeModified This property is required. String
The date and time the file was last modified (in RFC 3339 format).
type This property is required. String
Type of the package.
checksum This property is required. string
Checksum of the file.
checksumType This property is required. string
Type of the checksum.
path This property is required. string
File path.
sizeInBytes This property is required. string
Size of the package in bytes.
timeModified This property is required. string
The date and time the file was last modified (in RFC 3339 format).
type This property is required. string
Type of the package.
checksum This property is required. str
Checksum of the file.
checksum_type This property is required. str
Type of the checksum.
path This property is required. str
File path.
size_in_bytes This property is required. str
Size of the package in bytes.
time_modified This property is required. str
The date and time the file was last modified (in RFC 3339 format).
type This property is required. str
Type of the package.
checksum This property is required. String
Checksum of the file.
checksumType This property is required. String
Type of the checksum.
path This property is required. String
File path.
sizeInBytes This property is required. String
Size of the package in bytes.
timeModified This property is required. String
The date and time the file was last modified (in RFC 3339 format).
type This property is required. String
Type of the package.

GetSoftwarePackagesSoftwarePackageCollectionItemSoftwareSource

Description This property is required. string
Software source description.
DisplayName This property is required. string
A filter to return resources that match the given user-friendly name.
Id This property is required. string
The OCID of the software source.
IsMandatoryForAutonomousLinux This property is required. bool
Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
SoftwareSourceType This property is required. string
Type of the software source.
Description This property is required. string
Software source description.
DisplayName This property is required. string
A filter to return resources that match the given user-friendly name.
Id This property is required. string
The OCID of the software source.
IsMandatoryForAutonomousLinux This property is required. bool
Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
SoftwareSourceType This property is required. string
Type of the software source.
description This property is required. String
Software source description.
displayName This property is required. String
A filter to return resources that match the given user-friendly name.
id This property is required. String
The OCID of the software source.
isMandatoryForAutonomousLinux This property is required. Boolean
Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
softwareSourceType This property is required. String
Type of the software source.
description This property is required. string
Software source description.
displayName This property is required. string
A filter to return resources that match the given user-friendly name.
id This property is required. string
The OCID of the software source.
isMandatoryForAutonomousLinux This property is required. boolean
Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
softwareSourceType This property is required. string
Type of the software source.
description This property is required. str
Software source description.
display_name This property is required. str
A filter to return resources that match the given user-friendly name.
id This property is required. str
The OCID of the software source.
is_mandatory_for_autonomous_linux This property is required. bool
Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
software_source_type This property is required. str
Type of the software source.
description This property is required. String
Software source description.
displayName This property is required. String
A filter to return resources that match the given user-friendly name.
id This property is required. String
The OCID of the software source.
isMandatoryForAutonomousLinux This property is required. Boolean
Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
softwareSourceType This property is required. 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.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi