You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.backups.postgresql.cnpg.io.g.cs
/// <summary>APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources</summary>
/// <summary>Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds</summary>
/// <summary>ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.</summary>
31
+
[JsonPropertyName("metadata")]
32
+
publicV1ListMeta?Metadata{get;set;}
33
+
34
+
/// <summary>List of V1ClusterImageCatalog objects.</summary>
/// Policy for pulling OCI objects. Possible values are:
75
+
/// Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails.
76
+
/// Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present.
77
+
/// IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails.
78
+
/// Defaults to Always if :latest tag is specified, or IfNotPresent otherwise.
79
+
/// </summary>
80
+
[JsonPropertyName("pullPolicy")]
81
+
publicstring?PullPolicy{get;set;}
82
+
83
+
/// <summary>
84
+
/// Required: Image or artifact reference to be used.
85
+
/// Behaves in the same way as pod.spec.containers[*].image.
86
+
/// Pull secrets will be assembled in the same way as for the container image by looking up node credentials, SA image pull secrets, and pod spec image pull secrets.
87
+
/// More info: https://kubernetes.io/docs/concepts/containers/images
88
+
/// This field is optional to allow higher level config management to default or override
89
+
/// container images in workload controllers like Deployments and StatefulSets.
90
+
/// </summary>
91
+
[JsonPropertyName("reference")]
92
+
publicstring?Reference{get;set;}
93
+
}
94
+
95
+
/// <summary>
96
+
/// ExtensionConfiguration is the configuration used to add
/// <summary>APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources</summary>
/// <summary>Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds</summary>
193
+
[JsonPropertyName("kind")]
194
+
publicstringKind{get;set;}="ClusterImageCatalog";
195
+
196
+
/// <summary>Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata</summary>
197
+
[JsonPropertyName("metadata")]
198
+
publicV1ObjectMetaMetadata{get;set;}
199
+
200
+
/// <summary>
201
+
/// Specification of the desired behavior of the ClusterImageCatalog.
202
+
/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
0 commit comments