Viewing docs for Oracle Cloud Infrastructure v4.8.0
published on Friday, Apr 24, 2026 by Pulumi
published on Friday, Apr 24, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v4.8.0
published on Friday, Apr 24, 2026 by Pulumi
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 dictionaryThe following arguments are supported:
- Dynamic
Set stringId - The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
- 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 string - A filter to return resources that match the given user-friendly name.
- Display
Name stringContains - A filter to return resources that may partially match the given display name.
- Filters
List<Get
Dynamic Set Managed Instances Filter>
- Dynamic
Set stringId - The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
- 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 string - A filter to return resources that match the given user-friendly name.
- Display
Name stringContains - A filter to return resources that may partially match the given display name.
- Filters
[]Get
Dynamic Set Managed Instances Filter
- dynamic
Set StringId - The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
- 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 String - A filter to return resources that match the given user-friendly name.
- display
Name StringContains - A filter to return resources that may partially match the given display name.
- filters
List<Get
Dynamic Set Managed Instances Filter>
- dynamic
Set stringId - The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
- 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 string - A filter to return resources that match the given user-friendly name.
- display
Name stringContains - A filter to return resources that may partially match the given display name.
- filters
Get
Dynamic Set Managed Instances Filter[]
- dynamic_
set_ strid - 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_ boolin_ subtree - 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_ strcontains - A filter to return resources that may partially match the given display name.
- filters
Sequence[Get
Dynamic Set Managed Instances Filter]
- dynamic
Set StringId - The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
- 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 String - A filter to return resources that match the given user-friendly name.
- display
Name StringContains - 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:
- Dynamic
Set stringId - Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Instance List<GetCollections Dynamic Set Managed Instances Managed Instance Collection> - The list of managed_instance_collection.
- Compartment
Id string - The OCID of the compartment that contains the managed instance.
- Compartment
Id boolIn Subtree - Display
Name string - User-friendly name.
- Display
Name stringContains - Filters
List<Get
Dynamic Set Managed Instances Filter>
- Dynamic
Set stringId - Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Instance []GetCollections Dynamic Set Managed Instances Managed Instance Collection - The list of managed_instance_collection.
- Compartment
Id string - The OCID of the compartment that contains the managed instance.
- Compartment
Id boolIn Subtree - Display
Name string - User-friendly name.
- Display
Name stringContains - Filters
[]Get
Dynamic Set Managed Instances Filter
- dynamic
Set StringId - id String
- The provider-assigned unique ID for this managed resource.
- managed
Instance List<GetCollections Dynamic Set Managed Instances Managed Instance Collection> - The list of managed_instance_collection.
- compartment
Id String - The OCID of the compartment that contains the managed instance.
- compartment
Id BooleanIn Subtree - display
Name String - User-friendly name.
- display
Name StringContains - filters
List<Get
Dynamic Set Managed Instances Filter>
- dynamic
Set stringId - id string
- The provider-assigned unique ID for this managed resource.
- managed
Instance GetCollections Dynamic Set Managed Instances Managed Instance Collection[] - The list of managed_instance_collection.
- compartment
Id string - The OCID of the compartment that contains the managed instance.
- compartment
Id booleanIn Subtree - display
Name string - User-friendly name.
- display
Name stringContains - filters
Get
Dynamic Set Managed Instances Filter[]
- dynamic_
set_ strid - id str
- The provider-assigned unique ID for this managed resource.
- managed_
instance_ Sequence[Getcollections Dynamic Set Managed Instances Managed Instance Collection] - The list of managed_instance_collection.
- compartment_
id str - The OCID of the compartment that contains the managed instance.
- compartment_
id_ boolin_ subtree - display_
name str - User-friendly name.
- display_
name_ strcontains - filters
Sequence[Get
Dynamic Set Managed Instances Filter]
- dynamic
Set StringId - id String
- The provider-assigned unique ID for this managed resource.
- managed
Instance List<Property Map>Collections - The list of managed_instance_collection.
- compartment
Id String - The OCID of the compartment that contains the managed instance.
- compartment
Id BooleanIn Subtree - display
Name String - User-friendly name.
- display
Name StringContains - filters List<Property Map>
Supporting Types
GetDynamicSetManagedInstancesFilter
GetDynamicSetManagedInstancesManagedInstanceCollection
- Items
List<Get
Dynamic Set Managed Instances Managed Instance Collection Item> - List of managed instances.
- Items
[]Get
Dynamic Set Managed Instances Managed Instance Collection Item - List of managed instances.
- items
List<Get
Dynamic Set Managed Instances Managed Instance Collection Item> - List of managed instances.
- items
Get
Dynamic Set Managed Instances Managed Instance Collection Item[] - List of managed instances.
- items
Sequence[Get
Dynamic Set Managed Instances Managed Instance Collection Item] - List of managed instances.
- items List<Property Map>
- List of managed instances.
GetDynamicSetManagedInstancesManagedInstanceCollectionItem
- 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<GetDynamic Set 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 user-friendly name.
- 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<GetDynamic Set Managed Instances Managed Instance Collection Item Lifecycle Environment> - Id and name of a resource to simplify the display for the user.
- Lifecycle
Stages List<GetDynamic Set 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 Dynamic Set 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 []GetDynamic Set 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 user-friendly name.
- 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 []GetDynamic Set Managed Instances Managed Instance Collection Item Lifecycle Environment - Id and name of a resource to simplify the display for the user.
- Lifecycle
Stages []GetDynamic Set 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 Dynamic Set 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<GetDynamic Set 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 user-friendly name.
- 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<GetDynamic Set Managed Instances Managed Instance Collection Item Lifecycle Environment> - Id and name of a resource to simplify the display for the user.
- lifecycle
Stages List<GetDynamic Set 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 Dynamic Set 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 GetDynamic Set 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 user-friendly name.
- 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 GetDynamic Set Managed Instances Managed Instance Collection Item Lifecycle Environment[] - Id and name of a resource to simplify the display for the user.
- lifecycle
Stages GetDynamic Set 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 Dynamic Set 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[GetDynamic Set 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 user-friendly name.
- 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[GetDynamic Set Managed Instances Managed Instance Collection Item Lifecycle Environment] - Id and name of a resource to simplify the display for the user.
- lifecycle_
stages Sequence[GetDynamic Set 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 Dynamic Set 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 user-friendly name.
- 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.
GetDynamicSetManagedInstancesManagedInstanceCollectionItemAutonomousSetting
- 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.
GetDynamicSetManagedInstancesManagedInstanceCollectionItemLifecycleEnvironment
- Display
Name 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 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 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 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.
- display
Name 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
- Display
Name 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 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 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 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.
- display
Name 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
- Display
Name 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 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 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 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.
- display
Name 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
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v4.8.0
published on Friday, Apr 24, 2026 by Pulumi
published on Friday, Apr 24, 2026 by Pulumi
