InstanceArgs

data class InstanceArgs(val clusters: Output<Map<String, String>>? = null, val displayName: Output<String>? = null, val instanceId: Output<String>? = null, val labels: Output<Map<String, String>>? = null, val name: Output<String>? = null, val parent: Output<String>? = null, val project: Output<String>? = null, val type: Output<InstanceType>? = null) : ConvertibleToJava<InstanceArgs>

Create an instance within a project. Note that exactly one of Cluster.serve_nodes and Cluster.cluster_config.cluster_autoscaling_config can be set. If serve_nodes is set to non-zero, then the cluster is manually scaled. If cluster_config.cluster_autoscaling_config is non-empty, then autoscaling is enabled.

Constructors

Link copied to clipboard
fun InstanceArgs(clusters: Output<Map<String, String>>? = null, displayName: Output<String>? = null, instanceId: Output<String>? = null, labels: Output<Map<String, String>>? = null, name: Output<String>? = null, parent: Output<String>? = null, project: Output<String>? = null, type: Output<InstanceType>? = null)

Functions

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

Properties

Link copied to clipboard
val clusters: Output<Map<String, String>>? = null

The clusters to be created within the instance, mapped by desired cluster ID, e.g., just mycluster rather than projects/myproject/instances/myinstance/clusters/mycluster. Fields marked OutputOnly must be left blank.

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

The descriptive name for this instance as it appears in UIs. Can be changed at any time, but should be kept globally unique to avoid confusion.

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

The ID to be used when referring to the new instance within its project, e.g., just myinstance rather than projects/myproject/instances/myinstance.

Link copied to clipboard
val labels: Output<Map<String, String>>? = null

Labels are a flexible and lightweight mechanism for organizing cloud resources into groups that reflect a customer's organizational needs and deployment strategies. They can be used to filter resources and aggregate metrics. * Label keys must be between 1 and 63 characters long and must conform to the regular expression: \p{Ll}\p{Lo}{0,62}. * Label values must be between 0 and 63 characters long and must conform to the regular expression: [\p{Ll}\p{Lo}\p{N}_-]{0,63}. * No more than 64 labels can be associated with a given resource. * Keys and values must both be under 128 bytes.

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

The unique name of the instance. Values are of the form projects/{project}/instances/a-z+[a-z0-9].

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

The unique name of the project in which to create the new instance. Values are of the form projects/{project}.

Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val type: Output<InstanceType>? = null

The type of the instance. Defaults to PRODUCTION.