import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Log delivery refers to sending data collected by the log service to TOS or other products for scenarios such as long-term storage of infrequently accessed data, integration with other systems for consumption, or data analysis. * * ## Import * * ```sh * $ pulumi import volcenginecc:tls/shipper:Shipper example "shipper_id" * ``` */ export declare class Shipper extends pulumi.CustomResource { /** * Get an existing Shipper 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?: ShipperState, opts?: pulumi.CustomResourceOptions): Shipper; /** * Returns true if the given object is an instance of Shipper. 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 Shipper; /** * Log content delivery format configuration. */ readonly contentInfo: pulumi.Output; /** * Creation time. */ readonly createdTime: pulumi.Output; /** * Default built-in dashboard ID for delivery. */ readonly dashboardId: pulumi.Output; /** * Kafka delivery configuration. */ readonly kafkaShipperInfo: pulumi.Output; /** * Log project ID. */ readonly projectId: pulumi.Output; /** * Log project name. */ readonly projectName: pulumi.Output; /** * Delivery end time, in milliseconds. Note: Millisecond data will be ignored. For example, if 1776761323455 is entered, the result will be 1776761323000; if 1776761323 is entered, the result will be 1776761323000. */ readonly shipperEndTime: pulumi.Output; /** * Delivery configuration ID. */ readonly shipperId: pulumi.Output; /** * Delivery configuration name, unique within a log project. */ readonly shipperName: pulumi.Output; /** * Delivery start time, in milliseconds. When delivering to Kafka, it is recommended to use the ShipperStartTime and ShipperEndTime fields to configure the delivery time range, and leave the StartTime and EndTime fields empty. Note: Millisecond data will be ignored. For example, if 1776761323455 is entered, the result will be 1776761323000; if 1776761323 is entered, the result will be 1776761323000. */ readonly shipperStartTime: pulumi.Output; /** * Type of data source for delivery. Options: tos, kafka. Default is tos. */ readonly shipperType: pulumi.Output; /** * Whether to enable delivery configuration. Default is true. */ readonly status: pulumi.Output; /** * Log topic ID. */ readonly topicId: pulumi.Output; /** * Log topic name. */ readonly topicName: pulumi.Output; /** * Information related to delivery to TOS object storage. */ readonly tosShipperInfo: pulumi.Output; /** * Update time. */ readonly updatedTime: pulumi.Output; /** * Create a Shipper 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: ShipperArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Shipper resources. */ export interface ShipperState { /** * Log content delivery format configuration. */ contentInfo?: pulumi.Input; /** * Creation time. */ createdTime?: pulumi.Input; /** * Default built-in dashboard ID for delivery. */ dashboardId?: pulumi.Input; /** * Kafka delivery configuration. */ kafkaShipperInfo?: pulumi.Input; /** * Log project ID. */ projectId?: pulumi.Input; /** * Log project name. */ projectName?: pulumi.Input; /** * Delivery end time, in milliseconds. Note: Millisecond data will be ignored. For example, if 1776761323455 is entered, the result will be 1776761323000; if 1776761323 is entered, the result will be 1776761323000. */ shipperEndTime?: pulumi.Input; /** * Delivery configuration ID. */ shipperId?: pulumi.Input; /** * Delivery configuration name, unique within a log project. */ shipperName?: pulumi.Input; /** * Delivery start time, in milliseconds. When delivering to Kafka, it is recommended to use the ShipperStartTime and ShipperEndTime fields to configure the delivery time range, and leave the StartTime and EndTime fields empty. Note: Millisecond data will be ignored. For example, if 1776761323455 is entered, the result will be 1776761323000; if 1776761323 is entered, the result will be 1776761323000. */ shipperStartTime?: pulumi.Input; /** * Type of data source for delivery. Options: tos, kafka. Default is tos. */ shipperType?: pulumi.Input; /** * Whether to enable delivery configuration. Default is true. */ status?: pulumi.Input; /** * Log topic ID. */ topicId?: pulumi.Input; /** * Log topic name. */ topicName?: pulumi.Input; /** * Information related to delivery to TOS object storage. */ tosShipperInfo?: pulumi.Input; /** * Update time. */ updatedTime?: pulumi.Input; } /** * The set of arguments for constructing a Shipper resource. */ export interface ShipperArgs { /** * Log content delivery format configuration. */ contentInfo: pulumi.Input; /** * Kafka delivery configuration. */ kafkaShipperInfo?: pulumi.Input; /** * Delivery end time, in milliseconds. Note: Millisecond data will be ignored. For example, if 1776761323455 is entered, the result will be 1776761323000; if 1776761323 is entered, the result will be 1776761323000. */ shipperEndTime?: pulumi.Input; /** * Delivery configuration name, unique within a log project. */ shipperName: pulumi.Input; /** * Delivery start time, in milliseconds. When delivering to Kafka, it is recommended to use the ShipperStartTime and ShipperEndTime fields to configure the delivery time range, and leave the StartTime and EndTime fields empty. Note: Millisecond data will be ignored. For example, if 1776761323455 is entered, the result will be 1776761323000; if 1776761323 is entered, the result will be 1776761323000. */ shipperStartTime?: pulumi.Input; /** * Type of data source for delivery. Options: tos, kafka. Default is tos. */ shipperType?: pulumi.Input; /** * Whether to enable delivery configuration. Default is true. */ status?: pulumi.Input; /** * Log topic ID. */ topicId: pulumi.Input; /** * Information related to delivery to TOS object storage. */ tosShipperInfo?: pulumi.Input; }