1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FleetSoftwareUpdate
  5. getFsuCycles
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

oci.FleetSoftwareUpdate.getFsuCycles

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

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

    Gets a list of all Exadata Fleet Update Cycles in a compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testFsuCycles = oci.FleetSoftwareUpdate.getFsuCycles({
        compartmentId: compartmentId,
        collectionType: fsuCycleCollectionType,
        displayName: fsuCycleDisplayName,
        fsuCollectionId: testFsuCollection.id,
        state: fsuCycleState,
        targetVersion: fsuCycleTargetVersion,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_fsu_cycles = oci.FleetSoftwareUpdate.get_fsu_cycles(compartment_id=compartment_id,
        collection_type=fsu_cycle_collection_type,
        display_name=fsu_cycle_display_name,
        fsu_collection_id=test_fsu_collection["id"],
        state=fsu_cycle_state,
        target_version=fsu_cycle_target_version)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/FleetSoftwareUpdate"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := FleetSoftwareUpdate.GetFsuCycles(ctx, &fleetsoftwareupdate.GetFsuCyclesArgs{
    			CompartmentId:   compartmentId,
    			CollectionType:  pulumi.StringRef(fsuCycleCollectionType),
    			DisplayName:     pulumi.StringRef(fsuCycleDisplayName),
    			FsuCollectionId: pulumi.StringRef(testFsuCollection.Id),
    			State:           pulumi.StringRef(fsuCycleState),
    			TargetVersion:   pulumi.StringRef(fsuCycleTargetVersion),
    		}, 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 testFsuCycles = Oci.FleetSoftwareUpdate.GetFsuCycles.Invoke(new()
        {
            CompartmentId = compartmentId,
            CollectionType = fsuCycleCollectionType,
            DisplayName = fsuCycleDisplayName,
            FsuCollectionId = testFsuCollection.Id,
            State = fsuCycleState,
            TargetVersion = fsuCycleTargetVersion,
        });
    
    });
    
    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.GetFsuCyclesArgs;
    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 testFsuCycles = FleetSoftwareUpdateFunctions.getFsuCycles(GetFsuCyclesArgs.builder()
                .compartmentId(compartmentId)
                .collectionType(fsuCycleCollectionType)
                .displayName(fsuCycleDisplayName)
                .fsuCollectionId(testFsuCollection.id())
                .state(fsuCycleState)
                .targetVersion(fsuCycleTargetVersion)
                .build());
    
        }
    }
    
    variables:
      testFsuCycles:
        fn::invoke:
          Function: oci:FleetSoftwareUpdate:getFsuCycles
          Arguments:
            compartmentId: ${compartmentId}
            collectionType: ${fsuCycleCollectionType}
            displayName: ${fsuCycleDisplayName}
            fsuCollectionId: ${testFsuCollection.id}
            state: ${fsuCycleState}
            targetVersion: ${fsuCycleTargetVersion}
    

    Using getFsuCycles

    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 getFsuCycles(args: GetFsuCyclesArgs, opts?: InvokeOptions): Promise<GetFsuCyclesResult>
    function getFsuCyclesOutput(args: GetFsuCyclesOutputArgs, opts?: InvokeOptions): Output<GetFsuCyclesResult>
    def get_fsu_cycles(collection_type: Optional[str] = None,
                       compartment_id: Optional[str] = None,
                       display_name: Optional[str] = None,
                       filters: Optional[Sequence[_fleetsoftwareupdate.GetFsuCyclesFilter]] = None,
                       fsu_collection_id: Optional[str] = None,
                       state: Optional[str] = None,
                       target_version: Optional[str] = None,
                       opts: Optional[InvokeOptions] = None) -> GetFsuCyclesResult
    def get_fsu_cycles_output(collection_type: Optional[pulumi.Input[str]] = None,
                       compartment_id: Optional[pulumi.Input[str]] = None,
                       display_name: Optional[pulumi.Input[str]] = None,
                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[_fleetsoftwareupdate.GetFsuCyclesFilterArgs]]]] = None,
                       fsu_collection_id: Optional[pulumi.Input[str]] = None,
                       state: Optional[pulumi.Input[str]] = None,
                       target_version: Optional[pulumi.Input[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetFsuCyclesResult]
    func GetFsuCycles(ctx *Context, args *GetFsuCyclesArgs, opts ...InvokeOption) (*GetFsuCyclesResult, error)
    func GetFsuCyclesOutput(ctx *Context, args *GetFsuCyclesOutputArgs, opts ...InvokeOption) GetFsuCyclesResultOutput

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

    public static class GetFsuCycles 
    {
        public static Task<GetFsuCyclesResult> InvokeAsync(GetFsuCyclesArgs args, InvokeOptions? opts = null)
        public static Output<GetFsuCyclesResult> Invoke(GetFsuCyclesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetFsuCyclesResult> getFsuCycles(GetFsuCyclesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:FleetSoftwareUpdate/getFsuCycles:getFsuCycles
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment in which to list resources.
    CollectionType string
    A filter to return only resources whose Collection type matches the given type.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetFsuCyclesFilter>
    FsuCollectionId string
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    State string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    TargetVersion string
    A filter to return only entries whose targetVersion matches the given targetVersion.
    CompartmentId string
    The ID of the compartment in which to list resources.
    CollectionType string
    A filter to return only resources whose Collection type matches the given type.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetFsuCyclesFilter
    FsuCollectionId string
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    State string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    TargetVersion string
    A filter to return only entries whose targetVersion matches the given targetVersion.
    compartmentId String
    The ID of the compartment in which to list resources.
    collectionType String
    A filter to return only resources whose Collection type matches the given type.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetFsuCyclesFilter>
    fsuCollectionId String
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    state String
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    targetVersion String
    A filter to return only entries whose targetVersion matches the given targetVersion.
    compartmentId string
    The ID of the compartment in which to list resources.
    collectionType string
    A filter to return only resources whose Collection type matches the given type.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetFsuCyclesFilter[]
    fsuCollectionId string
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    state string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    targetVersion string
    A filter to return only entries whose targetVersion matches the given targetVersion.
    compartment_id str
    The ID of the compartment in which to list resources.
    collection_type str
    A filter to return only resources whose Collection type matches the given type.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[fleetsoftwareupdate.GetFsuCyclesFilter]
    fsu_collection_id str
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    state str
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    target_version str
    A filter to return only entries whose targetVersion matches the given targetVersion.
    compartmentId String
    The ID of the compartment in which to list resources.
    collectionType String
    A filter to return only resources whose Collection type matches the given type.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>
    fsuCollectionId String
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    state String
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    targetVersion String
    A filter to return only entries whose targetVersion matches the given targetVersion.

    getFsuCycles Result

    The following output properties are available:

    CompartmentId string
    Compartment Identifier.
    FsuCycleSummaryCollections List<GetFsuCyclesFsuCycleSummaryCollection>
    The list of fsu_cycle_summary_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CollectionType string
    Type of Collection this Exadata Fleet Update Cycle belongs to.
    DisplayName string
    Exadata Fleet Update Cycle display name.
    Filters List<GetFsuCyclesFilter>
    FsuCollectionId string
    OCID identifier for the Collection ID the Exadata Fleet Update Cycle is assigned to.
    State string
    The current state of the Exadata Fleet Update Cycle.
    TargetVersion string
    CompartmentId string
    Compartment Identifier.
    FsuCycleSummaryCollections []GetFsuCyclesFsuCycleSummaryCollection
    The list of fsu_cycle_summary_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CollectionType string
    Type of Collection this Exadata Fleet Update Cycle belongs to.
    DisplayName string
    Exadata Fleet Update Cycle display name.
    Filters []GetFsuCyclesFilter
    FsuCollectionId string
    OCID identifier for the Collection ID the Exadata Fleet Update Cycle is assigned to.
    State string
    The current state of the Exadata Fleet Update Cycle.
    TargetVersion string
    compartmentId String
    Compartment Identifier.
    fsuCycleSummaryCollections List<GetFsuCyclesFsuCycleSummaryCollection>
    The list of fsu_cycle_summary_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    collectionType String
    Type of Collection this Exadata Fleet Update Cycle belongs to.
    displayName String
    Exadata Fleet Update Cycle display name.
    filters List<GetFsuCyclesFilter>
    fsuCollectionId String
    OCID identifier for the Collection ID the Exadata Fleet Update Cycle is assigned to.
    state String
    The current state of the Exadata Fleet Update Cycle.
    targetVersion String
    compartmentId string
    Compartment Identifier.
    fsuCycleSummaryCollections GetFsuCyclesFsuCycleSummaryCollection[]
    The list of fsu_cycle_summary_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    collectionType string
    Type of Collection this Exadata Fleet Update Cycle belongs to.
    displayName string
    Exadata Fleet Update Cycle display name.
    filters GetFsuCyclesFilter[]
    fsuCollectionId string
    OCID identifier for the Collection ID the Exadata Fleet Update Cycle is assigned to.
    state string
    The current state of the Exadata Fleet Update Cycle.
    targetVersion string
    compartment_id str
    Compartment Identifier.
    fsu_cycle_summary_collections Sequence[fleetsoftwareupdate.GetFsuCyclesFsuCycleSummaryCollection]
    The list of fsu_cycle_summary_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    collection_type str
    Type of Collection this Exadata Fleet Update Cycle belongs to.
    display_name str
    Exadata Fleet Update Cycle display name.
    filters Sequence[fleetsoftwareupdate.GetFsuCyclesFilter]
    fsu_collection_id str
    OCID identifier for the Collection ID the Exadata Fleet Update Cycle is assigned to.
    state str
    The current state of the Exadata Fleet Update Cycle.
    target_version str
    compartmentId String
    Compartment Identifier.
    fsuCycleSummaryCollections List<Property Map>
    The list of fsu_cycle_summary_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    collectionType String
    Type of Collection this Exadata Fleet Update Cycle belongs to.
    displayName String
    Exadata Fleet Update Cycle display name.
    filters List<Property Map>
    fsuCollectionId String
    OCID identifier for the Collection ID the Exadata Fleet Update Cycle is assigned to.
    state String
    The current state of the Exadata Fleet Update Cycle.
    targetVersion String

    Supporting Types

    GetFsuCyclesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetFsuCyclesFsuCycleSummaryCollection

    GetFsuCyclesFsuCycleSummaryCollectionItem

    ApplyActionSchedules List<GetFsuCyclesFsuCycleSummaryCollectionItemApplyActionSchedule>
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    BatchingStrategies List<GetFsuCyclesFsuCycleSummaryCollectionItemBatchingStrategy>
    Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
    CollectionType string
    A filter to return only resources whose Collection type matches the given type.
    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"}
    DiagnosticsCollections List<GetFsuCyclesFsuCycleSummaryCollectionItemDiagnosticsCollection>
    Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    ExecutingFsuActionId string
    OCID identifier for the Action that is currently in execution, if applicable.
    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"}
    FsuCollectionId string
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    GoalVersionDetails List<GetFsuCyclesFsuCycleSummaryCollectionItemGoalVersionDetail>
    Goal version or image details for the Exadata Fleet Update Cycle.
    Id string
    OCID identifier for the Exadata Fleet Update Cycle.
    IsIgnoreMissingPatches List<string>
    List of bug numbers to ignore.
    IsIgnorePatches bool
    Ignore all patches between the source and target homes during patching.
    IsKeepPlacement bool
    Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
    LastCompletedAction string
    The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.
    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.
    MaxDrainTimeoutInSeconds int
    Service drain timeout specified in seconds.
    NextActionToExecutes List<GetFsuCyclesFsuCycleSummaryCollectionItemNextActionToExecute>
    In this array all the possible actions will be listed. The first element is the suggested Action.
    StageActionSchedules List<GetFsuCyclesFsuCycleSummaryCollectionItemStageActionSchedule>
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    State string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the Exadata Fleet Update Cycle was created, as described in RFC 3339, section 14.29.
    TimeFinished string
    The date and time the Exadata Fleet Update Cycle was finished, as described in RFC 3339.
    TimeUpdated string
    The date and time the Exadata Fleet Update Cycle was updated, as described in RFC 3339, section 14.29.
    Type string
    Type of Exadata Fleet Update Cycle.
    ApplyActionSchedules []GetFsuCyclesFsuCycleSummaryCollectionItemApplyActionSchedule
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    BatchingStrategies []GetFsuCyclesFsuCycleSummaryCollectionItemBatchingStrategy
    Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
    CollectionType string
    A filter to return only resources whose Collection type matches the given 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"}
    DiagnosticsCollections []GetFsuCyclesFsuCycleSummaryCollectionItemDiagnosticsCollection
    Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    ExecutingFsuActionId string
    OCID identifier for the Action that is currently in execution, if applicable.
    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"}
    FsuCollectionId string
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    GoalVersionDetails []GetFsuCyclesFsuCycleSummaryCollectionItemGoalVersionDetail
    Goal version or image details for the Exadata Fleet Update Cycle.
    Id string
    OCID identifier for the Exadata Fleet Update Cycle.
    IsIgnoreMissingPatches []string
    List of bug numbers to ignore.
    IsIgnorePatches bool
    Ignore all patches between the source and target homes during patching.
    IsKeepPlacement bool
    Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
    LastCompletedAction string
    The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.
    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.
    MaxDrainTimeoutInSeconds int
    Service drain timeout specified in seconds.
    NextActionToExecutes []GetFsuCyclesFsuCycleSummaryCollectionItemNextActionToExecute
    In this array all the possible actions will be listed. The first element is the suggested Action.
    StageActionSchedules []GetFsuCyclesFsuCycleSummaryCollectionItemStageActionSchedule
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    State string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the Exadata Fleet Update Cycle was created, as described in RFC 3339, section 14.29.
    TimeFinished string
    The date and time the Exadata Fleet Update Cycle was finished, as described in RFC 3339.
    TimeUpdated string
    The date and time the Exadata Fleet Update Cycle was updated, as described in RFC 3339, section 14.29.
    Type string
    Type of Exadata Fleet Update Cycle.
    applyActionSchedules List<GetFsuCyclesFsuCycleSummaryCollectionItemApplyActionSchedule>
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    batchingStrategies List<GetFsuCyclesFsuCycleSummaryCollectionItemBatchingStrategy>
    Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
    collectionType String
    A filter to return only resources whose Collection type matches the given 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"}
    diagnosticsCollections List<GetFsuCyclesFsuCycleSummaryCollectionItemDiagnosticsCollection>
    Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
    displayName String
    A filter to return only resources that match the entire display name given.
    executingFsuActionId String
    OCID identifier for the Action that is currently in execution, if applicable.
    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"}
    fsuCollectionId String
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    goalVersionDetails List<GetFsuCyclesFsuCycleSummaryCollectionItemGoalVersionDetail>
    Goal version or image details for the Exadata Fleet Update Cycle.
    id String
    OCID identifier for the Exadata Fleet Update Cycle.
    isIgnoreMissingPatches List<String>
    List of bug numbers to ignore.
    isIgnorePatches Boolean
    Ignore all patches between the source and target homes during patching.
    isKeepPlacement Boolean
    Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
    lastCompletedAction String
    The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.
    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.
    maxDrainTimeoutInSeconds Integer
    Service drain timeout specified in seconds.
    nextActionToExecutes List<GetFsuCyclesFsuCycleSummaryCollectionItemNextActionToExecute>
    In this array all the possible actions will be listed. The first element is the suggested Action.
    stageActionSchedules List<GetFsuCyclesFsuCycleSummaryCollectionItemStageActionSchedule>
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    state String
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the Exadata Fleet Update Cycle was created, as described in RFC 3339, section 14.29.
    timeFinished String
    The date and time the Exadata Fleet Update Cycle was finished, as described in RFC 3339.
    timeUpdated String
    The date and time the Exadata Fleet Update Cycle was updated, as described in RFC 3339, section 14.29.
    type String
    Type of Exadata Fleet Update Cycle.
    applyActionSchedules GetFsuCyclesFsuCycleSummaryCollectionItemApplyActionSchedule[]
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    batchingStrategies GetFsuCyclesFsuCycleSummaryCollectionItemBatchingStrategy[]
    Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
    collectionType string
    A filter to return only resources whose Collection type matches the given 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"}
    diagnosticsCollections GetFsuCyclesFsuCycleSummaryCollectionItemDiagnosticsCollection[]
    Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
    displayName string
    A filter to return only resources that match the entire display name given.
    executingFsuActionId string
    OCID identifier for the Action that is currently in execution, if applicable.
    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"}
    fsuCollectionId string
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    goalVersionDetails GetFsuCyclesFsuCycleSummaryCollectionItemGoalVersionDetail[]
    Goal version or image details for the Exadata Fleet Update Cycle.
    id string
    OCID identifier for the Exadata Fleet Update Cycle.
    isIgnoreMissingPatches string[]
    List of bug numbers to ignore.
    isIgnorePatches boolean
    Ignore all patches between the source and target homes during patching.
    isKeepPlacement boolean
    Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
    lastCompletedAction string
    The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.
    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.
    maxDrainTimeoutInSeconds number
    Service drain timeout specified in seconds.
    nextActionToExecutes GetFsuCyclesFsuCycleSummaryCollectionItemNextActionToExecute[]
    In this array all the possible actions will be listed. The first element is the suggested Action.
    stageActionSchedules GetFsuCyclesFsuCycleSummaryCollectionItemStageActionSchedule[]
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    state string
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the Exadata Fleet Update Cycle was created, as described in RFC 3339, section 14.29.
    timeFinished string
    The date and time the Exadata Fleet Update Cycle was finished, as described in RFC 3339.
    timeUpdated string
    The date and time the Exadata Fleet Update Cycle was updated, as described in RFC 3339, section 14.29.
    type string
    Type of Exadata Fleet Update Cycle.
    apply_action_schedules Sequence[fleetsoftwareupdate.GetFsuCyclesFsuCycleSummaryCollectionItemApplyActionSchedule]
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    batching_strategies Sequence[fleetsoftwareupdate.GetFsuCyclesFsuCycleSummaryCollectionItemBatchingStrategy]
    Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
    collection_type str
    A filter to return only resources whose Collection type matches the given 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"}
    diagnostics_collections Sequence[fleetsoftwareupdate.GetFsuCyclesFsuCycleSummaryCollectionItemDiagnosticsCollection]
    Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
    display_name str
    A filter to return only resources that match the entire display name given.
    executing_fsu_action_id str
    OCID identifier for the Action that is currently in execution, if applicable.
    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"}
    fsu_collection_id str
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    goal_version_details Sequence[fleetsoftwareupdate.GetFsuCyclesFsuCycleSummaryCollectionItemGoalVersionDetail]
    Goal version or image details for the Exadata Fleet Update Cycle.
    id str
    OCID identifier for the Exadata Fleet Update Cycle.
    is_ignore_missing_patches Sequence[str]
    List of bug numbers to ignore.
    is_ignore_patches bool
    Ignore all patches between the source and target homes during patching.
    is_keep_placement bool
    Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
    last_completed_action str
    The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.
    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.
    max_drain_timeout_in_seconds int
    Service drain timeout specified in seconds.
    next_action_to_executes Sequence[fleetsoftwareupdate.GetFsuCyclesFsuCycleSummaryCollectionItemNextActionToExecute]
    In this array all the possible actions will be listed. The first element is the suggested Action.
    stage_action_schedules Sequence[fleetsoftwareupdate.GetFsuCyclesFsuCycleSummaryCollectionItemStageActionSchedule]
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    state str
    A filter to return only resources whose lifecycleState matches the given 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"}
    time_created str
    The date and time the Exadata Fleet Update Cycle was created, as described in RFC 3339, section 14.29.
    time_finished str
    The date and time the Exadata Fleet Update Cycle was finished, as described in RFC 3339.
    time_updated str
    The date and time the Exadata Fleet Update Cycle was updated, as described in RFC 3339, section 14.29.
    type str
    Type of Exadata Fleet Update Cycle.
    applyActionSchedules List<Property Map>
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    batchingStrategies List<Property Map>
    Batching strategy details to use during PRECHECK and APPLY Cycle Actions.
    collectionType String
    A filter to return only resources whose Collection type matches the given 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"}
    diagnosticsCollections List<Property Map>
    Details to configure diagnostics collection for targets affected by this Exadata Fleet Update Maintenance Cycle.
    displayName String
    A filter to return only resources that match the entire display name given.
    executingFsuActionId String
    OCID identifier for the Action that is currently in execution, if applicable.
    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"}
    fsuCollectionId String
    A filter to return only resources whose fsuCollectionId matches the given fsuCollectionId.
    goalVersionDetails List<Property Map>
    Goal version or image details for the Exadata Fleet Update Cycle.
    id String
    OCID identifier for the Exadata Fleet Update Cycle.
    isIgnoreMissingPatches List<String>
    List of bug numbers to ignore.
    isIgnorePatches Boolean
    Ignore all patches between the source and target homes during patching.
    isKeepPlacement Boolean
    Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.
    lastCompletedAction String
    The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.
    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.
    maxDrainTimeoutInSeconds Number
    Service drain timeout specified in seconds.
    nextActionToExecutes List<Property Map>
    In this array all the possible actions will be listed. The first element is the suggested Action.
    stageActionSchedules List<Property Map>
    Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.
    state String
    A filter to return only resources whose lifecycleState matches the given lifecycleState.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the Exadata Fleet Update Cycle was created, as described in RFC 3339, section 14.29.
    timeFinished String
    The date and time the Exadata Fleet Update Cycle was finished, as described in RFC 3339.
    timeUpdated String
    The date and time the Exadata Fleet Update Cycle was updated, as described in RFC 3339, section 14.29.
    type String
    Type of Exadata Fleet Update Cycle.

    GetFsuCyclesFsuCycleSummaryCollectionItemApplyActionSchedule

    TimeToStart string
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    Type string
    Type of Exadata Fleet Update Cycle.
    TimeToStart string
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    Type string
    Type of Exadata Fleet Update Cycle.
    timeToStart String
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type String
    Type of Exadata Fleet Update Cycle.
    timeToStart string
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type string
    Type of Exadata Fleet Update Cycle.
    time_to_start str
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type str
    Type of Exadata Fleet Update Cycle.
    timeToStart String
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type String
    Type of Exadata Fleet Update Cycle.

    GetFsuCyclesFsuCycleSummaryCollectionItemBatchingStrategy

    IsForceRolling bool
    True to force rolling patching.
    IsWaitForBatchResume bool
    True to wait for customer to resume the Apply Action once the first half is done. False to automatically patch the second half.
    Percentage int
    Percentage of availability in the service during the Patch operation.
    Type string
    Type of Exadata Fleet Update Cycle.
    IsForceRolling bool
    True to force rolling patching.
    IsWaitForBatchResume bool
    True to wait for customer to resume the Apply Action once the first half is done. False to automatically patch the second half.
    Percentage int
    Percentage of availability in the service during the Patch operation.
    Type string
    Type of Exadata Fleet Update Cycle.
    isForceRolling Boolean
    True to force rolling patching.
    isWaitForBatchResume Boolean
    True to wait for customer to resume the Apply Action once the first half is done. False to automatically patch the second half.
    percentage Integer
    Percentage of availability in the service during the Patch operation.
    type String
    Type of Exadata Fleet Update Cycle.
    isForceRolling boolean
    True to force rolling patching.
    isWaitForBatchResume boolean
    True to wait for customer to resume the Apply Action once the first half is done. False to automatically patch the second half.
    percentage number
    Percentage of availability in the service during the Patch operation.
    type string
    Type of Exadata Fleet Update Cycle.
    is_force_rolling bool
    True to force rolling patching.
    is_wait_for_batch_resume bool
    True to wait for customer to resume the Apply Action once the first half is done. False to automatically patch the second half.
    percentage int
    Percentage of availability in the service during the Patch operation.
    type str
    Type of Exadata Fleet Update Cycle.
    isForceRolling Boolean
    True to force rolling patching.
    isWaitForBatchResume Boolean
    True to wait for customer to resume the Apply Action once the first half is done. False to automatically patch the second half.
    percentage Number
    Percentage of availability in the service during the Patch operation.
    type String
    Type of Exadata Fleet Update Cycle.

    GetFsuCyclesFsuCycleSummaryCollectionItemDiagnosticsCollection

    LogCollectionMode string
    Enable incident logs and trace collection. Allow Oracle to collect incident logs and traces to enable fault diagnosis and issue resolution according to the selected mode.
    LogCollectionMode string
    Enable incident logs and trace collection. Allow Oracle to collect incident logs and traces to enable fault diagnosis and issue resolution according to the selected mode.
    logCollectionMode String
    Enable incident logs and trace collection. Allow Oracle to collect incident logs and traces to enable fault diagnosis and issue resolution according to the selected mode.
    logCollectionMode string
    Enable incident logs and trace collection. Allow Oracle to collect incident logs and traces to enable fault diagnosis and issue resolution according to the selected mode.
    log_collection_mode str
    Enable incident logs and trace collection. Allow Oracle to collect incident logs and traces to enable fault diagnosis and issue resolution according to the selected mode.
    logCollectionMode String
    Enable incident logs and trace collection. Allow Oracle to collect incident logs and traces to enable fault diagnosis and issue resolution according to the selected mode.

    GetFsuCyclesFsuCycleSummaryCollectionItemGoalVersionDetail

    HomePolicy string
    Goal home policy to use when Staging the Goal Version during patching. CREATE_NEW: Create a new DBHome (for Database Collections) for the specified image or version. USE_EXISTING: All database targets in the same VMCluster or CloudVmCluster will be moved to a shared database home. If an existing home for the selected image or version is not found in the VM Cluster for a target database, then a new home will be created. If more than one existing home for the selected image is found, then the home with the least number of databases will be used. If multiple homes have the least number of databases, then a home will be selected at random.
    NewHomePrefix string
    Prefix name used for new DB home resources created as part of the Stage Action. Format: <specified_prefix>_ If not specified, a default Oracle Cloud Infrastructure DB home resource will be generated for the new DB home resources created.
    SoftwareImageId string
    Target database software image OCID.
    Type string
    Type of Exadata Fleet Update Cycle.
    Version string
    Target DB or GI version string for the Exadata Fleet Update Cycle.
    HomePolicy string
    Goal home policy to use when Staging the Goal Version during patching. CREATE_NEW: Create a new DBHome (for Database Collections) for the specified image or version. USE_EXISTING: All database targets in the same VMCluster or CloudVmCluster will be moved to a shared database home. If an existing home for the selected image or version is not found in the VM Cluster for a target database, then a new home will be created. If more than one existing home for the selected image is found, then the home with the least number of databases will be used. If multiple homes have the least number of databases, then a home will be selected at random.
    NewHomePrefix string
    Prefix name used for new DB home resources created as part of the Stage Action. Format: <specified_prefix>_ If not specified, a default Oracle Cloud Infrastructure DB home resource will be generated for the new DB home resources created.
    SoftwareImageId string
    Target database software image OCID.
    Type string
    Type of Exadata Fleet Update Cycle.
    Version string
    Target DB or GI version string for the Exadata Fleet Update Cycle.
    homePolicy String
    Goal home policy to use when Staging the Goal Version during patching. CREATE_NEW: Create a new DBHome (for Database Collections) for the specified image or version. USE_EXISTING: All database targets in the same VMCluster or CloudVmCluster will be moved to a shared database home. If an existing home for the selected image or version is not found in the VM Cluster for a target database, then a new home will be created. If more than one existing home for the selected image is found, then the home with the least number of databases will be used. If multiple homes have the least number of databases, then a home will be selected at random.
    newHomePrefix String
    Prefix name used for new DB home resources created as part of the Stage Action. Format: <specified_prefix>_ If not specified, a default Oracle Cloud Infrastructure DB home resource will be generated for the new DB home resources created.
    softwareImageId String
    Target database software image OCID.
    type String
    Type of Exadata Fleet Update Cycle.
    version String
    Target DB or GI version string for the Exadata Fleet Update Cycle.
    homePolicy string
    Goal home policy to use when Staging the Goal Version during patching. CREATE_NEW: Create a new DBHome (for Database Collections) for the specified image or version. USE_EXISTING: All database targets in the same VMCluster or CloudVmCluster will be moved to a shared database home. If an existing home for the selected image or version is not found in the VM Cluster for a target database, then a new home will be created. If more than one existing home for the selected image is found, then the home with the least number of databases will be used. If multiple homes have the least number of databases, then a home will be selected at random.
    newHomePrefix string
    Prefix name used for new DB home resources created as part of the Stage Action. Format: <specified_prefix>_ If not specified, a default Oracle Cloud Infrastructure DB home resource will be generated for the new DB home resources created.
    softwareImageId string
    Target database software image OCID.
    type string
    Type of Exadata Fleet Update Cycle.
    version string
    Target DB or GI version string for the Exadata Fleet Update Cycle.
    home_policy str
    Goal home policy to use when Staging the Goal Version during patching. CREATE_NEW: Create a new DBHome (for Database Collections) for the specified image or version. USE_EXISTING: All database targets in the same VMCluster or CloudVmCluster will be moved to a shared database home. If an existing home for the selected image or version is not found in the VM Cluster for a target database, then a new home will be created. If more than one existing home for the selected image is found, then the home with the least number of databases will be used. If multiple homes have the least number of databases, then a home will be selected at random.
    new_home_prefix str
    Prefix name used for new DB home resources created as part of the Stage Action. Format: <specified_prefix>_ If not specified, a default Oracle Cloud Infrastructure DB home resource will be generated for the new DB home resources created.
    software_image_id str
    Target database software image OCID.
    type str
    Type of Exadata Fleet Update Cycle.
    version str
    Target DB or GI version string for the Exadata Fleet Update Cycle.
    homePolicy String
    Goal home policy to use when Staging the Goal Version during patching. CREATE_NEW: Create a new DBHome (for Database Collections) for the specified image or version. USE_EXISTING: All database targets in the same VMCluster or CloudVmCluster will be moved to a shared database home. If an existing home for the selected image or version is not found in the VM Cluster for a target database, then a new home will be created. If more than one existing home for the selected image is found, then the home with the least number of databases will be used. If multiple homes have the least number of databases, then a home will be selected at random.
    newHomePrefix String
    Prefix name used for new DB home resources created as part of the Stage Action. Format: <specified_prefix>_ If not specified, a default Oracle Cloud Infrastructure DB home resource will be generated for the new DB home resources created.
    softwareImageId String
    Target database software image OCID.
    type String
    Type of Exadata Fleet Update Cycle.
    version String
    Target DB or GI version string for the Exadata Fleet Update Cycle.

    GetFsuCyclesFsuCycleSummaryCollectionItemNextActionToExecute

    TimeToStart string
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    Type string
    Type of Exadata Fleet Update Cycle.
    TimeToStart string
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    Type string
    Type of Exadata Fleet Update Cycle.
    timeToStart String
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type String
    Type of Exadata Fleet Update Cycle.
    timeToStart string
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type string
    Type of Exadata Fleet Update Cycle.
    time_to_start str
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type str
    Type of Exadata Fleet Update Cycle.
    timeToStart String
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type String
    Type of Exadata Fleet Update Cycle.

    GetFsuCyclesFsuCycleSummaryCollectionItemStageActionSchedule

    TimeToStart string
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    Type string
    Type of Exadata Fleet Update Cycle.
    TimeToStart string
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    Type string
    Type of Exadata Fleet Update Cycle.
    timeToStart String
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type String
    Type of Exadata Fleet Update Cycle.
    timeToStart string
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type string
    Type of Exadata Fleet Update Cycle.
    time_to_start str
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type str
    Type of Exadata Fleet Update Cycle.
    timeToStart String
    The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.
    type String
    Type of Exadata Fleet Update Cycle.

    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.11.0 published on Thursday, Sep 19, 2024 by Pulumi