1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. OsManagementHub
  6. getDynamicSetManagedInstances
Viewing docs for Oracle Cloud Infrastructure v4.8.0
published on Friday, Apr 24, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.8.0
published on Friday, Apr 24, 2026 by Pulumi

    This data source provides the list of Dynamic Set Managed Instances in Oracle Cloud Infrastructure Os Management Hub service.

    Retrieves a list of managed instances associated with a specified dynamic set.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDynamicSetManagedInstances = oci.OsManagementHub.getDynamicSetManagedInstances({
        dynamicSetId: testDynamicSet.id,
        compartmentId: compartmentId,
        compartmentIdInSubtree: dynamicSetManagedInstanceCompartmentIdInSubtree,
        displayName: dynamicSetManagedInstanceDisplayName,
        displayNameContains: dynamicSetManagedInstanceDisplayNameContains,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_dynamic_set_managed_instances = oci.OsManagementHub.get_dynamic_set_managed_instances(dynamic_set_id=test_dynamic_set["id"],
        compartment_id=compartment_id,
        compartment_id_in_subtree=dynamic_set_managed_instance_compartment_id_in_subtree,
        display_name=dynamic_set_managed_instance_display_name,
        display_name_contains=dynamic_set_managed_instance_display_name_contains)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/osmanagementhub"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := osmanagementhub.GetDynamicSetManagedInstances(ctx, &osmanagementhub.GetDynamicSetManagedInstancesArgs{
    			DynamicSetId:           testDynamicSet.Id,
    			CompartmentId:          pulumi.StringRef(compartmentId),
    			CompartmentIdInSubtree: pulumi.BoolRef(dynamicSetManagedInstanceCompartmentIdInSubtree),
    			DisplayName:            pulumi.StringRef(dynamicSetManagedInstanceDisplayName),
    			DisplayNameContains:    pulumi.StringRef(dynamicSetManagedInstanceDisplayNameContains),
    		}, 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 testDynamicSetManagedInstances = Oci.OsManagementHub.GetDynamicSetManagedInstances.Invoke(new()
        {
            DynamicSetId = testDynamicSet.Id,
            CompartmentId = compartmentId,
            CompartmentIdInSubtree = dynamicSetManagedInstanceCompartmentIdInSubtree,
            DisplayName = dynamicSetManagedInstanceDisplayName,
            DisplayNameContains = dynamicSetManagedInstanceDisplayNameContains,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.OsManagementHub.OsManagementHubFunctions;
    import com.pulumi.oci.OsManagementHub.inputs.GetDynamicSetManagedInstancesArgs;
    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 testDynamicSetManagedInstances = OsManagementHubFunctions.getDynamicSetManagedInstances(GetDynamicSetManagedInstancesArgs.builder()
                .dynamicSetId(testDynamicSet.id())
                .compartmentId(compartmentId)
                .compartmentIdInSubtree(dynamicSetManagedInstanceCompartmentIdInSubtree)
                .displayName(dynamicSetManagedInstanceDisplayName)
                .displayNameContains(dynamicSetManagedInstanceDisplayNameContains)
                .build());
    
        }
    }
    
    variables:
      testDynamicSetManagedInstances:
        fn::invoke:
          function: oci:OsManagementHub:getDynamicSetManagedInstances
          arguments:
            dynamicSetId: ${testDynamicSet.id}
            compartmentId: ${compartmentId}
            compartmentIdInSubtree: ${dynamicSetManagedInstanceCompartmentIdInSubtree}
            displayName: ${dynamicSetManagedInstanceDisplayName}
            displayNameContains: ${dynamicSetManagedInstanceDisplayNameContains}
    

    Using getDynamicSetManagedInstances

    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 getDynamicSetManagedInstances(args: GetDynamicSetManagedInstancesArgs, opts?: InvokeOptions): Promise<GetDynamicSetManagedInstancesResult>
    function getDynamicSetManagedInstancesOutput(args: GetDynamicSetManagedInstancesOutputArgs, opts?: InvokeOptions): Output<GetDynamicSetManagedInstancesResult>
    def get_dynamic_set_managed_instances(compartment_id: Optional[str] = None,
                                          compartment_id_in_subtree: Optional[bool] = None,
                                          display_name: Optional[str] = None,
                                          display_name_contains: Optional[str] = None,
                                          dynamic_set_id: Optional[str] = None,
                                          filters: Optional[Sequence[GetDynamicSetManagedInstancesFilter]] = None,
                                          opts: Optional[InvokeOptions] = None) -> GetDynamicSetManagedInstancesResult
    def get_dynamic_set_managed_instances_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                          compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                          display_name: Optional[pulumi.Input[str]] = None,
                                          display_name_contains: Optional[pulumi.Input[str]] = None,
                                          dynamic_set_id: Optional[pulumi.Input[str]] = None,
                                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDynamicSetManagedInstancesFilterArgs]]]] = None,
                                          opts: Optional[InvokeOptions] = None) -> Output[GetDynamicSetManagedInstancesResult]
    func GetDynamicSetManagedInstances(ctx *Context, args *GetDynamicSetManagedInstancesArgs, opts ...InvokeOption) (*GetDynamicSetManagedInstancesResult, error)
    func GetDynamicSetManagedInstancesOutput(ctx *Context, args *GetDynamicSetManagedInstancesOutputArgs, opts ...InvokeOption) GetDynamicSetManagedInstancesResultOutput

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

    public static class GetDynamicSetManagedInstances 
    {
        public static Task<GetDynamicSetManagedInstancesResult> InvokeAsync(GetDynamicSetManagedInstancesArgs args, InvokeOptions? opts = null)
        public static Output<GetDynamicSetManagedInstancesResult> Invoke(GetDynamicSetManagedInstancesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDynamicSetManagedInstancesResult> getDynamicSetManagedInstances(GetDynamicSetManagedInstancesArgs args, InvokeOptions options)
    public static Output<GetDynamicSetManagedInstancesResult> getDynamicSetManagedInstances(GetDynamicSetManagedInstancesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:OsManagementHub/getDynamicSetManagedInstances:getDynamicSetManagedInstances
      arguments:
        # arguments dictionary

    The following arguments are supported:

    DynamicSetId string
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    CompartmentIdInSubtree bool
    Indicates whether to include subcompartments in the returned results. Default is false.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    DisplayNameContains string
    A filter to return resources that may partially match the given display name.
    Filters List<GetDynamicSetManagedInstancesFilter>
    DynamicSetId string
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    CompartmentIdInSubtree bool
    Indicates whether to include subcompartments in the returned results. Default is false.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    DisplayNameContains string
    A filter to return resources that may partially match the given display name.
    Filters []GetDynamicSetManagedInstancesFilter
    dynamicSetId String
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    compartmentIdInSubtree Boolean
    Indicates whether to include subcompartments in the returned results. Default is false.
    displayName String
    A filter to return resources that match the given user-friendly name.
    displayNameContains String
    A filter to return resources that may partially match the given display name.
    filters List<GetDynamicSetManagedInstancesFilter>
    dynamicSetId string
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    compartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    compartmentIdInSubtree boolean
    Indicates whether to include subcompartments in the returned results. Default is false.
    displayName string
    A filter to return resources that match the given user-friendly name.
    displayNameContains string
    A filter to return resources that may partially match the given display name.
    filters GetDynamicSetManagedInstancesFilter[]
    dynamic_set_id str
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    compartment_id str
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    compartment_id_in_subtree bool
    Indicates whether to include subcompartments in the returned results. Default is false.
    display_name str
    A filter to return resources that match the given user-friendly name.
    display_name_contains str
    A filter to return resources that may partially match the given display name.
    filters Sequence[GetDynamicSetManagedInstancesFilter]
    dynamicSetId String
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    compartmentIdInSubtree Boolean
    Indicates whether to include subcompartments in the returned results. Default is false.
    displayName String
    A filter to return resources that match the given user-friendly name.
    displayNameContains String
    A filter to return resources that may partially match the given display name.
    filters List<Property Map>

    getDynamicSetManagedInstances Result

    The following output properties are available:

    DynamicSetId string
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagedInstanceCollections List<GetDynamicSetManagedInstancesManagedInstanceCollection>
    The list of managed_instance_collection.
    CompartmentId string
    The OCID of the compartment that contains the managed instance.
    CompartmentIdInSubtree bool
    DisplayName string
    User-friendly name.
    DisplayNameContains string
    Filters List<GetDynamicSetManagedInstancesFilter>
    DynamicSetId string
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagedInstanceCollections []GetDynamicSetManagedInstancesManagedInstanceCollection
    The list of managed_instance_collection.
    CompartmentId string
    The OCID of the compartment that contains the managed instance.
    CompartmentIdInSubtree bool
    DisplayName string
    User-friendly name.
    DisplayNameContains string
    Filters []GetDynamicSetManagedInstancesFilter
    dynamicSetId String
    id String
    The provider-assigned unique ID for this managed resource.
    managedInstanceCollections List<GetDynamicSetManagedInstancesManagedInstanceCollection>
    The list of managed_instance_collection.
    compartmentId String
    The OCID of the compartment that contains the managed instance.
    compartmentIdInSubtree Boolean
    displayName String
    User-friendly name.
    displayNameContains String
    filters List<GetDynamicSetManagedInstancesFilter>
    dynamicSetId string
    id string
    The provider-assigned unique ID for this managed resource.
    managedInstanceCollections GetDynamicSetManagedInstancesManagedInstanceCollection[]
    The list of managed_instance_collection.
    compartmentId string
    The OCID of the compartment that contains the managed instance.
    compartmentIdInSubtree boolean
    displayName string
    User-friendly name.
    displayNameContains string
    filters GetDynamicSetManagedInstancesFilter[]
    dynamic_set_id str
    id str
    The provider-assigned unique ID for this managed resource.
    managed_instance_collections Sequence[GetDynamicSetManagedInstancesManagedInstanceCollection]
    The list of managed_instance_collection.
    compartment_id str
    The OCID of the compartment that contains the managed instance.
    compartment_id_in_subtree bool
    display_name str
    User-friendly name.
    display_name_contains str
    filters Sequence[GetDynamicSetManagedInstancesFilter]
    dynamicSetId String
    id String
    The provider-assigned unique ID for this managed resource.
    managedInstanceCollections List<Property Map>
    The list of managed_instance_collection.
    compartmentId String
    The OCID of the compartment that contains the managed instance.
    compartmentIdInSubtree Boolean
    displayName String
    User-friendly name.
    displayNameContains String
    filters List<Property Map>

    Supporting Types

    GetDynamicSetManagedInstancesFilter

    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

    GetDynamicSetManagedInstancesManagedInstanceCollection

    items List<Property Map>
    List of managed instances.

    GetDynamicSetManagedInstancesManagedInstanceCollectionItem

    AgentVersion string
    The version of osmh-agent running on the managed instance
    Architecture string
    The CPU architecture type of the managed instance.
    AutonomousSettings List<GetDynamicSetManagedInstancesManagedInstanceCollectionItemAutonomousSetting>
    Settings for the Autonomous Linux service.
    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    Description string
    User-specified description of the managed instance.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    Id string
    The OCID of the resource that is immutable on creation.
    IsManagedByAutonomousLinux bool
    Indicates whether Autonomous Linux manages this instance.
    IsManagementStation bool
    Whether this managed instance is acting as an on-premises management station.
    IsRebootRequired bool
    Indicates whether a reboot is required to complete installation of updates.
    LifecycleEnvironments List<GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleEnvironment>
    Id and name of a resource to simplify the display for the user.
    LifecycleStages List<GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleStage>
    Id and name of a resource to simplify the display for the user.
    Location string
    The location of the managed instance.
    ManagedInstanceGroups List<GetDynamicSetManagedInstancesManagedInstanceCollectionItemManagedInstanceGroup>
    Id and name of a resource to simplify the display for the user.
    NotificationTopicId string
    The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
    OsFamily string
    The operating system type of the managed instance.
    Status string
    Current status of the managed instance.
    TenancyId string
    The OCID of the tenancy this managed instance resides in.
    TimeLastBoot string
    Time that the instance last booted (in RFC 3339 format).
    UpdatesAvailable int
    Number of updates available for installation.
    AgentVersion string
    The version of osmh-agent running on the managed instance
    Architecture string
    The CPU architecture type of the managed instance.
    AutonomousSettings []GetDynamicSetManagedInstancesManagedInstanceCollectionItemAutonomousSetting
    Settings for the Autonomous Linux service.
    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    Description string
    User-specified description of the managed instance.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    Id string
    The OCID of the resource that is immutable on creation.
    IsManagedByAutonomousLinux bool
    Indicates whether Autonomous Linux manages this instance.
    IsManagementStation bool
    Whether this managed instance is acting as an on-premises management station.
    IsRebootRequired bool
    Indicates whether a reboot is required to complete installation of updates.
    LifecycleEnvironments []GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleEnvironment
    Id and name of a resource to simplify the display for the user.
    LifecycleStages []GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleStage
    Id and name of a resource to simplify the display for the user.
    Location string
    The location of the managed instance.
    ManagedInstanceGroups []GetDynamicSetManagedInstancesManagedInstanceCollectionItemManagedInstanceGroup
    Id and name of a resource to simplify the display for the user.
    NotificationTopicId string
    The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
    OsFamily string
    The operating system type of the managed instance.
    Status string
    Current status of the managed instance.
    TenancyId string
    The OCID of the tenancy this managed instance resides in.
    TimeLastBoot string
    Time that the instance last booted (in RFC 3339 format).
    UpdatesAvailable int
    Number of updates available for installation.
    agentVersion String
    The version of osmh-agent running on the managed instance
    architecture String
    The CPU architecture type of the managed instance.
    autonomousSettings List<GetDynamicSetManagedInstancesManagedInstanceCollectionItemAutonomousSetting>
    Settings for the Autonomous Linux service.
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    description String
    User-specified description of the managed instance.
    displayName String
    A filter to return resources that match the given user-friendly name.
    id String
    The OCID of the resource that is immutable on creation.
    isManagedByAutonomousLinux Boolean
    Indicates whether Autonomous Linux manages this instance.
    isManagementStation Boolean
    Whether this managed instance is acting as an on-premises management station.
    isRebootRequired Boolean
    Indicates whether a reboot is required to complete installation of updates.
    lifecycleEnvironments List<GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleEnvironment>
    Id and name of a resource to simplify the display for the user.
    lifecycleStages List<GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleStage>
    Id and name of a resource to simplify the display for the user.
    location String
    The location of the managed instance.
    managedInstanceGroups List<GetDynamicSetManagedInstancesManagedInstanceCollectionItemManagedInstanceGroup>
    Id and name of a resource to simplify the display for the user.
    notificationTopicId String
    The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
    osFamily String
    The operating system type of the managed instance.
    status String
    Current status of the managed instance.
    tenancyId String
    The OCID of the tenancy this managed instance resides in.
    timeLastBoot String
    Time that the instance last booted (in RFC 3339 format).
    updatesAvailable Integer
    Number of updates available for installation.
    agentVersion string
    The version of osmh-agent running on the managed instance
    architecture string
    The CPU architecture type of the managed instance.
    autonomousSettings GetDynamicSetManagedInstancesManagedInstanceCollectionItemAutonomousSetting[]
    Settings for the Autonomous Linux service.
    compartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    description string
    User-specified description of the managed instance.
    displayName string
    A filter to return resources that match the given user-friendly name.
    id string
    The OCID of the resource that is immutable on creation.
    isManagedByAutonomousLinux boolean
    Indicates whether Autonomous Linux manages this instance.
    isManagementStation boolean
    Whether this managed instance is acting as an on-premises management station.
    isRebootRequired boolean
    Indicates whether a reboot is required to complete installation of updates.
    lifecycleEnvironments GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleEnvironment[]
    Id and name of a resource to simplify the display for the user.
    lifecycleStages GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleStage[]
    Id and name of a resource to simplify the display for the user.
    location string
    The location of the managed instance.
    managedInstanceGroups GetDynamicSetManagedInstancesManagedInstanceCollectionItemManagedInstanceGroup[]
    Id and name of a resource to simplify the display for the user.
    notificationTopicId string
    The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
    osFamily string
    The operating system type of the managed instance.
    status string
    Current status of the managed instance.
    tenancyId string
    The OCID of the tenancy this managed instance resides in.
    timeLastBoot string
    Time that the instance last booted (in RFC 3339 format).
    updatesAvailable number
    Number of updates available for installation.
    agent_version str
    The version of osmh-agent running on the managed instance
    architecture str
    The CPU architecture type of the managed instance.
    autonomous_settings Sequence[GetDynamicSetManagedInstancesManagedInstanceCollectionItemAutonomousSetting]
    Settings for the Autonomous Linux service.
    compartment_id str
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    description str
    User-specified description of the managed instance.
    display_name str
    A filter to return resources that match the given user-friendly name.
    id str
    The OCID of the resource that is immutable on creation.
    is_managed_by_autonomous_linux bool
    Indicates whether Autonomous Linux manages this instance.
    is_management_station bool
    Whether this managed instance is acting as an on-premises management station.
    is_reboot_required bool
    Indicates whether a reboot is required to complete installation of updates.
    lifecycle_environments Sequence[GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleEnvironment]
    Id and name of a resource to simplify the display for the user.
    lifecycle_stages Sequence[GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleStage]
    Id and name of a resource to simplify the display for the user.
    location str
    The location of the managed instance.
    managed_instance_groups Sequence[GetDynamicSetManagedInstancesManagedInstanceCollectionItemManagedInstanceGroup]
    Id and name of a resource to simplify the display for the user.
    notification_topic_id str
    The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
    os_family str
    The operating system type of the managed instance.
    status str
    Current status of the managed instance.
    tenancy_id str
    The OCID of the tenancy this managed instance resides in.
    time_last_boot str
    Time that the instance last booted (in RFC 3339 format).
    updates_available int
    Number of updates available for installation.
    agentVersion String
    The version of osmh-agent running on the managed instance
    architecture String
    The CPU architecture type of the managed instance.
    autonomousSettings List<Property Map>
    Settings for the Autonomous Linux service.
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    description String
    User-specified description of the managed instance.
    displayName String
    A filter to return resources that match the given user-friendly name.
    id String
    The OCID of the resource that is immutable on creation.
    isManagedByAutonomousLinux Boolean
    Indicates whether Autonomous Linux manages this instance.
    isManagementStation Boolean
    Whether this managed instance is acting as an on-premises management station.
    isRebootRequired Boolean
    Indicates whether a reboot is required to complete installation of updates.
    lifecycleEnvironments List<Property Map>
    Id and name of a resource to simplify the display for the user.
    lifecycleStages List<Property Map>
    Id and name of a resource to simplify the display for the user.
    location String
    The location of the managed instance.
    managedInstanceGroups List<Property Map>
    Id and name of a resource to simplify the display for the user.
    notificationTopicId String
    The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
    osFamily String
    The operating system type of the managed instance.
    status String
    Current status of the managed instance.
    tenancyId String
    The OCID of the tenancy this managed instance resides in.
    timeLastBoot String
    Time that the instance last booted (in RFC 3339 format).
    updatesAvailable Number
    Number of updates available for installation.

    GetDynamicSetManagedInstancesManagedInstanceCollectionItemAutonomousSetting

    IsDataCollectionAuthorized bool
    Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
    ScheduledJobId string
    The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.
    IsDataCollectionAuthorized bool
    Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
    ScheduledJobId string
    The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.
    isDataCollectionAuthorized Boolean
    Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
    scheduledJobId String
    The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.
    isDataCollectionAuthorized boolean
    Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
    scheduledJobId string
    The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.
    is_data_collection_authorized bool
    Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
    scheduled_job_id str
    The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.
    isDataCollectionAuthorized Boolean
    Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
    scheduledJobId String
    The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.

    GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleEnvironment

    DisplayName string
    A filter to return resources that match the given user-friendly name.
    Id string
    The OCID of the resource that is immutable on creation.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    Id string
    The OCID of the resource that is immutable on creation.
    displayName String
    A filter to return resources that match the given user-friendly name.
    id String
    The OCID of the resource that is immutable on creation.
    displayName string
    A filter to return resources that match the given user-friendly name.
    id string
    The OCID of the resource that is immutable on creation.
    display_name str
    A filter to return resources that match the given user-friendly name.
    id str
    The OCID of the resource that is immutable on creation.
    displayName String
    A filter to return resources that match the given user-friendly name.
    id String
    The OCID of the resource that is immutable on creation.

    GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleStage

    DisplayName string
    A filter to return resources that match the given user-friendly name.
    Id string
    The OCID of the resource that is immutable on creation.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    Id string
    The OCID of the resource that is immutable on creation.
    displayName String
    A filter to return resources that match the given user-friendly name.
    id String
    The OCID of the resource that is immutable on creation.
    displayName string
    A filter to return resources that match the given user-friendly name.
    id string
    The OCID of the resource that is immutable on creation.
    display_name str
    A filter to return resources that match the given user-friendly name.
    id str
    The OCID of the resource that is immutable on creation.
    displayName String
    A filter to return resources that match the given user-friendly name.
    id String
    The OCID of the resource that is immutable on creation.

    GetDynamicSetManagedInstancesManagedInstanceCollectionItemManagedInstanceGroup

    DisplayName string
    A filter to return resources that match the given user-friendly name.
    Id string
    The OCID of the resource that is immutable on creation.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    Id string
    The OCID of the resource that is immutable on creation.
    displayName String
    A filter to return resources that match the given user-friendly name.
    id String
    The OCID of the resource that is immutable on creation.
    displayName string
    A filter to return resources that match the given user-friendly name.
    id string
    The OCID of the resource that is immutable on creation.
    display_name str
    A filter to return resources that match the given user-friendly name.
    id str
    The OCID of the resource that is immutable on creation.
    displayName String
    A filter to return resources that match the given user-friendly name.
    id String
    The OCID of the resource that is immutable on creation.

    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.8.0
    published on Friday, Apr 24, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.