NotificationConfigArgs

data class NotificationConfigArgs(val configId: Output<String>? = null, val description: Output<String>? = null, val name: Output<String>? = null, val project: Output<String>? = null, val pubsubTopic: Output<String>? = null, val streamingConfig: Output<StreamingConfigArgs>? = null) : ConvertibleToJava<NotificationConfigArgs>

Creates a notification config. Auto-naming is currently not supported for this resource.

Constructors

Link copied to clipboard
fun NotificationConfigArgs(configId: Output<String>? = null, description: Output<String>? = null, name: Output<String>? = null, project: Output<String>? = null, pubsubTopic: Output<String>? = null, streamingConfig: Output<StreamingConfigArgs>? = null)

Functions

Link copied to clipboard
open override fun toJava(): NotificationConfigArgs

Properties

Link copied to clipboard
val configId: Output<String>? = null

Required. Unique identifier provided by the client within the parent scope. It must be between 1 and 128 characters and contain alphanumeric characters, underscores, or hyphens only.

Link copied to clipboard
val description: Output<String>? = null

The description of the notification config (max of 1024 characters).

Link copied to clipboard
val name: Output<String>? = null

The relative resource name of this notification config. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/notificationConfigs/notify_public_bucket", "folders/{folder_id}/notificationConfigs/notify_public_bucket", or "projects/{project_id}/notificationConfigs/notify_public_bucket".

Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val pubsubTopic: Output<String>? = null

The Pub/Sub topic to send notifications to. Its format is "projects/project_id/topics/topic".

Link copied to clipboard

The config for triggering streaming-based notifications.