1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FleetSoftwareUpdate
  5. getFsuReadinessChecks
Viewing docs for Oracle Cloud Infrastructure v4.4.0
published on Thursday, Mar 26, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.4.0
published on Thursday, Mar 26, 2026 by Pulumi

    This data source provides the list of Fsu Readiness Checks in Oracle Cloud Infrastructure Fleet Software Update service.

    Returns a list of Exadata Fleet Update Readiness Checks resources in the specified compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testFsuReadinessChecks = oci.FleetSoftwareUpdate.getFsuReadinessChecks({
        compartmentId: compartmentId,
        displayName: fsuReadinessCheckDisplayName,
        resourceId: testResource.id,
        state: fsuReadinessCheckState,
        type: fsuReadinessCheckType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_fsu_readiness_checks = oci.FleetSoftwareUpdate.get_fsu_readiness_checks(compartment_id=compartment_id,
        display_name=fsu_readiness_check_display_name,
        resource_id=test_resource["id"],
        state=fsu_readiness_check_state,
        type=fsu_readiness_check_type)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/fleetsoftwareupdate"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fleetsoftwareupdate.GetFsuReadinessChecks(ctx, &fleetsoftwareupdate.GetFsuReadinessChecksArgs{
    			CompartmentId: compartmentId,
    			DisplayName:   pulumi.StringRef(fsuReadinessCheckDisplayName),
    			ResourceId:    pulumi.StringRef(testResource.Id),
    			State:         pulumi.StringRef(fsuReadinessCheckState),
    			Type:          pulumi.StringRef(fsuReadinessCheckType),
    		}, 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 testFsuReadinessChecks = Oci.FleetSoftwareUpdate.GetFsuReadinessChecks.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = fsuReadinessCheckDisplayName,
            ResourceId = testResource.Id,
            State = fsuReadinessCheckState,
            Type = fsuReadinessCheckType,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.FleetSoftwareUpdate.FleetSoftwareUpdateFunctions;
    import com.pulumi.oci.FleetSoftwareUpdate.inputs.GetFsuReadinessChecksArgs;
    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 testFsuReadinessChecks = FleetSoftwareUpdateFunctions.getFsuReadinessChecks(GetFsuReadinessChecksArgs.builder()
                .compartmentId(compartmentId)
                .displayName(fsuReadinessCheckDisplayName)
                .resourceId(testResource.id())
                .state(fsuReadinessCheckState)
                .type(fsuReadinessCheckType)
                .build());
    
        }
    }
    
    variables:
      testFsuReadinessChecks:
        fn::invoke:
          function: oci:FleetSoftwareUpdate:getFsuReadinessChecks
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${fsuReadinessCheckDisplayName}
            resourceId: ${testResource.id}
            state: ${fsuReadinessCheckState}
            type: ${fsuReadinessCheckType}
    

    Using getFsuReadinessChecks

    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 getFsuReadinessChecks(args: GetFsuReadinessChecksArgs, opts?: InvokeOptions): Promise<GetFsuReadinessChecksResult>
    function getFsuReadinessChecksOutput(args: GetFsuReadinessChecksOutputArgs, opts?: InvokeOptions): Output<GetFsuReadinessChecksResult>
    def get_fsu_readiness_checks(compartment_id: Optional[str] = None,
                                 display_name: Optional[str] = None,
                                 filters: Optional[Sequence[GetFsuReadinessChecksFilter]] = None,
                                 resource_id: Optional[str] = None,
                                 state: Optional[str] = None,
                                 type: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetFsuReadinessChecksResult
    def get_fsu_readiness_checks_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                 display_name: Optional[pulumi.Input[str]] = None,
                                 filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetFsuReadinessChecksFilterArgs]]]] = None,
                                 resource_id: Optional[pulumi.Input[str]] = None,
                                 state: Optional[pulumi.Input[str]] = None,
                                 type: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetFsuReadinessChecksResult]
    func GetFsuReadinessChecks(ctx *Context, args *GetFsuReadinessChecksArgs, opts ...InvokeOption) (*GetFsuReadinessChecksResult, error)
    func GetFsuReadinessChecksOutput(ctx *Context, args *GetFsuReadinessChecksOutputArgs, opts ...InvokeOption) GetFsuReadinessChecksResultOutput

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

    public static class GetFsuReadinessChecks 
    {
        public static Task<GetFsuReadinessChecksResult> InvokeAsync(GetFsuReadinessChecksArgs args, InvokeOptions? opts = null)
        public static Output<GetFsuReadinessChecksResult> Invoke(GetFsuReadinessChecksInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetFsuReadinessChecksResult> getFsuReadinessChecks(GetFsuReadinessChecksArgs args, InvokeOptions options)
    public static Output<GetFsuReadinessChecksResult> getFsuReadinessChecks(GetFsuReadinessChecksArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:FleetSoftwareUpdate/getFsuReadinessChecks:getFsuReadinessChecks
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetFsuReadinessChecksFilter>
    ResourceId string
    The OCID of the resource related to the Exadata Fleet Update Readiness Check.
    State string
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    Type string
    A filter to return only resources whose type matches the specified type.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetFsuReadinessChecksFilter
    ResourceId string
    The OCID of the resource related to the Exadata Fleet Update Readiness Check.
    State string
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    Type string
    A filter to return only resources whose type matches the specified type.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetFsuReadinessChecksFilter>
    resourceId String
    The OCID of the resource related to the Exadata Fleet Update Readiness Check.
    state String
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    type String
    A filter to return only resources whose type matches the specified type.
    compartmentId string
    The ID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetFsuReadinessChecksFilter[]
    resourceId string
    The OCID of the resource related to the Exadata Fleet Update Readiness Check.
    state string
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    type string
    A filter to return only resources whose type matches the specified type.
    compartment_id str
    The ID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[GetFsuReadinessChecksFilter]
    resource_id str
    The OCID of the resource related to the Exadata Fleet Update Readiness Check.
    state str
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    type str
    A filter to return only resources whose type matches the specified type.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>
    resourceId String
    The OCID of the resource related to the Exadata Fleet Update Readiness Check.
    state String
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    type String
    A filter to return only resources whose type matches the specified type.

    getFsuReadinessChecks Result

    The following output properties are available:

    CompartmentId string
    The OCID of the Compartment.
    FsuReadinessCheckCollections List<GetFsuReadinessChecksFsuReadinessCheckCollection>
    The list of fsu_readiness_check_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    The user-friendly name for the Exadata Fleet Update Readiness Check resource.
    Filters List<GetFsuReadinessChecksFilter>
    ResourceId string
    State string
    Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
    Type string
    Possible Exadata Fleet Update Readiness Check types.
    CompartmentId string
    The OCID of the Compartment.
    FsuReadinessCheckCollections []GetFsuReadinessChecksFsuReadinessCheckCollection
    The list of fsu_readiness_check_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    The user-friendly name for the Exadata Fleet Update Readiness Check resource.
    Filters []GetFsuReadinessChecksFilter
    ResourceId string
    State string
    Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
    Type string
    Possible Exadata Fleet Update Readiness Check types.
    compartmentId String
    The OCID of the Compartment.
    fsuReadinessCheckCollections List<GetFsuReadinessChecksFsuReadinessCheckCollection>
    The list of fsu_readiness_check_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    The user-friendly name for the Exadata Fleet Update Readiness Check resource.
    filters List<GetFsuReadinessChecksFilter>
    resourceId String
    state String
    Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
    type String
    Possible Exadata Fleet Update Readiness Check types.
    compartmentId string
    The OCID of the Compartment.
    fsuReadinessCheckCollections GetFsuReadinessChecksFsuReadinessCheckCollection[]
    The list of fsu_readiness_check_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    displayName string
    The user-friendly name for the Exadata Fleet Update Readiness Check resource.
    filters GetFsuReadinessChecksFilter[]
    resourceId string
    state string
    Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
    type string
    Possible Exadata Fleet Update Readiness Check types.
    compartment_id str
    The OCID of the Compartment.
    fsu_readiness_check_collections Sequence[GetFsuReadinessChecksFsuReadinessCheckCollection]
    The list of fsu_readiness_check_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    display_name str
    The user-friendly name for the Exadata Fleet Update Readiness Check resource.
    filters Sequence[GetFsuReadinessChecksFilter]
    resource_id str
    state str
    Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
    type str
    Possible Exadata Fleet Update Readiness Check types.
    compartmentId String
    The OCID of the Compartment.
    fsuReadinessCheckCollections List<Property Map>
    The list of fsu_readiness_check_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    The user-friendly name for the Exadata Fleet Update Readiness Check resource.
    filters List<Property Map>
    resourceId String
    state String
    Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
    type String
    Possible Exadata Fleet Update Readiness Check types.

    Supporting Types

    GetFsuReadinessChecksFilter

    Name string
    Name of the patching issue.
    Values List<string>
    Regex bool
    Name string
    Name of the patching issue.
    Values []string
    Regex bool
    name String
    Name of the patching issue.
    values List<String>
    regex Boolean
    name string
    Name of the patching issue.
    values string[]
    regex boolean
    name str
    Name of the patching issue.
    values Sequence[str]
    regex bool
    name String
    Name of the patching issue.
    values List<String>
    regex Boolean

    GetFsuReadinessChecksFsuReadinessCheckCollection

    GetFsuReadinessChecksFsuReadinessCheckCollectionItem

    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"}
    DisplayName string
    A filter to return only resources that match the entire display name given.
    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
    The OCID of the Exadata Fleet Update Readiness Check.
    IssueCount int
    Number of issues found during the Exadata Fleet Update Readiness Check run.
    Issues List<GetFsuReadinessChecksFsuReadinessCheckCollectionItemIssue>
    Issues found during the Exadata Fleet Update Readiness Check run.
    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.
    State string
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    Targets List<GetFsuReadinessChecksFsuReadinessCheckCollectionItemTarget>
    List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
    TimeCreated string
    The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
    TimeFinished string
    The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
    TimeUpdated string
    The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
    Type string
    A filter to return only resources whose type matches the specified type.
    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"}
    DisplayName string
    A filter to return only resources that match the entire display name given.
    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
    The OCID of the Exadata Fleet Update Readiness Check.
    IssueCount int
    Number of issues found during the Exadata Fleet Update Readiness Check run.
    Issues []GetFsuReadinessChecksFsuReadinessCheckCollectionItemIssue
    Issues found during the Exadata Fleet Update Readiness Check run.
    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.
    State string
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    Targets []GetFsuReadinessChecksFsuReadinessCheckCollectionItemTarget
    List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
    TimeCreated string
    The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
    TimeFinished string
    The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
    TimeUpdated string
    The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
    Type string
    A filter to return only resources whose type matches the specified type.
    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"}
    displayName String
    A filter to return only resources that match the entire display name given.
    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
    The OCID of the Exadata Fleet Update Readiness Check.
    issueCount Integer
    Number of issues found during the Exadata Fleet Update Readiness Check run.
    issues List<GetFsuReadinessChecksFsuReadinessCheckCollectionItemIssue>
    Issues found during the Exadata Fleet Update Readiness Check run.
    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.
    state String
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    targets List<GetFsuReadinessChecksFsuReadinessCheckCollectionItemTarget>
    List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
    timeCreated String
    The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
    timeFinished String
    The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
    timeUpdated String
    The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
    type String
    A filter to return only resources whose type matches the specified type.
    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"}
    displayName string
    A filter to return only resources that match the entire display name given.
    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
    The OCID of the Exadata Fleet Update Readiness Check.
    issueCount number
    Number of issues found during the Exadata Fleet Update Readiness Check run.
    issues GetFsuReadinessChecksFsuReadinessCheckCollectionItemIssue[]
    Issues found during the Exadata Fleet Update Readiness Check run.
    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.
    state string
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    targets GetFsuReadinessChecksFsuReadinessCheckCollectionItemTarget[]
    List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
    timeCreated string
    The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
    timeFinished string
    The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
    timeUpdated string
    The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
    type string
    A filter to return only resources whose type matches the specified type.
    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"}
    display_name str
    A filter to return only resources that match the entire display name given.
    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
    The OCID of the Exadata Fleet Update Readiness Check.
    issue_count int
    Number of issues found during the Exadata Fleet Update Readiness Check run.
    issues Sequence[GetFsuReadinessChecksFsuReadinessCheckCollectionItemIssue]
    Issues found during the Exadata Fleet Update Readiness Check run.
    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.
    state str
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    targets Sequence[GetFsuReadinessChecksFsuReadinessCheckCollectionItemTarget]
    List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
    time_created str
    The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
    time_finished str
    The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
    time_updated str
    The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
    type str
    A filter to return only resources whose type matches the specified type.
    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"}
    displayName String
    A filter to return only resources that match the entire display name given.
    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
    The OCID of the Exadata Fleet Update Readiness Check.
    issueCount Number
    Number of issues found during the Exadata Fleet Update Readiness Check run.
    issues List<Property Map>
    Issues found during the Exadata Fleet Update Readiness Check run.
    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.
    state String
    A filter to return only resources whose lifecycleState matches the specified lifecycleState.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    targets List<Property Map>
    List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
    timeCreated String
    The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
    timeFinished String
    The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
    timeUpdated String
    The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
    type String
    A filter to return only resources whose type matches the specified type.

    GetFsuReadinessChecksFsuReadinessCheckCollectionItemIssue

    Description string
    Description of the patching issue.
    ImpactedResourceId string
    The OCID of the resource impacted by the patching issue.
    Name string
    Name of the patching issue.
    RecommendedAction string
    Recommended action to perform to address or further triage the patching issue.
    Description string
    Description of the patching issue.
    ImpactedResourceId string
    The OCID of the resource impacted by the patching issue.
    Name string
    Name of the patching issue.
    RecommendedAction string
    Recommended action to perform to address or further triage the patching issue.
    description String
    Description of the patching issue.
    impactedResourceId String
    The OCID of the resource impacted by the patching issue.
    name String
    Name of the patching issue.
    recommendedAction String
    Recommended action to perform to address or further triage the patching issue.
    description string
    Description of the patching issue.
    impactedResourceId string
    The OCID of the resource impacted by the patching issue.
    name string
    Name of the patching issue.
    recommendedAction string
    Recommended action to perform to address or further triage the patching issue.
    description str
    Description of the patching issue.
    impacted_resource_id str
    The OCID of the resource impacted by the patching issue.
    name str
    Name of the patching issue.
    recommended_action str
    Recommended action to perform to address or further triage the patching issue.
    description String
    Description of the patching issue.
    impactedResourceId String
    The OCID of the resource impacted by the patching issue.
    name String
    Name of the patching issue.
    recommendedAction String
    Recommended action to perform to address or further triage the patching issue.

    GetFsuReadinessChecksFsuReadinessCheckCollectionItemTarget

    EntityId string
    Resource identifier OCID
    EntityType string
    Resource entity type
    EntityId string
    Resource identifier OCID
    EntityType string
    Resource entity type
    entityId String
    Resource identifier OCID
    entityType String
    Resource entity type
    entityId string
    Resource identifier OCID
    entityType string
    Resource entity type
    entity_id str
    Resource identifier OCID
    entity_type str
    Resource entity type
    entityId String
    Resource identifier OCID
    entityType String
    Resource entity type

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.4.0
    published on Thursday, Mar 26, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.