GkeServiceArgs

data class GkeServiceArgs(val clusterName: Output<String>? = null, val location: Output<String>? = null, val namespaceName: Output<String>? = null, val serviceName: Output<String>? = null) : ConvertibleToJava<GkeServiceArgs>

GKE Service. The "service" here represents a Kubernetes service object (https://kubernetes.io/docs/concepts/services-networking/service). The field names correspond to the resource labels on k8s_service monitored resources (https://cloud.google.com/monitoring/api/resources#tag_k8s_service).

Constructors

Link copied to clipboard
fun GkeServiceArgs(clusterName: Output<String>? = null, location: Output<String>? = null, namespaceName: Output<String>? = null, serviceName: Output<String>? = null)

Functions

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

Properties

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

The name of the parent cluster.

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

The location of the parent cluster. This may be a zone or region.

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

The name of the parent namespace.

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

The name of this service.