src.index.outputs.GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchObjectMatchValue.scala Maven / Gradle / Ivy
The newest version!
package besom.api.akamai.outputs
final case class GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchObjectMatchValue private(
name: scala.Option[String],
nameCaseSensitive: scala.Option[Boolean],
nameHasWildcard: scala.Option[Boolean],
options: scala.Option[besom.api.akamai.outputs.GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchObjectMatchValueOptions],
`type`: String,
values: scala.Option[scala.collection.immutable.List[String]]
)
object GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchObjectMatchValue :
given decoder(using besom.types.Context): besom.types.Decoder[GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchObjectMatchValue] =
besom.internal.Decoder.derived[GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchObjectMatchValue]
given outputOps: {} with
extension(output: besom.types.Output[GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchObjectMatchValue])
def name : besom.types.Output[scala.Option[String]] = output.map(_.name)
def nameCaseSensitive : besom.types.Output[scala.Option[Boolean]] = output.map(_.nameCaseSensitive)
def nameHasWildcard : besom.types.Output[scala.Option[Boolean]] = output.map(_.nameHasWildcard)
def options : besom.types.Output[scala.Option[besom.api.akamai.outputs.GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchObjectMatchValueOptions]] = output.map(_.options)
def `type` : besom.types.Output[String] = output.map(_.`type`)
def values : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.map(_.values)
given optionOutputOps: {} with
extension(output: besom.types.Output[scala.Option[GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchObjectMatchValue]])
def name : besom.types.Output[scala.Option[String]] = output.map(_.flatMap(_.name))
def nameCaseSensitive : besom.types.Output[scala.Option[Boolean]] = output.map(_.flatMap(_.nameCaseSensitive))
def nameHasWildcard : besom.types.Output[scala.Option[Boolean]] = output.map(_.flatMap(_.nameHasWildcard))
def options : besom.types.Output[scala.Option[besom.api.akamai.outputs.GetCloudletsAudienceSegmentationMatchRuleMatchRuleMatchObjectMatchValueOptions]] = output.map(_.flatMap(_.options))
def `type` : besom.types.Output[scala.Option[String]] = output.map(_.map(_.`type`))
def values : besom.types.Output[scala.Option[scala.collection.immutable.List[String]]] = output.map(_.flatMap(_.values))