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/cloud/vmwareengine/v1/vmwareengine_resources.proto 18 19 package com.google.cloud.vmwareengine.v1; 20 21 public interface HcxActivationKeyOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.vmwareengine.v1.HcxActivationKey) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Output only. The resource name of this HcxActivationKey. 31 * Resource names are schemeless URIs that follow the conventions in 32 * https://cloud.google.com/apis/design/resource_names. 33 * For example: 34 * `projects/my-project/locations/us-central1/privateClouds/my-cloud/hcxActivationKeys/my-key` 35 * </pre> 36 * 37 * <code>string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code> 38 * 39 * @return The name. 40 */ getName()41 java.lang.String getName(); 42 /** 43 * 44 * 45 * <pre> 46 * Output only. The resource name of this HcxActivationKey. 47 * Resource names are schemeless URIs that follow the conventions in 48 * https://cloud.google.com/apis/design/resource_names. 49 * For example: 50 * `projects/my-project/locations/us-central1/privateClouds/my-cloud/hcxActivationKeys/my-key` 51 * </pre> 52 * 53 * <code>string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code> 54 * 55 * @return The bytes for name. 56 */ getNameBytes()57 com.google.protobuf.ByteString getNameBytes(); 58 59 /** 60 * 61 * 62 * <pre> 63 * Output only. Creation time of HCX activation key. 64 * </pre> 65 * 66 * <code>.google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; 67 * </code> 68 * 69 * @return Whether the createTime field is set. 70 */ hasCreateTime()71 boolean hasCreateTime(); 72 /** 73 * 74 * 75 * <pre> 76 * Output only. Creation time of HCX activation key. 77 * </pre> 78 * 79 * <code>.google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; 80 * </code> 81 * 82 * @return The createTime. 83 */ getCreateTime()84 com.google.protobuf.Timestamp getCreateTime(); 85 /** 86 * 87 * 88 * <pre> 89 * Output only. Creation time of HCX activation key. 90 * </pre> 91 * 92 * <code>.google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; 93 * </code> 94 */ getCreateTimeOrBuilder()95 com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder(); 96 97 /** 98 * 99 * 100 * <pre> 101 * Output only. State of HCX activation key. 102 * </pre> 103 * 104 * <code> 105 * .google.cloud.vmwareengine.v1.HcxActivationKey.State state = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; 106 * </code> 107 * 108 * @return The enum numeric value on the wire for state. 109 */ getStateValue()110 int getStateValue(); 111 /** 112 * 113 * 114 * <pre> 115 * Output only. State of HCX activation key. 116 * </pre> 117 * 118 * <code> 119 * .google.cloud.vmwareengine.v1.HcxActivationKey.State state = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; 120 * </code> 121 * 122 * @return The state. 123 */ getState()124 com.google.cloud.vmwareengine.v1.HcxActivationKey.State getState(); 125 126 /** 127 * 128 * 129 * <pre> 130 * Output only. HCX activation key. 131 * </pre> 132 * 133 * <code>string activation_key = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code> 134 * 135 * @return The activationKey. 136 */ getActivationKey()137 java.lang.String getActivationKey(); 138 /** 139 * 140 * 141 * <pre> 142 * Output only. HCX activation key. 143 * </pre> 144 * 145 * <code>string activation_key = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code> 146 * 147 * @return The bytes for activationKey. 148 */ getActivationKeyBytes()149 com.google.protobuf.ByteString getActivationKeyBytes(); 150 151 /** 152 * 153 * 154 * <pre> 155 * Output only. System-generated unique identifier for the resource. 156 * </pre> 157 * 158 * <code>string uid = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];</code> 159 * 160 * @return The uid. 161 */ getUid()162 java.lang.String getUid(); 163 /** 164 * 165 * 166 * <pre> 167 * Output only. System-generated unique identifier for the resource. 168 * </pre> 169 * 170 * <code>string uid = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];</code> 171 * 172 * @return The bytes for uid. 173 */ getUidBytes()174 com.google.protobuf.ByteString getUidBytes(); 175 } 176