All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.index.PropertyIncludeActivationArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai

final case class PropertyIncludeActivationArgs private(
  autoAcknowledgeRuleWarnings: besom.types.Output[scala.Option[Boolean]],
  complianceRecord: besom.types.Output[scala.Option[besom.api.akamai.inputs.PropertyIncludeActivationComplianceRecordArgs]],
  contractId: besom.types.Output[String],
  groupId: besom.types.Output[String],
  includeId: besom.types.Output[String],
  network: besom.types.Output[String],
  note: besom.types.Output[scala.Option[String]],
  notifyEmails: besom.types.Output[scala.collection.immutable.List[String]],
  timeouts: besom.types.Output[scala.Option[besom.api.akamai.inputs.PropertyIncludeActivationTimeoutsArgs]],
  version: besom.types.Output[Int]
)

object PropertyIncludeActivationArgs:
  def apply(
    autoAcknowledgeRuleWarnings: besom.types.Input.Optional[Boolean] = scala.None,
    complianceRecord: besom.types.Input.Optional[besom.api.akamai.inputs.PropertyIncludeActivationComplianceRecordArgs] = scala.None,
    contractId: besom.types.Input[String],
    groupId: besom.types.Input[String],
    includeId: besom.types.Input[String],
    network: besom.types.Input[String],
    note: besom.types.Input.Optional[String] = scala.None,
    notifyEmails: besom.types.Input[scala.collection.immutable.List[besom.types.Input[String]]],
    timeouts: besom.types.Input.Optional[besom.api.akamai.inputs.PropertyIncludeActivationTimeoutsArgs] = scala.None,
    version: besom.types.Input[Int]
  )(using besom.types.Context): PropertyIncludeActivationArgs =
    new PropertyIncludeActivationArgs(
      autoAcknowledgeRuleWarnings = autoAcknowledgeRuleWarnings.asOptionOutput(isSecret = false),
      complianceRecord = complianceRecord.asOptionOutput(isSecret = false),
      contractId = contractId.asOutput(isSecret = false),
      groupId = groupId.asOutput(isSecret = false),
      includeId = includeId.asOutput(isSecret = false),
      network = network.asOutput(isSecret = false),
      note = note.asOptionOutput(isSecret = false),
      notifyEmails = notifyEmails.asOutput(isSecret = false),
      timeouts = timeouts.asOptionOutput(isSecret = false),
      version = version.asOutput(isSecret = false)
    )

  given encoder(using besom.types.Context): besom.types.Encoder[PropertyIncludeActivationArgs] =
    besom.internal.Encoder.derived[PropertyIncludeActivationArgs]
  given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[PropertyIncludeActivationArgs] =
    besom.internal.ArgsEncoder.derived[PropertyIncludeActivationArgs]






© 2015 - 2024 Weber Informatics LLC | Privacy Policy