published on Friday, Apr 24, 2026 by Pulumi
published on Friday, Apr 24, 2026 by Pulumi
This data source provides the list of Managed Instance Group Managed Instances in Oracle Cloud Infrastructure Os Management Hub service.
Lists all managed instances for a specified managed instance group. Filter the list against a variety of criteria including but not limited to the managed instance name. The results list all managed instances that have already been added to the group.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedInstanceGroupManagedInstances = oci.OsManagementHub.getManagedInstanceGroupManagedInstances({
managedInstanceGroupId: testManagedInstanceGroup.id,
compartmentId: compartmentId,
compartmentIdInSubtree: managedInstanceGroupManagedInstanceCompartmentIdInSubtree,
displayNames: managedInstanceGroupManagedInstanceDisplayName,
displayNameContains: managedInstanceGroupManagedInstanceDisplayNameContains,
managedInstanceId: testManagedInstance.id,
});
import pulumi
import pulumi_oci as oci
test_managed_instance_group_managed_instances = oci.OsManagementHub.get_managed_instance_group_managed_instances(managed_instance_group_id=test_managed_instance_group["id"],
compartment_id=compartment_id,
compartment_id_in_subtree=managed_instance_group_managed_instance_compartment_id_in_subtree,
display_names=managed_instance_group_managed_instance_display_name,
display_name_contains=managed_instance_group_managed_instance_display_name_contains,
managed_instance_id=test_managed_instance["id"])
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.GetManagedInstanceGroupManagedInstances(ctx, &osmanagementhub.GetManagedInstanceGroupManagedInstancesArgs{
ManagedInstanceGroupId: testManagedInstanceGroup.Id,
CompartmentId: pulumi.StringRef(compartmentId),
CompartmentIdInSubtree: pulumi.BoolRef(managedInstanceGroupManagedInstanceCompartmentIdInSubtree),
DisplayNames: managedInstanceGroupManagedInstanceDisplayName,
DisplayNameContains: pulumi.StringRef(managedInstanceGroupManagedInstanceDisplayNameContains),
ManagedInstanceId: pulumi.StringRef(testManagedInstance.Id),
}, 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 testManagedInstanceGroupManagedInstances = Oci.OsManagementHub.GetManagedInstanceGroupManagedInstances.Invoke(new()
{
ManagedInstanceGroupId = testManagedInstanceGroup.Id,
CompartmentId = compartmentId,
CompartmentIdInSubtree = managedInstanceGroupManagedInstanceCompartmentIdInSubtree,
DisplayNames = managedInstanceGroupManagedInstanceDisplayName,
DisplayNameContains = managedInstanceGroupManagedInstanceDisplayNameContains,
ManagedInstanceId = testManagedInstance.Id,
});
});
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.GetManagedInstanceGroupManagedInstancesArgs;
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 testManagedInstanceGroupManagedInstances = OsManagementHubFunctions.getManagedInstanceGroupManagedInstances(GetManagedInstanceGroupManagedInstancesArgs.builder()
.managedInstanceGroupId(testManagedInstanceGroup.id())
.compartmentId(compartmentId)
.compartmentIdInSubtree(managedInstanceGroupManagedInstanceCompartmentIdInSubtree)
.displayNames(managedInstanceGroupManagedInstanceDisplayName)
.displayNameContains(managedInstanceGroupManagedInstanceDisplayNameContains)
.managedInstanceId(testManagedInstance.id())
.build());
}
}
variables:
testManagedInstanceGroupManagedInstances:
fn::invoke:
function: oci:OsManagementHub:getManagedInstanceGroupManagedInstances
arguments:
managedInstanceGroupId: ${testManagedInstanceGroup.id}
compartmentId: ${compartmentId}
compartmentIdInSubtree: ${managedInstanceGroupManagedInstanceCompartmentIdInSubtree}
displayNames: ${managedInstanceGroupManagedInstanceDisplayName}
displayNameContains: ${managedInstanceGroupManagedInstanceDisplayNameContains}
managedInstanceId: ${testManagedInstance.id}
Using getManagedInstanceGroupManagedInstances
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 getManagedInstanceGroupManagedInstances(args: GetManagedInstanceGroupManagedInstancesArgs, opts?: InvokeOptions): Promise<GetManagedInstanceGroupManagedInstancesResult>
function getManagedInstanceGroupManagedInstancesOutput(args: GetManagedInstanceGroupManagedInstancesOutputArgs, opts?: InvokeOptions): Output<GetManagedInstanceGroupManagedInstancesResult>def get_managed_instance_group_managed_instances(compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
display_name_contains: Optional[str] = None,
display_names: Optional[Sequence[str]] = None,
filters: Optional[Sequence[GetManagedInstanceGroupManagedInstancesFilter]] = None,
managed_instance_group_id: Optional[str] = None,
managed_instance_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagedInstanceGroupManagedInstancesResult
def get_managed_instance_group_managed_instances_output(compartment_id: Optional[pulumi.Input[str]] = None,
compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
display_name_contains: Optional[pulumi.Input[str]] = None,
display_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetManagedInstanceGroupManagedInstancesFilterArgs]]]] = None,
managed_instance_group_id: Optional[pulumi.Input[str]] = None,
managed_instance_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagedInstanceGroupManagedInstancesResult]func GetManagedInstanceGroupManagedInstances(ctx *Context, args *GetManagedInstanceGroupManagedInstancesArgs, opts ...InvokeOption) (*GetManagedInstanceGroupManagedInstancesResult, error)
func GetManagedInstanceGroupManagedInstancesOutput(ctx *Context, args *GetManagedInstanceGroupManagedInstancesOutputArgs, opts ...InvokeOption) GetManagedInstanceGroupManagedInstancesResultOutput> Note: This function is named GetManagedInstanceGroupManagedInstances in the Go SDK.
public static class GetManagedInstanceGroupManagedInstances
{
public static Task<GetManagedInstanceGroupManagedInstancesResult> InvokeAsync(GetManagedInstanceGroupManagedInstancesArgs args, InvokeOptions? opts = null)
public static Output<GetManagedInstanceGroupManagedInstancesResult> Invoke(GetManagedInstanceGroupManagedInstancesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagedInstanceGroupManagedInstancesResult> getManagedInstanceGroupManagedInstances(GetManagedInstanceGroupManagedInstancesArgs args, InvokeOptions options)
public static Output<GetManagedInstanceGroupManagedInstancesResult> getManagedInstanceGroupManagedInstances(GetManagedInstanceGroupManagedInstancesArgs args, InvokeOptions options)
fn::invoke:
function: oci:OsManagementHub/getManagedInstanceGroupManagedInstances:getManagedInstanceGroupManagedInstances
arguments:
# arguments dictionaryThe following arguments are supported:
- Managed
Instance stringGroup Id - The OCID of the managed instance group.
- Compartment
Id string - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Compartment
Id boolIn Subtree - Indicates whether to include subcompartments in the returned results. Default is false.
- Display
Name stringContains - A filter to return resources that may partially match the given display name.
- Display
Names List<string> - A filter to return resources that match the given display names.
- Filters
List<Get
Managed Instance Group Managed Instances Filter> - Managed
Instance stringId - The OCID of the managed instance. This filter returns resources associated with this managed instance.
- Managed
Instance stringGroup Id - The OCID of the managed instance group.
- Compartment
Id string - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Compartment
Id boolIn Subtree - Indicates whether to include subcompartments in the returned results. Default is false.
- Display
Name stringContains - A filter to return resources that may partially match the given display name.
- Display
Names []string - A filter to return resources that match the given display names.
- Filters
[]Get
Managed Instance Group Managed Instances Filter - Managed
Instance stringId - The OCID of the managed instance. This filter returns resources associated with this managed instance.
- managed
Instance StringGroup Id - The OCID of the managed instance group.
- compartment
Id String - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- compartment
Id BooleanIn Subtree - Indicates whether to include subcompartments in the returned results. Default is false.
- display
Name StringContains - A filter to return resources that may partially match the given display name.
- display
Names List<String> - A filter to return resources that match the given display names.
- filters
List<Get
Managed Instance Group Managed Instances Filter> - managed
Instance StringId - The OCID of the managed instance. This filter returns resources associated with this managed instance.
- managed
Instance stringGroup Id - The OCID of the managed instance group.
- compartment
Id string - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- compartment
Id booleanIn Subtree - Indicates whether to include subcompartments in the returned results. Default is false.
- display
Name stringContains - A filter to return resources that may partially match the given display name.
- display
Names string[] - A filter to return resources that match the given display names.
- filters
Get
Managed Instance Group Managed Instances Filter[] - managed
Instance stringId - The OCID of the managed instance. This filter returns resources associated with this managed instance.
- managed_
instance_ strgroup_ id - The OCID of the managed instance group.
- 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_ boolin_ subtree - Indicates whether to include subcompartments in the returned results. Default is false.
- display_
name_ strcontains - A filter to return resources that may partially match the given display name.
- display_
names Sequence[str] - A filter to return resources that match the given display names.
- filters
Sequence[Get
Managed Instance Group Managed Instances Filter] - managed_
instance_ strid - The OCID of the managed instance. This filter returns resources associated with this managed instance.
- managed
Instance StringGroup Id - The OCID of the managed instance group.
- compartment
Id String - The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- compartment
Id BooleanIn Subtree - Indicates whether to include subcompartments in the returned results. Default is false.
- display
Name StringContains - A filter to return resources that may partially match the given display name.
- display
Names List<String> - A filter to return resources that match the given display names.
- filters List<Property Map>
- managed
Instance StringId - The OCID of the managed instance. This filter returns resources associated with this managed instance.
getManagedInstanceGroupManagedInstances Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Instance List<GetCollections Managed Instance Group Managed Instances Managed Instance Collection> - The list of managed_instance_collection.
- Managed
Instance stringGroup Id - Compartment
Id string - The OCID of the compartment that contains the managed instance.
- Compartment
Id boolIn Subtree - Display
Name stringContains - Display
Names List<string> - User-friendly name.
- Filters
List<Get
Managed Instance Group Managed Instances Filter> - Managed
Instance stringId
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Instance []GetCollections Managed Instance Group Managed Instances Managed Instance Collection - The list of managed_instance_collection.
- Managed
Instance stringGroup Id - Compartment
Id string - The OCID of the compartment that contains the managed instance.
- Compartment
Id boolIn Subtree - Display
Name stringContains - Display
Names []string - User-friendly name.
- Filters
[]Get
Managed Instance Group Managed Instances Filter - Managed
Instance stringId
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Instance List<GetCollections Managed Instance Group Managed Instances Managed Instance Collection> - The list of managed_instance_collection.
- managed
Instance StringGroup Id - compartment
Id String - The OCID of the compartment that contains the managed instance.
- compartment
Id BooleanIn Subtree - display
Name StringContains - display
Names List<String> - User-friendly name.
- filters
List<Get
Managed Instance Group Managed Instances Filter> - managed
Instance StringId
- id string
- The provider-assigned unique ID for this managed resource.
- managed
Instance GetCollections Managed Instance Group Managed Instances Managed Instance Collection[] - The list of managed_instance_collection.
- managed
Instance stringGroup Id - compartment
Id string - The OCID of the compartment that contains the managed instance.
- compartment
Id booleanIn Subtree - display
Name stringContains - display
Names string[] - User-friendly name.
- filters
Get
Managed Instance Group Managed Instances Filter[] - managed
Instance stringId
- id str
- The provider-assigned unique ID for this managed resource.
- managed_
instance_ Sequence[Getcollections Managed Instance Group Managed Instances Managed Instance Collection] - The list of managed_instance_collection.
- managed_
instance_ strgroup_ id - compartment_
id str - The OCID of the compartment that contains the managed instance.
- compartment_
id_ boolin_ subtree - display_
name_ strcontains - display_
names Sequence[str] - User-friendly name.
- filters
Sequence[Get
Managed Instance Group Managed Instances Filter] - managed_
instance_ strid
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Instance List<Property Map>Collections - The list of managed_instance_collection.
- managed
Instance StringGroup Id - compartment
Id String - The OCID of the compartment that contains the managed instance.
- compartment
Id BooleanIn Subtree - display
Name StringContains - display
Names List<String> - User-friendly name.
- filters List<Property Map>
- managed
Instance StringId
Supporting Types
GetManagedInstanceGroupManagedInstancesFilter
GetManagedInstanceGroupManagedInstancesManagedInstanceCollection
- Items
List<Get
Managed Instance Group Managed Instances Managed Instance Collection Item> - List of managed instances.
- Items
[]Get
Managed Instance Group Managed Instances Managed Instance Collection Item - List of managed instances.
- items
List<Get
Managed Instance Group Managed Instances Managed Instance Collection Item> - List of managed instances.
- items
Get
Managed Instance Group Managed Instances Managed Instance Collection Item[] - List of managed instances.
- items
Sequence[Get
Managed Instance Group Managed Instances Managed Instance Collection Item] - List of managed instances.
- items List<Property Map>
- List of managed instances.
GetManagedInstanceGroupManagedInstancesManagedInstanceCollectionItem
- Agent
Version string - The version of osmh-agent running on the managed instance
- Architecture string
- The CPU architecture type of the managed instance.
- Autonomous
Settings List<GetManaged Instance Group Managed Instances Managed Instance Collection Item Autonomous Setting> - Settings for the Autonomous Linux service.
- Compartment
Id 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.
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the resource that is immutable on creation.
- Is
Managed boolBy Autonomous Linux - Indicates whether Autonomous Linux manages this instance.
- Is
Management boolStation - Whether this managed instance is acting as an on-premises management station.
- Is
Reboot boolRequired - Indicates whether a reboot is required to complete installation of updates.
- Lifecycle
Environments List<GetManaged Instance Group Managed Instances Managed Instance Collection Item Lifecycle Environment> - Id and name of a resource to simplify the display for the user.
- Lifecycle
Stages List<GetManaged Instance Group Managed Instances Managed Instance Collection Item Lifecycle Stage> - Id and name of a resource to simplify the display for the user.
- Location string
- The location of the managed instance.
- Managed
Instance List<GetGroups Managed Instance Group Managed Instances Managed Instance Collection Item Managed Instance Group> - Id and name of a resource to simplify the display for the user.
- Notification
Topic stringId - The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
- Os
Family string - The operating system type of the managed instance.
- Status string
- Current status of the managed instance.
- Tenancy
Id string - The OCID of the tenancy this managed instance resides in.
- Time
Last stringBoot - Time that the instance last booted (in RFC 3339 format).
- Updates
Available int - Number of updates available for installation.
- Agent
Version string - The version of osmh-agent running on the managed instance
- Architecture string
- The CPU architecture type of the managed instance.
- Autonomous
Settings []GetManaged Instance Group Managed Instances Managed Instance Collection Item Autonomous Setting - Settings for the Autonomous Linux service.
- Compartment
Id 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.
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the resource that is immutable on creation.
- Is
Managed boolBy Autonomous Linux - Indicates whether Autonomous Linux manages this instance.
- Is
Management boolStation - Whether this managed instance is acting as an on-premises management station.
- Is
Reboot boolRequired - Indicates whether a reboot is required to complete installation of updates.
- Lifecycle
Environments []GetManaged Instance Group Managed Instances Managed Instance Collection Item Lifecycle Environment - Id and name of a resource to simplify the display for the user.
- Lifecycle
Stages []GetManaged Instance Group Managed Instances Managed Instance Collection Item Lifecycle Stage - Id and name of a resource to simplify the display for the user.
- Location string
- The location of the managed instance.
- Managed
Instance []GetGroups Managed Instance Group Managed Instances Managed Instance Collection Item Managed Instance Group - Id and name of a resource to simplify the display for the user.
- Notification
Topic stringId - The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
- Os
Family string - The operating system type of the managed instance.
- Status string
- Current status of the managed instance.
- Tenancy
Id string - The OCID of the tenancy this managed instance resides in.
- Time
Last stringBoot - Time that the instance last booted (in RFC 3339 format).
- Updates
Available int - Number of updates available for installation.
- agent
Version String - The version of osmh-agent running on the managed instance
- architecture String
- The CPU architecture type of the managed instance.
- autonomous
Settings List<GetManaged Instance Group Managed Instances Managed Instance Collection Item Autonomous Setting> - Settings for the Autonomous Linux service.
- compartment
Id 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.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the resource that is immutable on creation.
- is
Managed BooleanBy Autonomous Linux - Indicates whether Autonomous Linux manages this instance.
- is
Management BooleanStation - Whether this managed instance is acting as an on-premises management station.
- is
Reboot BooleanRequired - Indicates whether a reboot is required to complete installation of updates.
- lifecycle
Environments List<GetManaged Instance Group Managed Instances Managed Instance Collection Item Lifecycle Environment> - Id and name of a resource to simplify the display for the user.
- lifecycle
Stages List<GetManaged Instance Group Managed Instances Managed Instance Collection Item Lifecycle Stage> - Id and name of a resource to simplify the display for the user.
- location String
- The location of the managed instance.
- managed
Instance List<GetGroups Managed Instance Group Managed Instances Managed Instance Collection Item Managed Instance Group> - Id and name of a resource to simplify the display for the user.
- notification
Topic StringId - The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
- os
Family String - The operating system type of the managed instance.
- status String
- Current status of the managed instance.
- tenancy
Id String - The OCID of the tenancy this managed instance resides in.
- time
Last StringBoot - Time that the instance last booted (in RFC 3339 format).
- updates
Available Integer - Number of updates available for installation.
- agent
Version string - The version of osmh-agent running on the managed instance
- architecture string
- The CPU architecture type of the managed instance.
- autonomous
Settings GetManaged Instance Group Managed Instances Managed Instance Collection Item Autonomous Setting[] - Settings for the Autonomous Linux service.
- compartment
Id 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.
- display
Name string - A filter to return resources that match the given display names.
- id string
- The OCID of the resource that is immutable on creation.
- is
Managed booleanBy Autonomous Linux - Indicates whether Autonomous Linux manages this instance.
- is
Management booleanStation - Whether this managed instance is acting as an on-premises management station.
- is
Reboot booleanRequired - Indicates whether a reboot is required to complete installation of updates.
- lifecycle
Environments GetManaged Instance Group Managed Instances Managed Instance Collection Item Lifecycle Environment[] - Id and name of a resource to simplify the display for the user.
- lifecycle
Stages GetManaged Instance Group Managed Instances Managed Instance Collection Item Lifecycle Stage[] - Id and name of a resource to simplify the display for the user.
- location string
- The location of the managed instance.
- managed
Instance GetGroups Managed Instance Group Managed Instances Managed Instance Collection Item Managed Instance Group[] - Id and name of a resource to simplify the display for the user.
- notification
Topic stringId - The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
- os
Family string - The operating system type of the managed instance.
- status string
- Current status of the managed instance.
- tenancy
Id string - The OCID of the tenancy this managed instance resides in.
- time
Last stringBoot - Time that the instance last booted (in RFC 3339 format).
- updates
Available 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[GetManaged Instance Group Managed Instances Managed Instance Collection Item Autonomous Setting] - 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 display names.
- id str
- The OCID of the resource that is immutable on creation.
- is_
managed_ boolby_ autonomous_ linux - Indicates whether Autonomous Linux manages this instance.
- is_
management_ boolstation - Whether this managed instance is acting as an on-premises management station.
- is_
reboot_ boolrequired - Indicates whether a reboot is required to complete installation of updates.
- lifecycle_
environments Sequence[GetManaged Instance Group Managed Instances Managed Instance Collection Item Lifecycle Environment] - Id and name of a resource to simplify the display for the user.
- lifecycle_
stages Sequence[GetManaged Instance Group Managed Instances Managed Instance Collection Item Lifecycle Stage] - Id and name of a resource to simplify the display for the user.
- location str
- The location of the managed instance.
- managed_
instance_ Sequence[Getgroups Managed Instance Group Managed Instances Managed Instance Collection Item Managed Instance Group] - Id and name of a resource to simplify the display for the user.
- notification_
topic_ strid - 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_ strboot - Time that the instance last booted (in RFC 3339 format).
- updates_
available int - Number of updates available for installation.
- agent
Version String - The version of osmh-agent running on the managed instance
- architecture String
- The CPU architecture type of the managed instance.
- autonomous
Settings List<Property Map> - Settings for the Autonomous Linux service.
- compartment
Id 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.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the resource that is immutable on creation.
- is
Managed BooleanBy Autonomous Linux - Indicates whether Autonomous Linux manages this instance.
- is
Management BooleanStation - Whether this managed instance is acting as an on-premises management station.
- is
Reboot BooleanRequired - Indicates whether a reboot is required to complete installation of updates.
- lifecycle
Environments List<Property Map> - Id and name of a resource to simplify the display for the user.
- lifecycle
Stages List<Property Map> - Id and name of a resource to simplify the display for the user.
- location String
- The location of the managed instance.
- managed
Instance List<Property Map>Groups - Id and name of a resource to simplify the display for the user.
- notification
Topic StringId - The OCID for the Oracle Notifications service (ONS) topic. ONS is the channel used to send notifications to the customer.
- os
Family String - The operating system type of the managed instance.
- status String
- Current status of the managed instance.
- tenancy
Id String - The OCID of the tenancy this managed instance resides in.
- time
Last StringBoot - Time that the instance last booted (in RFC 3339 format).
- updates
Available Number - Number of updates available for installation.
GetManagedInstanceGroupManagedInstancesManagedInstanceCollectionItemAutonomousSetting
- bool
- Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
- Scheduled
Job stringId - The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.
- bool
- Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
- Scheduled
Job stringId - The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.
- Boolean
- Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
- scheduled
Job StringId - The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.
- boolean
- Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
- scheduled
Job stringId - The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.
- bool
- Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
- scheduled_
job_ strid - The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.
- Boolean
- Indicates whether Autonomous Linux will collect crash files. This setting can be changed by the user.
- scheduled
Job StringId - The OCID of the restricted scheduled job associated with this instance. This value cannot be deleted by the user.
GetManagedInstanceGroupManagedInstancesManagedInstanceCollectionItemLifecycleEnvironment
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the resource that is immutable on creation.
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the resource that is immutable on creation.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the resource that is immutable on creation.
- display
Name string - A filter to return resources that match the given display names.
- id string
- The OCID of the resource that is immutable on creation.
- display_
name str - A filter to return resources that match the given display names.
- id str
- The OCID of the resource that is immutable on creation.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the resource that is immutable on creation.
GetManagedInstanceGroupManagedInstancesManagedInstanceCollectionItemLifecycleStage
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the resource that is immutable on creation.
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the resource that is immutable on creation.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the resource that is immutable on creation.
- display
Name string - A filter to return resources that match the given display names.
- id string
- The OCID of the resource that is immutable on creation.
- display_
name str - A filter to return resources that match the given display names.
- id str
- The OCID of the resource that is immutable on creation.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the resource that is immutable on creation.
GetManagedInstanceGroupManagedInstancesManagedInstanceCollectionItemManagedInstanceGroup
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the resource that is immutable on creation.
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the resource that is immutable on creation.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the resource that is immutable on creation.
- display
Name string - A filter to return resources that match the given display names.
- id string
- The OCID of the resource that is immutable on creation.
- display_
name str - A filter to return resources that match the given display names.
- id str
- The OCID of the resource that is immutable on creation.
- display
Name String - A filter to return resources that match the given display names.
- 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
ociTerraform Provider.
published on Friday, Apr 24, 2026 by Pulumi
