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:
Boshi Lian
2022-09-05 12:52:54 -07:00
committed by GitHub
parent a763810ae3
commit c404c00bc2
17 changed files with 1035 additions and 9069 deletions

View 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; }
}
}