import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Process Set resource in Oracle Cloud Infrastructure Stack Monitoring service. * * API to get the details of a Process Set by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProcessSet = oci.stackmonitoring.getProcessSet({ * processSetId: testProcessSetOciStackMonitoringProcessSet.id, * }); * ``` */ export declare function getProcessSet(args: GetProcessSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProcessSet. */ export interface GetProcessSetArgs { /** * The Process Set ID */ processSetId: string; } /** * A collection of values returned by getProcessSet. */ export interface GetProcessSetResult { /** * 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. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Name of the Process Set. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Process Set. */ readonly id: string; readonly processSetId: string; /** * The current revision of the Process Set. */ readonly revision: string; /** * Collection of regular expression specifications used to identify the processes to be monitored. */ readonly specifications: outputs.StackMonitoring.GetProcessSetSpecification[]; /** * The current state of the Resource. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the process set was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the process set was last updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Process Set resource in Oracle Cloud Infrastructure Stack Monitoring service. * * API to get the details of a Process Set by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProcessSet = oci.stackmonitoring.getProcessSet({ * processSetId: testProcessSetOciStackMonitoringProcessSet.id, * }); * ``` */ export declare function getProcessSetOutput(args: GetProcessSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProcessSet. */ export interface GetProcessSetOutputArgs { /** * The Process Set ID */ processSetId: pulumi.Input; } //# sourceMappingURL=getProcessSet.d.ts.map