import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * 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 * * ```typescript * 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, * }); * ``` */ export declare function getDynamicSets(args?: GetDynamicSetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDynamicSets. */ export interface GetDynamicSetsArgs { /** * The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment. */ compartmentId?: string; /** * A filter to return resources that match the given user-friendly name. */ displayName?: string; /** * A filter to return resources that may partially match the given display name. */ displayNameContains?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dynamic set. This filter returns resources associated with this dynamic set. */ dynamicSetId?: string; filters?: inputs.OsManagementHub.GetDynamicSetsFilter[]; } /** * A collection of values returned by getDynamicSets. */ export interface GetDynamicSetsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * User-friendly name for the dynamic set. */ readonly displayName?: string; readonly displayNameContains?: string; /** * The list of dynamic_set_collection. */ readonly dynamicSetCollections: outputs.OsManagementHub.GetDynamicSetsDynamicSetCollection[]; readonly dynamicSetId?: string; readonly filters?: outputs.OsManagementHub.GetDynamicSetsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * 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 * * ```typescript * 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, * }); * ``` */ export declare function getDynamicSetsOutput(args?: GetDynamicSetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDynamicSets. */ export interface GetDynamicSetsOutputArgs { /** * The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment. */ compartmentId?: pulumi.Input; /** * A filter to return resources that match the given user-friendly name. */ displayName?: pulumi.Input; /** * A filter to return resources that may partially match the given display name. */ displayNameContains?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dynamic set. This filter returns resources associated with this dynamic set. */ dynamicSetId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDynamicSets.d.ts.map