com.google.cloud.notebooks.v2.BootDiskOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-notebooks-v2 Show documentation
Show all versions of proto-google-cloud-notebooks-v2 Show documentation
Proto library for google-cloud-notebooks
/*
* Copyright 2023 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/notebooks/v2/gce_setup.proto
package com.google.cloud.notebooks.v2;
public interface BootDiskOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.notebooks.v2.BootDisk)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Optional. The size of the boot disk in GB attached to this instance, up to
* a maximum of 64000 GB (64 TB). If not specified, this defaults to the
* recommended value of 150GB.
*
*
* int64 disk_size_gb = 1 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The diskSizeGb.
*/
long getDiskSizeGb();
/**
*
*
*
* Optional. Indicates the type of the disk.
*
*
*
* .google.cloud.notebooks.v2.DiskType disk_type = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The enum numeric value on the wire for diskType.
*/
int getDiskTypeValue();
/**
*
*
*
* Optional. Indicates the type of the disk.
*
*
*
* .google.cloud.notebooks.v2.DiskType disk_type = 2 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The diskType.
*/
com.google.cloud.notebooks.v2.DiskType getDiskType();
/**
*
*
*
* Optional. Input only. Disk encryption method used on the boot and data
* disks, defaults to GMEK.
*
*
*
* .google.cloud.notebooks.v2.DiskEncryption disk_encryption = 3 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];
*
*
* @return The enum numeric value on the wire for diskEncryption.
*/
int getDiskEncryptionValue();
/**
*
*
*
* Optional. Input only. Disk encryption method used on the boot and data
* disks, defaults to GMEK.
*
*
*
* .google.cloud.notebooks.v2.DiskEncryption disk_encryption = 3 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];
*
*
* @return The diskEncryption.
*/
com.google.cloud.notebooks.v2.DiskEncryption getDiskEncryption();
/**
*
*
*
* Optional. Input only. The KMS key used to encrypt the disks, only
* applicable if disk_encryption is CMEK. Format:
* `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
*
* Learn more about using your own encryption keys.
*
*
*
* string kms_key = 4 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];
*
*
* @return The kmsKey.
*/
java.lang.String getKmsKey();
/**
*
*
*
* Optional. Input only. The KMS key used to encrypt the disks, only
* applicable if disk_encryption is CMEK. Format:
* `projects/{project_id}/locations/{location}/keyRings/{key_ring_id}/cryptoKeys/{key_id}`
*
* Learn more about using your own encryption keys.
*
*
*
* string kms_key = 4 [(.google.api.field_behavior) = INPUT_ONLY, (.google.api.field_behavior) = OPTIONAL];
*
*
* @return The bytes for kmsKey.
*/
com.google.protobuf.ByteString getKmsKeyBytes();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy