![JAR search and dependency download from the Maven repository](/logo.png)
com.google.cloud.dataproc.v1.DiskConfigOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dataproc-v1 Show documentation
Show all versions of proto-google-cloud-dataproc-v1 Show documentation
PROTO library for proto-google-cloud-dataproc-v1
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/dataproc/v1/clusters.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dataproc.v1;
public interface DiskConfigOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dataproc.v1.DiskConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Optional. Type of the boot disk (default is "pd-standard").
* Valid values: "pd-balanced" (Persistent Disk Balanced Solid State Drive),
* "pd-ssd" (Persistent Disk Solid State Drive),
* or "pd-standard" (Persistent Disk Hard Disk Drive).
* See [Disk types](https://cloud.google.com/compute/docs/disks#disk-types).
*
*
* string boot_disk_type = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bootDiskType.
*/
java.lang.String getBootDiskType();
/**
*
*
*
* Optional. Type of the boot disk (default is "pd-standard").
* Valid values: "pd-balanced" (Persistent Disk Balanced Solid State Drive),
* "pd-ssd" (Persistent Disk Solid State Drive),
* or "pd-standard" (Persistent Disk Hard Disk Drive).
* See [Disk types](https://cloud.google.com/compute/docs/disks#disk-types).
*
*
* string boot_disk_type = 3 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for bootDiskType.
*/
com.google.protobuf.ByteString getBootDiskTypeBytes();
/**
*
*
*
* Optional. Size in GB of the boot disk (default is 500GB).
*
*
* int32 boot_disk_size_gb = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bootDiskSizeGb.
*/
int getBootDiskSizeGb();
/**
*
*
*
* Optional. Number of attached SSDs, from 0 to 8 (default is 0).
* If SSDs are not attached, the boot disk is used to store runtime logs and
* [HDFS](https://hadoop.apache.org/docs/r1.2.1/hdfs_user_guide.html) data.
* If one or more SSDs are attached, this runtime bulk
* data is spread across them, and the boot disk contains only basic
* config and installed binaries.
*
* Note: Local SSD options may vary by machine type and number of vCPUs
* selected.
*
*
* int32 num_local_ssds = 2 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The numLocalSsds.
*/
int getNumLocalSsds();
/**
*
*
*
* Optional. Interface type of local SSDs (default is "scsi").
* Valid values: "scsi" (Small Computer System Interface),
* "nvme" (Non-Volatile Memory Express).
* See [local SSD
* performance](https://cloud.google.com/compute/docs/disks/local-ssd#performance).
*
*
* string local_ssd_interface = 4 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The localSsdInterface.
*/
java.lang.String getLocalSsdInterface();
/**
*
*
*
* Optional. Interface type of local SSDs (default is "scsi").
* Valid values: "scsi" (Small Computer System Interface),
* "nvme" (Non-Volatile Memory Express).
* See [local SSD
* performance](https://cloud.google.com/compute/docs/disks/local-ssd#performance).
*
*
* string local_ssd_interface = 4 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for localSsdInterface.
*/
com.google.protobuf.ByteString getLocalSsdInterfaceBytes();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy