Custom Service Args
data class CustomServiceArgs(val docker: Output<DockerArgs>? = null, val endpoints: Output<List<EndpointArgs>>? = null, val environmentVariables: Output<Map<String, EnvironmentVariableArgs>>? = null, val image: Output<ImageArgs>? = null, val name: Output<String>? = null, val volumes: Output<List<VolumeDefinitionArgs>>? = null) : ConvertibleToJava<CustomServiceArgs>
Specifies the custom service configuration
Constructors
Link copied to clipboard
constructor(docker: Output<DockerArgs>? = null, endpoints: Output<List<EndpointArgs>>? = null, environmentVariables: Output<Map<String, EnvironmentVariableArgs>>? = null, image: Output<ImageArgs>? = null, name: Output<String>? = null, volumes: Output<List<VolumeDefinitionArgs>>? = null)