Ingress Args
data class IngressArgs(val allowInsecure: Output<Boolean>? = null, val clientCertificateMode: Output<Either<String, IngressClientCertificateMode>>? = null, val corsPolicy: Output<CorsPolicyArgs>? = null, val customDomains: Output<List<CustomDomainArgs>>? = null, val exposedPort: Output<Int>? = null, val external: Output<Boolean>? = null, val ipSecurityRestrictions: Output<List<IpSecurityRestrictionRuleArgs>>? = null, val targetPort: Output<Int>? = null, val traffic: Output<List<TrafficWeightArgs>>? = null, val transport: Output<Either<String, IngressTransportMethod>>? = null) : ConvertibleToJava<IngressArgs>
Container App Ingress configuration.
Constructors
Link copied to clipboard
fun IngressArgs(allowInsecure: Output<Boolean>? = null, clientCertificateMode: Output<Either<String, IngressClientCertificateMode>>? = null, corsPolicy: Output<CorsPolicyArgs>? = null, customDomains: Output<List<CustomDomainArgs>>? = null, exposedPort: Output<Int>? = null, external: Output<Boolean>? = null, ipSecurityRestrictions: Output<List<IpSecurityRestrictionRuleArgs>>? = null, targetPort: Output<Int>? = null, traffic: Output<List<TrafficWeightArgs>>? = null, transport: Output<Either<String, IngressTransportMethod>>? = null)