pub struct DeliveryPipelineAttribute {
pub id: Option<String>,
pub labels: Option<HashMap<String, String>>,
}Expand description
Contains criteria for selecting DeliveryPipelines.
This type is not used in any activity, and only used as part of another schema.
Fields§
§id: Option<String>Optional. ID of the DeliveryPipeline. The value of this field could be one of the following: * The last segment of a pipeline name * “*”, all delivery pipelines in a location
labels: Option<HashMap<String, String>>DeliveryPipeline labels.
Trait Implementations§
Source§impl Clone for DeliveryPipelineAttribute
impl Clone for DeliveryPipelineAttribute
Source§fn clone(&self) -> DeliveryPipelineAttribute
fn clone(&self) -> DeliveryPipelineAttribute
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DeliveryPipelineAttribute
impl Debug for DeliveryPipelineAttribute
Source§impl Default for DeliveryPipelineAttribute
impl Default for DeliveryPipelineAttribute
Source§fn default() -> DeliveryPipelineAttribute
fn default() -> DeliveryPipelineAttribute
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeliveryPipelineAttribute
impl<'de> Deserialize<'de> for DeliveryPipelineAttribute
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for DeliveryPipelineAttribute
Auto Trait Implementations§
impl Freeze for DeliveryPipelineAttribute
impl RefUnwindSafe for DeliveryPipelineAttribute
impl Send for DeliveryPipelineAttribute
impl Sync for DeliveryPipelineAttribute
impl Unpin for DeliveryPipelineAttribute
impl UnwindSafe for DeliveryPipelineAttribute
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more