src.index.inputs.GetCloudletsPhasedReleaseMatchRuleMatchRuleArgs.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.inputs
final case class GetCloudletsPhasedReleaseMatchRuleMatchRuleArgs private(
disabled: besom.types.Output[scala.Option[Boolean]],
end: besom.types.Output[scala.Option[Int]],
forwardSettings: besom.types.Output[besom.api.akamai.inputs.GetCloudletsPhasedReleaseMatchRuleMatchRuleForwardSettingsArgs],
matchUrl: besom.types.Output[scala.Option[String]],
matches: besom.types.Output[scala.Option[scala.collection.immutable.List[besom.api.akamai.inputs.GetCloudletsPhasedReleaseMatchRuleMatchRuleMatchArgs]]],
matchesAlways: besom.types.Output[scala.Option[Boolean]],
name: besom.types.Output[scala.Option[String]],
start: besom.types.Output[scala.Option[Int]],
`type`: besom.types.Output[String]
)
object GetCloudletsPhasedReleaseMatchRuleMatchRuleArgs:
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.GetCloudletsPhasedReleaseMatchRuleMatchRuleForwardSettingsArgs],
matchUrl: besom.types.Input.Optional[String] = scala.None,
matches: besom.types.Input.Optional[scala.collection.immutable.List[besom.types.Input[besom.api.akamai.inputs.GetCloudletsPhasedReleaseMatchRuleMatchRuleMatchArgs]]] = scala.None,
matchesAlways: besom.types.Input.Optional[Boolean] = 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): GetCloudletsPhasedReleaseMatchRuleMatchRuleArgs =
new GetCloudletsPhasedReleaseMatchRuleMatchRuleArgs(
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),
matchesAlways = matchesAlways.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[GetCloudletsPhasedReleaseMatchRuleMatchRuleArgs] =
besom.internal.Encoder.derived[GetCloudletsPhasedReleaseMatchRuleMatchRuleArgs]
given argsEncoder(using besom.types.Context): besom.types.ArgsEncoder[GetCloudletsPhasedReleaseMatchRuleMatchRuleArgs] =
besom.internal.ArgsEncoder.derived[GetCloudletsPhasedReleaseMatchRuleMatchRuleArgs]