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

oci.Jms.getFleetErrors

Explore with Pulumi AI

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

    This data source provides the list of Fleet Errors in Oracle Cloud Infrastructure Jms service.

    Returns a list of fleet errors that describe all detected errors.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testFleetErrors = oci.Jms.getFleetErrors({
        compartmentId: compartmentId,
        compartmentIdInSubtree: fleetErrorCompartmentIdInSubtree,
        fleetId: testFleet.id,
        timeFirstSeenGreaterThanOrEqualTo: fleetErrorTimeFirstSeenGreaterThanOrEqualTo,
        timeFirstSeenLessThanOrEqualTo: fleetErrorTimeFirstSeenLessThanOrEqualTo,
        timeLastSeenGreaterThanOrEqualTo: fleetErrorTimeLastSeenGreaterThanOrEqualTo,
        timeLastSeenLessThanOrEqualTo: fleetErrorTimeLastSeenLessThanOrEqualTo,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_fleet_errors = oci.Jms.get_fleet_errors(compartment_id=compartment_id,
        compartment_id_in_subtree=fleet_error_compartment_id_in_subtree,
        fleet_id=test_fleet["id"],
        time_first_seen_greater_than_or_equal_to=fleet_error_time_first_seen_greater_than_or_equal_to,
        time_first_seen_less_than_or_equal_to=fleet_error_time_first_seen_less_than_or_equal_to,
        time_last_seen_greater_than_or_equal_to=fleet_error_time_last_seen_greater_than_or_equal_to,
        time_last_seen_less_than_or_equal_to=fleet_error_time_last_seen_less_than_or_equal_to)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/jms"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := jms.GetFleetErrors(ctx, &jms.GetFleetErrorsArgs{
    			CompartmentId:                     pulumi.StringRef(compartmentId),
    			CompartmentIdInSubtree:            pulumi.BoolRef(fleetErrorCompartmentIdInSubtree),
    			FleetId:                           pulumi.StringRef(testFleet.Id),
    			TimeFirstSeenGreaterThanOrEqualTo: pulumi.StringRef(fleetErrorTimeFirstSeenGreaterThanOrEqualTo),
    			TimeFirstSeenLessThanOrEqualTo:    pulumi.StringRef(fleetErrorTimeFirstSeenLessThanOrEqualTo),
    			TimeLastSeenGreaterThanOrEqualTo:  pulumi.StringRef(fleetErrorTimeLastSeenGreaterThanOrEqualTo),
    			TimeLastSeenLessThanOrEqualTo:     pulumi.StringRef(fleetErrorTimeLastSeenLessThanOrEqualTo),
    		}, 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 testFleetErrors = Oci.Jms.GetFleetErrors.Invoke(new()
        {
            CompartmentId = compartmentId,
            CompartmentIdInSubtree = fleetErrorCompartmentIdInSubtree,
            FleetId = testFleet.Id,
            TimeFirstSeenGreaterThanOrEqualTo = fleetErrorTimeFirstSeenGreaterThanOrEqualTo,
            TimeFirstSeenLessThanOrEqualTo = fleetErrorTimeFirstSeenLessThanOrEqualTo,
            TimeLastSeenGreaterThanOrEqualTo = fleetErrorTimeLastSeenGreaterThanOrEqualTo,
            TimeLastSeenLessThanOrEqualTo = fleetErrorTimeLastSeenLessThanOrEqualTo,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Jms.JmsFunctions;
    import com.pulumi.oci.Jms.inputs.GetFleetErrorsArgs;
    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 testFleetErrors = JmsFunctions.getFleetErrors(GetFleetErrorsArgs.builder()
                .compartmentId(compartmentId)
                .compartmentIdInSubtree(fleetErrorCompartmentIdInSubtree)
                .fleetId(testFleet.id())
                .timeFirstSeenGreaterThanOrEqualTo(fleetErrorTimeFirstSeenGreaterThanOrEqualTo)
                .timeFirstSeenLessThanOrEqualTo(fleetErrorTimeFirstSeenLessThanOrEqualTo)
                .timeLastSeenGreaterThanOrEqualTo(fleetErrorTimeLastSeenGreaterThanOrEqualTo)
                .timeLastSeenLessThanOrEqualTo(fleetErrorTimeLastSeenLessThanOrEqualTo)
                .build());
    
        }
    }
    
    variables:
      testFleetErrors:
        fn::invoke:
          function: oci:Jms:getFleetErrors
          arguments:
            compartmentId: ${compartmentId}
            compartmentIdInSubtree: ${fleetErrorCompartmentIdInSubtree}
            fleetId: ${testFleet.id}
            timeFirstSeenGreaterThanOrEqualTo: ${fleetErrorTimeFirstSeenGreaterThanOrEqualTo}
            timeFirstSeenLessThanOrEqualTo: ${fleetErrorTimeFirstSeenLessThanOrEqualTo}
            timeLastSeenGreaterThanOrEqualTo: ${fleetErrorTimeLastSeenGreaterThanOrEqualTo}
            timeLastSeenLessThanOrEqualTo: ${fleetErrorTimeLastSeenLessThanOrEqualTo}
    

    Using getFleetErrors

    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 getFleetErrors(args: GetFleetErrorsArgs, opts?: InvokeOptions): Promise<GetFleetErrorsResult>
    function getFleetErrorsOutput(args: GetFleetErrorsOutputArgs, opts?: InvokeOptions): Output<GetFleetErrorsResult>
    def get_fleet_errors(compartment_id: Optional[str] = None,
                         compartment_id_in_subtree: Optional[bool] = None,
                         filters: Optional[Sequence[_jms.GetFleetErrorsFilter]] = None,
                         fleet_id: Optional[str] = None,
                         time_first_seen_greater_than_or_equal_to: Optional[str] = None,
                         time_first_seen_less_than_or_equal_to: Optional[str] = None,
                         time_last_seen_greater_than_or_equal_to: Optional[str] = None,
                         time_last_seen_less_than_or_equal_to: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetFleetErrorsResult
    def get_fleet_errors_output(compartment_id: Optional[pulumi.Input[str]] = None,
                         compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_jms.GetFleetErrorsFilterArgs]]]] = None,
                         fleet_id: Optional[pulumi.Input[str]] = None,
                         time_first_seen_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                         time_first_seen_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                         time_last_seen_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                         time_last_seen_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetFleetErrorsResult]
    func GetFleetErrors(ctx *Context, args *GetFleetErrorsArgs, opts ...InvokeOption) (*GetFleetErrorsResult, error)
    func GetFleetErrorsOutput(ctx *Context, args *GetFleetErrorsOutputArgs, opts ...InvokeOption) GetFleetErrorsResultOutput

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

    public static class GetFleetErrors 
    {
        public static Task<GetFleetErrorsResult> InvokeAsync(GetFleetErrorsArgs args, InvokeOptions? opts = null)
        public static Output<GetFleetErrorsResult> Invoke(GetFleetErrorsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetFleetErrorsResult> getFleetErrors(GetFleetErrorsArgs args, InvokeOptions options)
    public static Output<GetFleetErrorsResult> getFleetErrors(GetFleetErrorsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Jms/getFleetErrors:getFleetErrors
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    CompartmentIdInSubtree bool
    Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
    Filters List<GetFleetErrorsFilter>
    FleetId string
    The ID of the Fleet.
    TimeFirstSeenGreaterThanOrEqualTo string
    If specified, only errors with a first seen time later than this parameter will be included in the search (formatted according to RFC3339).
    TimeFirstSeenLessThanOrEqualTo string
    If specified, only errors with a first seen time earlier than this parameter will be included in the search (formatted according to RFC3339).
    TimeLastSeenGreaterThanOrEqualTo string
    If specified, only errors with a last seen time later than this parameter will be included in the search (formatted according to RFC3339).
    TimeLastSeenLessThanOrEqualTo string
    If specified, only errors with a last seen time earlier than this parameter will be included in the search (formatted according to RFC3339).
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CompartmentIdInSubtree bool
    Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
    Filters []GetFleetErrorsFilter
    FleetId string
    The ID of the Fleet.
    TimeFirstSeenGreaterThanOrEqualTo string
    If specified, only errors with a first seen time later than this parameter will be included in the search (formatted according to RFC3339).
    TimeFirstSeenLessThanOrEqualTo string
    If specified, only errors with a first seen time earlier than this parameter will be included in the search (formatted according to RFC3339).
    TimeLastSeenGreaterThanOrEqualTo string
    If specified, only errors with a last seen time later than this parameter will be included in the search (formatted according to RFC3339).
    TimeLastSeenLessThanOrEqualTo string
    If specified, only errors with a last seen time earlier than this parameter will be included in the search (formatted according to RFC3339).
    compartmentId String
    The OCID of the compartment in which to list resources.
    compartmentIdInSubtree Boolean
    Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
    filters List<GetFleetErrorsFilter>
    fleetId String
    The ID of the Fleet.
    timeFirstSeenGreaterThanOrEqualTo String
    If specified, only errors with a first seen time later than this parameter will be included in the search (formatted according to RFC3339).
    timeFirstSeenLessThanOrEqualTo String
    If specified, only errors with a first seen time earlier than this parameter will be included in the search (formatted according to RFC3339).
    timeLastSeenGreaterThanOrEqualTo String
    If specified, only errors with a last seen time later than this parameter will be included in the search (formatted according to RFC3339).
    timeLastSeenLessThanOrEqualTo String
    If specified, only errors with a last seen time earlier than this parameter will be included in the search (formatted according to RFC3339).
    compartmentId string
    The OCID of the compartment in which to list resources.
    compartmentIdInSubtree boolean
    Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
    filters GetFleetErrorsFilter[]
    fleetId string
    The ID of the Fleet.
    timeFirstSeenGreaterThanOrEqualTo string
    If specified, only errors with a first seen time later than this parameter will be included in the search (formatted according to RFC3339).
    timeFirstSeenLessThanOrEqualTo string
    If specified, only errors with a first seen time earlier than this parameter will be included in the search (formatted according to RFC3339).
    timeLastSeenGreaterThanOrEqualTo string
    If specified, only errors with a last seen time later than this parameter will be included in the search (formatted according to RFC3339).
    timeLastSeenLessThanOrEqualTo string
    If specified, only errors with a last seen time earlier than this parameter will be included in the search (formatted according to RFC3339).
    compartment_id str
    The OCID of the compartment in which to list resources.
    compartment_id_in_subtree bool
    Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
    filters Sequence[jms.GetFleetErrorsFilter]
    fleet_id str
    The ID of the Fleet.
    time_first_seen_greater_than_or_equal_to str
    If specified, only errors with a first seen time later than this parameter will be included in the search (formatted according to RFC3339).
    time_first_seen_less_than_or_equal_to str
    If specified, only errors with a first seen time earlier than this parameter will be included in the search (formatted according to RFC3339).
    time_last_seen_greater_than_or_equal_to str
    If specified, only errors with a last seen time later than this parameter will be included in the search (formatted according to RFC3339).
    time_last_seen_less_than_or_equal_to str
    If specified, only errors with a last seen time earlier than this parameter will be included in the search (formatted according to RFC3339).
    compartmentId String
    The OCID of the compartment in which to list resources.
    compartmentIdInSubtree Boolean
    Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments.
    filters List<Property Map>
    fleetId String
    The ID of the Fleet.
    timeFirstSeenGreaterThanOrEqualTo String
    If specified, only errors with a first seen time later than this parameter will be included in the search (formatted according to RFC3339).
    timeFirstSeenLessThanOrEqualTo String
    If specified, only errors with a first seen time earlier than this parameter will be included in the search (formatted according to RFC3339).
    timeLastSeenGreaterThanOrEqualTo String
    If specified, only errors with a last seen time later than this parameter will be included in the search (formatted according to RFC3339).
    timeLastSeenLessThanOrEqualTo String
    If specified, only errors with a last seen time earlier than this parameter will be included in the search (formatted according to RFC3339).

    getFleetErrors Result

    The following output properties are available:

    FleetErrorCollections List<GetFleetErrorsFleetErrorCollection>
    The list of fleet_error_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CompartmentId string
    The compartment OCID of the Fleet.
    CompartmentIdInSubtree bool
    Filters List<GetFleetErrorsFilter>
    FleetId string
    The OCID of the Fleet.
    TimeFirstSeenGreaterThanOrEqualTo string
    TimeFirstSeenLessThanOrEqualTo string
    TimeLastSeenGreaterThanOrEqualTo string
    TimeLastSeenLessThanOrEqualTo string
    FleetErrorCollections []GetFleetErrorsFleetErrorCollection
    The list of fleet_error_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CompartmentId string
    The compartment OCID of the Fleet.
    CompartmentIdInSubtree bool
    Filters []GetFleetErrorsFilter
    FleetId string
    The OCID of the Fleet.
    TimeFirstSeenGreaterThanOrEqualTo string
    TimeFirstSeenLessThanOrEqualTo string
    TimeLastSeenGreaterThanOrEqualTo string
    TimeLastSeenLessThanOrEqualTo string
    fleetErrorCollections List<GetFleetErrorsFleetErrorCollection>
    The list of fleet_error_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    compartmentId String
    The compartment OCID of the Fleet.
    compartmentIdInSubtree Boolean
    filters List<GetFleetErrorsFilter>
    fleetId String
    The OCID of the Fleet.
    timeFirstSeenGreaterThanOrEqualTo String
    timeFirstSeenLessThanOrEqualTo String
    timeLastSeenGreaterThanOrEqualTo String
    timeLastSeenLessThanOrEqualTo String
    fleetErrorCollections GetFleetErrorsFleetErrorCollection[]
    The list of fleet_error_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    compartmentId string
    The compartment OCID of the Fleet.
    compartmentIdInSubtree boolean
    filters GetFleetErrorsFilter[]
    fleetId string
    The OCID of the Fleet.
    timeFirstSeenGreaterThanOrEqualTo string
    timeFirstSeenLessThanOrEqualTo string
    timeLastSeenGreaterThanOrEqualTo string
    timeLastSeenLessThanOrEqualTo string
    fleetErrorCollections List<Property Map>
    The list of fleet_error_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    compartmentId String
    The compartment OCID of the Fleet.
    compartmentIdInSubtree Boolean
    filters List<Property Map>
    fleetId String
    The OCID of the Fleet.
    timeFirstSeenGreaterThanOrEqualTo String
    timeFirstSeenLessThanOrEqualTo String
    timeLastSeenGreaterThanOrEqualTo String
    timeLastSeenLessThanOrEqualTo String

    Supporting Types

    GetFleetErrorsFilter

    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

    GetFleetErrorsFleetErrorCollection

    items List<Property Map>
    A list of FleetErrorSummary.

    GetFleetErrorsFleetErrorCollectionItem

    CompartmentId string
    The OCID of the compartment in which to list resources.
    Errors List<GetFleetErrorsFleetErrorCollectionItemError>
    List of fleet error details.
    FleetId string
    The ID of the Fleet.
    FleetName string
    The display name of the Fleet.
    TimeFirstSeen string
    The timestamp of the first time an error was detected.
    TimeLastSeen string
    The timestamp of the last time an error was detected.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    Errors []GetFleetErrorsFleetErrorCollectionItemError
    List of fleet error details.
    FleetId string
    The ID of the Fleet.
    FleetName string
    The display name of the Fleet.
    TimeFirstSeen string
    The timestamp of the first time an error was detected.
    TimeLastSeen string
    The timestamp of the last time an error was detected.
    compartmentId String
    The OCID of the compartment in which to list resources.
    errors List<GetFleetErrorsFleetErrorCollectionItemError>
    List of fleet error details.
    fleetId String
    The ID of the Fleet.
    fleetName String
    The display name of the Fleet.
    timeFirstSeen String
    The timestamp of the first time an error was detected.
    timeLastSeen String
    The timestamp of the last time an error was detected.
    compartmentId string
    The OCID of the compartment in which to list resources.
    errors GetFleetErrorsFleetErrorCollectionItemError[]
    List of fleet error details.
    fleetId string
    The ID of the Fleet.
    fleetName string
    The display name of the Fleet.
    timeFirstSeen string
    The timestamp of the first time an error was detected.
    timeLastSeen string
    The timestamp of the last time an error was detected.
    compartment_id str
    The OCID of the compartment in which to list resources.
    errors Sequence[jms.GetFleetErrorsFleetErrorCollectionItemError]
    List of fleet error details.
    fleet_id str
    The ID of the Fleet.
    fleet_name str
    The display name of the Fleet.
    time_first_seen str
    The timestamp of the first time an error was detected.
    time_last_seen str
    The timestamp of the last time an error was detected.
    compartmentId String
    The OCID of the compartment in which to list resources.
    errors List<Property Map>
    List of fleet error details.
    fleetId String
    The ID of the Fleet.
    fleetName String
    The display name of the Fleet.
    timeFirstSeen String
    The timestamp of the first time an error was detected.
    timeLastSeen String
    The timestamp of the last time an error was detected.

    GetFleetErrorsFleetErrorCollectionItemError

    Details string
    Optional string containing additional details.
    Reason string
    The fleet error reason.
    TimeLastSeen string
    The timestamp of the last time an error was detected.
    Details string
    Optional string containing additional details.
    Reason string
    The fleet error reason.
    TimeLastSeen string
    The timestamp of the last time an error was detected.
    details String
    Optional string containing additional details.
    reason String
    The fleet error reason.
    timeLastSeen String
    The timestamp of the last time an error was detected.
    details string
    Optional string containing additional details.
    reason string
    The fleet error reason.
    timeLastSeen string
    The timestamp of the last time an error was detected.
    details str
    Optional string containing additional details.
    reason str
    The fleet error reason.
    time_last_seen str
    The timestamp of the last time an error was detected.
    details String
    Optional string containing additional details.
    reason String
    The fleet error reason.
    timeLastSeen String
    The timestamp of the last time an error was detected.

    Package Details

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