Trait mz_cloud_resources::CloudResourceReader

source ·
pub trait CloudResourceReader: Debug + Send + Sync {
    // Required method
    fn read<'life0, 'async_trait>(
        &'life0 self,
        id: GlobalId
    ) -> Pin<Box<dyn Future<Output = Result<VpcEndpointStatus, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn read<'life0, 'async_trait>( &'life0 self, id: GlobalId ) -> Pin<Box<dyn Future<Output = Result<VpcEndpointStatus, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Reads the specified VpcEndpoint Kubernetes object.

Implementors§