import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class OrgLogging extends pulumi.CustomResource { /** * Get an existing OrgLogging 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?: OrgLoggingState, opts?: pulumi.CustomResourceOptions): OrgLogging; /** * Returns true if the given object is an instance of OrgLogging. 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 OrgLogging; readonly cloudWatchLoggings: pulumi.Output; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/coralogix) */ readonly coralogixLoggings: pulumi.Output; /** * The ID, in GUID format, of the Org. */ readonly cplnId: pulumi.Output; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/datadog) */ readonly datadogLoggings: pulumi.Output; /** * Description of the Org. */ readonly description: pulumi.Output; /** * For logging and analyzing data within an org using Elastic Logging. */ readonly elasticLoggings: pulumi.Output; readonly fluentdLoggings: pulumi.Output; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/logz-io) */ readonly logzioLoggings: pulumi.Output; /** * Name of the Org. */ readonly name: pulumi.Output; /** * For logging and analyzing data within an org using OpenTelemetry. */ readonly opentelemetryLoggings: pulumi.Output; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/s3) */ readonly s3Loggings: pulumi.Output; /** * Full link to this resource. Can be referenced by other resources. */ readonly selfLink: pulumi.Output; readonly stackdriverLoggings: pulumi.Output; readonly syslogLoggings: pulumi.Output; /** * Key-value map of resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; }>; /** * Create a OrgLogging 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?: OrgLoggingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OrgLogging resources. */ export interface OrgLoggingState { cloudWatchLoggings?: pulumi.Input[]>; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/coralogix) */ coralogixLoggings?: pulumi.Input[]>; /** * The ID, in GUID format, of the Org. */ cplnId?: pulumi.Input; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/datadog) */ datadogLoggings?: pulumi.Input[]>; /** * Description of the Org. */ description?: pulumi.Input; /** * For logging and analyzing data within an org using Elastic Logging. */ elasticLoggings?: pulumi.Input[]>; fluentdLoggings?: pulumi.Input[]>; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/logz-io) */ logzioLoggings?: pulumi.Input[]>; /** * Name of the Org. */ name?: pulumi.Input; /** * For logging and analyzing data within an org using OpenTelemetry. */ opentelemetryLoggings?: pulumi.Input[]>; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/s3) */ s3Loggings?: pulumi.Input[]>; /** * Full link to this resource. Can be referenced by other resources. */ selfLink?: pulumi.Input; stackdriverLoggings?: pulumi.Input[]>; syslogLoggings?: pulumi.Input[]>; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a OrgLogging resource. */ export interface OrgLoggingArgs { cloudWatchLoggings?: pulumi.Input[]>; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/coralogix) */ coralogixLoggings?: pulumi.Input[]>; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/datadog) */ datadogLoggings?: pulumi.Input[]>; /** * For logging and analyzing data within an org using Elastic Logging. */ elasticLoggings?: pulumi.Input[]>; fluentdLoggings?: pulumi.Input[]>; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/logz-io) */ logzioLoggings?: pulumi.Input[]>; /** * For logging and analyzing data within an org using OpenTelemetry. */ opentelemetryLoggings?: pulumi.Input[]>; /** * [Documentation Reference](https://docs.controlplane.com/external-logging/s3) */ s3Loggings?: pulumi.Input[]>; stackdriverLoggings?: pulumi.Input[]>; syslogLoggings?: pulumi.Input[]>; }