1 /* 2 * Copyright 2020 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 // Generated by the protocol buffer compiler. DO NOT EDIT! 17 // source: google/appengine/v1/appengine.proto 18 19 package com.google.appengine.v1; 20 21 public interface DebugInstanceRequestOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.appengine.v1.DebugInstanceRequest) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Name of the resource requested. Example: 31 * `apps/myapp/services/default/versions/v1/instances/instance-1`. 32 * </pre> 33 * 34 * <code>string name = 1;</code> 35 * 36 * @return The name. 37 */ getName()38 java.lang.String getName(); 39 /** 40 * 41 * 42 * <pre> 43 * Name of the resource requested. Example: 44 * `apps/myapp/services/default/versions/v1/instances/instance-1`. 45 * </pre> 46 * 47 * <code>string name = 1;</code> 48 * 49 * @return The bytes for name. 50 */ getNameBytes()51 com.google.protobuf.ByteString getNameBytes(); 52 53 /** 54 * 55 * 56 * <pre> 57 * Public SSH key to add to the instance. Examples: 58 * * `[USERNAME]:ssh-rsa [KEY_VALUE] [USERNAME]` 59 * * `[USERNAME]:ssh-rsa [KEY_VALUE] google-ssh {"userName":"[USERNAME]","expireOn":"[EXPIRE_TIME]"}` 60 * For more information, see 61 * [Adding and Removing SSH Keys](https://cloud.google.com/compute/docs/instances/adding-removing-ssh-keys). 62 * </pre> 63 * 64 * <code>string ssh_key = 2;</code> 65 * 66 * @return The sshKey. 67 */ getSshKey()68 java.lang.String getSshKey(); 69 /** 70 * 71 * 72 * <pre> 73 * Public SSH key to add to the instance. Examples: 74 * * `[USERNAME]:ssh-rsa [KEY_VALUE] [USERNAME]` 75 * * `[USERNAME]:ssh-rsa [KEY_VALUE] google-ssh {"userName":"[USERNAME]","expireOn":"[EXPIRE_TIME]"}` 76 * For more information, see 77 * [Adding and Removing SSH Keys](https://cloud.google.com/compute/docs/instances/adding-removing-ssh-keys). 78 * </pre> 79 * 80 * <code>string ssh_key = 2;</code> 81 * 82 * @return The bytes for sshKey. 83 */ getSshKeyBytes()84 com.google.protobuf.ByteString getSshKeyBytes(); 85 } 86