Struct gapi_grpc::google::cloud::aiplatform::v1beta1::PipelineJob [−][src]
An instance of a machine learning PipelineJob.
Fields
name: String
Output only. The resource name of the PipelineJob.
display_name: String
The display name of the Pipeline. The name can be up to 128 characters long and can be consist of any UTF-8 characters.
create_time: Option<Timestamp>
Output only. Pipeline creation time.
start_time: Option<Timestamp>
Output only. Pipeline start time.
end_time: Option<Timestamp>
Output only. Pipeline end time.
update_time: Option<Timestamp>
Output only. Timestamp when this PipelineJob was most recently updated.
pipeline_spec: Option<Struct>
Required. The spec of the pipeline.
state: i32
Output only. The detailed state of the job.
job_detail: Option<PipelineJobDetail>
Output only. The details of pipeline run. Not available in the list view.
error: Option<Status>
Output only. The error that occurred during pipeline execution. Only populated when the pipeline’s state is FAILED or CANCELLED.
labels: HashMap<String, String>
The labels with user-defined metadata to organize PipelineJob.
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.
runtime_config: Option<RuntimeConfig>
Runtime config of the pipeline.
encryption_spec: Option<EncryptionSpec>
Customer-managed encryption key spec for a pipelineJob. If set, this PipelineJob and all of its sub-resources will be secured by this key.
service_account: String
The service account that the pipeline workload runs as. If not specified, the Compute Engine default service account in the project will be used. See https://cloud.google.com/compute/docs/access/service-accounts#default_service_account
Users starting the pipeline must have the iam.serviceAccounts.actAs
permission on this service account.
network: String
The full name of the Compute Engine
network to which the
Pipeline Job’s workload should be peered. For example,
projects/12345/global/networks/myVPC
.
Format
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. Pipeline job will apply the network configuration to the GCP resources being launched, if applied, such as Vertex AI Training or Dataflow job. If left unspecified, the workload is not peered with any network.
Implementations
impl PipelineJob
[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 PipelineJob
[src]
fn clone(&self) -> PipelineJob
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for PipelineJob
[src]
impl Default for PipelineJob
[src]
fn default() -> PipelineJob
[src]
impl Message for PipelineJob
[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<PipelineJob> for PipelineJob
[src]
fn eq(&self, other: &PipelineJob) -> bool
[src]
fn ne(&self, other: &PipelineJob) -> bool
[src]
impl StructuralPartialEq for PipelineJob
[src]
Auto Trait Implementations
impl RefUnwindSafe for PipelineJob
impl Send for PipelineJob
impl Sync for PipelineJob
impl Unpin for PipelineJob
impl UnwindSafe for PipelineJob
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>,