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 Unified Agent Configurations in Oracle Cloud Infrastructure Logging service. * * Lists all unified agent configurations in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testUnifiedAgentConfigurations = oci.logging.getUnifiedAgentConfigurations({ * compartmentId: compartmentId, * displayName: unifiedAgentConfigurationDisplayName, * groupId: testGroup.id, * isCompartmentIdInSubtree: unifiedAgentConfigurationIsCompartmentIdInSubtree === "true", * logId: testLog.id, * state: unifiedAgentConfigurationState, * }); * ``` */ export declare function getUnifiedAgentConfigurations(args: GetUnifiedAgentConfigurationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUnifiedAgentConfigurations. */ export interface GetUnifiedAgentConfigurationsArgs { /** * Compartment OCID to list resources in. See compartmentIdInSubtree for nested compartments traversal. */ compartmentId: string; /** * Resource name. */ displayName?: string; filters?: inputs.Logging.GetUnifiedAgentConfigurationsFilter[]; /** * The OCID of a group or a dynamic group. */ groupId?: string; /** * Specifies whether or not nested compartments should be traversed. Defaults to false. */ isCompartmentIdInSubtree?: boolean; /** * Custom log OCID to list resources with the log as destination. */ logId?: string; /** * Lifecycle state of the log object */ state?: string; } /** * A collection of values returned by getUnifiedAgentConfigurations. */ export interface GetUnifiedAgentConfigurationsResult { /** * The OCID of the compartment that the resource belongs to. */ readonly compartmentId: string; /** * The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Logging.GetUnifiedAgentConfigurationsFilter[]; readonly groupId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly isCompartmentIdInSubtree?: boolean; readonly logId?: string; /** * The pipeline state. */ readonly state?: string; /** * The list of unified_agent_configuration_collection. */ readonly unifiedAgentConfigurationCollections: outputs.Logging.GetUnifiedAgentConfigurationsUnifiedAgentConfigurationCollection[]; } /** * This data source provides the list of Unified Agent Configurations in Oracle Cloud Infrastructure Logging service. * * Lists all unified agent configurations in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testUnifiedAgentConfigurations = oci.logging.getUnifiedAgentConfigurations({ * compartmentId: compartmentId, * displayName: unifiedAgentConfigurationDisplayName, * groupId: testGroup.id, * isCompartmentIdInSubtree: unifiedAgentConfigurationIsCompartmentIdInSubtree === "true", * logId: testLog.id, * state: unifiedAgentConfigurationState, * }); * ``` */ export declare function getUnifiedAgentConfigurationsOutput(args: GetUnifiedAgentConfigurationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUnifiedAgentConfigurations. */ export interface GetUnifiedAgentConfigurationsOutputArgs { /** * Compartment OCID to list resources in. See compartmentIdInSubtree for nested compartments traversal. */ compartmentId: pulumi.Input; /** * Resource name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The OCID of a group or a dynamic group. */ groupId?: pulumi.Input; /** * Specifies whether or not nested compartments should be traversed. Defaults to false. */ isCompartmentIdInSubtree?: pulumi.Input; /** * Custom log OCID to list resources with the log as destination. */ logId?: pulumi.Input; /** * Lifecycle state of the log object */ state?: pulumi.Input; } //# sourceMappingURL=getUnifiedAgentConfigurations.d.ts.map