Version 9.0: Based on Swagger 1.25 (#995)
* swagger 1.25 * update version converter * bump version * move missing models to models proj * hide util for further cleanup * hide more public api * update version matrix
This commit is contained in:
29
src/KubernetesClient.Models/PodMetricsList.cs
Normal file
29
src/KubernetesClient.Models/PodMetricsList.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
namespace k8s.Models
|
||||
{
|
||||
public class PodMetricsList
|
||||
{
|
||||
/// <summary>
|
||||
/// Defines the versioned schema of this representation of an object.
|
||||
/// </summary>
|
||||
[JsonPropertyName("apiVersion")]
|
||||
public string ApiVersion { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Defines the REST resource this object represents.
|
||||
/// </summary>
|
||||
[JsonPropertyName("kind")]
|
||||
public string Kind { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The kubernetes standard object's metadata.
|
||||
/// </summary>
|
||||
[JsonPropertyName("metadata")]
|
||||
public V1ObjectMeta Metadata { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The list of pod metrics.
|
||||
/// </summary>
|
||||
[JsonPropertyName("items")]
|
||||
public IEnumerable<PodMetrics> Items { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user