INPUT_OBJECT
GcpVmConfigInput
Description
Inputs needed to create VMs on GCP.
link GraphQL Schema definition
- input GcpVmConfigInput {
- # The CDM version to use for the cluster if it is created using a marketplace
- # image. This field must not be used if the cluster is created using an image ID.
- : String
- # If delete protection to apply to the GCP instance.
- : Boolean
- # The image ID to use for the cluster. This field must not be used if the cluster
- # is created using a marketplace image (using the cdm_version field). If this
- # field is used, the cdm_version field will be ignored.
- : String
- # Instance type to use for the GCP instance.
- : GcpInstanceType
- # Labels to apply to the GCP instance. List of tag key=value separated by commas.
- : String
- # GCP subnet configs for each node.
- : [GcpSubnetInput!]
- # The size of the node in GB. This field is only needed for creating disk-based
- # cluster.
- : Int
- # Service accounts to apply to the GCP instance.
- : [GcpServiceAccountInput!]
- # Test image to use for the Rubrik cluster. This field is only used for internal
- # testing purposes.
- : GcpTestImage
- # Standard, dense or extra dense virtual machine.
- : VmType
- }