import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class K8sMonitoring extends pulumi.CustomResource { /** * Get an existing K8sMonitoring resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: K8sMonitoringState, opts?: pulumi.CustomResourceOptions): K8sMonitoring; /** * Returns true if the given object is an instance of K8sMonitoring. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is K8sMonitoring; /** * Monitor Kubernetes namespaces, services, workloads, and pods */ readonly cloudApplicationPipelineEnabled: pulumi.Output; /** * Define Kubernetes event filters to ingest events into your environment. For more details, see the [documentation](https://dt-url.net/2201p0u). */ readonly eventPatterns: pulumi.Output; /** * All events are monitored unless event filters are specified. All ingested events are subject to licensing by default. */ readonly eventProcessingActive: pulumi.Output; /** * Include only events specified by Events Field Selectors */ readonly filterEvents: pulumi.Output; /** * For a list of included events, see the [documentation](https://dt-url.net/l61d02no). */ readonly includeAllFdiEvents: pulumi.Output; /** * Workload and node resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate. */ readonly openMetricsBuiltinEnabled: pulumi.Output; /** * For annotation guidance, see the [documentation](https://dt-url.net/g42i0ppw). */ readonly openMetricsPipelineEnabled: pulumi.Output; /** * To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment. * * @deprecated This attribute is deprecated, see [this community guide](https://dt-url.net/v2200u4m) for details. */ readonly pvcMonitoringEnabled: pulumi.Output; /** * The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment. */ readonly scope: pulumi.Output; /** * Create a K8sMonitoring resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: K8sMonitoringArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering K8sMonitoring resources. */ export interface K8sMonitoringState { /** * Monitor Kubernetes namespaces, services, workloads, and pods */ cloudApplicationPipelineEnabled?: pulumi.Input; /** * Define Kubernetes event filters to ingest events into your environment. For more details, see the [documentation](https://dt-url.net/2201p0u). */ eventPatterns?: pulumi.Input; /** * All events are monitored unless event filters are specified. All ingested events are subject to licensing by default. */ eventProcessingActive?: pulumi.Input; /** * Include only events specified by Events Field Selectors */ filterEvents?: pulumi.Input; /** * For a list of included events, see the [documentation](https://dt-url.net/l61d02no). */ includeAllFdiEvents?: pulumi.Input; /** * Workload and node resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate. */ openMetricsBuiltinEnabled?: pulumi.Input; /** * For annotation guidance, see the [documentation](https://dt-url.net/g42i0ppw). */ openMetricsPipelineEnabled?: pulumi.Input; /** * To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment. * * @deprecated This attribute is deprecated, see [this community guide](https://dt-url.net/v2200u4m) for details. */ pvcMonitoringEnabled?: pulumi.Input; /** * The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment. */ scope?: pulumi.Input; } /** * The set of arguments for constructing a K8sMonitoring resource. */ export interface K8sMonitoringArgs { /** * Monitor Kubernetes namespaces, services, workloads, and pods */ cloudApplicationPipelineEnabled: pulumi.Input; /** * Define Kubernetes event filters to ingest events into your environment. For more details, see the [documentation](https://dt-url.net/2201p0u). */ eventPatterns?: pulumi.Input; /** * All events are monitored unless event filters are specified. All ingested events are subject to licensing by default. */ eventProcessingActive: pulumi.Input; /** * Include only events specified by Events Field Selectors */ filterEvents?: pulumi.Input; /** * For a list of included events, see the [documentation](https://dt-url.net/l61d02no). */ includeAllFdiEvents?: pulumi.Input; /** * Workload and node resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate. */ openMetricsBuiltinEnabled: pulumi.Input; /** * For annotation guidance, see the [documentation](https://dt-url.net/g42i0ppw). */ openMetricsPipelineEnabled: pulumi.Input; /** * To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment. * * @deprecated This attribute is deprecated, see [this community guide](https://dt-url.net/v2200u4m) for details. */ pvcMonitoringEnabled?: pulumi.Input; /** * The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment. */ scope?: pulumi.Input; }