ApiOperationArgs

data class ApiOperationArgs(val methodSelectors: Output<List<MethodSelectorArgs>>? = null, val serviceName: Output<String>? = null) : ConvertibleToJava<ApiOperationArgs>

Identification for an API Operation.

Constructors

Link copied to clipboard
fun ApiOperationArgs(methodSelectors: Output<List<MethodSelectorArgs>>? = null, serviceName: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ApiOperationArgs

Properties

Link copied to clipboard

API methods or permissions to allow. Method or permission must belong to the service specified by service_name field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in service_name.

Link copied to clipboard
val serviceName: Output<String>? = null

The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with service_name field set to * will allow all methods AND permissions for all services.