pub struct DeploymentLog {}
Expand description
DeploymentLog represents the logs for a deployment
Implementations§
Source§impl DeploymentLog
impl DeploymentLog
Sourcepub fn read_namespaced_deployment_config_log(
name: &str,
namespace: &str,
optional: ReadNamespacedDeploymentConfigLogOptional<'_>,
) -> Result<(Request<Vec<u8>>, fn(StatusCode) -> ResponseBody<ReadNamespacedDeploymentConfigLogResponse>), RequestError>
pub fn read_namespaced_deployment_config_log( name: &str, namespace: &str, optional: ReadNamespacedDeploymentConfigLogOptional<'_>, ) -> Result<(Request<Vec<u8>>, fn(StatusCode) -> ResponseBody<ReadNamespacedDeploymentConfigLogResponse>), RequestError>
read log of the specified DeploymentConfig
Use the returned k8s_openapi::ResponseBody
<
ReadNamespacedDeploymentConfigLogResponse
>
constructor, or ReadNamespacedDeploymentConfigLogResponse
directly, to parse the HTTP response.
§Arguments
-
name
name of the DeploymentLog
-
namespace
object name and auth scope, such as for teams and projects
-
optional
Optional parameters. Use
Default::default()
to not pass any.
Trait Implementations§
Source§impl Clone for DeploymentLog
impl Clone for DeploymentLog
Source§fn clone(&self) -> DeploymentLog
fn clone(&self) -> DeploymentLog
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 DeploymentLog
impl Debug for DeploymentLog
Source§impl Default for DeploymentLog
impl Default for DeploymentLog
Source§fn default() -> DeploymentLog
fn default() -> DeploymentLog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentLog
impl<'de> Deserialize<'de> for DeploymentLog
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
Source§impl PartialEq for DeploymentLog
impl PartialEq for DeploymentLog
Source§impl Resource for DeploymentLog
impl Resource for DeploymentLog
Source§const API_VERSION: &'static str = "apps.openshift.io/v1"
const API_VERSION: &'static str = "apps.openshift.io/v1"
The API version of the resource. This is a composite of
Resource::GROUP
and Resource::VERSION
(eg "apiextensions.k8s.io/v1beta1"
)
or just the version for resources without a group (eg "v1"
). Read moreSource§impl Serialize for DeploymentLog
impl Serialize for DeploymentLog
impl StructuralPartialEq for DeploymentLog
Auto Trait Implementations§
impl Freeze for DeploymentLog
impl RefUnwindSafe for DeploymentLog
impl Send for DeploymentLog
impl Sync for DeploymentLog
impl Unpin for DeploymentLog
impl UnwindSafe for DeploymentLog
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