UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

233 lines (232 loc) 7.76 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Provides a resource to manage vefaas kafka trigger * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const foo = new volcengine.vefaas.KafkaTrigger("foo", { * functionId: "35ybaxxx", * mqInstanceId: "kafka-cnngmbeq10mcxxxx", * topicName: "topic", * kafkaCredentials: { * password: "Waxxxxxx", * username: "test-1", * mechanism: "PLAIN", * }, * batchSize: 100, * description: "modify", * }); * ``` * * ## Import * * VefaasKafkaTrigger can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:vefaas/kafkaTrigger:KafkaTrigger default resource_id * ``` */ export declare class KafkaTrigger extends pulumi.CustomResource { /** * Get an existing KafkaTrigger 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<pulumi.ID>, state?: KafkaTriggerState, opts?: pulumi.CustomResourceOptions): KafkaTrigger; /** * Returns true if the given object is an instance of KafkaTrigger. 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 KafkaTrigger; /** * The maximum waiting time for batch consumption of triggers. */ readonly batchFlushDurationMilliseconds: pulumi.Output<number>; /** * The number of messages per batch consumed by the trigger in bulk. */ readonly batchSize: pulumi.Output<number>; /** * The consumer group name of the message queue Kafka instance. */ readonly consumerGroup: pulumi.Output<string>; /** * The creation time of the Kafka trigger. */ readonly creationTime: pulumi.Output<string>; /** * The description of the Kafka trigger. */ readonly description: pulumi.Output<string>; /** * Whether to enable triggers at the same time as creating them. */ readonly enabled: pulumi.Output<boolean>; /** * The ID of Function. */ readonly functionId: pulumi.Output<string>; /** * Kafka identity authentication. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignoreChanges ignore changes in fields. */ readonly kafkaCredentials: pulumi.Output<outputs.vefaas.KafkaTriggerKafkaCredentials>; /** * The last update time of the Kafka trigger. */ readonly lastUpdateTime: pulumi.Output<string>; /** * The maximum number of retries when a function has a runtime error. */ readonly maximumRetryAttempts: pulumi.Output<number>; /** * The instance ID of Message queue Kafka. */ readonly mqInstanceId: pulumi.Output<string>; /** * The name of the Kafka trigger. */ readonly name: pulumi.Output<string>; /** * Specify the location where the messages in the Topic start to be consumed. */ readonly startingPosition: pulumi.Output<string>; /** * The status of Kafka trigger. */ readonly status: pulumi.Output<string>; /** * The Topic name of the message queue Kafka instance. */ readonly topicName: pulumi.Output<string>; /** * Create a KafkaTrigger 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: KafkaTriggerArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering KafkaTrigger resources. */ export interface KafkaTriggerState { /** * The maximum waiting time for batch consumption of triggers. */ batchFlushDurationMilliseconds?: pulumi.Input<number>; /** * The number of messages per batch consumed by the trigger in bulk. */ batchSize?: pulumi.Input<number>; /** * The consumer group name of the message queue Kafka instance. */ consumerGroup?: pulumi.Input<string>; /** * The creation time of the Kafka trigger. */ creationTime?: pulumi.Input<string>; /** * The description of the Kafka trigger. */ description?: pulumi.Input<string>; /** * Whether to enable triggers at the same time as creating them. */ enabled?: pulumi.Input<boolean>; /** * The ID of Function. */ functionId?: pulumi.Input<string>; /** * Kafka identity authentication. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignoreChanges ignore changes in fields. */ kafkaCredentials?: pulumi.Input<inputs.vefaas.KafkaTriggerKafkaCredentials>; /** * The last update time of the Kafka trigger. */ lastUpdateTime?: pulumi.Input<string>; /** * The maximum number of retries when a function has a runtime error. */ maximumRetryAttempts?: pulumi.Input<number>; /** * The instance ID of Message queue Kafka. */ mqInstanceId?: pulumi.Input<string>; /** * The name of the Kafka trigger. */ name?: pulumi.Input<string>; /** * Specify the location where the messages in the Topic start to be consumed. */ startingPosition?: pulumi.Input<string>; /** * The status of Kafka trigger. */ status?: pulumi.Input<string>; /** * The Topic name of the message queue Kafka instance. */ topicName?: pulumi.Input<string>; } /** * The set of arguments for constructing a KafkaTrigger resource. */ export interface KafkaTriggerArgs { /** * The maximum waiting time for batch consumption of triggers. */ batchFlushDurationMilliseconds?: pulumi.Input<number>; /** * The number of messages per batch consumed by the trigger in bulk. */ batchSize?: pulumi.Input<number>; /** * The description of the Kafka trigger. */ description?: pulumi.Input<string>; /** * Whether to enable triggers at the same time as creating them. */ enabled?: pulumi.Input<boolean>; /** * The ID of Function. */ functionId: pulumi.Input<string>; /** * Kafka identity authentication. When importing resources, this attribute will not be imported. If this attribute is set, please use lifecycle and ignoreChanges ignore changes in fields. */ kafkaCredentials: pulumi.Input<inputs.vefaas.KafkaTriggerKafkaCredentials>; /** * The maximum number of retries when a function has a runtime error. */ maximumRetryAttempts?: pulumi.Input<number>; /** * The instance ID of Message queue Kafka. */ mqInstanceId: pulumi.Input<string>; /** * The name of the Kafka trigger. */ name?: pulumi.Input<string>; /** * Specify the location where the messages in the Topic start to be consumed. */ startingPosition?: pulumi.Input<string>; /** * The Topic name of the message queue Kafka instance. */ topicName: pulumi.Input<string>; }