1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FleetAppsManagement
  5. getPatches
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.FleetAppsManagement.getPatches

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

    This data source provides the list of Patches in Oracle Cloud Infrastructure Fleet Apps Management service.

    Returns a list of Patches.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testPatches = oci.FleetAppsManagement.getPatches({
        compartmentId: compartmentId,
        id: patchId,
        name: patchName,
        patchTypeId: testPatchType.id,
        productId: testProduct.id,
        shouldCompliancePolicyRulesBeApplied: patchShouldCompliancePolicyRulesBeApplied,
        state: patchState,
        timeReleasedGreaterThanOrEqualTo: patchTimeReleasedGreaterThanOrEqualTo,
        timeReleasedLessThan: patchTimeReleasedLessThan,
        type: patchType,
        version: patchVersion,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_patches = oci.FleetAppsManagement.get_patches(compartment_id=compartment_id,
        id=patch_id,
        name=patch_name,
        patch_type_id=test_patch_type["id"],
        product_id=test_product["id"],
        should_compliance_policy_rules_be_applied=patch_should_compliance_policy_rules_be_applied,
        state=patch_state,
        time_released_greater_than_or_equal_to=patch_time_released_greater_than_or_equal_to,
        time_released_less_than=patch_time_released_less_than,
        type=patch_type,
        version=patch_version)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/fleetappsmanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fleetappsmanagement.GetPatches(ctx, &fleetappsmanagement.GetPatchesArgs{
    			CompartmentId:                        pulumi.StringRef(compartmentId),
    			Id:                                   pulumi.StringRef(patchId),
    			Name:                                 pulumi.StringRef(patchName),
    			PatchTypeId:                          pulumi.StringRef(testPatchType.Id),
    			ProductId:                            pulumi.StringRef(testProduct.Id),
    			ShouldCompliancePolicyRulesBeApplied: pulumi.BoolRef(patchShouldCompliancePolicyRulesBeApplied),
    			State:                                pulumi.StringRef(patchState),
    			TimeReleasedGreaterThanOrEqualTo:     pulumi.StringRef(patchTimeReleasedGreaterThanOrEqualTo),
    			TimeReleasedLessThan:                 pulumi.StringRef(patchTimeReleasedLessThan),
    			Type:                                 pulumi.StringRef(patchType),
    			Version:                              pulumi.StringRef(patchVersion),
    		}, 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 testPatches = Oci.FleetAppsManagement.GetPatches.Invoke(new()
        {
            CompartmentId = compartmentId,
            Id = patchId,
            Name = patchName,
            PatchTypeId = testPatchType.Id,
            ProductId = testProduct.Id,
            ShouldCompliancePolicyRulesBeApplied = patchShouldCompliancePolicyRulesBeApplied,
            State = patchState,
            TimeReleasedGreaterThanOrEqualTo = patchTimeReleasedGreaterThanOrEqualTo,
            TimeReleasedLessThan = patchTimeReleasedLessThan,
            Type = patchType,
            Version = patchVersion,
        });
    
    });
    
    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.GetPatchesArgs;
    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 testPatches = FleetAppsManagementFunctions.getPatches(GetPatchesArgs.builder()
                .compartmentId(compartmentId)
                .id(patchId)
                .name(patchName)
                .patchTypeId(testPatchType.id())
                .productId(testProduct.id())
                .shouldCompliancePolicyRulesBeApplied(patchShouldCompliancePolicyRulesBeApplied)
                .state(patchState)
                .timeReleasedGreaterThanOrEqualTo(patchTimeReleasedGreaterThanOrEqualTo)
                .timeReleasedLessThan(patchTimeReleasedLessThan)
                .type(patchType)
                .version(patchVersion)
                .build());
    
        }
    }
    
    variables:
      testPatches:
        fn::invoke:
          function: oci:FleetAppsManagement:getPatches
          arguments:
            compartmentId: ${compartmentId}
            id: ${patchId}
            name: ${patchName}
            patchTypeId: ${testPatchType.id}
            productId: ${testProduct.id}
            shouldCompliancePolicyRulesBeApplied: ${patchShouldCompliancePolicyRulesBeApplied}
            state: ${patchState}
            timeReleasedGreaterThanOrEqualTo: ${patchTimeReleasedGreaterThanOrEqualTo}
            timeReleasedLessThan: ${patchTimeReleasedLessThan}
            type: ${patchType}
            version: ${patchVersion}
    

    Using getPatches

    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 getPatches(args: GetPatchesArgs, opts?: InvokeOptions): Promise<GetPatchesResult>
    function getPatchesOutput(args: GetPatchesOutputArgs, opts?: InvokeOptions): Output<GetPatchesResult>
    def get_patches(compartment_id: Optional[str] = None,
                    filters: Optional[Sequence[_fleetappsmanagement.GetPatchesFilter]] = None,
                    id: Optional[str] = None,
                    name: Optional[str] = None,
                    patch_type_id: Optional[str] = None,
                    product_id: Optional[str] = None,
                    should_compliance_policy_rules_be_applied: Optional[bool] = None,
                    state: Optional[str] = None,
                    time_released_greater_than_or_equal_to: Optional[str] = None,
                    time_released_less_than: Optional[str] = None,
                    type: Optional[str] = None,
                    version: Optional[str] = None,
                    opts: Optional[InvokeOptions] = None) -> GetPatchesResult
    def get_patches_output(compartment_id: Optional[pulumi.Input[str]] = None,
                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[_fleetappsmanagement.GetPatchesFilterArgs]]]] = None,
                    id: Optional[pulumi.Input[str]] = None,
                    name: Optional[pulumi.Input[str]] = None,
                    patch_type_id: Optional[pulumi.Input[str]] = None,
                    product_id: Optional[pulumi.Input[str]] = None,
                    should_compliance_policy_rules_be_applied: Optional[pulumi.Input[bool]] = None,
                    state: Optional[pulumi.Input[str]] = None,
                    time_released_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                    time_released_less_than: Optional[pulumi.Input[str]] = None,
                    type: Optional[pulumi.Input[str]] = None,
                    version: Optional[pulumi.Input[str]] = None,
                    opts: Optional[InvokeOptions] = None) -> Output[GetPatchesResult]
    func GetPatches(ctx *Context, args *GetPatchesArgs, opts ...InvokeOption) (*GetPatchesResult, error)
    func GetPatchesOutput(ctx *Context, args *GetPatchesOutputArgs, opts ...InvokeOption) GetPatchesResultOutput

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

    public static class GetPatches 
    {
        public static Task<GetPatchesResult> InvokeAsync(GetPatchesArgs args, InvokeOptions? opts = null)
        public static Output<GetPatchesResult> Invoke(GetPatchesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPatchesResult> getPatches(GetPatchesArgs args, InvokeOptions options)
    public static Output<GetPatchesResult> getPatches(GetPatchesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:FleetAppsManagement/getPatches:getPatches
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment in which to list resources.
    Filters List<GetPatchesFilter>
    Id string
    unique Patch identifier
    Name string
    A filter to return only resources that match the entire name given.
    PatchTypeId string
    Patch Type platformConfigurationId associated with the Patch.
    ProductId string
    Product platformConfigurationId associated with the Patch.
    ShouldCompliancePolicyRulesBeApplied bool
    Filter patch based on compliance policy rules for the Product
    State string
    The current state of the Patch.
    TimeReleasedGreaterThanOrEqualTo string
    Patch Released Date
    TimeReleasedLessThan string
    Patch Released Date
    Type string
    DefinedBy type.
    Version string
    Product version
    CompartmentId string
    The ID of the compartment in which to list resources.
    Filters []GetPatchesFilter
    Id string
    unique Patch identifier
    Name string
    A filter to return only resources that match the entire name given.
    PatchTypeId string
    Patch Type platformConfigurationId associated with the Patch.
    ProductId string
    Product platformConfigurationId associated with the Patch.
    ShouldCompliancePolicyRulesBeApplied bool
    Filter patch based on compliance policy rules for the Product
    State string
    The current state of the Patch.
    TimeReleasedGreaterThanOrEqualTo string
    Patch Released Date
    TimeReleasedLessThan string
    Patch Released Date
    Type string
    DefinedBy type.
    Version string
    Product version
    compartmentId String
    The ID of the compartment in which to list resources.
    filters List<GetPatchesFilter>
    id String
    unique Patch identifier
    name String
    A filter to return only resources that match the entire name given.
    patchTypeId String
    Patch Type platformConfigurationId associated with the Patch.
    productId String
    Product platformConfigurationId associated with the Patch.
    shouldCompliancePolicyRulesBeApplied Boolean
    Filter patch based on compliance policy rules for the Product
    state String
    The current state of the Patch.
    timeReleasedGreaterThanOrEqualTo String
    Patch Released Date
    timeReleasedLessThan String
    Patch Released Date
    type String
    DefinedBy type.
    version String
    Product version
    compartmentId string
    The ID of the compartment in which to list resources.
    filters GetPatchesFilter[]
    id string
    unique Patch identifier
    name string
    A filter to return only resources that match the entire name given.
    patchTypeId string
    Patch Type platformConfigurationId associated with the Patch.
    productId string
    Product platformConfigurationId associated with the Patch.
    shouldCompliancePolicyRulesBeApplied boolean
    Filter patch based on compliance policy rules for the Product
    state string
    The current state of the Patch.
    timeReleasedGreaterThanOrEqualTo string
    Patch Released Date
    timeReleasedLessThan string
    Patch Released Date
    type string
    DefinedBy type.
    version string
    Product version
    compartment_id str
    The ID of the compartment in which to list resources.
    filters Sequence[fleetappsmanagement.GetPatchesFilter]
    id str
    unique Patch identifier
    name str
    A filter to return only resources that match the entire name given.
    patch_type_id str
    Patch Type platformConfigurationId associated with the Patch.
    product_id str
    Product platformConfigurationId associated with the Patch.
    should_compliance_policy_rules_be_applied bool
    Filter patch based on compliance policy rules for the Product
    state str
    The current state of the Patch.
    time_released_greater_than_or_equal_to str
    Patch Released Date
    time_released_less_than str
    Patch Released Date
    type str
    DefinedBy type.
    version str
    Product version
    compartmentId String
    The ID of the compartment in which to list resources.
    filters List<Property Map>
    id String
    unique Patch identifier
    name String
    A filter to return only resources that match the entire name given.
    patchTypeId String
    Patch Type platformConfigurationId associated with the Patch.
    productId String
    Product platformConfigurationId associated with the Patch.
    shouldCompliancePolicyRulesBeApplied Boolean
    Filter patch based on compliance policy rules for the Product
    state String
    The current state of the Patch.
    timeReleasedGreaterThanOrEqualTo String
    Patch Released Date
    timeReleasedLessThan String
    Patch Released Date
    type String
    DefinedBy type.
    version String
    Product version

    getPatches Result

    The following output properties are available:

    PatchCollections List<GetPatchesPatchCollection>
    The list of patch_collection.
    CompartmentId string
    Filters List<GetPatchesFilter>
    Id string
    The OCID of the resource.
    Name string
    A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
    PatchTypeId string
    ProductId string
    ShouldCompliancePolicyRulesBeApplied bool
    State string
    The current state of the Patch.
    TimeReleasedGreaterThanOrEqualTo string
    TimeReleasedLessThan string
    Type string
    Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
    Version string
    product version.
    PatchCollections []GetPatchesPatchCollection
    The list of patch_collection.
    CompartmentId string
    Filters []GetPatchesFilter
    Id string
    The OCID of the resource.
    Name string
    A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
    PatchTypeId string
    ProductId string
    ShouldCompliancePolicyRulesBeApplied bool
    State string
    The current state of the Patch.
    TimeReleasedGreaterThanOrEqualTo string
    TimeReleasedLessThan string
    Type string
    Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
    Version string
    product version.
    patchCollections List<GetPatchesPatchCollection>
    The list of patch_collection.
    compartmentId String
    filters List<GetPatchesFilter>
    id String
    The OCID of the resource.
    name String
    A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
    patchTypeId String
    productId String
    shouldCompliancePolicyRulesBeApplied Boolean
    state String
    The current state of the Patch.
    timeReleasedGreaterThanOrEqualTo String
    timeReleasedLessThan String
    type String
    Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
    version String
    product version.
    patchCollections GetPatchesPatchCollection[]
    The list of patch_collection.
    compartmentId string
    filters GetPatchesFilter[]
    id string
    The OCID of the resource.
    name string
    A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
    patchTypeId string
    productId string
    shouldCompliancePolicyRulesBeApplied boolean
    state string
    The current state of the Patch.
    timeReleasedGreaterThanOrEqualTo string
    timeReleasedLessThan string
    type string
    Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
    version string
    product version.
    patch_collections Sequence[fleetappsmanagement.GetPatchesPatchCollection]
    The list of patch_collection.
    compartment_id str
    filters Sequence[fleetappsmanagement.GetPatchesFilter]
    id str
    The OCID of the resource.
    name str
    A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
    patch_type_id str
    product_id str
    should_compliance_policy_rules_be_applied bool
    state str
    The current state of the Patch.
    time_released_greater_than_or_equal_to str
    time_released_less_than str
    type str
    Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
    version str
    product version.
    patchCollections List<Property Map>
    The list of patch_collection.
    compartmentId String
    filters List<Property Map>
    id String
    The OCID of the resource.
    name String
    A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
    patchTypeId String
    productId String
    shouldCompliancePolicyRulesBeApplied Boolean
    state String
    The current state of the Patch.
    timeReleasedGreaterThanOrEqualTo String
    timeReleasedLessThan String
    type String
    Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
    version String
    product version.

    Supporting Types

    GetPatchesFilter

    Name string
    A filter to return only resources that match the entire name given.
    Values List<string>
    Regex bool
    Name string
    A filter to return only resources that match the entire name given.
    Values []string
    Regex bool
    name String
    A filter to return only resources that match the entire name given.
    values List<String>
    regex Boolean
    name string
    A filter to return only resources that match the entire name given.
    values string[]
    regex boolean
    name str
    A filter to return only resources that match the entire name given.
    values Sequence[str]
    regex bool
    name String
    A filter to return only resources that match the entire name given.
    values List<String>
    regex Boolean

    GetPatchesPatchCollection

    GetPatchesPatchCollectionItem

    ArtifactDetails List<GetPatchesPatchCollectionItemArtifactDetail>
    Patch artifact description and content details.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DependentPatches List<GetPatchesPatchCollectionItemDependentPatch>
    Dependent Patches for this patch.
    Description string
    A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
    FreeformTags 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
    unique Patch identifier
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Name string
    A filter to return only resources that match the entire name given.
    PatchTypes List<GetPatchesPatchCollectionItemPatchType>
    Patch Type
    Products List<GetPatchesPatchCollectionItemProduct>
    Product
    ResourceRegion string
    Associated region
    Severity string
    Patch Severity.
    State string
    The current state of the Patch.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    TimeReleased string
    Date when the patch was released.
    TimeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    Type string
    DefinedBy type.
    ArtifactDetails []GetPatchesPatchCollectionItemArtifactDetail
    Patch artifact description and content details.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DependentPatches []GetPatchesPatchCollectionItemDependentPatch
    Dependent Patches for this patch.
    Description string
    A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
    FreeformTags 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
    unique Patch identifier
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Name string
    A filter to return only resources that match the entire name given.
    PatchTypes []GetPatchesPatchCollectionItemPatchType
    Patch Type
    Products []GetPatchesPatchCollectionItemProduct
    Product
    ResourceRegion string
    Associated region
    Severity string
    Patch Severity.
    State string
    The current state of the Patch.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    TimeReleased string
    Date when the patch was released.
    TimeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    Type string
    DefinedBy type.
    artifactDetails List<GetPatchesPatchCollectionItemArtifactDetail>
    Patch artifact description and content details.
    compartmentId String
    The ID of the compartment in which to list resources.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    dependentPatches List<GetPatchesPatchCollectionItemDependentPatch>
    Dependent Patches for this patch.
    description String
    A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
    freeformTags 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
    unique Patch identifier
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    name String
    A filter to return only resources that match the entire name given.
    patchTypes List<GetPatchesPatchCollectionItemPatchType>
    Patch Type
    products List<GetPatchesPatchCollectionItemProduct>
    Product
    resourceRegion String
    Associated region
    severity String
    Patch Severity.
    state String
    The current state of the Patch.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time this resource was created. An RFC3339 formatted datetime string.
    timeReleased String
    Date when the patch was released.
    timeUpdated String
    The time this resource was last updated. An RFC3339 formatted datetime string.
    type String
    DefinedBy type.
    artifactDetails GetPatchesPatchCollectionItemArtifactDetail[]
    Patch artifact description and content details.
    compartmentId string
    The ID of the compartment in which to list resources.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    dependentPatches GetPatchesPatchCollectionItemDependentPatch[]
    Dependent Patches for this patch.
    description string
    A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
    freeformTags {[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
    unique Patch identifier
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    name string
    A filter to return only resources that match the entire name given.
    patchTypes GetPatchesPatchCollectionItemPatchType[]
    Patch Type
    products GetPatchesPatchCollectionItemProduct[]
    Product
    resourceRegion string
    Associated region
    severity string
    Patch Severity.
    state string
    The current state of the Patch.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    timeReleased string
    Date when the patch was released.
    timeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    type string
    DefinedBy type.
    artifact_details Sequence[fleetappsmanagement.GetPatchesPatchCollectionItemArtifactDetail]
    Patch artifact description and content details.
    compartment_id str
    The ID of the compartment in which to list resources.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    dependent_patches Sequence[fleetappsmanagement.GetPatchesPatchCollectionItemDependentPatch]
    Dependent Patches for this patch.
    description str
    A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
    freeform_tags 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
    unique Patch identifier
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    name str
    A filter to return only resources that match the entire name given.
    patch_types Sequence[fleetappsmanagement.GetPatchesPatchCollectionItemPatchType]
    Patch Type
    products Sequence[fleetappsmanagement.GetPatchesPatchCollectionItemProduct]
    Product
    resource_region str
    Associated region
    severity str
    Patch Severity.
    state str
    The current state of the Patch.
    system_tags 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_created str
    The time this resource was created. An RFC3339 formatted datetime string.
    time_released str
    Date when the patch was released.
    time_updated str
    The time this resource was last updated. An RFC3339 formatted datetime string.
    type str
    DefinedBy type.
    artifactDetails List<Property Map>
    Patch artifact description and content details.
    compartmentId String
    The ID of the compartment in which to list resources.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    dependentPatches List<Property Map>
    Dependent Patches for this patch.
    description String
    A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
    freeformTags 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
    unique Patch identifier
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    name String
    A filter to return only resources that match the entire name given.
    patchTypes List<Property Map>
    Patch Type
    products List<Property Map>
    Product
    resourceRegion String
    Associated region
    severity String
    Patch Severity.
    state String
    The current state of the Patch.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time this resource was created. An RFC3339 formatted datetime string.
    timeReleased String
    Date when the patch was released.
    timeUpdated String
    The time this resource was last updated. An RFC3339 formatted datetime string.
    type String
    DefinedBy type.

    GetPatchesPatchCollectionItemArtifactDetail

    Artifact List<GetPatchesPatchCollectionItemArtifactDetailArtifact>
    Patch artifact metadata Details which is common for all platforms.
    Artifacts List<GetPatchesPatchCollectionItemArtifactDetailArtifact>
    Artifacts.
    Category string
    Artifact category details.
    Artifact []GetPatchesPatchCollectionItemArtifactDetailArtifact
    Patch artifact metadata Details which is common for all platforms.
    Artifacts []GetPatchesPatchCollectionItemArtifactDetailArtifact
    Artifacts.
    Category string
    Artifact category details.
    artifact List<GetPatchesPatchCollectionItemArtifactDetailArtifact>
    Patch artifact metadata Details which is common for all platforms.
    artifacts List<GetPatchesPatchCollectionItemArtifactDetailArtifact>
    Artifacts.
    category String
    Artifact category details.
    artifact GetPatchesPatchCollectionItemArtifactDetailArtifact[]
    Patch artifact metadata Details which is common for all platforms.
    artifacts GetPatchesPatchCollectionItemArtifactDetailArtifact[]
    Artifacts.
    category string
    Artifact category details.
    artifact List<Property Map>
    Patch artifact metadata Details which is common for all platforms.
    artifacts List<Property Map>
    Artifacts.
    category String
    Artifact category details.

    GetPatchesPatchCollectionItemArtifactDetailArtifact

    Architecture string
    System architecture.
    Contents List<GetPatchesPatchCollectionItemArtifactDetailArtifactContent>
    Content Source details.
    OsType string
    The OS type the patch is applicable for.
    Architecture string
    System architecture.
    Contents []GetPatchesPatchCollectionItemArtifactDetailArtifactContent
    Content Source details.
    OsType string
    The OS type the patch is applicable for.
    architecture String
    System architecture.
    contents List<GetPatchesPatchCollectionItemArtifactDetailArtifactContent>
    Content Source details.
    osType String
    The OS type the patch is applicable for.
    architecture string
    System architecture.
    contents GetPatchesPatchCollectionItemArtifactDetailArtifactContent[]
    Content Source details.
    osType string
    The OS type the patch is applicable for.
    architecture str
    System architecture.
    contents Sequence[fleetappsmanagement.GetPatchesPatchCollectionItemArtifactDetailArtifactContent]
    Content Source details.
    os_type str
    The OS type the patch is applicable for.
    architecture String
    System architecture.
    contents List<Property Map>
    Content Source details.
    osType String
    The OS type the patch is applicable for.

    GetPatchesPatchCollectionItemArtifactDetailArtifactContent

    Bucket string
    Bucket Name.
    Checksum string
    md5 checksum of the artifact.
    Namespace string
    Namespace.
    Object string
    Object Name.
    SourceType string
    Content Source type details.
    Bucket string
    Bucket Name.
    Checksum string
    md5 checksum of the artifact.
    Namespace string
    Namespace.
    Object string
    Object Name.
    SourceType string
    Content Source type details.
    bucket String
    Bucket Name.
    checksum String
    md5 checksum of the artifact.
    namespace String
    Namespace.
    object String
    Object Name.
    sourceType String
    Content Source type details.
    bucket string
    Bucket Name.
    checksum string
    md5 checksum of the artifact.
    namespace string
    Namespace.
    object string
    Object Name.
    sourceType string
    Content Source type details.
    bucket str
    Bucket Name.
    checksum str
    md5 checksum of the artifact.
    namespace str
    Namespace.
    object str
    Object Name.
    source_type str
    Content Source type details.
    bucket String
    Bucket Name.
    checksum String
    md5 checksum of the artifact.
    namespace String
    Namespace.
    object String
    Object Name.
    sourceType String
    Content Source type details.

    GetPatchesPatchCollectionItemDependentPatch

    Id string
    unique Patch identifier
    Id string
    unique Patch identifier
    id String
    unique Patch identifier
    id string
    unique Patch identifier
    id str
    unique Patch identifier
    id String
    unique Patch identifier

    GetPatchesPatchCollectionItemPatchType

    PlatformConfigurationId string
    PlatformConfiguration Id corresponding to the Product
    PlatformConfigurationId string
    PlatformConfiguration Id corresponding to the Product
    platformConfigurationId String
    PlatformConfiguration Id corresponding to the Product
    platformConfigurationId string
    PlatformConfiguration Id corresponding to the Product
    platform_configuration_id str
    PlatformConfiguration Id corresponding to the Product
    platformConfigurationId String
    PlatformConfiguration Id corresponding to the Product

    GetPatchesPatchCollectionItemProduct

    PlatformConfigurationId string
    PlatformConfiguration Id corresponding to the Product
    Version string
    Product version
    PlatformConfigurationId string
    PlatformConfiguration Id corresponding to the Product
    Version string
    Product version
    platformConfigurationId String
    PlatformConfiguration Id corresponding to the Product
    version String
    Product version
    platformConfigurationId string
    PlatformConfiguration Id corresponding to the Product
    version string
    Product version
    platform_configuration_id str
    PlatformConfiguration Id corresponding to the Product
    version str
    Product version
    platformConfigurationId String
    PlatformConfiguration Id corresponding to the Product
    version String
    Product version

    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.28.0 published on Thursday, Mar 27, 2025 by Pulumi