
src.securitycenter.v1.FolderNotificationConfigArgs.scala Maven / Gradle / Ivy
package besom.api.googlenative.securitycenter.v1
final case class FolderNotificationConfigArgs private(
configId: besom.types.Output[String],
description: besom.types.Output[scala.Option[String]],
folderId: besom.types.Output[String],
name: besom.types.Output[scala.Option[String]],
pubsubTopic: besom.types.Output[scala.Option[String]],
streamingConfig: besom.types.Output[scala.Option[besom.api.googlenative.securitycenter.v1.inputs.StreamingConfigArgs]]
)
object FolderNotificationConfigArgs:
def apply(
configId: besom.types.Input[String],
description: besom.types.Input.Optional[String] = scala.None,
folderId: besom.types.Input[String],
name: besom.types.Input.Optional[String] = scala.None,
pubsubTopic: besom.types.Input.Optional[String] = scala.None,
streamingConfig: besom.types.Input.Optional[besom.api.googlenative.securitycenter.v1.inputs.StreamingConfigArgs] = scala.None
)(using besom.types.Context): FolderNotificationConfigArgs =
new FolderNotificationConfigArgs(
configId = configId.asOutput(isSecret = false),
description = description.asOptionOutput(isSecret = false),
folderId = folderId.asOutput(isSecret = false),
name = name.asOptionOutput(isSecret = false),
pubsubTopic = pubsubTopic.asOptionOutput(isSecret = false),
streamingConfig = streamingConfig.asOptionOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[FolderNotificationConfigArgs] =
besom.internal.Encoder.derived[FolderNotificationConfigArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[FolderNotificationConfigArgs] =
besom.internal.ArgsEncoder.derived[FolderNotificationConfigArgs]
© 2015 - 2025 Weber Informatics LLC | Privacy Policy