Struct gapi_grpc::google::cloud::aiplatform::v1beta1::PythonPackageSpec[][src]

pub struct PythonPackageSpec {
    pub executor_image_uri: String,
    pub package_uris: Vec<String>,
    pub python_module: String,
    pub args: Vec<String>,
}

The spec of a Python packaged code.

Fields

executor_image_uri: String

Required. The URI of a container image in Artifact Registry that will run the provided Python package. Vertex AI provides a wide range of executor images with pre-installed packages to meet users’ various use cases. See the list of pre-built containers for training. You must use an image from this list.

package_uris: Vec<String>

Required. The Google Cloud Storage location of the Python package files which are the training program and its dependent packages. The maximum number of package URIs is 100.

python_module: String

Required. The Python module name to run after installing the packages.

args: Vec<String>

Command line arguments to be passed to the Python task.

Trait Implementations

impl Clone for PythonPackageSpec[src]

impl Debug for PythonPackageSpec[src]

impl Default for PythonPackageSpec[src]

impl Message for PythonPackageSpec[src]

impl PartialEq<PythonPackageSpec> for PythonPackageSpec[src]

impl StructuralPartialEq for PythonPackageSpec[src]

Auto Trait Implementations

impl RefUnwindSafe for PythonPackageSpec

impl Send for PythonPackageSpec

impl Sync for PythonPackageSpec

impl Unpin for PythonPackageSpec

impl UnwindSafe for PythonPackageSpec

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]