Package-level declarations

Types

Link copied to clipboard
class APIService : KotlinCustomResource

APIService represents a server for a particular GroupVersion. Name must be "version.group".

Link copied to clipboard
data class APIServiceArgs(val apiVersion: Output<String>? = null, val kind: Output<String>? = null, val metadata: Output<ObjectMetaArgs>? = null, val spec: Output<APIServiceSpecArgs>? = null) : ConvertibleToJava<APIServiceArgs>

APIService represents a server for a particular GroupVersion. Name must be "version.group".

Link copied to clipboard
Link copied to clipboard
class APIServiceList : KotlinCustomResource

APIServiceList is a list of APIService objects.

Link copied to clipboard
data class APIServiceListArgs(val apiVersion: Output<String>? = null, val items: Output<List<APIServiceArgs>>? = null, val kind: Output<String>? = null, val metadata: Output<ListMetaArgs>? = null) : ConvertibleToJava<APIServiceListArgs>

APIServiceList is a list of APIService objects.

Link copied to clipboard
Link copied to clipboard
object APIServiceListMapper : ResourceMapper<APIServiceList>
Link copied to clipboard
object APIServiceMapper : ResourceMapper<APIService>
Link copied to clipboard
class APIServicePatch : KotlinCustomResource

Patch resources are used to modify existing Kubernetes resources by using Server-Side Apply updates. The name of the resource must be specified, but all other properties are optional. More than one patch may be applied to the same resource, and a random FieldManager name will be used for each Patch resource. Conflicts will result in an error by default, but can be forced using the "pulumi.com/patchForce" annotation. See the Server-Side Apply Docs for additional information about using Server-Side Apply to manage Kubernetes resources with Pulumi. APIService represents a server for a particular GroupVersion. Name must be "version.group".

Link copied to clipboard
data class APIServicePatchArgs(val apiVersion: Output<String>? = null, val kind: Output<String>? = null, val metadata: Output<ObjectMetaPatchArgs>? = null, val spec: Output<APIServiceSpecPatchArgs>? = null) : ConvertibleToJava<APIServicePatchArgs>

Patch resources are used to modify existing Kubernetes resources by using Server-Side Apply updates. The name of the resource must be specified, but all other properties are optional. More than one patch may be applied to the same resource, and a random FieldManager name will be used for each Patch resource. Conflicts will result in an error by default, but can be forced using the "pulumi.com/patchForce" annotation. See the Server-Side Apply Docs for additional information about using Server-Side Apply to manage Kubernetes resources with Pulumi. APIService represents a server for a particular GroupVersion. Name must be "version.group".

Link copied to clipboard
object APIServicePatchMapper : ResourceMapper<APIServicePatch>
Link copied to clipboard

Functions

Link copied to clipboard
suspend fun apiService(name: String, block: suspend APIServiceResourceBuilder.() -> Unit): APIService
Link copied to clipboard
Link copied to clipboard