src.index.inputs.GetCloudletsAudienceSegmentationMatchRuleMatchRuleArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.inputs
final case class GetCloudletsAudienceSegmentationMatchRuleMatchRuleArgs private(
disabled: besom.types.Output[scala.Option[Boolean]],
end: besom.types.Output[scala.Option[Int]],
forwardSettings: besom.types.Output[besom.api.akamai.inputs.GetCloudletsAudienceSegmentationMatchRuleMatchRuleForwardSettingsArgs],
matchUrl: besom.types.Output[scala.Option[String]],
matches: besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.akamai.inputs.GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchArgs]]],
name: besom.types.Output[scala.Option[String]],
start: besom.types.Output[scala.Option[Int]],
`type`: besom.types.Output[String]
)
object GetCloudletsAudienceSegmentationMatchRuleMatchRuleArgs:
def apply(
disabled: besom.types.Input.Optional[Boolean] = scala.None,
end: besom.types.Input.Optional[Int] = scala.None,
forwardSettings: besom.types.Input[besom.api.akamai.inputs.GetCloudletsAudienceSegmentationMatchRuleMatchRuleForwardSettingsArgs],
matchUrl: besom.types.Input.Optional[String] = scala.None,
matches: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[besom.api.akamai.inputs.GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchArgs]]] = scala.None,
name: besom.types.Input.Optional[String] = scala.None,
start: besom.types.Input.Optional[Int] = scala.None,
`type`: besom.types.Input[String]
)(using besom.types.Context): GetCloudletsAudienceSegmentationMatchRuleMatchRuleArgs =
new GetCloudletsAudienceSegmentationMatchRuleMatchRuleArgs(
disabled = disabled.asOptionOutput(isSecret = false),
end = end.asOptionOutput(isSecret = false),
forwardSettings = forwardSettings.asOutput(isSecret = false),
matchUrl = matchUrl.asOptionOutput(isSecret = false),
matches = matches.asOptionOutput(isSecret = false),
name = name.asOptionOutput(isSecret = false),
start = start.asOptionOutput(isSecret = false),
`type` = `type`.asOutput(isSecret = false)
)
given encoder(using besom.types.Context): besom.types.Encoder[GetCloudletsAudienceSegmentationMatchRuleMatchRuleArgs] =
besom.internal.Encoder.derived[GetCloudletsAudienceSegmentationMatchRuleMatchRuleArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetCloudletsAudienceSegmentationMatchRuleMatchRuleArgs] =
besom.internal.ArgsEncoder.derived[GetCloudletsAudienceSegmentationMatchRuleMatchRuleArgs]