checkpoint.ManagementLogExporter
Explore with Pulumi AI
This resource allows you to execute Check Point Log Exporter.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementLogExporter("example", {
attachments: {
addLinkToLogAttachment: true,
},
protocol: "tcp",
targetPort: 1234,
targetServer: "1.2.3.4",
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementLogExporter("example",
attachments={
"add_link_to_log_attachment": True,
},
protocol="tcp",
target_port=1234,
target_server="1.2.3.4")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := checkpoint.NewManagementLogExporter(ctx, "example", &checkpoint.ManagementLogExporterArgs{
Attachments: &checkpoint.ManagementLogExporterAttachmentsArgs{
AddLinkToLogAttachment: pulumi.Bool(true),
},
Protocol: pulumi.String("tcp"),
TargetPort: pulumi.Float64(1234),
TargetServer: pulumi.String("1.2.3.4"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var example = new Checkpoint.ManagementLogExporter("example", new()
{
Attachments = new Checkpoint.Inputs.ManagementLogExporterAttachmentsArgs
{
AddLinkToLogAttachment = true,
},
Protocol = "tcp",
TargetPort = 1234,
TargetServer = "1.2.3.4",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementLogExporter;
import com.pulumi.checkpoint.ManagementLogExporterArgs;
import com.pulumi.checkpoint.inputs.ManagementLogExporterAttachmentsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ManagementLogExporter("example", ManagementLogExporterArgs.builder()
.attachments(ManagementLogExporterAttachmentsArgs.builder()
.addLinkToLogAttachment(true)
.build())
.protocol("tcp")
.targetPort(1234)
.targetServer("1.2.3.4")
.build());
}
}
resources:
example:
type: checkpoint:ManagementLogExporter
properties:
attachments:
addLinkToLogAttachment: true
protocol: tcp
targetPort: 1234
targetServer: 1.2.3.4
Create ManagementLogExporter Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementLogExporter(name: string, args: ManagementLogExporterArgs, opts?: CustomResourceOptions);
@overload
def ManagementLogExporter(resource_name: str,
args: ManagementLogExporterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementLogExporter(resource_name: str,
opts: Optional[ResourceOptions] = None,
target_port: Optional[float] = None,
target_server: Optional[str] = None,
ignore_warnings: Optional[bool] = None,
data_manipulation: Optional[ManagementLogExporterDataManipulationArgs] = None,
enabled: Optional[bool] = None,
ignore_errors: Optional[bool] = None,
attachments: Optional[ManagementLogExporterAttachmentsArgs] = None,
management_log_exporter_id: Optional[str] = None,
name: Optional[str] = None,
protocol: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
comments: Optional[str] = None,
color: Optional[str] = None)
func NewManagementLogExporter(ctx *Context, name string, args ManagementLogExporterArgs, opts ...ResourceOption) (*ManagementLogExporter, error)
public ManagementLogExporter(string name, ManagementLogExporterArgs args, CustomResourceOptions? opts = null)
public ManagementLogExporter(String name, ManagementLogExporterArgs args)
public ManagementLogExporter(String name, ManagementLogExporterArgs args, CustomResourceOptions options)
type: checkpoint:ManagementLogExporter
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 ManagementLogExporterArgs
- 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 ManagementLogExporterArgs
- 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 ManagementLogExporterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementLogExporterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementLogExporterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var managementLogExporterResource = new Checkpoint.ManagementLogExporter("managementLogExporterResource", new()
{
TargetPort = 0,
TargetServer = "string",
IgnoreWarnings = false,
DataManipulation = new Checkpoint.Inputs.ManagementLogExporterDataManipulationArgs
{
AggregateLogUpdates = false,
Format = "string",
},
Enabled = false,
IgnoreErrors = false,
Attachments = new Checkpoint.Inputs.ManagementLogExporterAttachmentsArgs
{
AddLinkToLogAttachment = false,
AddLinkToLogDetails = false,
AddLogAttachmentId = false,
},
ManagementLogExporterId = "string",
Name = "string",
Protocol = "string",
Tags = new[]
{
"string",
},
Comments = "string",
Color = "string",
});
example, err := checkpoint.NewManagementLogExporter(ctx, "managementLogExporterResource", &checkpoint.ManagementLogExporterArgs{
TargetPort: pulumi.Float64(0),
TargetServer: pulumi.String("string"),
IgnoreWarnings: pulumi.Bool(false),
DataManipulation: &checkpoint.ManagementLogExporterDataManipulationArgs{
AggregateLogUpdates: pulumi.Bool(false),
Format: pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
IgnoreErrors: pulumi.Bool(false),
Attachments: &checkpoint.ManagementLogExporterAttachmentsArgs{
AddLinkToLogAttachment: pulumi.Bool(false),
AddLinkToLogDetails: pulumi.Bool(false),
AddLogAttachmentId: pulumi.Bool(false),
},
ManagementLogExporterId: pulumi.String("string"),
Name: pulumi.String("string"),
Protocol: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Comments: pulumi.String("string"),
Color: pulumi.String("string"),
})
var managementLogExporterResource = new ManagementLogExporter("managementLogExporterResource", ManagementLogExporterArgs.builder()
.targetPort(0.0)
.targetServer("string")
.ignoreWarnings(false)
.dataManipulation(ManagementLogExporterDataManipulationArgs.builder()
.aggregateLogUpdates(false)
.format("string")
.build())
.enabled(false)
.ignoreErrors(false)
.attachments(ManagementLogExporterAttachmentsArgs.builder()
.addLinkToLogAttachment(false)
.addLinkToLogDetails(false)
.addLogAttachmentId(false)
.build())
.managementLogExporterId("string")
.name("string")
.protocol("string")
.tags("string")
.comments("string")
.color("string")
.build());
management_log_exporter_resource = checkpoint.ManagementLogExporter("managementLogExporterResource",
target_port=0,
target_server="string",
ignore_warnings=False,
data_manipulation={
"aggregate_log_updates": False,
"format": "string",
},
enabled=False,
ignore_errors=False,
attachments={
"add_link_to_log_attachment": False,
"add_link_to_log_details": False,
"add_log_attachment_id": False,
},
management_log_exporter_id="string",
name="string",
protocol="string",
tags=["string"],
comments="string",
color="string")
const managementLogExporterResource = new checkpoint.ManagementLogExporter("managementLogExporterResource", {
targetPort: 0,
targetServer: "string",
ignoreWarnings: false,
dataManipulation: {
aggregateLogUpdates: false,
format: "string",
},
enabled: false,
ignoreErrors: false,
attachments: {
addLinkToLogAttachment: false,
addLinkToLogDetails: false,
addLogAttachmentId: false,
},
managementLogExporterId: "string",
name: "string",
protocol: "string",
tags: ["string"],
comments: "string",
color: "string",
});
type: checkpoint:ManagementLogExporter
properties:
attachments:
addLinkToLogAttachment: false
addLinkToLogDetails: false
addLogAttachmentId: false
color: string
comments: string
dataManipulation:
aggregateLogUpdates: false
format: string
enabled: false
ignoreErrors: false
ignoreWarnings: false
managementLogExporterId: string
name: string
protocol: string
tags:
- string
targetPort: 0
targetServer: string
ManagementLogExporter Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ManagementLogExporter resource accepts the following input properties:
- Target
Port double - Port number of the target server.
- Target
Server string - Target server port to which logs are exported.
- Attachments
Management
Log Exporter Attachments - Log exporter attachments. attachments blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Manipulation ManagementLog Exporter Data Manipulation - Log exporter data manipulation. data_manipulation blocks are documented below.
- Enabled bool
- Indicates whether to enable export.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Log stringExporter Id - Name string
- Object name.
- Protocol string
- Protocol used to send logs to the target server.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Target
Port float64 - Port number of the target server.
- Target
Server string - Target server port to which logs are exported.
- Attachments
Management
Log Exporter Attachments Args - Log exporter attachments. attachments blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Manipulation ManagementLog Exporter Data Manipulation Args - Log exporter data manipulation. data_manipulation blocks are documented below.
- Enabled bool
- Indicates whether to enable export.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Log stringExporter Id - Name string
- Object name.
- Protocol string
- Protocol used to send logs to the target server.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- target
Port Double - Port number of the target server.
- target
Server String - Target server port to which logs are exported.
- attachments
Management
Log Exporter Attachments - Log exporter attachments. attachments blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Manipulation ManagementLog Exporter Data Manipulation - Log exporter data manipulation. data_manipulation blocks are documented below.
- enabled Boolean
- Indicates whether to enable export.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Log StringExporter Id - name String
- Object name.
- protocol String
- Protocol used to send logs to the target server.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- target
Port number - Port number of the target server.
- target
Server string - Target server port to which logs are exported.
- attachments
Management
Log Exporter Attachments - Log exporter attachments. attachments blocks are documented below.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- data
Manipulation ManagementLog Exporter Data Manipulation - Log exporter data manipulation. data_manipulation blocks are documented below.
- enabled boolean
- Indicates whether to enable export.
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- management
Log stringExporter Id - name string
- Object name.
- protocol string
- Protocol used to send logs to the target server.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- target_
port float - Port number of the target server.
- target_
server str - Target server port to which logs are exported.
- attachments
Management
Log Exporter Attachments Args - Log exporter attachments. attachments blocks are documented below.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- data_
manipulation ManagementLog Exporter Data Manipulation Args - Log exporter data manipulation. data_manipulation blocks are documented below.
- enabled bool
- Indicates whether to enable export.
- ignore_
errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_
warnings bool - Apply changes ignoring warnings.
- management_
log_ strexporter_ id - name str
- Object name.
- protocol str
- Protocol used to send logs to the target server.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- target
Port Number - Port number of the target server.
- target
Server String - Target server port to which logs are exported.
- attachments Property Map
- Log exporter attachments. attachments blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Manipulation Property Map - Log exporter data manipulation. data_manipulation blocks are documented below.
- enabled Boolean
- Indicates whether to enable export.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Log StringExporter Id - name String
- Object name.
- protocol String
- Protocol used to send logs to the target server.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementLogExporter resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ManagementLogExporter Resource
Get an existing ManagementLogExporter 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?: ManagementLogExporterState, opts?: CustomResourceOptions): ManagementLogExporter
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attachments: Optional[ManagementLogExporterAttachmentsArgs] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
data_manipulation: Optional[ManagementLogExporterDataManipulationArgs] = None,
enabled: Optional[bool] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_log_exporter_id: Optional[str] = None,
name: Optional[str] = None,
protocol: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
target_port: Optional[float] = None,
target_server: Optional[str] = None) -> ManagementLogExporter
func GetManagementLogExporter(ctx *Context, name string, id IDInput, state *ManagementLogExporterState, opts ...ResourceOption) (*ManagementLogExporter, error)
public static ManagementLogExporter Get(string name, Input<string> id, ManagementLogExporterState? state, CustomResourceOptions? opts = null)
public static ManagementLogExporter get(String name, Output<String> id, ManagementLogExporterState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementLogExporter get: id: ${id}
- 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.
- Attachments
Management
Log Exporter Attachments - Log exporter attachments. attachments blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Manipulation ManagementLog Exporter Data Manipulation - Log exporter data manipulation. data_manipulation blocks are documented below.
- Enabled bool
- Indicates whether to enable export.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Log stringExporter Id - Name string
- Object name.
- Protocol string
- Protocol used to send logs to the target server.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Target
Port double - Port number of the target server.
- Target
Server string - Target server port to which logs are exported.
- Attachments
Management
Log Exporter Attachments Args - Log exporter attachments. attachments blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Manipulation ManagementLog Exporter Data Manipulation Args - Log exporter data manipulation. data_manipulation blocks are documented below.
- Enabled bool
- Indicates whether to enable export.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Log stringExporter Id - Name string
- Object name.
- Protocol string
- Protocol used to send logs to the target server.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- Target
Port float64 - Port number of the target server.
- Target
Server string - Target server port to which logs are exported.
- attachments
Management
Log Exporter Attachments - Log exporter attachments. attachments blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Manipulation ManagementLog Exporter Data Manipulation - Log exporter data manipulation. data_manipulation blocks are documented below.
- enabled Boolean
- Indicates whether to enable export.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Log StringExporter Id - name String
- Object name.
- protocol String
- Protocol used to send logs to the target server.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- target
Port Double - Port number of the target server.
- target
Server String - Target server port to which logs are exported.
- attachments
Management
Log Exporter Attachments - Log exporter attachments. attachments blocks are documented below.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- data
Manipulation ManagementLog Exporter Data Manipulation - Log exporter data manipulation. data_manipulation blocks are documented below.
- enabled boolean
- Indicates whether to enable export.
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- management
Log stringExporter Id - name string
- Object name.
- protocol string
- Protocol used to send logs to the target server.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- target
Port number - Port number of the target server.
- target
Server string - Target server port to which logs are exported.
- attachments
Management
Log Exporter Attachments Args - Log exporter attachments. attachments blocks are documented below.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- data_
manipulation ManagementLog Exporter Data Manipulation Args - Log exporter data manipulation. data_manipulation blocks are documented below.
- enabled bool
- Indicates whether to enable export.
- ignore_
errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_
warnings bool - Apply changes ignoring warnings.
- management_
log_ strexporter_ id - name str
- Object name.
- protocol str
- Protocol used to send logs to the target server.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- target_
port float - Port number of the target server.
- target_
server str - Target server port to which logs are exported.
- attachments Property Map
- Log exporter attachments. attachments blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Manipulation Property Map - Log exporter data manipulation. data_manipulation blocks are documented below.
- enabled Boolean
- Indicates whether to enable export.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Log StringExporter Id - name String
- Object name.
- protocol String
- Protocol used to send logs to the target server.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- target
Port Number - Port number of the target server.
- target
Server String - Target server port to which logs are exported.
Supporting Types
ManagementLogExporterAttachments, ManagementLogExporterAttachmentsArgs
- Add
Link boolTo Log Attachment - Indicates whether to add link to log attachment in SmartView.
- Add
Link boolTo Log Details - Indicates whether to add link to log details in SmartView.
- Add
Log boolAttachment Id - Indicates whether to add log attachment ID.
- Add
Link boolTo Log Attachment - Indicates whether to add link to log attachment in SmartView.
- Add
Link boolTo Log Details - Indicates whether to add link to log details in SmartView.
- Add
Log boolAttachment Id - Indicates whether to add log attachment ID.
- add
Link BooleanTo Log Attachment - Indicates whether to add link to log attachment in SmartView.
- add
Link BooleanTo Log Details - Indicates whether to add link to log details in SmartView.
- add
Log BooleanAttachment Id - Indicates whether to add log attachment ID.
- add
Link booleanTo Log Attachment - Indicates whether to add link to log attachment in SmartView.
- add
Link booleanTo Log Details - Indicates whether to add link to log details in SmartView.
- add
Log booleanAttachment Id - Indicates whether to add log attachment ID.
- add_
link_ boolto_ log_ attachment - Indicates whether to add link to log attachment in SmartView.
- add_
link_ boolto_ log_ details - Indicates whether to add link to log details in SmartView.
- add_
log_ boolattachment_ id - Indicates whether to add log attachment ID.
- add
Link BooleanTo Log Attachment - Indicates whether to add link to log attachment in SmartView.
- add
Link BooleanTo Log Details - Indicates whether to add link to log details in SmartView.
- add
Log BooleanAttachment Id - Indicates whether to add log attachment ID.
ManagementLogExporterDataManipulation, ManagementLogExporterDataManipulationArgs
- Aggregate
Log boolUpdates - Indicates whether to aggregate log updates.
- Format string
- Logs format.
- Aggregate
Log boolUpdates - Indicates whether to aggregate log updates.
- Format string
- Logs format.
- aggregate
Log BooleanUpdates - Indicates whether to aggregate log updates.
- format String
- Logs format.
- aggregate
Log booleanUpdates - Indicates whether to aggregate log updates.
- format string
- Logs format.
- aggregate_
log_ boolupdates - Indicates whether to aggregate log updates.
- format str
- Logs format.
- aggregate
Log BooleanUpdates - Indicates whether to aggregate log updates.
- format String
- Logs format.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.