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

src.index.inputs.GetCloudwrapperConfigurationMultiCdnSettingsOriginArgs.scala Maven / Gradle / Ivy

The newest version!
package besom.api.akamai.inputs

final case class GetCloudwrapperConfigurationMultiCdnSettingsOriginArgs private(
  hostname: besom.types.Output[String],
  originId: besom.types.Output[String],
  propertyId: besom.types.Output[Int]
)

object GetCloudwrapperConfigurationMultiCdnSettingsOriginArgs:
  def apply(
    hostname: besom.types.Input[String],
    originId: besom.types.Input[String],
    propertyId: besom.types.Input[Int]
  )(using besom.types.Context): GetCloudwrapperConfigurationMultiCdnSettingsOriginArgs =
    new GetCloudwrapperConfigurationMultiCdnSettingsOriginArgs(
      hostname = hostname.asOutput(isSecret = false),
      originId = originId.asOutput(isSecret = false),
      propertyId = propertyId.asOutput(isSecret = false)
    )

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






© 2015 - 2024 Weber Informatics LLC | Privacy Policy