import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Config resource in Oracle Cloud Infrastructure Stack Monitoring service. * * Gets the details of a configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConfig = oci.stackmonitoring.getConfig({ * configId: testConfigOciStackMonitoringConfig.id, * }); * ``` */ export declare function getConfig(args: GetConfigArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConfig. */ export interface GetConfigArgs { /** * Unique Config identifier. */ configId: string; } /** * A collection of values returned by getConfig. */ export interface GetConfigResult { /** * Property Details */ readonly additionalConfigurations: outputs.StackMonitoring.GetConfigAdditionalConfiguration[]; /** * The OCID of the compartment containing the configuration. */ readonly compartmentId: string; readonly configId: string; /** * The type of configuration. */ readonly configType: 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; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * List of dynamic groups dedicated for Stack Monitoring. */ readonly dynamicGroups: outputs.StackMonitoring.GetConfigDynamicGroup[]; /** * 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 Unique Oracle ID (OCID) that is immutable on creation. */ readonly id: string; /** * True if automatic activation of the Management Agent plugin, automatic promotion or enterprise extensibility is enabled, false if it is not enabled. */ readonly isEnabled: boolean; /** * True if customer decides marks configuration as manually configured. */ readonly isManuallyOnboarded: boolean; /** * License edition. */ readonly license: string; /** * List of policy names assigned for onboarding */ readonly policyNames: string[]; /** * The type of resource to configure for automatic promotion. */ readonly resourceType: string; /** * The current state of the configuration. */ 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 configuration was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the Config was updated. */ readonly timeUpdated: string; /** * List of user groups dedicated for Stack Monitoring. */ readonly userGroups: outputs.StackMonitoring.GetConfigUserGroup[]; /** * Assigned version to given onboard configuration. */ readonly version: string; } /** * This data source provides details about a specific Config resource in Oracle Cloud Infrastructure Stack Monitoring service. * * Gets the details of a configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConfig = oci.stackmonitoring.getConfig({ * configId: testConfigOciStackMonitoringConfig.id, * }); * ``` */ export declare function getConfigOutput(args: GetConfigOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getConfig. */ export interface GetConfigOutputArgs { /** * Unique Config identifier. */ configId: pulumi.Input; } //# sourceMappingURL=getConfig.d.ts.map