Struct gapi_grpc::google::cloud::aiplatform::v1::TrainingPipeline [−][src]
The TrainingPipeline orchestrates tasks associated with training a Model. It always executes the training task, and optionally may also export data from Vertex AI’s Dataset which becomes the training input, [upload][google.cloud.aiplatform.v1.ModelService.UploadModel] the Model to Vertex AI, and evaluate the Model.
Fields
name: String
Output only. Resource name of the TrainingPipeline.
display_name: String
Required. The user-defined name of this TrainingPipeline.
input_data_config: Option<InputDataConfig>
Specifies Vertex AI owned input data that may be used for training the Model. The TrainingPipeline’s [training_task_definition][google.cloud.aiplatform.v1.TrainingPipeline.training_task_definition] should make clear whether this config is used and if there are any special requirements on how it should be filled. If nothing about this config is mentioned in the [training_task_definition][google.cloud.aiplatform.v1.TrainingPipeline.training_task_definition], then it should be assumed that the TrainingPipeline does not depend on this configuration.
training_task_definition: String
Required. A Google Cloud Storage path to the YAML file that defines the training task which is responsible for producing the model artifact, and may also include additional auxiliary work. The definition files that can be used here are found in gs://google-cloud-aiplatform/schema/trainingjob/definition/. Note: The URI given on output will be immutable and probably different, including the URI scheme, than the one given on input. The output URI will point to a location where the user only has a read access.
training_task_inputs: Option<Value>
Required. The training task’s parameter(s), as specified in the
[training_task_definition][google.cloud.aiplatform.v1.TrainingPipeline.training_task_definition]’s inputs
.
training_task_metadata: Option<Value>
Output only. The metadata information as specified in the [training_task_definition][google.cloud.aiplatform.v1.TrainingPipeline.training_task_definition]’s
metadata
. This metadata is an auxiliary runtime and final information
about the training task. While the pipeline is running this information is
populated only at a best effort basis. Only present if the
pipeline’s [training_task_definition][google.cloud.aiplatform.v1.TrainingPipeline.training_task_definition] contains metadata
object.
model_to_upload: Option<Model>
Describes the Model that may be uploaded (via [ModelService.UploadModel][google.cloud.aiplatform.v1.ModelService.UploadModel])
by this TrainingPipeline. The TrainingPipeline’s
[training_task_definition][google.cloud.aiplatform.v1.TrainingPipeline.training_task_definition] should make clear whether this Model
description should be populated, and if there are any special requirements
regarding how it should be filled. If nothing is mentioned in the
[training_task_definition][google.cloud.aiplatform.v1.TrainingPipeline.training_task_definition], then it should be assumed that this field
should not be filled and the training task either uploads the Model without
a need of this information, or that training task does not support
uploading a Model as part of the pipeline.
When the Pipeline’s state becomes PIPELINE_STATE_SUCCEEDED
and
the trained Model had been uploaded into Vertex AI, then the
model_to_upload’s resource [name][google.cloud.aiplatform.v1.Model.name] is populated. The Model
is always uploaded into the Project and Location in which this pipeline
is.
state: i32
Output only. The detailed state of the pipeline.
error: Option<Status>
Output only. Only populated when the pipeline’s state is PIPELINE_STATE_FAILED
or
PIPELINE_STATE_CANCELLED
.
create_time: Option<Timestamp>
Output only. Time when the TrainingPipeline was created.
start_time: Option<Timestamp>
Output only. Time when the TrainingPipeline for the first time entered the
PIPELINE_STATE_RUNNING
state.
end_time: Option<Timestamp>
Output only. Time when the TrainingPipeline entered any of the following states:
PIPELINE_STATE_SUCCEEDED
, PIPELINE_STATE_FAILED
,
PIPELINE_STATE_CANCELLED
.
update_time: Option<Timestamp>
Output only. Time when the TrainingPipeline was most recently updated.
labels: HashMap<String, String>
The labels with user-defined metadata to organize TrainingPipelines.
Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed.
See https://goo.gl/xmQnxf for more information and examples of labels.
encryption_spec: Option<EncryptionSpec>
Customer-managed encryption key spec for a TrainingPipeline. If set, this TrainingPipeline will be secured by this key.
Note: Model trained by this TrainingPipeline is also secured by this key if [model_to_upload][google.cloud.aiplatform.v1.TrainingPipeline.encryption_spec] is not set separately.
Implementations
impl TrainingPipeline
[src]
pub fn state(&self) -> PipelineState
[src]
Returns the enum value of state
, or the default if the field is set to an invalid enum value.
pub fn set_state(&mut self, value: PipelineState)
[src]
Sets state
to the provided enum value.
Trait Implementations
impl Clone for TrainingPipeline
[src]
fn clone(&self) -> TrainingPipeline
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for TrainingPipeline
[src]
impl Default for TrainingPipeline
[src]
fn default() -> TrainingPipeline
[src]
impl Message for TrainingPipeline
[src]
fn encode_raw<B>(&self, buf: &mut B) where
B: BufMut,
[src]
B: BufMut,
fn merge_field<B>(
&mut self,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError> where
B: Buf,
[src]
&mut self,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError> where
B: Buf,
fn encoded_len(&self) -> usize
[src]
fn clear(&mut self)
[src]
pub fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut,
[src]
B: BufMut,
pub fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut,
[src]
B: BufMut,
pub fn decode<B>(buf: B) -> Result<Self, DecodeError> where
Self: Default,
B: Buf,
[src]
Self: Default,
B: Buf,
pub fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
Self: Default,
B: Buf,
[src]
Self: Default,
B: Buf,
pub fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf,
[src]
B: Buf,
pub fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf,
[src]
B: Buf,
impl PartialEq<TrainingPipeline> for TrainingPipeline
[src]
fn eq(&self, other: &TrainingPipeline) -> bool
[src]
fn ne(&self, other: &TrainingPipeline) -> bool
[src]
impl StructuralPartialEq for TrainingPipeline
[src]
Auto Trait Implementations
impl RefUnwindSafe for TrainingPipeline
impl Send for TrainingPipeline
impl Sync for TrainingPipeline
impl Unpin for TrainingPipeline
impl UnwindSafe for TrainingPipeline
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoRequest<T> for T
[src]
pub fn into_request(self) -> Request<T>
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,
impl<T> WithSubscriber for T
[src]
pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,