Package com.google.cloud.notebooks.v1
Interface ExecutionTemplate.VertexAIParametersOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExecutionTemplate.VertexAIParameters,ExecutionTemplate.VertexAIParameters.Builder
- Enclosing class:
- ExecutionTemplate
public static interface ExecutionTemplate.VertexAIParametersOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsEnv(String key)Environment variables.Map<String,String>getEnv()Deprecated.intgetEnvCount()Environment variables.Map<String,String>getEnvMap()Environment variables.StringgetEnvOrDefault(String key, String defaultValue)Environment variables.StringgetEnvOrThrow(String key)Environment variables.StringgetNetwork()The full name of the Compute Engine [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the Job should be peered.com.google.protobuf.ByteStringgetNetworkBytes()The full name of the Compute Engine [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the Job should be peered.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNetwork
String getNetwork()
The full name of the Compute Engine [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the Job should be peered. For example, `projects/12345/global/networks/myVPC`. [Format](https://cloud.google.com/compute/docs/reference/rest/v1/networks/insert) is of the form `projects/{project}/global/networks/{network}`. Where `{project}` is a project number, as in `12345`, and `{network}` is a network name. Private services access must already be configured for the network. If left unspecified, the job is not peered with any network.string network = 1;- Returns:
- The network.
-
getNetworkBytes
com.google.protobuf.ByteString getNetworkBytes()
The full name of the Compute Engine [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the Job should be peered. For example, `projects/12345/global/networks/myVPC`. [Format](https://cloud.google.com/compute/docs/reference/rest/v1/networks/insert) is of the form `projects/{project}/global/networks/{network}`. Where `{project}` is a project number, as in `12345`, and `{network}` is a network name. Private services access must already be configured for the network. If left unspecified, the job is not peered with any network.string network = 1;- Returns:
- The bytes for network.
-
getEnvCount
int getEnvCount()
Environment variables. At most 100 environment variables can be specified and unique. Example: `GCP_BUCKET=gs://my-bucket/samples/`
map<string, string> env = 2;
-
containsEnv
boolean containsEnv(String key)
Environment variables. At most 100 environment variables can be specified and unique. Example: `GCP_BUCKET=gs://my-bucket/samples/`
map<string, string> env = 2;
-
getEnv
@Deprecated Map<String,String> getEnv()
Deprecated.UsegetEnvMap()instead.
-
getEnvMap
Map<String,String> getEnvMap()
Environment variables. At most 100 environment variables can be specified and unique. Example: `GCP_BUCKET=gs://my-bucket/samples/`
map<string, string> env = 2;
-
getEnvOrDefault
String getEnvOrDefault(String key, String defaultValue)
Environment variables. At most 100 environment variables can be specified and unique. Example: `GCP_BUCKET=gs://my-bucket/samples/`
map<string, string> env = 2;
-
-