1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. OsManagementHub
  5. getDynamicSets
Viewing docs for Oracle Cloud Infrastructure v4.6.0
published on Thursday, Apr 9, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.6.0
published on Thursday, Apr 9, 2026 by Pulumi

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

    Lists dynamic sets that match the specified compartment or dynamic set OCID. Filter the list against a variety of criteria including but not limited to its name, status, architecture, and OS version.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDynamicSets = oci.OsManagementHub.getDynamicSets({
        compartmentId: compartmentId,
        displayName: dynamicSetDisplayName,
        displayNameContains: dynamicSetDisplayNameContains,
        dynamicSetId: testDynamicSet.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_dynamic_sets = oci.OsManagementHub.get_dynamic_sets(compartment_id=compartment_id,
        display_name=dynamic_set_display_name,
        display_name_contains=dynamic_set_display_name_contains,
        dynamic_set_id=test_dynamic_set["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.GetDynamicSets(ctx, &osmanagementhub.GetDynamicSetsArgs{
    			CompartmentId:       pulumi.StringRef(compartmentId),
    			DisplayName:         pulumi.StringRef(dynamicSetDisplayName),
    			DisplayNameContains: pulumi.StringRef(dynamicSetDisplayNameContains),
    			DynamicSetId:        pulumi.StringRef(testDynamicSet.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 testDynamicSets = Oci.OsManagementHub.GetDynamicSets.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = dynamicSetDisplayName,
            DisplayNameContains = dynamicSetDisplayNameContains,
            DynamicSetId = testDynamicSet.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.GetDynamicSetsArgs;
    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 testDynamicSets = OsManagementHubFunctions.getDynamicSets(GetDynamicSetsArgs.builder()
                .compartmentId(compartmentId)
                .displayName(dynamicSetDisplayName)
                .displayNameContains(dynamicSetDisplayNameContains)
                .dynamicSetId(testDynamicSet.id())
                .build());
    
        }
    }
    
    variables:
      testDynamicSets:
        fn::invoke:
          function: oci:OsManagementHub:getDynamicSets
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${dynamicSetDisplayName}
            displayNameContains: ${dynamicSetDisplayNameContains}
            dynamicSetId: ${testDynamicSet.id}
    

    Using getDynamicSets

    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 getDynamicSets(args: GetDynamicSetsArgs, opts?: InvokeOptions): Promise<GetDynamicSetsResult>
    function getDynamicSetsOutput(args: GetDynamicSetsOutputArgs, opts?: InvokeOptions): Output<GetDynamicSetsResult>
    def get_dynamic_sets(compartment_id: Optional[str] = None,
                         display_name: Optional[str] = None,
                         display_name_contains: Optional[str] = None,
                         dynamic_set_id: Optional[str] = None,
                         filters: Optional[Sequence[GetDynamicSetsFilter]] = None,
                         opts: Optional[InvokeOptions] = None) -> GetDynamicSetsResult
    def get_dynamic_sets_output(compartment_id: Optional[pulumi.Input[str]] = 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[GetDynamicSetsFilterArgs]]]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetDynamicSetsResult]
    func GetDynamicSets(ctx *Context, args *GetDynamicSetsArgs, opts ...InvokeOption) (*GetDynamicSetsResult, error)
    func GetDynamicSetsOutput(ctx *Context, args *GetDynamicSetsOutputArgs, opts ...InvokeOption) GetDynamicSetsResultOutput

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

    public static class GetDynamicSets 
    {
        public static Task<GetDynamicSetsResult> InvokeAsync(GetDynamicSetsArgs args, InvokeOptions? opts = null)
        public static Output<GetDynamicSetsResult> Invoke(GetDynamicSetsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDynamicSetsResult> getDynamicSets(GetDynamicSetsArgs args, InvokeOptions options)
    public static Output<GetDynamicSetsResult> getDynamicSets(GetDynamicSetsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:OsManagementHub/getDynamicSets:getDynamicSets
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    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.
    DynamicSetId string
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    Filters List<GetDynamicSetsFilter>
    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    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.
    DynamicSetId string
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    Filters []GetDynamicSetsFilter
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    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.
    dynamicSetId String
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    filters List<GetDynamicSetsFilter>
    compartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    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.
    dynamicSetId string
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    filters GetDynamicSetsFilter[]
    compartment_id str
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    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.
    dynamic_set_id str
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    filters Sequence[GetDynamicSetsFilter]
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    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.
    dynamicSetId String
    The OCID of the dynamic set. This filter returns resources associated with this dynamic set.
    filters List<Property Map>

    getDynamicSets Result

    The following output properties are available:

    DynamicSetCollections List<GetDynamicSetsDynamicSetCollection>
    The list of dynamic_set_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    User-friendly name for the dynamic set.
    DisplayNameContains string
    DynamicSetId string
    Filters List<GetDynamicSetsFilter>
    DynamicSetCollections []GetDynamicSetsDynamicSetCollection
    The list of dynamic_set_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    User-friendly name for the dynamic set.
    DisplayNameContains string
    DynamicSetId string
    Filters []GetDynamicSetsFilter
    dynamicSetCollections List<GetDynamicSetsDynamicSetCollection>
    The list of dynamic_set_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    compartmentId String
    The OCID of the compartment.
    displayName String
    User-friendly name for the dynamic set.
    displayNameContains String
    dynamicSetId String
    filters List<GetDynamicSetsFilter>
    dynamicSetCollections GetDynamicSetsDynamicSetCollection[]
    The list of dynamic_set_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    compartmentId string
    The OCID of the compartment.
    displayName string
    User-friendly name for the dynamic set.
    displayNameContains string
    dynamicSetId string
    filters GetDynamicSetsFilter[]
    dynamic_set_collections Sequence[GetDynamicSetsDynamicSetCollection]
    The list of dynamic_set_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    compartment_id str
    The OCID of the compartment.
    display_name str
    User-friendly name for the dynamic set.
    display_name_contains str
    dynamic_set_id str
    filters Sequence[GetDynamicSetsFilter]
    dynamicSetCollections List<Property Map>
    The list of dynamic_set_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    compartmentId String
    The OCID of the compartment.
    displayName String
    User-friendly name for the dynamic set.
    displayNameContains String
    dynamicSetId String
    filters List<Property Map>

    Supporting Types

    GetDynamicSetsDynamicSetCollection

    GetDynamicSetsDynamicSetCollectionItem

    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    User-specified description for the dynamic set.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the dynamic set.
    MatchType string
    Include either any or all attributes.
    MatchingRules List<GetDynamicSetsDynamicSetCollectionItemMatchingRule>
    An object that defines the set of rules that identifies the target instances in a dynamic set.
    ScheduledJobCount string
    Number of scheduled jobs currently targeting this dynamic set.
    State string
    The current state of the event.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetCompartments List<GetDynamicSetsDynamicSetCollectionItemTargetCompartment>
    The list of compartment details.
    TimeCreated string
    The date and time the dynamic set was created (in RFC 3339 format).
    TimeUpdated string
    The date and time the dynamic set was last updated (in RFC 3339 format).
    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    User-specified description for the dynamic set.
    DisplayName string
    A filter to return resources that match the given user-friendly name.
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the dynamic set.
    MatchType string
    Include either any or all attributes.
    MatchingRules []GetDynamicSetsDynamicSetCollectionItemMatchingRule
    An object that defines the set of rules that identifies the target instances in a dynamic set.
    ScheduledJobCount string
    Number of scheduled jobs currently targeting this dynamic set.
    State string
    The current state of the event.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetCompartments []GetDynamicSetsDynamicSetCollectionItemTargetCompartment
    The list of compartment details.
    TimeCreated string
    The date and time the dynamic set was created (in RFC 3339 format).
    TimeUpdated string
    The date and time the dynamic set was last updated (in RFC 3339 format).
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    User-specified description for the dynamic set.
    displayName String
    A filter to return resources that match the given user-friendly name.
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the dynamic set.
    matchType String
    Include either any or all attributes.
    matchingRules List<GetDynamicSetsDynamicSetCollectionItemMatchingRule>
    An object that defines the set of rules that identifies the target instances in a dynamic set.
    scheduledJobCount String
    Number of scheduled jobs currently targeting this dynamic set.
    state String
    The current state of the event.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetCompartments List<GetDynamicSetsDynamicSetCollectionItemTargetCompartment>
    The list of compartment details.
    timeCreated String
    The date and time the dynamic set was created (in RFC 3339 format).
    timeUpdated String
    The date and time the dynamic set was last updated (in RFC 3339 format).
    compartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    User-specified description for the dynamic set.
    displayName string
    A filter to return resources that match the given user-friendly name.
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID of the dynamic set.
    matchType string
    Include either any or all attributes.
    matchingRules GetDynamicSetsDynamicSetCollectionItemMatchingRule[]
    An object that defines the set of rules that identifies the target instances in a dynamic set.
    scheduledJobCount string
    Number of scheduled jobs currently targeting this dynamic set.
    state string
    The current state of the event.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetCompartments GetDynamicSetsDynamicSetCollectionItemTargetCompartment[]
    The list of compartment details.
    timeCreated string
    The date and time the dynamic set was created (in RFC 3339 format).
    timeUpdated string
    The date and time the dynamic set was last updated (in RFC 3339 format).
    compartment_id str
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    User-specified description for the dynamic set.
    display_name str
    A filter to return resources that match the given user-friendly name.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID of the dynamic set.
    match_type str
    Include either any or all attributes.
    matching_rules Sequence[GetDynamicSetsDynamicSetCollectionItemMatchingRule]
    An object that defines the set of rules that identifies the target instances in a dynamic set.
    scheduled_job_count str
    Number of scheduled jobs currently targeting this dynamic set.
    state str
    The current state of the event.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    target_compartments Sequence[GetDynamicSetsDynamicSetCollectionItemTargetCompartment]
    The list of compartment details.
    time_created str
    The date and time the dynamic set was created (in RFC 3339 format).
    time_updated str
    The date and time the dynamic set was last updated (in RFC 3339 format).
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    User-specified description for the dynamic set.
    displayName String
    A filter to return resources that match the given user-friendly name.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the dynamic set.
    matchType String
    Include either any or all attributes.
    matchingRules List<Property Map>
    An object that defines the set of rules that identifies the target instances in a dynamic set.
    scheduledJobCount String
    Number of scheduled jobs currently targeting this dynamic set.
    state String
    The current state of the event.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetCompartments List<Property Map>
    The list of compartment details.
    timeCreated String
    The date and time the dynamic set was created (in RFC 3339 format).
    timeUpdated String
    The date and time the dynamic set was last updated (in RFC 3339 format).

    GetDynamicSetsDynamicSetCollectionItemMatchingRule

    Architectures List<string>
    The list of managed instance architectures.
    DisplayNames List<string>
    The list of managed instance display names.
    IsRebootRequired bool
    Indicates if the managed instance needs to be rebooted.
    Locations List<string>
    The list of managed instance locations.
    ManagedInstanceGroupIds List<string>
    The list of managed instance group IDs.
    ManagedInstanceIds List<string>
    The list of managed instance ids.
    OsFamilies List<string>
    The list of managed instance OS families.
    OsNames List<string>
    The list of managed instance OS names.
    Statuses List<string>
    The list of managed instance statuses.
    Tags List<GetDynamicSetsDynamicSetCollectionItemMatchingRuleTag>
    The list of the managed instance tags.
    Architectures []string
    The list of managed instance architectures.
    DisplayNames []string
    The list of managed instance display names.
    IsRebootRequired bool
    Indicates if the managed instance needs to be rebooted.
    Locations []string
    The list of managed instance locations.
    ManagedInstanceGroupIds []string
    The list of managed instance group IDs.
    ManagedInstanceIds []string
    The list of managed instance ids.
    OsFamilies []string
    The list of managed instance OS families.
    OsNames []string
    The list of managed instance OS names.
    Statuses []string
    The list of managed instance statuses.
    Tags []GetDynamicSetsDynamicSetCollectionItemMatchingRuleTag
    The list of the managed instance tags.
    architectures List<String>
    The list of managed instance architectures.
    displayNames List<String>
    The list of managed instance display names.
    isRebootRequired Boolean
    Indicates if the managed instance needs to be rebooted.
    locations List<String>
    The list of managed instance locations.
    managedInstanceGroupIds List<String>
    The list of managed instance group IDs.
    managedInstanceIds List<String>
    The list of managed instance ids.
    osFamilies List<String>
    The list of managed instance OS families.
    osNames List<String>
    The list of managed instance OS names.
    statuses List<String>
    The list of managed instance statuses.
    tags List<GetDynamicSetsDynamicSetCollectionItemMatchingRuleTag>
    The list of the managed instance tags.
    architectures string[]
    The list of managed instance architectures.
    displayNames string[]
    The list of managed instance display names.
    isRebootRequired boolean
    Indicates if the managed instance needs to be rebooted.
    locations string[]
    The list of managed instance locations.
    managedInstanceGroupIds string[]
    The list of managed instance group IDs.
    managedInstanceIds string[]
    The list of managed instance ids.
    osFamilies string[]
    The list of managed instance OS families.
    osNames string[]
    The list of managed instance OS names.
    statuses string[]
    The list of managed instance statuses.
    tags GetDynamicSetsDynamicSetCollectionItemMatchingRuleTag[]
    The list of the managed instance tags.
    architectures Sequence[str]
    The list of managed instance architectures.
    display_names Sequence[str]
    The list of managed instance display names.
    is_reboot_required bool
    Indicates if the managed instance needs to be rebooted.
    locations Sequence[str]
    The list of managed instance locations.
    managed_instance_group_ids Sequence[str]
    The list of managed instance group IDs.
    managed_instance_ids Sequence[str]
    The list of managed instance ids.
    os_families Sequence[str]
    The list of managed instance OS families.
    os_names Sequence[str]
    The list of managed instance OS names.
    statuses Sequence[str]
    The list of managed instance statuses.
    tags Sequence[GetDynamicSetsDynamicSetCollectionItemMatchingRuleTag]
    The list of the managed instance tags.
    architectures List<String>
    The list of managed instance architectures.
    displayNames List<String>
    The list of managed instance display names.
    isRebootRequired Boolean
    Indicates if the managed instance needs to be rebooted.
    locations List<String>
    The list of managed instance locations.
    managedInstanceGroupIds List<String>
    The list of managed instance group IDs.
    managedInstanceIds List<String>
    The list of managed instance ids.
    osFamilies List<String>
    The list of managed instance OS families.
    osNames List<String>
    The list of managed instance OS names.
    statuses List<String>
    The list of managed instance statuses.
    tags List<Property Map>
    The list of the managed instance tags.

    GetDynamicSetsDynamicSetCollectionItemMatchingRuleTag

    Key string
    The key of the tag.
    Namespace string
    The namespace of the tag.
    Type string
    The type of the tag. Common values include defined or freeform.
    Value string
    The value associated with the tag key.
    Key string
    The key of the tag.
    Namespace string
    The namespace of the tag.
    Type string
    The type of the tag. Common values include defined or freeform.
    Value string
    The value associated with the tag key.
    key String
    The key of the tag.
    namespace String
    The namespace of the tag.
    type String
    The type of the tag. Common values include defined or freeform.
    value String
    The value associated with the tag key.
    key string
    The key of the tag.
    namespace string
    The namespace of the tag.
    type string
    The type of the tag. Common values include defined or freeform.
    value string
    The value associated with the tag key.
    key str
    The key of the tag.
    namespace str
    The namespace of the tag.
    type str
    The type of the tag. Common values include defined or freeform.
    value str
    The value associated with the tag key.
    key String
    The key of the tag.
    namespace String
    The namespace of the tag.
    type String
    The type of the tag. Common values include defined or freeform.
    value String
    The value associated with the tag key.

    GetDynamicSetsDynamicSetCollectionItemTargetCompartment

    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    DoesIncludeChildren bool
    Indicates if the child compartments are included in the matching rule.
    CompartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    DoesIncludeChildren bool
    Indicates if the child compartments are included in the matching rule.
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    doesIncludeChildren Boolean
    Indicates if the child compartments are included in the matching rule.
    compartmentId string
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    doesIncludeChildren boolean
    Indicates if the child compartments are included in the matching rule.
    compartment_id str
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    does_include_children bool
    Indicates if the child compartments are included in the matching rule.
    compartmentId String
    The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
    doesIncludeChildren Boolean
    Indicates if the child compartments are included in the matching rule.

    GetDynamicSetsFilter

    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

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