1. Packages
  2. Control Plane (cpln)
  3. API Docs
  4. OrgLogging
Control Plane v0.0.27 published on Saturday, May 25, 2024 by pulumiverse

cpln.OrgLogging

Explore with Pulumi AI

cpln logo
Control Plane v0.0.27 published on Saturday, May 25, 2024 by pulumiverse

    Create OrgLogging Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new OrgLogging(name: string, args?: OrgLoggingArgs, opts?: CustomResourceOptions);
    @overload
    def OrgLogging(resource_name: str,
                   args: Optional[OrgLoggingArgs] = None,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def OrgLogging(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   cloud_watch_loggings: Optional[Sequence[OrgLoggingCloudWatchLoggingArgs]] = None,
                   coralogix_loggings: Optional[Sequence[OrgLoggingCoralogixLoggingArgs]] = None,
                   datadog_loggings: Optional[Sequence[OrgLoggingDatadogLoggingArgs]] = None,
                   elastic_loggings: Optional[Sequence[OrgLoggingElasticLoggingArgs]] = None,
                   fluentd_loggings: Optional[Sequence[OrgLoggingFluentdLoggingArgs]] = None,
                   logzio_loggings: Optional[Sequence[OrgLoggingLogzioLoggingArgs]] = None,
                   s3_loggings: Optional[Sequence[OrgLoggingS3LoggingArgs]] = None,
                   stackdriver_loggings: Optional[Sequence[OrgLoggingStackdriverLoggingArgs]] = None,
                   syslog_loggings: Optional[Sequence[OrgLoggingSyslogLoggingArgs]] = None)
    func NewOrgLogging(ctx *Context, name string, args *OrgLoggingArgs, opts ...ResourceOption) (*OrgLogging, error)
    public OrgLogging(string name, OrgLoggingArgs? args = null, CustomResourceOptions? opts = null)
    public OrgLogging(String name, OrgLoggingArgs args)
    public OrgLogging(String name, OrgLoggingArgs args, CustomResourceOptions options)
    
    type: cpln:OrgLogging
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args OrgLoggingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args OrgLoggingArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args OrgLoggingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OrgLoggingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OrgLoggingArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var orgLoggingResource = new Cpln.OrgLogging("orgLoggingResource", new()
    {
        CloudWatchLoggings = new[]
        {
            new Cpln.Inputs.OrgLoggingCloudWatchLoggingArgs
            {
                Credentials = "string",
                GroupName = "string",
                Region = "string",
                StreamName = "string",
                RetentionDays = 0,
            },
        },
        CoralogixLoggings = new[]
        {
            new Cpln.Inputs.OrgLoggingCoralogixLoggingArgs
            {
                App = "string",
                Cluster = "string",
                Credentials = "string",
                Subsystem = "string",
            },
        },
        DatadogLoggings = new[]
        {
            new Cpln.Inputs.OrgLoggingDatadogLoggingArgs
            {
                Credentials = "string",
                Host = "string",
            },
        },
        ElasticLoggings = new[]
        {
            new Cpln.Inputs.OrgLoggingElasticLoggingArgs
            {
                Aws = new Cpln.Inputs.OrgLoggingElasticLoggingAwsArgs
                {
                    Credentials = "string",
                    Host = "string",
                    Index = "string",
                    Port = 0,
                    Region = "string",
                    Type = "string",
                },
                ElasticCloud = new Cpln.Inputs.OrgLoggingElasticLoggingElasticCloudArgs
                {
                    CloudId = "string",
                    Credentials = "string",
                    Index = "string",
                    Type = "string",
                },
                Generic = new Cpln.Inputs.OrgLoggingElasticLoggingGenericArgs
                {
                    Credentials = "string",
                    Host = "string",
                    Index = "string",
                    Path = "string",
                    Port = 0,
                    Type = "string",
                },
            },
        },
        FluentdLoggings = new[]
        {
            new Cpln.Inputs.OrgLoggingFluentdLoggingArgs
            {
                Host = "string",
                Port = 0,
            },
        },
        LogzioLoggings = new[]
        {
            new Cpln.Inputs.OrgLoggingLogzioLoggingArgs
            {
                Credentials = "string",
                ListenerHost = "string",
            },
        },
        S3Loggings = new[]
        {
            new Cpln.Inputs.OrgLoggingS3LoggingArgs
            {
                Bucket = "string",
                Credentials = "string",
                Region = "string",
                Prefix = "string",
            },
        },
        StackdriverLoggings = new[]
        {
            new Cpln.Inputs.OrgLoggingStackdriverLoggingArgs
            {
                Credentials = "string",
                Location = "string",
            },
        },
        SyslogLoggings = new[]
        {
            new Cpln.Inputs.OrgLoggingSyslogLoggingArgs
            {
                Host = "string",
                Port = 0,
                Format = "string",
                Mode = "string",
                Severity = 0,
            },
        },
    });
    
    example, err := cpln.NewOrgLogging(ctx, "orgLoggingResource", &cpln.OrgLoggingArgs{
    	CloudWatchLoggings: cpln.OrgLoggingCloudWatchLoggingArray{
    		&cpln.OrgLoggingCloudWatchLoggingArgs{
    			Credentials:   pulumi.String("string"),
    			GroupName:     pulumi.String("string"),
    			Region:        pulumi.String("string"),
    			StreamName:    pulumi.String("string"),
    			RetentionDays: pulumi.Int(0),
    		},
    	},
    	CoralogixLoggings: cpln.OrgLoggingCoralogixLoggingArray{
    		&cpln.OrgLoggingCoralogixLoggingArgs{
    			App:         pulumi.String("string"),
    			Cluster:     pulumi.String("string"),
    			Credentials: pulumi.String("string"),
    			Subsystem:   pulumi.String("string"),
    		},
    	},
    	DatadogLoggings: cpln.OrgLoggingDatadogLoggingArray{
    		&cpln.OrgLoggingDatadogLoggingArgs{
    			Credentials: pulumi.String("string"),
    			Host:        pulumi.String("string"),
    		},
    	},
    	ElasticLoggings: cpln.OrgLoggingElasticLoggingArray{
    		&cpln.OrgLoggingElasticLoggingArgs{
    			Aws: &cpln.OrgLoggingElasticLoggingAwsArgs{
    				Credentials: pulumi.String("string"),
    				Host:        pulumi.String("string"),
    				Index:       pulumi.String("string"),
    				Port:        pulumi.Int(0),
    				Region:      pulumi.String("string"),
    				Type:        pulumi.String("string"),
    			},
    			ElasticCloud: &cpln.OrgLoggingElasticLoggingElasticCloudArgs{
    				CloudId:     pulumi.String("string"),
    				Credentials: pulumi.String("string"),
    				Index:       pulumi.String("string"),
    				Type:        pulumi.String("string"),
    			},
    			Generic: &cpln.OrgLoggingElasticLoggingGenericArgs{
    				Credentials: pulumi.String("string"),
    				Host:        pulumi.String("string"),
    				Index:       pulumi.String("string"),
    				Path:        pulumi.String("string"),
    				Port:        pulumi.Int(0),
    				Type:        pulumi.String("string"),
    			},
    		},
    	},
    	FluentdLoggings: cpln.OrgLoggingFluentdLoggingArray{
    		&cpln.OrgLoggingFluentdLoggingArgs{
    			Host: pulumi.String("string"),
    			Port: pulumi.Int(0),
    		},
    	},
    	LogzioLoggings: cpln.OrgLoggingLogzioLoggingArray{
    		&cpln.OrgLoggingLogzioLoggingArgs{
    			Credentials:  pulumi.String("string"),
    			ListenerHost: pulumi.String("string"),
    		},
    	},
    	S3Loggings: cpln.OrgLoggingS3LoggingArray{
    		&cpln.OrgLoggingS3LoggingArgs{
    			Bucket:      pulumi.String("string"),
    			Credentials: pulumi.String("string"),
    			Region:      pulumi.String("string"),
    			Prefix:      pulumi.String("string"),
    		},
    	},
    	StackdriverLoggings: cpln.OrgLoggingStackdriverLoggingArray{
    		&cpln.OrgLoggingStackdriverLoggingArgs{
    			Credentials: pulumi.String("string"),
    			Location:    pulumi.String("string"),
    		},
    	},
    	SyslogLoggings: cpln.OrgLoggingSyslogLoggingArray{
    		&cpln.OrgLoggingSyslogLoggingArgs{
    			Host:     pulumi.String("string"),
    			Port:     pulumi.Int(0),
    			Format:   pulumi.String("string"),
    			Mode:     pulumi.String("string"),
    			Severity: pulumi.Int(0),
    		},
    	},
    })
    
    var orgLoggingResource = new OrgLogging("orgLoggingResource", OrgLoggingArgs.builder()
        .cloudWatchLoggings(OrgLoggingCloudWatchLoggingArgs.builder()
            .credentials("string")
            .groupName("string")
            .region("string")
            .streamName("string")
            .retentionDays(0)
            .build())
        .coralogixLoggings(OrgLoggingCoralogixLoggingArgs.builder()
            .app("string")
            .cluster("string")
            .credentials("string")
            .subsystem("string")
            .build())
        .datadogLoggings(OrgLoggingDatadogLoggingArgs.builder()
            .credentials("string")
            .host("string")
            .build())
        .elasticLoggings(OrgLoggingElasticLoggingArgs.builder()
            .aws(OrgLoggingElasticLoggingAwsArgs.builder()
                .credentials("string")
                .host("string")
                .index("string")
                .port(0)
                .region("string")
                .type("string")
                .build())
            .elasticCloud(OrgLoggingElasticLoggingElasticCloudArgs.builder()
                .cloudId("string")
                .credentials("string")
                .index("string")
                .type("string")
                .build())
            .generic(OrgLoggingElasticLoggingGenericArgs.builder()
                .credentials("string")
                .host("string")
                .index("string")
                .path("string")
                .port(0)
                .type("string")
                .build())
            .build())
        .fluentdLoggings(OrgLoggingFluentdLoggingArgs.builder()
            .host("string")
            .port(0)
            .build())
        .logzioLoggings(OrgLoggingLogzioLoggingArgs.builder()
            .credentials("string")
            .listenerHost("string")
            .build())
        .s3Loggings(OrgLoggingS3LoggingArgs.builder()
            .bucket("string")
            .credentials("string")
            .region("string")
            .prefix("string")
            .build())
        .stackdriverLoggings(OrgLoggingStackdriverLoggingArgs.builder()
            .credentials("string")
            .location("string")
            .build())
        .syslogLoggings(OrgLoggingSyslogLoggingArgs.builder()
            .host("string")
            .port(0)
            .format("string")
            .mode("string")
            .severity(0)
            .build())
        .build());
    
    org_logging_resource = cpln.OrgLogging("orgLoggingResource",
        cloud_watch_loggings=[cpln.OrgLoggingCloudWatchLoggingArgs(
            credentials="string",
            group_name="string",
            region="string",
            stream_name="string",
            retention_days=0,
        )],
        coralogix_loggings=[cpln.OrgLoggingCoralogixLoggingArgs(
            app="string",
            cluster="string",
            credentials="string",
            subsystem="string",
        )],
        datadog_loggings=[cpln.OrgLoggingDatadogLoggingArgs(
            credentials="string",
            host="string",
        )],
        elastic_loggings=[cpln.OrgLoggingElasticLoggingArgs(
            aws=cpln.OrgLoggingElasticLoggingAwsArgs(
                credentials="string",
                host="string",
                index="string",
                port=0,
                region="string",
                type="string",
            ),
            elastic_cloud=cpln.OrgLoggingElasticLoggingElasticCloudArgs(
                cloud_id="string",
                credentials="string",
                index="string",
                type="string",
            ),
            generic=cpln.OrgLoggingElasticLoggingGenericArgs(
                credentials="string",
                host="string",
                index="string",
                path="string",
                port=0,
                type="string",
            ),
        )],
        fluentd_loggings=[cpln.OrgLoggingFluentdLoggingArgs(
            host="string",
            port=0,
        )],
        logzio_loggings=[cpln.OrgLoggingLogzioLoggingArgs(
            credentials="string",
            listener_host="string",
        )],
        s3_loggings=[cpln.OrgLoggingS3LoggingArgs(
            bucket="string",
            credentials="string",
            region="string",
            prefix="string",
        )],
        stackdriver_loggings=[cpln.OrgLoggingStackdriverLoggingArgs(
            credentials="string",
            location="string",
        )],
        syslog_loggings=[cpln.OrgLoggingSyslogLoggingArgs(
            host="string",
            port=0,
            format="string",
            mode="string",
            severity=0,
        )])
    
    const orgLoggingResource = new cpln.OrgLogging("orgLoggingResource", {
        cloudWatchLoggings: [{
            credentials: "string",
            groupName: "string",
            region: "string",
            streamName: "string",
            retentionDays: 0,
        }],
        coralogixLoggings: [{
            app: "string",
            cluster: "string",
            credentials: "string",
            subsystem: "string",
        }],
        datadogLoggings: [{
            credentials: "string",
            host: "string",
        }],
        elasticLoggings: [{
            aws: {
                credentials: "string",
                host: "string",
                index: "string",
                port: 0,
                region: "string",
                type: "string",
            },
            elasticCloud: {
                cloudId: "string",
                credentials: "string",
                index: "string",
                type: "string",
            },
            generic: {
                credentials: "string",
                host: "string",
                index: "string",
                path: "string",
                port: 0,
                type: "string",
            },
        }],
        fluentdLoggings: [{
            host: "string",
            port: 0,
        }],
        logzioLoggings: [{
            credentials: "string",
            listenerHost: "string",
        }],
        s3Loggings: [{
            bucket: "string",
            credentials: "string",
            region: "string",
            prefix: "string",
        }],
        stackdriverLoggings: [{
            credentials: "string",
            location: "string",
        }],
        syslogLoggings: [{
            host: "string",
            port: 0,
            format: "string",
            mode: "string",
            severity: 0,
        }],
    });
    
    type: cpln:OrgLogging
    properties:
        cloudWatchLoggings:
            - credentials: string
              groupName: string
              region: string
              retentionDays: 0
              streamName: string
        coralogixLoggings:
            - app: string
              cluster: string
              credentials: string
              subsystem: string
        datadogLoggings:
            - credentials: string
              host: string
        elasticLoggings:
            - aws:
                credentials: string
                host: string
                index: string
                port: 0
                region: string
                type: string
              elasticCloud:
                cloudId: string
                credentials: string
                index: string
                type: string
              generic:
                credentials: string
                host: string
                index: string
                path: string
                port: 0
                type: string
        fluentdLoggings:
            - host: string
              port: 0
        logzioLoggings:
            - credentials: string
              listenerHost: string
        s3Loggings:
            - bucket: string
              credentials: string
              prefix: string
              region: string
        stackdriverLoggings:
            - credentials: string
              location: string
        syslogLoggings:
            - format: string
              host: string
              mode: string
              port: 0
              severity: 0
    

    OrgLogging Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The OrgLogging resource accepts the following input properties:

    Outputs

    All input properties are implicitly available as output properties. Additionally, the OrgLogging resource produces the following output properties:

    CplnId string
    The ID, in GUID format, of the org.
    Description string
    The description of org.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the org.
    Tags Dictionary<string, string>
    Key-value map of the org's tags.
    CplnId string
    The ID, in GUID format, of the org.
    Description string
    The description of org.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the org.
    Tags map[string]string
    Key-value map of the org's tags.
    cplnId String
    The ID, in GUID format, of the org.
    description String
    The description of org.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the org.
    tags Map<String,String>
    Key-value map of the org's tags.
    cplnId string
    The ID, in GUID format, of the org.
    description string
    The description of org.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the org.
    tags {[key: string]: string}
    Key-value map of the org's tags.
    cpln_id str
    The ID, in GUID format, of the org.
    description str
    The description of org.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the org.
    tags Mapping[str, str]
    Key-value map of the org's tags.
    cplnId String
    The ID, in GUID format, of the org.
    description String
    The description of org.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the org.
    tags Map<String>
    Key-value map of the org's tags.

    Look up Existing OrgLogging Resource

    Get an existing OrgLogging resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: OrgLoggingState, opts?: CustomResourceOptions): OrgLogging
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cloud_watch_loggings: Optional[Sequence[OrgLoggingCloudWatchLoggingArgs]] = None,
            coralogix_loggings: Optional[Sequence[OrgLoggingCoralogixLoggingArgs]] = None,
            cpln_id: Optional[str] = None,
            datadog_loggings: Optional[Sequence[OrgLoggingDatadogLoggingArgs]] = None,
            description: Optional[str] = None,
            elastic_loggings: Optional[Sequence[OrgLoggingElasticLoggingArgs]] = None,
            fluentd_loggings: Optional[Sequence[OrgLoggingFluentdLoggingArgs]] = None,
            logzio_loggings: Optional[Sequence[OrgLoggingLogzioLoggingArgs]] = None,
            name: Optional[str] = None,
            s3_loggings: Optional[Sequence[OrgLoggingS3LoggingArgs]] = None,
            stackdriver_loggings: Optional[Sequence[OrgLoggingStackdriverLoggingArgs]] = None,
            syslog_loggings: Optional[Sequence[OrgLoggingSyslogLoggingArgs]] = None,
            tags: Optional[Mapping[str, str]] = None) -> OrgLogging
    func GetOrgLogging(ctx *Context, name string, id IDInput, state *OrgLoggingState, opts ...ResourceOption) (*OrgLogging, error)
    public static OrgLogging Get(string name, Input<string> id, OrgLoggingState? state, CustomResourceOptions? opts = null)
    public static OrgLogging get(String name, Output<String> id, OrgLoggingState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CloudWatchLoggings List<Pulumiverse.Cpln.Inputs.OrgLoggingCloudWatchLogging>
    CoralogixLoggings List<Pulumiverse.Cpln.Inputs.OrgLoggingCoralogixLogging>
    Documentation Reference
    CplnId string
    The ID, in GUID format, of the org.
    DatadogLoggings List<Pulumiverse.Cpln.Inputs.OrgLoggingDatadogLogging>
    Documentation Reference
    Description string
    The description of org.
    ElasticLoggings List<Pulumiverse.Cpln.Inputs.OrgLoggingElasticLogging>
    For logging and analyzing data within an org using Elastic Logging.
    FluentdLoggings List<Pulumiverse.Cpln.Inputs.OrgLoggingFluentdLogging>
    LogzioLoggings List<Pulumiverse.Cpln.Inputs.OrgLoggingLogzioLogging>
    Documentation Reference
    Name string
    The name of the org.
    S3Loggings List<Pulumiverse.Cpln.Inputs.OrgLoggingS3Logging>
    Documentation Reference
    StackdriverLoggings List<Pulumiverse.Cpln.Inputs.OrgLoggingStackdriverLogging>
    SyslogLoggings List<Pulumiverse.Cpln.Inputs.OrgLoggingSyslogLogging>
    Tags Dictionary<string, string>
    Key-value map of the org's tags.
    cloud_watch_loggings Sequence[OrgLoggingCloudWatchLoggingArgs]
    coralogix_loggings Sequence[OrgLoggingCoralogixLoggingArgs]
    Documentation Reference
    cpln_id str
    The ID, in GUID format, of the org.
    datadog_loggings Sequence[OrgLoggingDatadogLoggingArgs]
    Documentation Reference
    description str
    The description of org.
    elastic_loggings Sequence[OrgLoggingElasticLoggingArgs]
    For logging and analyzing data within an org using Elastic Logging.
    fluentd_loggings Sequence[OrgLoggingFluentdLoggingArgs]
    logzio_loggings Sequence[OrgLoggingLogzioLoggingArgs]
    Documentation Reference
    name str
    The name of the org.
    s3_loggings Sequence[OrgLoggingS3LoggingArgs]
    Documentation Reference
    stackdriver_loggings Sequence[OrgLoggingStackdriverLoggingArgs]
    syslog_loggings Sequence[OrgLoggingSyslogLoggingArgs]
    tags Mapping[str, str]
    Key-value map of the org's tags.

    Supporting Types

    OrgLoggingCloudWatchLogging, OrgLoggingCloudWatchLoggingArgs

    credentials String
    groupName String
    region String
    streamName String
    retentionDays Integer
    credentials string
    groupName string
    region string
    streamName string
    retentionDays number
    credentials String
    groupName String
    region String
    streamName String
    retentionDays Number

    OrgLoggingCoralogixLogging, OrgLoggingCoralogixLoggingArgs

    App string
    Cluster string
    Credentials string
    Subsystem string
    App string
    Cluster string
    Credentials string
    Subsystem string
    app String
    cluster String
    credentials String
    subsystem String
    app string
    cluster string
    credentials string
    subsystem string
    app String
    cluster String
    credentials String
    subsystem String

    OrgLoggingDatadogLogging, OrgLoggingDatadogLoggingArgs

    Credentials string
    Host string
    Credentials string
    Host string
    credentials String
    host String
    credentials string
    host string
    credentials String
    host String

    OrgLoggingElasticLogging, OrgLoggingElasticLoggingArgs

    OrgLoggingElasticLoggingAws, OrgLoggingElasticLoggingAwsArgs

    Credentials string
    Host string
    Index string
    Port int
    Region string
    Type string
    Credentials string
    Host string
    Index string
    Port int
    Region string
    Type string
    credentials String
    host String
    index String
    port Integer
    region String
    type String
    credentials string
    host string
    index string
    port number
    region string
    type string
    credentials str
    host str
    index str
    port int
    region str
    type str
    credentials String
    host String
    index String
    port Number
    region String
    type String

    OrgLoggingElasticLoggingElasticCloud, OrgLoggingElasticLoggingElasticCloudArgs

    CloudId string
    Credentials string
    Index string
    Type string
    CloudId string
    Credentials string
    Index string
    Type string
    cloudId String
    credentials String
    index String
    type String
    cloudId string
    credentials string
    index string
    type string
    cloudId String
    credentials String
    index String
    type String

    OrgLoggingElasticLoggingGeneric, OrgLoggingElasticLoggingGenericArgs

    Credentials string
    Host string
    Index string
    Path string
    Port int
    Type string
    Credentials string
    Host string
    Index string
    Path string
    Port int
    Type string
    credentials String
    host String
    index String
    path String
    port Integer
    type String
    credentials string
    host string
    index string
    path string
    port number
    type string
    credentials str
    host str
    index str
    path str
    port int
    type str
    credentials String
    host String
    index String
    path String
    port Number
    type String

    OrgLoggingFluentdLogging, OrgLoggingFluentdLoggingArgs

    Host string
    Port int
    Host string
    Port int
    host String
    port Integer
    host string
    port number
    host str
    port int
    host String
    port Number

    OrgLoggingLogzioLogging, OrgLoggingLogzioLoggingArgs

    OrgLoggingS3Logging, OrgLoggingS3LoggingArgs

    Bucket string
    Credentials string
    Region string
    Prefix string
    Bucket string
    Credentials string
    Region string
    Prefix string
    bucket String
    credentials String
    region String
    prefix String
    bucket string
    credentials string
    region string
    prefix string
    bucket String
    credentials String
    region String
    prefix String

    OrgLoggingStackdriverLogging, OrgLoggingStackdriverLoggingArgs

    Credentials string
    Location string
    Credentials string
    Location string
    credentials String
    location String
    credentials string
    location string
    credentials String
    location String

    OrgLoggingSyslogLogging, OrgLoggingSyslogLoggingArgs

    Host string
    Port int
    Format string
    Mode string
    Severity int
    Host string
    Port int
    Format string
    Mode string
    Severity int
    host String
    port Integer
    format String
    mode String
    severity Integer
    host string
    port number
    format string
    mode string
    severity number
    host str
    port int
    format str
    mode str
    severity int
    host String
    port Number
    format String
    mode String
    severity Number

    Package Details

    Repository
    cpln pulumiverse/pulumi-cpln
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cpln Terraform Provider.
    cpln logo
    Control Plane v0.0.27 published on Saturday, May 25, 2024 by pulumiverse