import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Dynamic Set resource in Oracle Cloud Infrastructure Os Management Hub service. * * Gets information about the specified dynamic set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDynamicSet = oci.osmanagementhub.getDynamicSet({ * dynamicSetId: testDynamicSetOciOsManagementHubDynamicSet.id, * }); * ``` */ export declare function getDynamicSet(args: GetDynamicSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDynamicSet. */ export interface GetDynamicSetArgs { /** * 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; } /** * A collection of values returned by getDynamicSet. */ export interface GetDynamicSetResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * User-specified description for the dynamic set. */ readonly description: string; /** * User-friendly name for the dynamic set. */ readonly displayName: string; readonly dynamicSetId: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dynamic set. */ readonly id: string; /** * Include either any or all attributes. */ readonly matchType: string; /** * An object that defines the set of rules that identifies the target instances in a dynamic set. */ readonly matchingRules: outputs.OsManagementHub.GetDynamicSetMatchingRule[]; /** * Number of scheduled jobs currently targeting this dynamic set. */ readonly scheduledJobCount: string; /** * The current state of the event. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The list of compartment details. */ readonly targetCompartments: outputs.OsManagementHub.GetDynamicSetTargetCompartment[]; /** * The date and time the dynamic set was created (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). */ readonly timeCreated: string; /** * The date and time the dynamic set was last updated (in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) format). */ readonly timeUpdated: string; } /** * This data source provides details about a specific Dynamic Set resource in Oracle Cloud Infrastructure Os Management Hub service. * * Gets information about the specified dynamic set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDynamicSet = oci.osmanagementhub.getDynamicSet({ * dynamicSetId: testDynamicSetOciOsManagementHubDynamicSet.id, * }); * ``` */ export declare function getDynamicSetOutput(args: GetDynamicSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDynamicSet. */ export interface GetDynamicSetOutputArgs { /** * 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; } //# sourceMappingURL=getDynamicSet.d.ts.map