Interface ExecutionTemplate.VertexAIParametersOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean containsEnv​(String key)
      Environment variables.
      Map<String,​String> getEnv()
      Deprecated.
      int getEnvCount()
      Environment variables.
      Map<String,​String> getEnvMap()
      Environment variables.
      String getEnvOrDefault​(String key, String defaultValue)
      Environment variables.
      String getEnvOrThrow​(String key)
      Environment variables.
      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.
      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.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • 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;
      • 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;
      • getEnvOrThrow

        String getEnvOrThrow​(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;