All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.notebooks.v1.UpdateRuntimeRequestOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.52.0
Show newest version
/*
 * 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/notebooks/v1/managed_service.proto

// Protobuf Java Version: 3.25.3
package com.google.cloud.notebooks.v1;

public interface UpdateRuntimeRequestOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.notebooks.v1.UpdateRuntimeRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * Required. The Runtime to be updated.
   * 
* * .google.cloud.notebooks.v1.Runtime runtime = 1 [(.google.api.field_behavior) = REQUIRED]; * * * @return Whether the runtime field is set. */ boolean hasRuntime(); /** * * *
   * Required. The Runtime to be updated.
   * 
* * .google.cloud.notebooks.v1.Runtime runtime = 1 [(.google.api.field_behavior) = REQUIRED]; * * * @return The runtime. */ com.google.cloud.notebooks.v1.Runtime getRuntime(); /** * * *
   * Required. The Runtime to be updated.
   * 
* * .google.cloud.notebooks.v1.Runtime runtime = 1 [(.google.api.field_behavior) = REQUIRED]; * */ com.google.cloud.notebooks.v1.RuntimeOrBuilder getRuntimeOrBuilder(); /** * * *
   * Required. Specifies the path, relative to `Runtime`, of
   * the field to update. For example, to change the software configuration
   * kernels, the `update_mask` parameter would be
   * specified as `software_config.kernels`,
   * and the `PATCH` request body would specify the new value, as follows:
   *
   *     {
   *       "software_config":{
   *         "kernels": [{
   *            'repository':
   *            'gcr.io/deeplearning-platform-release/pytorch-gpu', 'tag':
   *            'latest' }],
   *         }
   *     }
   *
   *
   * Currently, only the following fields can be updated:
   * - `software_config.kernels`
   * - `software_config.post_startup_script`
   * - `software_config.custom_gpu_driver_path`
   * - `software_config.idle_shutdown`
   * - `software_config.idle_shutdown_timeout`
   * - `software_config.disable_terminal`
   * 
* * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; * * * @return Whether the updateMask field is set. */ boolean hasUpdateMask(); /** * * *
   * Required. Specifies the path, relative to `Runtime`, of
   * the field to update. For example, to change the software configuration
   * kernels, the `update_mask` parameter would be
   * specified as `software_config.kernels`,
   * and the `PATCH` request body would specify the new value, as follows:
   *
   *     {
   *       "software_config":{
   *         "kernels": [{
   *            'repository':
   *            'gcr.io/deeplearning-platform-release/pytorch-gpu', 'tag':
   *            'latest' }],
   *         }
   *     }
   *
   *
   * Currently, only the following fields can be updated:
   * - `software_config.kernels`
   * - `software_config.post_startup_script`
   * - `software_config.custom_gpu_driver_path`
   * - `software_config.idle_shutdown`
   * - `software_config.idle_shutdown_timeout`
   * - `software_config.disable_terminal`
   * 
* * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; * * * @return The updateMask. */ com.google.protobuf.FieldMask getUpdateMask(); /** * * *
   * Required. Specifies the path, relative to `Runtime`, of
   * the field to update. For example, to change the software configuration
   * kernels, the `update_mask` parameter would be
   * specified as `software_config.kernels`,
   * and the `PATCH` request body would specify the new value, as follows:
   *
   *     {
   *       "software_config":{
   *         "kernels": [{
   *            'repository':
   *            'gcr.io/deeplearning-platform-release/pytorch-gpu', 'tag':
   *            'latest' }],
   *         }
   *     }
   *
   *
   * Currently, only the following fields can be updated:
   * - `software_config.kernels`
   * - `software_config.post_startup_script`
   * - `software_config.custom_gpu_driver_path`
   * - `software_config.idle_shutdown`
   * - `software_config.idle_shutdown_timeout`
   * - `software_config.disable_terminal`
   * 
* * .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED]; * */ com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder(); /** * * *
   * Idempotent request UUID.
   * 
* * string request_id = 3; * * @return The requestId. */ java.lang.String getRequestId(); /** * * *
   * Idempotent request UUID.
   * 
* * string request_id = 3; * * @return The bytes for requestId. */ com.google.protobuf.ByteString getRequestIdBytes(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy