• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/aiplatform/v1/env_var.proto
18 
19 package com.google.cloud.aiplatform.v1;
20 
21 public interface EnvVarOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.aiplatform.v1.EnvVar)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Required. Name of the environment variable. Must be a valid C identifier.
31    * </pre>
32    *
33    * <code>string name = 1 [(.google.api.field_behavior) = REQUIRED];</code>
34    *
35    * @return The name.
36    */
getName()37   java.lang.String getName();
38   /**
39    *
40    *
41    * <pre>
42    * Required. Name of the environment variable. Must be a valid C identifier.
43    * </pre>
44    *
45    * <code>string name = 1 [(.google.api.field_behavior) = REQUIRED];</code>
46    *
47    * @return The bytes for name.
48    */
getNameBytes()49   com.google.protobuf.ByteString getNameBytes();
50 
51   /**
52    *
53    *
54    * <pre>
55    * Required. Variables that reference a $(VAR_NAME) are expanded
56    * using the previous defined environment variables in the container and
57    * any service environment variables. If a variable cannot be resolved,
58    * the reference in the input string will be unchanged. The $(VAR_NAME)
59    * syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped
60    * references will never be expanded, regardless of whether the variable
61    * exists or not.
62    * </pre>
63    *
64    * <code>string value = 2 [(.google.api.field_behavior) = REQUIRED];</code>
65    *
66    * @return The value.
67    */
getValue()68   java.lang.String getValue();
69   /**
70    *
71    *
72    * <pre>
73    * Required. Variables that reference a $(VAR_NAME) are expanded
74    * using the previous defined environment variables in the container and
75    * any service environment variables. If a variable cannot be resolved,
76    * the reference in the input string will be unchanged. The $(VAR_NAME)
77    * syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped
78    * references will never be expanded, regardless of whether the variable
79    * exists or not.
80    * </pre>
81    *
82    * <code>string value = 2 [(.google.api.field_behavior) = REQUIRED];</code>
83    *
84    * @return The bytes for value.
85    */
getValueBytes()86   com.google.protobuf.ByteString getValueBytes();
87 }
88